Skip to content

Commit f2bea32

Browse files
committed
update dependencies versions
1 parent 1dd05c8 commit f2bea32

File tree

2 files changed

+38
-38
lines changed

2 files changed

+38
-38
lines changed

pom.xml

Lines changed: 37 additions & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -65,14 +65,14 @@
6565
<properties>
6666
<java.version>1.8</java.version>
6767
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
68-
<version.jackson>2.8.2</version.jackson>
69-
<version.slf4j>1.7.21</version.slf4j>
70-
<version.common-lang>2.6</version.common-lang>
71-
<version.logback>1.1.7</version.logback>
68+
<version.jackson>2.8.7</version.jackson>
69+
<version.slf4j>1.7.25</version.slf4j>
70+
<version.common-lang3>3.5</version.common-lang3>
71+
<version.logback>1.2.3</version.logback>
7272
<version.junit>4.12</version.junit>
73-
<version.mockito>2.1.0-RC.1</version.mockito>
73+
<version.mockito>2.7.21</version.mockito>
7474
<version.hamcrest>1.3</version.hamcrest>
75-
<version.undertow>1.4.0.Final</version.undertow>
75+
<version.undertow>1.4.11.Final</version.undertow>
7676

7777
</properties>
7878

@@ -94,9 +94,9 @@
9494
<version>${version.slf4j}</version>
9595
</dependency>
9696
<dependency>
97-
<groupId>commons-lang</groupId>
98-
<artifactId>commons-lang</artifactId>
99-
<version>${version.common-lang}</version>
97+
<groupId>org.apache.commons</groupId>
98+
<artifactId>commons-lang3</artifactId>
99+
<version>${version.common-lang3}</version>
100100
</dependency>
101101

102102
<dependency>
@@ -156,7 +156,7 @@
156156
<plugin>
157157
<groupId>org.sonatype.plugins</groupId>
158158
<artifactId>nexus-staging-maven-plugin</artifactId>
159-
<version>1.6.7</version>
159+
<version>1.6.8</version>
160160
<extensions>true</extensions>
161161
<configuration>
162162
<serverId>ossrh</serverId>
@@ -201,7 +201,7 @@
201201
<plugin>
202202
<groupId>org.apache.maven.plugins</groupId>
203203
<artifactId>maven-compiler-plugin</artifactId>
204-
<version>2.5.1</version>
204+
<version>3.6.1</version>
205205
<configuration>
206206
<source>${java.version}</source>
207207
<target>${java.version}</target>
@@ -211,41 +211,41 @@
211211
<plugin>
212212
<groupId>org.apache.maven.plugins</groupId>
213213
<artifactId>maven-surefire-plugin</artifactId>
214-
<version>2.14</version>
214+
<version>2.19.1</version>
215215
<dependencies>
216216
<dependency>
217217
<groupId>org.apache.maven.surefire</groupId>
218218
<artifactId>surefire-junit47</artifactId>
219-
<version>2.14</version>
219+
<version>2.19.1</version>
220220
</dependency>
221221
</dependencies>
222222
</plugin>
223223

224224

225225
<!-- JACOCO added for code coverage -->
226-
<plugin>
227-
<groupId>org.jacoco</groupId>
228-
<artifactId>jacoco-maven-plugin</artifactId>
229-
<version>0.7.4.201502262128</version>
230-
<executions>
231-
<execution>
232-
<id>pre-unit-test</id>
233-
<goals>
234-
<goal>prepare-agent</goal>
235-
</goals>
236-
<configuration>
237-
<propertyName>surefireArgLine</propertyName>
238-
</configuration>
239-
</execution>
240-
<execution>
241-
<id>post-unit-test</id>
242-
<phase>test</phase>
243-
<goals>
244-
<goal>report</goal>
245-
</goals>
246-
</execution>
247-
</executions>
248-
</plugin>
226+
<!-- <plugin> -->
227+
<!-- <groupId>org.jacoco</groupId> -->
228+
<!-- <artifactId>jacoco-maven-plugin</artifactId> -->
229+
<!-- <version>0.7.9</version> -->
230+
<!-- <executions> -->
231+
<!-- <execution> -->
232+
<!-- <id>pre-unit-test</id> -->
233+
<!-- <goals> -->
234+
<!-- <goal>prepare-agent</goal> -->
235+
<!-- </goals> -->
236+
<!-- <configuration> -->
237+
<!-- <propertyName>surefireArgLine</propertyName> -->
238+
<!-- </configuration> -->
239+
<!-- </execution> -->
240+
<!-- <execution> -->
241+
<!-- <id>post-unit-test</id> -->
242+
<!-- <phase>test</phase> -->
243+
<!-- <goals> -->
244+
<!-- <goal>report</goal> -->
245+
<!-- </goals> -->
246+
<!-- </execution> -->
247+
<!-- </executions> -->
248+
<!-- </plugin> -->
249249
<!-- end JACOCO -->
250250

251251
</plugins>
@@ -275,7 +275,7 @@
275275
<plugin>
276276
<groupId>org.apache.maven.plugins</groupId>
277277
<artifactId>maven-gpg-plugin</artifactId>
278-
<version>1.5</version>
278+
<version>1.6</version>
279279
<executions>
280280
<execution>
281281
<id>sign-artifacts</id>

src/main/java/com/networknt/schema/BaseJsonValidator.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
package com.networknt.schema;
1818

1919
import com.fasterxml.jackson.databind.JsonNode;
20-
import org.apache.commons.lang.StringUtils;
20+
import org.apache.commons.lang3.StringUtils;
2121
import org.slf4j.Logger;
2222

2323
import java.net.MalformedURLException;

0 commit comments

Comments
 (0)