Skip to content

Commit af6cd78

Browse files
committed
deps upd
1 parent 09d7f17 commit af6cd78

8 files changed

+19
-60
lines changed

Diff for: pom.xml

+12-54
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
<groupId>com.arangodb</groupId>
66
<artifactId>velocypack</artifactId>
7-
<version>2.3.0</version>
7+
<version>2.3.1-SNAPSHOT</version>
88
<inceptionYear>2017</inceptionYear>
99
<packaging>jar</packaging>
1010

@@ -22,11 +22,6 @@
2222

2323
<properties>
2424
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
25-
<slf4j-api.version>1.7.13</slf4j-api.version>
26-
<logback-classic.version>1.1.3</logback-classic.version>
27-
<hamcrest-all.version>1.3</hamcrest-all.version>
28-
<junit.version>4.12</junit.version>
29-
<jmh.version>1.21</jmh.version>
3025
</properties>
3126

3227
<developers>
@@ -196,34 +191,41 @@
196191
<dependency>
197192
<groupId>org.slf4j</groupId>
198193
<artifactId>slf4j-api</artifactId>
194+
<version>1.7.30</version>
199195
</dependency>
200196
<dependency>
201-
<groupId>com.fasterxml.jackson.core</groupId>
202-
<artifactId>jackson-core</artifactId>
203-
</dependency>
197+
<groupId>com.fasterxml.jackson.core</groupId>
198+
<artifactId>jackson-core</artifactId>
199+
<version>2.9.10</version>
200+
</dependency>
204201
<dependency>
205202
<groupId>ch.qos.logback</groupId>
206203
<artifactId>logback-classic</artifactId>
204+
<version>1.2.3</version>
207205
<scope>test</scope>
208206
</dependency>
209-
<dependency>
207+
<dependency>
210208
<groupId>junit</groupId>
211209
<artifactId>junit</artifactId>
210+
<version>4.13</version>
212211
<scope>test</scope>
213212
</dependency>
214213
<dependency>
215214
<groupId>org.hamcrest</groupId>
216215
<artifactId>hamcrest-all</artifactId>
216+
<version>1.3</version>
217217
<scope>test</scope>
218218
</dependency>
219219
<dependency>
220220
<groupId>org.openjdk.jmh</groupId>
221221
<artifactId>jmh-core</artifactId>
222+
<version>1.22</version>
222223
<scope>test</scope>
223224
</dependency>
224225
<dependency>
225226
<groupId>org.openjdk.jmh</groupId>
226227
<artifactId>jmh-generator-annprocess</artifactId>
228+
<version>1.22</version>
227229
<scope>test</scope>
228230
</dependency>
229231
<dependency>
@@ -240,50 +242,6 @@
240242
</dependency>
241243
</dependencies>
242244

243-
<dependencyManagement>
244-
<dependencies>
245-
<dependency>
246-
<groupId>org.slf4j</groupId>
247-
<artifactId>slf4j-api</artifactId>
248-
<version>${slf4j-api.version}</version>
249-
</dependency>
250-
<dependency>
251-
<groupId>com.fasterxml.jackson</groupId>
252-
<artifactId>jackson-bom</artifactId>
253-
<version>2.9.10.20200223</version>
254-
<scope>import</scope>
255-
<type>pom</type>
256-
</dependency>
257-
<dependency>
258-
<groupId>ch.qos.logback</groupId>
259-
<artifactId>logback-classic</artifactId>
260-
<version>${logback-classic.version}</version>
261-
</dependency>
262-
<dependency>
263-
<groupId>junit</groupId>
264-
<artifactId>junit</artifactId>
265-
<version>${junit.version}</version>
266-
</dependency>
267-
<dependency>
268-
<groupId>org.hamcrest</groupId>
269-
<artifactId>hamcrest-all</artifactId>
270-
<version>${hamcrest-all.version}</version>
271-
</dependency>
272-
<dependency>
273-
<groupId>org.openjdk.jmh</groupId>
274-
<artifactId>jmh-core</artifactId>
275-
<version>${jmh.version}</version>
276-
<scope>test</scope>
277-
</dependency>
278-
<dependency>
279-
<groupId>org.openjdk.jmh</groupId>
280-
<artifactId>jmh-generator-annprocess</artifactId>
281-
<version>${jmh.version}</version>
282-
<scope>test</scope>
283-
</dependency>
284-
</dependencies>
285-
</dependencyManagement>
286-
287245
<scm>
288246
<url>https://github.com/arangodb/java-velocypack</url>
289247
<connection>scm:git:git://github.com/arangodb/java-velocypack.git</connection>

Diff for: src/test/java/com/arangodb/velocypack/VPackBuilderTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131

3232
import static org.hamcrest.Matchers.is;
3333
import static org.hamcrest.Matchers.notNullValue;
34-
import static org.junit.Assert.assertThat;
34+
import static org.hamcrest.MatcherAssert.assertThat;
3535
import static org.junit.Assert.fail;
3636

3737
/**

Diff for: src/test/java/com/arangodb/velocypack/VPackModuleTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
package com.arangodb.velocypack;
2222

2323
import static org.hamcrest.Matchers.is;
24-
import static org.junit.Assert.assertThat;
24+
import static org.hamcrest.MatcherAssert.assertThat;
2525

2626
import org.junit.Test;
2727

Diff for: src/test/java/com/arangodb/velocypack/VPackParserTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222

2323
import static org.hamcrest.Matchers.containsString;
2424
import static org.hamcrest.Matchers.is;
25-
import static org.junit.Assert.assertThat;
25+
import static org.hamcrest.MatcherAssert.assertThat;
2626

2727
import java.util.Date;
2828

Diff for: src/test/java/com/arangodb/velocypack/VPackSerializeDeserializeTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
import static org.hamcrest.Matchers.is;
2525
import static org.hamcrest.Matchers.notNullValue;
2626
import static org.hamcrest.Matchers.nullValue;
27-
import static org.junit.Assert.assertThat;
27+
import static org.hamcrest.MatcherAssert.assertThat;
2828

2929
import java.lang.annotation.ElementType;
3030
import java.lang.annotation.Retention;

Diff for: src/test/java/com/arangodb/velocypack/VPackSliceTest.java

+1
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
import java.util.Iterator;
3232
import java.util.Map.Entry;
3333

34+
import static org.hamcrest.MatcherAssert.assertThat;
3435
import static org.hamcrest.Matchers.is;
3536
import static org.junit.Assert.*;
3637

Diff for: src/test/java/com/arangodb/velocypack/util/DateUtilTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
package com.arangodb.velocypack.util;
2222

2323
import static org.hamcrest.Matchers.is;
24-
import static org.junit.Assert.assertThat;
24+
import static org.hamcrest.MatcherAssert.assertThat;
2525

2626
import java.util.Date;
2727

Diff for: src/test/java/com/arangodb/velocypack/util/SliceIteratorTest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
package com.arangodb.velocypack.util;
2222

2323
import static org.hamcrest.Matchers.is;
24-
import static org.junit.Assert.assertThat;
24+
import static org.hamcrest.MatcherAssert.assertThat;
2525

2626
import java.util.Map.Entry;
2727
import java.util.NoSuchElementException;

0 commit comments

Comments
 (0)