|
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>
|
223 | 223 |
|
224 | 224 |
|
225 | 225 | <!-- 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> --> |
249 | 249 | <!-- end JACOCO -->
|
250 | 250 |
|
251 | 251 | </plugins>
|
|
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