|
22 | 22 | <dockerfileName>Dockerfile</dockerfileName> |
23 | 23 |
|
24 | 24 | <!-- plugin versions --> |
25 | | - <checkstyle-plugin.version>3.4.0</checkstyle-plugin.version> |
26 | | - <checkstyle.version>10.17.0</checkstyle.version> |
27 | | - <download-plugin.version>1.9.0</download-plugin.version> |
28 | | - <git-commmit-plugin.version>4.9.10</git-commmit-plugin.version> |
| 25 | + <download-plugin.version>2.0.0</download-plugin.version> |
| 26 | + <git-commit-id-plugin.version>9.0.1</git-commit-id-plugin.version> |
29 | 27 |
|
30 | | - <gmavenplus-plugin.version>3.0.2</gmavenplus-plugin.version> |
| 28 | + <gmavenplus-plugin.version>4.2.1</gmavenplus-plugin.version> |
31 | 29 | <os-maven-plugin.version>1.7.1</os-maven-plugin.version> |
32 | 30 | <build-helper-maven-plugin.version>3.6.0</build-helper-maven-plugin.version> |
33 | 31 | <protobuf-maven-plugin.version>0.6.1</protobuf-maven-plugin.version> |
|
65 | 63 | <dependency> |
66 | 64 | <groupId>io.vertx</groupId> |
67 | 65 | <artifactId>vertx-mysql-client</artifactId> |
68 | | - <version>4.5.9</version> |
69 | 66 | </dependency> |
70 | 67 | <dependency> |
71 | 68 | <groupId>io.vertx</groupId> |
|
236 | 233 | <groupId>io.github.jamsesso</groupId> |
237 | 234 | <artifactId>json-logic-java</artifactId> |
238 | 235 | </dependency> |
239 | | - <dependency> |
240 | | - <groupId>org.apache.velocity</groupId> |
241 | | - <artifactId>velocity-engine-core</artifactId> |
242 | | - <version>2.3</version> |
243 | | - </dependency> |
244 | 236 | <!-- Test --> |
245 | 237 | <dependency> |
246 | 238 | <groupId>org.junit.jupiter</groupId> |
|
409 | 401 | </execution> |
410 | 402 | </executions> |
411 | 403 | </plugin> |
412 | | - <plugin> |
413 | | - <groupId>org.apache.maven.plugins</groupId> |
414 | | - <artifactId>maven-checkstyle-plugin</artifactId> |
415 | | - <version>${checkstyle-plugin.version}</version> |
416 | | - <configuration> |
417 | | - <!-- Project rooted path to CheckStyle configuration file. --> |
418 | | - <configLocation>checkstyle.xml</configLocation> |
419 | | - <encoding>UTF-8</encoding> |
420 | | - <consoleOutput>true</consoleOutput> |
421 | | - <!-- true if project build should fails on any style violation. --> |
422 | | - <failsOnError>true</failsOnError> |
423 | | - <linkXRef>false</linkXRef> |
424 | | - <includeTestSourceDirectory>true</includeTestSourceDirectory> |
425 | | - </configuration> |
426 | | - <dependencies> |
427 | | - <dependency> |
428 | | - <groupId>com.puppycrawl.tools</groupId> |
429 | | - <artifactId>checkstyle</artifactId> |
430 | | - <version>${checkstyle.version}</version> |
431 | | - </dependency> |
432 | | - </dependencies> |
433 | | - </plugin> |
434 | 404 | <plugin> |
435 | 405 | <groupId>org.codehaus.gmavenplus</groupId> |
436 | 406 | <artifactId>gmavenplus-plugin</artifactId> |
|
466 | 436 | </execution> |
467 | 437 | </executions> |
468 | 438 | </plugin> |
469 | | - <plugin> |
470 | | - <groupId>org.apache.maven.plugins</groupId> |
471 | | - <artifactId>maven-checkstyle-plugin</artifactId> |
472 | | - <executions> |
473 | | - <execution> |
474 | | - <phase>validate</phase> |
475 | | - <goals> |
476 | | - <goal>checkstyle</goal> |
477 | | - </goals> |
478 | | - </execution> |
479 | | - </executions> |
480 | | - </plugin> |
481 | 439 | <plugin> |
482 | 440 | <groupId>org.xolstice.maven.plugins</groupId> |
483 | 441 | <artifactId>protobuf-maven-plugin</artifactId> |
|
503 | 461 | </configuration> |
504 | 462 | </plugin> |
505 | 463 | <plugin> |
506 | | - <groupId>com.googlecode.maven-download-plugin</groupId> |
| 464 | + <groupId>io.github.download-maven-plugin</groupId> |
507 | 465 | <artifactId>download-maven-plugin</artifactId> |
508 | 466 | <version>${download-plugin.version}</version> |
509 | 467 | <executions> |
|
566 | 524 | </configuration> |
567 | 525 | </plugin> |
568 | 526 | <plugin> |
569 | | - <groupId>pl.project13.maven</groupId> |
570 | | - <artifactId>git-commit-id-plugin</artifactId> |
571 | | - <version>${git-commmit-plugin.version}</version> |
| 527 | + <groupId>io.github.git-commit-id</groupId> |
| 528 | + <artifactId>git-commit-id-maven-plugin</artifactId> |
| 529 | + <version>${git-commit-id-plugin.version}</version> |
572 | 530 | <executions> |
573 | 531 | <execution> |
574 | 532 | <id>get-the-git-infos</id> |
|
701 | 659 | </plugins> |
702 | 660 | </build> |
703 | 661 |
|
704 | | - <repositories> |
705 | | - <repository> |
706 | | - <id>central</id> |
707 | | - <url>https://repo.maven.apache.org/maven2</url> |
708 | | - <releases> |
709 | | - <enabled>true</enabled> |
710 | | - </releases> |
711 | | - <snapshots> |
712 | | - <enabled>false</enabled> |
713 | | - </snapshots> |
714 | | - </repository> |
715 | | - </repositories> |
716 | | - |
717 | | - <reporting> |
718 | | - <plugins> |
719 | | - <plugin> |
720 | | - <groupId>org.apache.maven.plugins</groupId> |
721 | | - <artifactId>maven-checkstyle-plugin</artifactId> |
722 | | - <reportSets> |
723 | | - <reportSet> |
724 | | - <reports> |
725 | | - <report>checkstyle</report> |
726 | | - </reports> |
727 | | - </reportSet> |
728 | | - </reportSets> |
729 | | - </plugin> |
730 | | - </plugins> |
731 | | - </reporting> |
732 | | - |
733 | 662 | <profiles> |
734 | 663 | <profile> |
735 | 664 | <!-- Run only one application container instance on fixed ports for debugging purposes --> |
|
0 commit comments