1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
3+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
4+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
5+ <parent >
6+ <artifactId >arangodb-java-driver-parent</artifactId >
7+ <groupId >com.arangodb</groupId >
8+ <version >7.0.0-SNAPSHOT</version >
9+ </parent >
10+ <modelVersion >4.0.0</modelVersion >
11+
12+ <artifactId >resilience-tests</artifactId >
13+
14+ <properties >
15+ <maven .compiler.target>19</maven .compiler.target>
16+ <maven .compiler.source>19</maven .compiler.source>
17+ <maven .compiler.release>19</maven .compiler.release>
18+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
19+ </properties >
20+
21+ <dependencies >
22+ <dependency >
23+ <groupId >org.mock-server</groupId >
24+ <artifactId >mockserver-netty</artifactId >
25+ <version >5.13.2</version >
26+ </dependency >
27+ <dependency >
28+ <groupId >com.arangodb</groupId >
29+ <artifactId >arangodb-java-driver</artifactId >
30+ <version >${version} </version >
31+ </dependency >
32+ <dependency >
33+ <groupId >com.arangodb</groupId >
34+ <artifactId >jackson-dataformat-velocypack</artifactId >
35+ <version >3.0.1</version >
36+ </dependency >
37+ <dependency >
38+ <groupId >eu.rekawek.toxiproxy</groupId >
39+ <artifactId >toxiproxy-java</artifactId >
40+ <version >2.1.7</version >
41+ </dependency >
42+ <dependency >
43+ <groupId >ch.qos.logback</groupId >
44+ <artifactId >logback-classic</artifactId >
45+ <version >1.2.11</version >
46+ </dependency >
47+ <dependency >
48+ <groupId >org.assertj</groupId >
49+ <artifactId >assertj-core</artifactId >
50+ <version >3.23.1</version >
51+ </dependency >
52+ <dependency >
53+ <groupId >org.junit.platform</groupId >
54+ <artifactId >junit-platform-launcher</artifactId >
55+ </dependency >
56+ <dependency >
57+ <groupId >org.junit.jupiter</groupId >
58+ <artifactId >junit-jupiter-api</artifactId >
59+ </dependency >
60+ <dependency >
61+ <groupId >org.junit.jupiter</groupId >
62+ <artifactId >junit-jupiter-engine</artifactId >
63+ </dependency >
64+ <dependency >
65+ <groupId >org.junit.jupiter</groupId >
66+ <artifactId >junit-jupiter-params</artifactId >
67+ </dependency >
68+ <dependency >
69+ <groupId >org.awaitility</groupId >
70+ <artifactId >awaitility</artifactId >
71+ <version >4.2.0</version >
72+ </dependency >
73+ </dependencies >
74+
75+ <dependencyManagement >
76+ <dependencies >
77+ <dependency >
78+ <groupId >io.netty</groupId >
79+ <artifactId >netty-bom</artifactId >
80+ <version >4.1.84.Final</version >
81+ <scope >import</scope >
82+ <type >pom</type >
83+ </dependency >
84+ <dependency >
85+ <groupId >com.fasterxml.jackson</groupId >
86+ <artifactId >jackson-bom</artifactId >
87+ <version >2.13.4</version >
88+ <scope >import</scope >
89+ <type >pom</type >
90+ </dependency >
91+ <dependency >
92+ <groupId >org.junit</groupId >
93+ <artifactId >junit-bom</artifactId >
94+ <version >5.9.1</version >
95+ <type >pom</type >
96+ <scope >import</scope >
97+ </dependency >
98+ </dependencies >
99+ </dependencyManagement >
100+
101+ <build >
102+ <plugins >
103+ <plugin >
104+ <groupId >org.apache.maven.plugins</groupId >
105+ <artifactId >maven-surefire-plugin</artifactId >
106+ <version >3.0.0-M5</version >
107+ </plugin >
108+ </plugins >
109+ </build >
110+
111+ </project >
0 commit comments