|
195 | 195 | <!-- We're on 1.7 --> |
196 | 196 | <plugin> |
197 | 197 | <artifactId>maven-compiler-plugin</artifactId> |
198 | | - <version>3.1</version> |
| 198 | + <version>3.7.0</version> |
199 | 199 | <configuration> |
200 | | - <source>1.7</source> |
201 | | - <target>1.7</target> |
| 200 | + <source>1.8</source> |
| 201 | + <target>1.8</target> |
202 | 202 | </configuration> |
203 | 203 | </plugin> |
204 | 204 |
|
205 | 205 | <plugin> |
206 | 206 | <artifactId>maven-jar-plugin</artifactId> |
207 | | - <version>2.4</version> |
| 207 | + <version>3.1.0</version> |
208 | 208 | </plugin> |
209 | 209 |
|
210 | 210 | <!-- sure-fire --> |
211 | 211 | <plugin> |
212 | 212 | <groupId>org.apache.maven.plugins</groupId> |
213 | 213 | <artifactId>maven-surefire-plugin</artifactId> |
214 | | - <version>2.16</version> |
| 214 | + <version>2.21.0</version> |
215 | 215 | <configuration> |
216 | 216 | <!-- set default locale of the test JVM to en_US because some tests expect e.g. the dollar sign as currency symbol --> |
217 | 217 | <argLine>-Duser.language=en -Duser.country=US</argLine> |
|
262 | 262 | <plugin> |
263 | 263 | <groupId>org.codehaus.mojo</groupId> |
264 | 264 | <artifactId>cobertura-maven-plugin</artifactId> |
265 | | - <version>2.6</version> |
| 265 | + <version>2.7</version> |
266 | 266 | <configuration> |
267 | 267 | <format>xml</format> |
268 | 268 | <maxmem>256m</maxmem> |
|
282 | 282 | <plugin> |
283 | 283 | <groupId>org.eluder.coveralls</groupId> |
284 | 284 | <artifactId>coveralls-maven-plugin</artifactId> |
285 | | - <version>2.1.0</version> |
| 285 | + <version>4.3.0</version> |
286 | 286 | </plugin> |
287 | 287 |
|
288 | 288 | <plugin> |
|
311 | 311 | <plugin> |
312 | 312 | <groupId>org.sonatype.plugins</groupId> |
313 | 313 | <artifactId>nexus-staging-maven-plugin</artifactId> |
314 | | - <version>1.6.3</version> |
| 314 | + <version>1.6.8</version> |
315 | 315 | <extensions>true</extensions> |
316 | 316 | <configuration> |
317 | 317 | <serverId>ossrh</serverId> |
|
356 | 356 | <plugin> |
357 | 357 | <groupId>org.apache.maven.plugins</groupId> |
358 | 358 | <artifactId>maven-surefire-plugin</artifactId> |
359 | | - <version>2.12.3</version> |
| 359 | + <version>2.21.0</version> |
360 | 360 | <inherited>false</inherited> |
361 | 361 | <configuration> |
362 | 362 | <includes> |
|
412 | 412 | <plugin> |
413 | 413 | <groupId>org.apache.maven.plugins</groupId> |
414 | 414 | <artifactId>maven-source-plugin</artifactId> |
415 | | - <version>2.2.1</version> |
| 415 | + <version>3.0.1</version> |
416 | 416 | <executions> |
417 | 417 | <execution> |
418 | 418 | <id>attach-sources</id> |
|
427 | 427 | <plugin> |
428 | 428 | <groupId>org.apache.maven.plugins</groupId> |
429 | 429 | <artifactId>maven-javadoc-plugin</artifactId> |
430 | | - <version>2.9.1</version> |
| 430 | + <version>3.0.1</version> |
431 | 431 | <executions> |
432 | 432 | <execution> |
433 | 433 | <id>attach-javadocs</id> |
|
442 | 442 | <plugin> |
443 | 443 | <groupId>org.apache.maven.plugins</groupId> |
444 | 444 | <artifactId>maven-gpg-plugin</artifactId> |
445 | | - <version>1.4</version> |
| 445 | + <version>1.6</version> |
446 | 446 | <executions> |
447 | 447 | <execution> |
448 | 448 | <id>sign-artifacts</id> |
|
453 | 453 | </execution> |
454 | 454 | </executions> |
455 | 455 | </plugin> |
456 | | - |
457 | | - <!-- Release plugin --> |
458 | | - <plugin> |
459 | | - <groupId>org.apache.maven.plugins</groupId> |
460 | | - <artifactId>maven-release-plugin</artifactId> |
461 | | - <version>2.4.2</version> |
462 | | - <configuration> |
463 | | - <mavenExecutorId>forked-path</mavenExecutorId> |
464 | | - <useReleaseProfile>false</useReleaseProfile> |
465 | | - <arguments>-Psonatype-oss-release</arguments> |
466 | | - <autoVersionSubmodules>true</autoVersionSubmodules> |
467 | | - <tagNameFormat>v@{project.version}</tagNameFormat> |
468 | | - <scmCommentPrefix>release</scmCommentPrefix> |
469 | | - <goals>deploy</goals> |
470 | | - </configuration> |
471 | | - </plugin> |
472 | 456 | </plugins> |
473 | 457 | </build> |
474 | 458 | </profile> |
|
0 commit comments