|
54 | 54 | <tag>HEAD</tag> |
55 | 55 | </scm> |
56 | 56 |
|
| 57 | + <issueManagement> |
| 58 | + <system>GitHub Issues</system> |
| 59 | + <url>https://github.com/Devskiller/jfairy/issues</url> |
| 60 | + </issueManagement> |
| 61 | + |
| 62 | + <ciManagement> |
| 63 | + <system>GitHub Actions</system> |
| 64 | + <url>https://github.com/SkillPanel/jfairy/actions</url> |
| 65 | + </ciManagement> |
| 66 | + |
57 | 67 | <distributionManagement> |
58 | 68 | <repository> |
59 | 69 | <id>central</id> |
|
67 | 77 | </snapshotRepository> |
68 | 78 | </distributionManagement> |
69 | 79 |
|
70 | | - <issueManagement> |
71 | | - <system>GitHub Issues</system> |
72 | | - <url>https://github.com/Devskiller/jfairy/issues</url> |
73 | | - </issueManagement> |
74 | | - |
75 | | - <ciManagement> |
76 | | - <system>GitHub Actions</system> |
77 | | - <url>https://github.com/SkillPanel/jfairy/actions</url> |
78 | | - </ciManagement> |
79 | | - |
80 | 80 | <properties> |
81 | 81 | <revision>0.8.3-SNAPSHOT</revision> |
82 | 82 |
|
|
200 | 200 |
|
201 | 201 | <pluginManagement> |
202 | 202 | <plugins> |
203 | | - <plugin> |
204 | | - <groupId>com.github.ekryd.sortpom</groupId> |
205 | | - <artifactId>sortpom-maven-plugin</artifactId> |
206 | | - <version>${dep.plugin.sortpom.version}</version> |
207 | | - <configuration> |
208 | | - <createBackupFile>false</createBackupFile> |
209 | | - <expandEmptyElements>false</expandEmptyElements> |
210 | | - <nrOfIndentSpace>-1</nrOfIndentSpace> |
211 | | - </configuration> |
212 | | - </plugin> |
213 | | - </plugins> |
214 | | - </pluginManagement> |
| 203 | + <plugin> |
| 204 | + <groupId>com.github.ekryd.sortpom</groupId> |
| 205 | + <artifactId>sortpom-maven-plugin</artifactId> |
| 206 | + <version>${dep.plugin.sortpom.version}</version> |
| 207 | + <configuration> |
| 208 | + <createBackupFile>false</createBackupFile> |
| 209 | + <expandEmptyElements>false</expandEmptyElements> |
| 210 | + <nrOfIndentSpace>-1</nrOfIndentSpace> |
| 211 | + </configuration> |
| 212 | + </plugin> |
| 213 | + </plugins> |
| 214 | + </pluginManagement> |
215 | 215 |
|
216 | 216 | <plugins> |
217 | 217 | <plugin> |
|
226 | 226 | <executions> |
227 | 227 | <execution> |
228 | 228 | <id>add-test-source</id> |
229 | | - <phase>generate-test-sources</phase> |
230 | 229 | <goals> |
231 | 230 | <goal>add-test-source</goal> |
232 | 231 | </goals> |
| 232 | + <phase>generate-test-sources</phase> |
233 | 233 | <configuration> |
234 | 234 | <sources> |
235 | 235 | <source>${project.basedir}/src/test/java</source> |
|
278 | 278 | <groupId>org.codehaus.gmavenplus</groupId> |
279 | 279 | <artifactId>gmavenplus-plugin</artifactId> |
280 | 280 | <version>${dep.plugin.gmavenplus.version}</version> |
281 | | - <executions> |
282 | | - <execution> |
283 | | - <goals> |
284 | | - <goal>compileTests</goal> |
285 | | - </goals> |
286 | | - </execution> |
287 | | - </executions> |
288 | 281 | <configuration> |
289 | 282 | <testSources> |
290 | 283 | <testSource> |
|
295 | 288 | </testSource> |
296 | 289 | </testSources> |
297 | 290 | </configuration> |
| 291 | + <executions> |
| 292 | + <execution> |
| 293 | + <goals> |
| 294 | + <goal>compileTests</goal> |
| 295 | + </goals> |
| 296 | + </execution> |
| 297 | + </executions> |
298 | 298 | </plugin> |
299 | 299 |
|
300 | 300 | <plugin> |
|
349 | 349 | <executions> |
350 | 350 | <execution> |
351 | 351 | <id>checkstyle-check</id> |
352 | | - <phase>verify</phase> |
353 | 352 | <goals> |
354 | 353 | <goal>check</goal> |
355 | 354 | </goals> |
| 355 | + <phase>verify</phase> |
356 | 356 | </execution> |
357 | 357 | </executions> |
358 | 358 | </plugin> |
|
397 | 397 | <executions> |
398 | 398 | <execution> |
399 | 399 | <id>flatten</id> |
400 | | - <phase>prepare-package</phase> |
401 | 400 | <goals> |
402 | 401 | <goal>flatten</goal> |
403 | 402 | </goals> |
| 403 | + <phase>prepare-package</phase> |
404 | 404 | </execution> |
405 | 405 | <execution> |
406 | 406 | <id>flatten-clean</id> |
407 | | - <phase>clean</phase> |
408 | 407 | <goals> |
409 | 408 | <goal>clean</goal> |
410 | 409 | </goals> |
| 410 | + <phase>clean</phase> |
411 | 411 | </execution> |
412 | 412 | </executions> |
413 | 413 | </plugin> |
|
487 | 487 | </properties> |
488 | 488 | </profile> |
489 | 489 |
|
490 | | - <!-- profile to fail the build on Error Prone findings |
| 490 | + <!-- profile to fail the build on Error Prone findings |
491 | 491 | mvn clean compile -D check.fail-errorprone=true |
492 | 492 | https://errorprone.info/bugpattern/IncompatibleModifiers --> |
493 | 493 | <profile> |
|
524 | 524 | <executions> |
525 | 525 | <execution> |
526 | 526 | <id>sign-artifacts</id> |
527 | | - <phase>verify</phase> |
528 | 527 | <goals> |
529 | 528 | <goal>sign</goal> |
530 | 529 | </goals> |
| 530 | + <phase>verify</phase> |
531 | 531 | </execution> |
532 | 532 | </executions> |
533 | 533 | </plugin> |
|
565 | 565 | <artifactId>central-publishing-maven-plugin</artifactId> |
566 | 566 | <version>${dep.plugin.central-publishing.version}</version> |
567 | 567 | <extensions>true</extensions> |
| 568 | + <configuration> |
| 569 | + <publishingServerId>central</publishingServerId> |
| 570 | + <autoPublish>true</autoPublish> |
| 571 | + <waitUntil>published</waitUntil> |
| 572 | + </configuration> |
568 | 573 | <executions> |
569 | 574 | <execution> |
570 | 575 | <id>central-publish</id> |
571 | | - <phase>deploy</phase> |
572 | 576 | <goals> |
573 | 577 | <goal>publish</goal> |
574 | 578 | </goals> |
| 579 | + <phase>deploy</phase> |
575 | 580 | </execution> |
576 | 581 | </executions> |
577 | | - <configuration> |
578 | | - <publishingServerId>central</publishingServerId> |
579 | | - <autoPublish>true</autoPublish> |
580 | | - <waitUntil>published</waitUntil> |
581 | | - </configuration> |
582 | 582 | </plugin> |
583 | 583 | </plugins> |
584 | 584 | </build> |
|
0 commit comments