|
73 | 73 | <properties> |
74 | 74 | <java.version>11</java.version> |
75 | 75 | <version.maven>3.6.3</version.maven> |
76 | | - <pmdVersion>6.46.0</pmdVersion> |
77 | | - |
78 | 76 | <maven.compiler.source>${java.version}</maven.compiler.source> |
79 | 77 | <maven.compiler.target>${java.version}</maven.compiler.target> |
80 | | - |
81 | 78 | <spring-boot.repackage.layout>JAR</spring-boot.repackage.layout> |
| 79 | + <version.spring-boot-maven-plugin>${project.parent.version}</version.spring-boot-maven-plugin> |
| 80 | + <version.thymeleaf-testing>3.1.0.M2</version.thymeleaf-testing> |
| 81 | + <version.thymeleaf-spring-data-dialect>3.5.0</version.thymeleaf-spring-data-dialect> |
82 | 82 |
|
83 | | - <spring-boot-maven-plugin.version>${project.parent.version}</spring-boot-maven-plugin.version> |
84 | | - |
85 | | - <thymeleaf-testing.version>3.1.0.M2</thymeleaf-testing.version> |
86 | | - <thymeleaf-spring-data-dialect.version>3.5.0</thymeleaf-spring-data-dialect.version> |
87 | 83 |
|
88 | 84 | <!-- Webjars --> |
89 | 85 | <webjars.jquery.version>3.6.0</webjars.jquery.version> |
|
95 | 91 |
|
96 | 92 | <!-- Unit and Integration Testing --> |
97 | 93 | <skipTests>true</skipTests> |
98 | | - |
99 | 94 | <xmlunit.version>2.9.0</xmlunit.version> |
100 | 95 | <htmlunit.version>2.63.0</htmlunit.version> |
101 | 96 | <groovy-all.version>2.4.21</groovy-all.version> |
102 | 97 | <hamcrest.version>2.2</hamcrest.version> |
103 | 98 | <jsoup.version>1.14.2</jsoup.version> |
| 99 | + <pmdVersion>6.46.0</pmdVersion> |
104 | 100 |
|
105 | 101 | <!-- SCM and Releasing --> |
106 | 102 | <version.org.apache.maven.scm>1.13.0</version.org.apache.maven.scm> |
|
113 | 109 | <docker-compose-maven-plugin.ignorePullFailures>true</docker-compose-maven-plugin.ignorePullFailures> |
114 | 110 | <docker-compose-maven-plugin.detachedMode>true</docker-compose-maven-plugin.detachedMode> |
115 | 111 |
|
| 112 | + <!-- Maven Plugins --> |
| 113 | + |
| 114 | + |
116 | 115 | <maven-release-plugin.version>3.0.0-M6</maven-release-plugin.version> |
117 | 116 |
|
118 | 117 | <!-- Maven Reports for Site --> |
119 | | - <maven-site-plugin.version>3.12.0</maven-site-plugin.version> |
120 | | - <maven-project-info-reports-plugin.version>3.3.0</maven-project-info-reports-plugin.version> |
121 | | - <maven-checkstyle-plugin.version>3.1.2</maven-checkstyle-plugin.version> |
122 | | - <maven-jxr-plugin.version>3.2.0</maven-jxr-plugin.version> |
| 118 | + <version.maven-site-plugin>3.12.0</version.maven-site-plugin> |
| 119 | + <version.maven-project-info-reports-plugin>3.3.0</version.maven-project-info-reports-plugin> |
| 120 | + <version.maven-checkstyle-plugin>3.1.2</version.maven-checkstyle-plugin> |
| 121 | + <version.maven-jxr-plugin>3.2.0</version.maven-jxr-plugin> |
123 | 122 | <maven-pmd-plugin.version>3.17.0</maven-pmd-plugin.version> |
124 | | - <spotbugs-maven-plugin.version>4.7.0.0</spotbugs-maven-plugin.version> |
125 | | - <maven-surefire-report-plugin.version>3.0.0-M7</maven-surefire-report-plugin.version> |
126 | | - <asciidoctor-maven-plugin.version>2.2.2</asciidoctor-maven-plugin.version> |
127 | | - <doxia-module-markdown.version>1.11.1</doxia-module-markdown.version> |
128 | | - <maven-enforcer-plugin.version>3.1.0</maven-enforcer-plugin.version> |
| 123 | + <version.spotbugs-maven-plugin>4.7.0.0</version.spotbugs-maven-plugin> |
| 124 | + <version.maven-surefire-report-plugin>3.0.0-M7</version.maven-surefire-report-plugin> |
| 125 | + <version.asciidoctor-maven-plugin>2.2.2</version.asciidoctor-maven-plugin> |
| 126 | + <version.doxia-module-markdown>1.11.1</version.doxia-module-markdown> |
| 127 | + <version.maven-enforcer-plugin>3.1.0</version.maven-enforcer-plugin> |
129 | 128 | </properties> |
130 | 129 |
|
131 | 130 | <repositories> |
|
363 | 362 | <dependency> |
364 | 363 | <groupId>org.thymeleaf</groupId> |
365 | 364 | <artifactId>thymeleaf-testing</artifactId> |
366 | | - <version>${thymeleaf-testing.version}</version> |
| 365 | + <version>${version.thymeleaf-testing}</version> |
367 | 366 | <scope>test</scope> |
368 | 367 | </dependency> |
369 | 368 | <dependency> |
370 | 369 | <groupId>io.github.jpenren</groupId> |
371 | 370 | <artifactId>thymeleaf-spring-data-dialect</artifactId> |
372 | | - <version>${thymeleaf-spring-data-dialect.version}</version> |
| 371 | + <version>${version.thymeleaf-spring-data-dialect}</version> |
373 | 372 | </dependency> |
374 | 373 |
|
375 | 374 | <!-- compile --> |
|
452 | 451 | <dependency> |
453 | 452 | <groupId>org.apache.maven.plugins</groupId> |
454 | 453 | <artifactId>maven-enforcer-plugin</artifactId> |
455 | | - <version>${maven-enforcer-plugin.version}</version> |
| 454 | + <version>${version.maven-enforcer-plugin}</version> |
456 | 455 | <type>maven-plugin</type> |
457 | 456 | <scope>provided</scope> |
458 | 457 | </dependency> |
|
512 | 511 | <dependency> |
513 | 512 | <groupId>org.springframework.boot</groupId> |
514 | 513 | <artifactId>spring-boot-maven-plugin</artifactId> |
515 | | - <version>${spring-boot-maven-plugin.version}</version> |
| 514 | + <version>${version.spring-boot-maven-plugin}</version> |
516 | 515 | <type>maven-plugin</type> |
517 | 516 | <scope>provided</scope> |
518 | 517 | </dependency> |
519 | 518 | <dependency> |
520 | 519 | <groupId>org.apache.maven.plugins</groupId> |
521 | 520 | <artifactId>maven-site-plugin</artifactId> |
522 | | - <version>${maven-site-plugin.version}</version> |
| 521 | + <version>${version.maven-site-plugin}</version> |
523 | 522 | <type>maven-plugin</type> |
524 | 523 | <scope>provided</scope> |
525 | 524 | </dependency> |
526 | 525 | <dependency> |
527 | 526 | <groupId>org.apache.maven.plugins</groupId> |
528 | 527 | <artifactId>maven-project-info-reports-plugin</artifactId> |
529 | | - <version>${maven-project-info-reports-plugin.version}</version> |
| 528 | + <version>${version.maven-project-info-reports-plugin}</version> |
530 | 529 | <type>maven-plugin</type> |
531 | 530 | <scope>provided</scope> |
532 | 531 | </dependency> |
533 | 532 | <dependency> |
534 | 533 | <groupId>org.apache.maven.plugins</groupId> |
535 | 534 | <artifactId>maven-jxr-plugin</artifactId> |
536 | | - <version>${maven-jxr-plugin.version}</version> |
| 535 | + <version>${version.maven-jxr-plugin}</version> |
537 | 536 | <type>maven-plugin</type> |
538 | 537 | <scope>provided</scope> |
539 | 538 | </dependency> |
540 | 539 | <dependency> |
541 | 540 | <groupId>org.apache.maven.plugins</groupId> |
542 | 541 | <artifactId>maven-checkstyle-plugin</artifactId> |
543 | | - <version>${maven-checkstyle-plugin.version}</version> |
| 542 | + <version>${version.maven-checkstyle-plugin}</version> |
544 | 543 | <type>maven-plugin</type> |
545 | 544 | <scope>provided</scope> |
546 | 545 | <exclusions> |
|
553 | 552 | <dependency> |
554 | 553 | <groupId>com.github.spotbugs</groupId> |
555 | 554 | <artifactId>spotbugs-maven-plugin</artifactId> |
556 | | - <version>${spotbugs-maven-plugin.version}</version> |
| 555 | + <version>${version.spotbugs-maven-plugin}</version> |
557 | 556 | <type>maven-plugin</type> |
558 | 557 | <scope>provided</scope> |
559 | 558 | </dependency> |
|
580 | 579 | <dependency> |
581 | 580 | <groupId>org.apache.maven.plugins</groupId> |
582 | 581 | <artifactId>maven-surefire-report-plugin</artifactId> |
583 | | - <version>${maven-surefire-report-plugin.version}</version> |
| 582 | + <version>${version.maven-surefire-report-plugin}</version> |
584 | 583 | <type>maven-plugin</type> |
585 | 584 | <scope>provided</scope> |
586 | 585 | </dependency> |
587 | 586 | <dependency> |
588 | 587 | <groupId>org.asciidoctor</groupId> |
589 | 588 | <artifactId>asciidoctor-maven-plugin</artifactId> |
590 | | - <version>${asciidoctor-maven-plugin.version}</version> |
| 589 | + <version>${version.asciidoctor-maven-plugin}</version> |
591 | 590 | <type>maven-plugin</type> |
592 | 591 | <scope>provided</scope> |
593 | 592 | </dependency> |
|
636 | 635 | <dependency> |
637 | 636 | <groupId>org.apache.maven.doxia</groupId> |
638 | 637 | <artifactId>doxia-module-markdown</artifactId> |
639 | | - <version>${doxia-module-markdown.version}</version> |
| 638 | + <version>${version.doxia-module-markdown}</version> |
640 | 639 | <scope>provided</scope> |
641 | 640 | </dependency> |
642 | 641 |
|
|
1116 | 1115 | <plugin> |
1117 | 1116 | <groupId>org.apache.maven.plugins</groupId> |
1118 | 1117 | <artifactId>maven-enforcer-plugin</artifactId> |
1119 | | - <version>${maven-enforcer-plugin.version}</version> |
| 1118 | + <version>${version.maven-enforcer-plugin}</version> |
1120 | 1119 | </plugin> |
1121 | 1120 | <plugin> |
1122 | 1121 | <groupId>org.apache.maven.plugins</groupId> |
|
1146 | 1145 | <plugin> |
1147 | 1146 | <groupId>org.springframework.boot</groupId> |
1148 | 1147 | <artifactId>spring-boot-maven-plugin</artifactId> |
1149 | | - <version>${spring-boot-maven-plugin.version}</version> |
| 1148 | + <version>${version.spring-boot-maven-plugin}</version> |
1150 | 1149 | </plugin> |
1151 | 1150 | <plugin> |
1152 | 1151 | <groupId>org.apache.maven.plugins</groupId> |
|
1156 | 1155 | <plugin> |
1157 | 1156 | <groupId>org.apache.maven.plugins</groupId> |
1158 | 1157 | <artifactId>maven-project-info-reports-plugin</artifactId> |
1159 | | - <version>${maven-project-info-reports-plugin.version}</version> |
| 1158 | + <version>${version.maven-project-info-reports-plugin}</version> |
1160 | 1159 | </plugin> |
1161 | 1160 | <plugin> |
1162 | 1161 | <groupId>org.apache.maven.plugins</groupId> |
1163 | 1162 | <artifactId>maven-jxr-plugin</artifactId> |
1164 | | - <version>${maven-jxr-plugin.version}</version> |
| 1163 | + <version>${version.maven-jxr-plugin}</version> |
1165 | 1164 | </plugin> |
1166 | 1165 | <plugin> |
1167 | 1166 | <groupId>org.apache.maven.plugins</groupId> |
1168 | 1167 | <artifactId>maven-checkstyle-plugin</artifactId> |
1169 | | - <version>${maven-checkstyle-plugin.version}</version> |
| 1168 | + <version>${version.maven-checkstyle-plugin}</version> |
1170 | 1169 | </plugin> |
1171 | 1170 | <plugin> |
1172 | 1171 | <groupId>com.github.spotbugs</groupId> |
1173 | 1172 | <artifactId>spotbugs-maven-plugin</artifactId> |
1174 | | - <version>${spotbugs-maven-plugin.version}</version> |
| 1173 | + <version>${version.spotbugs-maven-plugin}</version> |
1175 | 1174 | </plugin> |
1176 | 1175 | <plugin> |
1177 | 1176 | <groupId>org.apache.maven.plugins</groupId> |
|
1181 | 1180 | <plugin> |
1182 | 1181 | <groupId>org.apache.maven.plugins</groupId> |
1183 | 1182 | <artifactId>maven-surefire-report-plugin</artifactId> |
1184 | | - <version>${maven-surefire-report-plugin.version}</version> |
| 1183 | + <version>${version.maven-surefire-report-plugin}</version> |
1185 | 1184 | </plugin> |
1186 | 1185 | <plugin> |
1187 | 1186 | <groupId>org.apache.maven.plugins</groupId> |
|
1191 | 1190 | <plugin> |
1192 | 1191 | <groupId>org.asciidoctor</groupId> |
1193 | 1192 | <artifactId>asciidoctor-maven-plugin</artifactId> |
1194 | | - <version>${asciidoctor-maven-plugin.version}</version> |
| 1193 | + <version>${version.asciidoctor-maven-plugin}</version> |
1195 | 1194 | </plugin> |
1196 | 1195 | <plugin> |
1197 | 1196 | <groupId>org.apache.maven.plugins</groupId> |
|
1237 | 1236 | <plugin> |
1238 | 1237 | <groupId>org.apache.maven.plugins</groupId> |
1239 | 1238 | <artifactId>maven-site-plugin</artifactId> |
1240 | | - <version>${maven-site-plugin.version}</version> |
| 1239 | + <version>${version.maven-site-plugin}</version> |
1241 | 1240 | <!-- |
1242 | 1241 | <dependencies> |
1243 | 1242 | <dependency> |
|
0 commit comments