|
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.3</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.11.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.7.0.6970</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> |
|
106 | 117 | <plugin> |
107 | 118 | <groupId>org.apache.maven.plugins</groupId> |
108 | 119 | <artifactId>maven-enforcer-plugin</artifactId> |
109 | | - <version>3.6.3</version> |
| 120 | + <version>${maven-enforcer-plugin.version}</version> |
110 | 121 | <executions> |
111 | 122 | <execution> |
112 | 123 | <id>enforce-versions</id> |
|
462 | 473 | <plugin> |
463 | 474 | <groupId>org.apache.maven.plugins</groupId> |
464 | 475 | <artifactId>maven-resources-plugin</artifactId> |
465 | | - <version>3.5.0</version> |
| 476 | + <version>${maven-resources-plugin.version}</version> |
466 | 477 | <configuration> |
467 | 478 | <encoding>UTF-8</encoding> |
468 | 479 | </configuration> |
469 | 480 | </plugin> |
470 | 481 | <plugin> |
471 | 482 | <groupId>org.apache.maven.plugins</groupId> |
472 | 483 | <artifactId>maven-dependency-plugin</artifactId> |
473 | | - <version>3.11.0</version> |
| 484 | + <version>${maven-dependency-plugin.version}</version> |
474 | 485 | </plugin> |
475 | 486 | <plugin> |
476 | 487 | <groupId>org.eclipse.tycho</groupId> |
|
530 | 541 | <plugin> |
531 | 542 | <groupId>org.apache.maven.plugins</groupId> |
532 | 543 | <artifactId>maven-jarsigner-plugin</artifactId> |
533 | | - <version>3.1.0</version> |
| 544 | + <version>${maven-jarsigner-plugin.version}</version> |
534 | 545 | <executions> |
535 | 546 | <execution> |
536 | 547 | <id>sign</id> |
|
562 | 573 | <plugin> |
563 | 574 | <groupId>org.apache.maven.plugins</groupId> |
564 | 575 | <artifactId>maven-gpg-plugin</artifactId> |
565 | | - <version>3.2.8</version> |
| 576 | + <version>${maven-gpg-plugin.version}</version> |
566 | 577 | </plugin> |
567 | 578 | <plugin> |
568 | 579 | <groupId>org.apache.maven.plugins</groupId> |
569 | 580 | <artifactId>maven-checkstyle-plugin</artifactId> |
570 | | - <version>3.6.0</version> |
| 581 | + <version>${maven-checkstyle-plugin.version}</version> |
571 | 582 | <dependencies> |
572 | 583 | <dependency> |
573 | 584 | <groupId>com.puppycrawl.tools</groupId> |
|
596 | 607 | <plugin> |
597 | 608 | <groupId>org.sonarsource.scanner.maven</groupId> |
598 | 609 | <artifactId>sonar-maven-plugin</artifactId> |
599 | | - <version>5.7.0.6970</version> |
| 610 | + <version>${sonar-maven-plugin.version}</version> |
600 | 611 | </plugin> |
601 | 612 | <plugin> |
602 | 613 | <groupId>name.abuchen</groupId> |
603 | 614 | <artifactId>fix-info-plist-maven-plugin</artifactId> |
604 | | - <version>1.8</version> |
| 615 | + <version>${fix-info-plist-maven-plugin.version}</version> |
605 | 616 | </plugin> |
606 | 617 | <plugin> |
607 | 618 | <groupId>org.codehaus.mojo</groupId> |
608 | 619 | <artifactId>exec-maven-plugin</artifactId> |
609 | | - <version>3.6.3</version> |
| 620 | + <version>${exec-maven-plugin.version}</version> |
610 | 621 | <configuration> |
611 | 622 | <mainClass>name.abuchen.portfolio.build.MessagesTool</mainClass> |
612 | 623 | <classpathScope>runtime</classpathScope> |
|
619 | 630 | <plugin> |
620 | 631 | <groupId>org.jacoco</groupId> |
621 | 632 | <artifactId>jacoco-maven-plugin</artifactId> |
622 | | - <version>0.8.14</version> |
| 633 | + <version>${jacoco-maven-plugin.version}</version> |
623 | 634 | </plugin> |
624 | 635 | <plugin> |
625 | 636 | <groupId>com.github.os72</groupId> |
626 | 637 | <artifactId>protoc-jar-maven-plugin</artifactId> |
627 | | - <version>3.11.4</version> |
| 638 | + <version>${protoc-jar-maven-plugin.version}</version> |
628 | 639 | </plugin> |
629 | 640 | </plugins> |
630 | 641 | </pluginManagement> |
|
0 commit comments