|
14 | 14 | <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
15 | 15 | <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
16 | 16 | <tycho-version>5.0.2</tycho-version> |
| 17 | + <maven-enforcer-plugin.version>3.6.3</maven-enforcer-plugin.version> |
| 18 | + <maven-resources-plugin.version>3.5.0</maven-resources-plugin.version> |
| 19 | + <maven-dependency-plugin.version>3.10.0</maven-dependency-plugin.version> |
| 20 | + <maven-jarsigner-plugin.version>3.1.0</maven-jarsigner-plugin.version> |
| 21 | + <maven-gpg-plugin.version>3.2.8</maven-gpg-plugin.version> |
| 22 | + <maven-checkstyle-plugin.version>3.6.0</maven-checkstyle-plugin.version> |
| 23 | + <sonar-maven-plugin.version>5.6.0.6792</sonar-maven-plugin.version> |
| 24 | + <fix-info-plist-maven-plugin.version>1.8</fix-info-plist-maven-plugin.version> |
| 25 | + <exec-maven-plugin.version>3.6.3</exec-maven-plugin.version> |
| 26 | + <jacoco-maven-plugin.version>0.8.14</jacoco-maven-plugin.version> |
| 27 | + <protoc-jar-maven-plugin.version>3.11.4</protoc-jar-maven-plugin.version> |
17 | 28 | <jarsigner.skip>true</jarsigner.skip> |
18 | 29 | <gpgsigner.skip>true</gpgsigner.skip> |
19 | 30 | <applesigner.skip>true</applesigner.skip> |
|
94 | 105 | <plugin> |
95 | 106 | <groupId>org.apache.maven.plugins</groupId> |
96 | 107 | <artifactId>maven-enforcer-plugin</artifactId> |
97 | | - <version>3.6.3</version> |
| 108 | + <version>${maven-enforcer-plugin.version}</version> |
98 | 109 | <executions> |
99 | 110 | <execution> |
100 | 111 | <id>enforce-versions</id> |
|
450 | 461 | <plugin> |
451 | 462 | <groupId>org.apache.maven.plugins</groupId> |
452 | 463 | <artifactId>maven-resources-plugin</artifactId> |
453 | | - <version>3.5.0</version> |
| 464 | + <version>${maven-resources-plugin.version}</version> |
454 | 465 | <configuration> |
455 | 466 | <encoding>UTF-8</encoding> |
456 | 467 | </configuration> |
457 | 468 | </plugin> |
458 | 469 | <plugin> |
459 | 470 | <groupId>org.apache.maven.plugins</groupId> |
460 | 471 | <artifactId>maven-dependency-plugin</artifactId> |
461 | | - <version>3.10.0</version> |
| 472 | + <version>${maven-dependency-plugin.version}</version> |
462 | 473 | </plugin> |
463 | 474 | <plugin> |
464 | 475 | <groupId>org.eclipse.tycho</groupId> |
|
518 | 529 | <plugin> |
519 | 530 | <groupId>org.apache.maven.plugins</groupId> |
520 | 531 | <artifactId>maven-jarsigner-plugin</artifactId> |
521 | | - <version>3.1.0</version> |
| 532 | + <version>${maven-jarsigner-plugin.version}</version> |
522 | 533 | <executions> |
523 | 534 | <execution> |
524 | 535 | <id>sign</id> |
|
550 | 561 | <plugin> |
551 | 562 | <groupId>org.apache.maven.plugins</groupId> |
552 | 563 | <artifactId>maven-gpg-plugin</artifactId> |
553 | | - <version>3.2.8</version> |
| 564 | + <version>${maven-gpg-plugin.version}</version> |
554 | 565 | </plugin> |
555 | 566 | <plugin> |
556 | 567 | <groupId>org.apache.maven.plugins</groupId> |
557 | 568 | <artifactId>maven-checkstyle-plugin</artifactId> |
558 | | - <version>3.6.0</version> |
| 569 | + <version>${maven-checkstyle-plugin.version}</version> |
559 | 570 | <dependencies> |
560 | 571 | <dependency> |
561 | 572 | <groupId>com.puppycrawl.tools</groupId> |
|
584 | 595 | <plugin> |
585 | 596 | <groupId>org.sonarsource.scanner.maven</groupId> |
586 | 597 | <artifactId>sonar-maven-plugin</artifactId> |
587 | | - <version>5.6.0.6792</version> |
| 598 | + <version>${sonar-maven-plugin.version}</version> |
588 | 599 | </plugin> |
589 | 600 | <plugin> |
590 | 601 | <groupId>name.abuchen</groupId> |
591 | 602 | <artifactId>fix-info-plist-maven-plugin</artifactId> |
592 | | - <version>1.8</version> |
| 603 | + <version>${fix-info-plist-maven-plugin.version}</version> |
593 | 604 | </plugin> |
594 | 605 | <plugin> |
595 | 606 | <groupId>org.codehaus.mojo</groupId> |
596 | 607 | <artifactId>exec-maven-plugin</artifactId> |
597 | | - <version>3.6.3</version> |
| 608 | + <version>${exec-maven-plugin.version}</version> |
598 | 609 | <configuration> |
599 | 610 | <mainClass>name.abuchen.portfolio.build.MessagesTool</mainClass> |
600 | 611 | <classpathScope>runtime</classpathScope> |
|
607 | 618 | <plugin> |
608 | 619 | <groupId>org.jacoco</groupId> |
609 | 620 | <artifactId>jacoco-maven-plugin</artifactId> |
610 | | - <version>0.8.14</version> |
| 621 | + <version>${jacoco-maven-plugin.version}</version> |
611 | 622 | </plugin> |
612 | 623 | <plugin> |
613 | 624 | <groupId>com.github.os72</groupId> |
614 | 625 | <artifactId>protoc-jar-maven-plugin</artifactId> |
615 | | - <version>3.11.4</version> |
| 626 | + <version>${protoc-jar-maven-plugin.version}</version> |
616 | 627 | </plugin> |
617 | 628 | </plugins> |
618 | 629 | </pluginManagement> |
|
0 commit comments