Skip to content

Commit f98460f

Browse files
committed
deps upd
1 parent d289f8d commit f98460f

File tree

2 files changed

+29
-5
lines changed

2 files changed

+29
-5
lines changed

pom.xml

Lines changed: 28 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -62,6 +62,24 @@
6262

6363
<build>
6464
<plugins>
65+
<plugin>
66+
<groupId>org.apache.maven.plugins</groupId>
67+
<artifactId>maven-enforcer-plugin</artifactId>
68+
<version>3.0.0-M3</version>
69+
<executions>
70+
<execution>
71+
<id>enforce</id>
72+
<goals>
73+
<goal>enforce</goal>
74+
</goals>
75+
<configuration>
76+
<rules>
77+
<dependencyConvergence/>
78+
</rules>
79+
</configuration>
80+
</execution>
81+
</executions>
82+
</plugin>
6583
<plugin>
6684
<groupId>org.sonatype.plugins</groupId>
6785
<artifactId>nexus-staging-maven-plugin</artifactId>
@@ -183,7 +201,6 @@
183201
<dependency>
184202
<groupId>com.fasterxml.jackson.core</groupId>
185203
<artifactId>jackson-core</artifactId>
186-
<version>2.11.2</version>
187204
<scope>test</scope>
188205
</dependency>
189206
<dependency>
@@ -194,7 +211,7 @@
194211
<dependency>
195212
<groupId>com.arangodb</groupId>
196213
<artifactId>jackson-dataformat-velocypack</artifactId>
197-
<version>0.2.0</version>
214+
<version>0.3.0</version>
198215
<scope>test</scope>
199216
</dependency>
200217
<dependency>
@@ -207,10 +224,17 @@
207224

208225
<dependencyManagement>
209226
<dependencies>
227+
<dependency>
228+
<groupId>com.fasterxml.jackson</groupId>
229+
<artifactId>jackson-bom</artifactId>
230+
<version>2.11.3</version>
231+
<scope>import</scope>
232+
<type>pom</type>
233+
</dependency>
210234
<dependency>
211235
<groupId>org.apache.httpcomponents</groupId>
212236
<artifactId>httpclient</artifactId>
213-
<version>4.5.12</version>
237+
<version>4.5.13</version>
214238
</dependency>
215239
<dependency>
216240
<groupId>org.apache.httpcomponents</groupId>
@@ -230,7 +254,7 @@
230254
<dependency>
231255
<groupId>com.arangodb</groupId>
232256
<artifactId>velocypack</artifactId>
233-
<version>2.4.1</version>
257+
<version>2.5.0</version>
234258
</dependency>
235259
<dependency>
236260
<groupId>org.slf4j</groupId>

src/test/java/com/arangodb/async/ArangoCollectionTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ public void getDocumentAsJson() throws InterruptedException, ExecutionException
200200
db.collection(COLLECTION_NAME).getDocument("docRaw", String.class, null)
201201
.whenComplete((readResult, ex) -> {
202202
assertThat(readResult.contains("\"_key\":\"docRaw\""), is(true));
203-
assertThat(readResult.contains("\"_id\":\"db_collection_test\\/docRaw\""), is(true));
203+
assertThat(readResult.contains("\"_id\":\"db_collection_test/docRaw\""), is(true));
204204
})
205205
.get();
206206
}

0 commit comments

Comments
 (0)