|
19 | 19 | <modelVersion>4.0.0</modelVersion>
|
20 | 20 | <groupId>com.networknt</groupId>
|
21 | 21 | <artifactId>json-schema-validator</artifactId>
|
22 |
| - <version>0.1.5</version> |
| 22 | + <version>0.1.6</version> |
23 | 23 | <description>A json schema validator that supports draft v4</description>
|
24 | 24 | <url>https://github.com/networknt/json-schema-validator</url>
|
25 | 25 | <name>JsonSchemaValidator</name>
|
|
65 | 65 | <properties>
|
66 | 66 | <java.version>1.8</java.version>
|
67 | 67 | <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> |
72 | 72 | <version.junit>4.12</version.junit>
|
73 |
| - <version.mockito>2.1.0-RC.1</version.mockito> |
| 73 | + <version.mockito>2.7.21</version.mockito> |
74 | 74 | <version.hamcrest>1.3</version.hamcrest>
|
75 |
| - <version.undertow>1.4.0.Final</version.undertow> |
| 75 | + <version.undertow>1.4.11.Final</version.undertow> |
76 | 76 |
|
77 | 77 | </properties>
|
78 | 78 |
|
|
94 | 94 | <version>${version.slf4j}</version>
|
95 | 95 | </dependency>
|
96 | 96 | <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> |
100 | 100 | </dependency>
|
101 | 101 |
|
102 | 102 | <dependency>
|
|
156 | 156 | <plugin>
|
157 | 157 | <groupId>org.sonatype.plugins</groupId>
|
158 | 158 | <artifactId>nexus-staging-maven-plugin</artifactId>
|
159 |
| - <version>1.6.7</version> |
| 159 | + <version>1.6.8</version> |
160 | 160 | <extensions>true</extensions>
|
161 | 161 | <configuration>
|
162 | 162 | <serverId>ossrh</serverId>
|
|
201 | 201 | <plugin>
|
202 | 202 | <groupId>org.apache.maven.plugins</groupId>
|
203 | 203 | <artifactId>maven-compiler-plugin</artifactId>
|
204 |
| - <version>2.5.1</version> |
| 204 | + <version>3.6.1</version> |
205 | 205 | <configuration>
|
206 | 206 | <source>${java.version}</source>
|
207 | 207 | <target>${java.version}</target>
|
|
211 | 211 | <plugin>
|
212 | 212 | <groupId>org.apache.maven.plugins</groupId>
|
213 | 213 | <artifactId>maven-surefire-plugin</artifactId>
|
214 |
| - <version>2.14</version> |
| 214 | + <version>2.19.1</version> |
215 | 215 | <dependencies>
|
216 | 216 | <dependency>
|
217 | 217 | <groupId>org.apache.maven.surefire</groupId>
|
218 | 218 | <artifactId>surefire-junit47</artifactId>
|
219 |
| - <version>2.14</version> |
| 219 | + <version>2.19.1</version> |
220 | 220 | </dependency>
|
221 | 221 | </dependencies>
|
222 | 222 | </plugin>
|
|
226 | 226 | <plugin>
|
227 | 227 | <groupId>org.jacoco</groupId>
|
228 | 228 | <artifactId>jacoco-maven-plugin</artifactId>
|
229 |
| - <version>0.7.4.201502262128</version> |
| 229 | + <version>0.7.9</version> |
230 | 230 | <executions>
|
231 | 231 | <execution>
|
232 | 232 | <id>pre-unit-test</id>
|
|
275 | 275 | <plugin>
|
276 | 276 | <groupId>org.apache.maven.plugins</groupId>
|
277 | 277 | <artifactId>maven-gpg-plugin</artifactId>
|
278 |
| - <version>1.5</version> |
| 278 | + <version>1.6</version> |
279 | 279 | <executions>
|
280 | 280 | <execution>
|
281 | 281 | <id>sign-artifacts</id>
|
|
0 commit comments