|
29 | 29 |
|
30 | 30 | <groupId>com.github.spotbugs</groupId>
|
31 | 31 | <artifactId>spotbugs-maven-plugin</artifactId>
|
32 |
| - <version>4.9.0.0-SNAPSHOT</version> |
| 32 | + <version>4.9.0.1-SNAPSHOT</version> |
33 | 33 | <packaging>maven-plugin</packaging>
|
34 | 34 |
|
35 | 35 | <name>spotbugs-maven-plugin</name>
|
|
168 | 168 | <sourceDirectory>${project.basedir}/src/main/groovy</sourceDirectory>
|
169 | 169 |
|
170 | 170 | <!-- Reproducible Builds: override timestamp value from parent -->
|
171 |
| - <project.build.outputTimestamp>1731432691</project.build.outputTimestamp> |
| 171 | + <project.build.outputTimestamp>1739649724</project.build.outputTimestamp> |
172 | 172 |
|
173 | 173 | <!-- Override spotbugs to this version from base-parent -->
|
174 | 174 | <spotbugs.version>4.9.0</spotbugs.version>
|
|
645 | 645 | <artifactId>maven-plugin-plugin</artifactId>
|
646 | 646 | <version>${pluginPluginVersion}</version>
|
647 | 647 | </plugin>
|
| 648 | + <plugin> |
| 649 | + <groupId>org.apache.maven.plugins</groupId> |
| 650 | + <artifactId>maven-plugin-reporting-plugin</artifactId> |
| 651 | + <version>${pluginPluginVersion}</version> |
| 652 | + <configuration> |
| 653 | + <requirements> |
| 654 | + <jdk>${project.build.java.target}</jdk> |
| 655 | + </requirements> |
| 656 | + </configuration> |
| 657 | + </plugin> |
| 658 | + |
| 659 | + <plugin> |
| 660 | + <groupId>org.codehaus.mojo</groupId> |
| 661 | + <artifactId>l10n-maven-plugin</artifactId> |
| 662 | + <version>${l10nPluginVersion}</version> |
| 663 | + <configuration> |
| 664 | + <locales> |
| 665 | + <locale>es</locale> |
| 666 | + <locale>fr</locale> |
| 667 | + <locale>no_NO</locale> |
| 668 | + <locale>pt_BR</locale> |
| 669 | + </locales> |
| 670 | + </configuration> |
| 671 | + </plugin> |
648 | 672 |
|
649 | 673 | <plugin>
|
650 | 674 | <groupId>org.apache.maven.plugins</groupId>
|
|
662 | 686 | <groupId>com.github.spotbugs</groupId>
|
663 | 687 | <artifactId>spotbugs-maven-plugin</artifactId>
|
664 | 688 | <version>${project.version}</version>
|
| 689 | + <configuration> |
| 690 | + <excludeFilterFile>${project.basedir}/src/main/tools/spotbugs-exclude-filters.xml</excludeFilterFile> |
| 691 | + </configuration> |
665 | 692 | </plugin>
|
666 | 693 |
|
667 | 694 | <plugin>
|
|
688 | 715 | <configuration>
|
689 | 716 | <!-- Repo https://github.com/gleclaire/codenarc-maven-plugin has been forked and will need major upgrades to use this. -->
|
690 | 717 | <skip>true</skip>
|
| 718 | + |
| 719 | + <codeNarcVersion>${codenarc.version}</codeNarcVersion> |
| 720 | + <groovyVersion>${groovyVersion}</groovyVersion> |
| 721 | + <maxPriority1Violations>0</maxPriority1Violations> |
| 722 | + <maxPriority2Violations>0</maxPriority2Violations> |
| 723 | + <maxPriority3Violations>5</maxPriority3Violations> |
| 724 | + <sourceDirectory>${project.basedir}/src/main/groovy</sourceDirectory> |
691 | 725 | </configuration>
|
692 | 726 | <dependencies>
|
693 | 727 | <dependency>
|
|
798 | 832 | <plugin>
|
799 | 833 | <groupId>org.apache.maven.plugins</groupId>
|
800 | 834 | <artifactId>maven-plugin-report-plugin</artifactId>
|
801 |
| - <version>${pluginPluginVersion}</version> |
802 |
| - <configuration> |
803 |
| - <requirements> |
804 |
| - <jdk>${project.build.java.target}</jdk> |
805 |
| - </requirements> |
806 |
| - </configuration> |
807 | 835 | </plugin>
|
808 | 836 | <plugin>
|
809 | 837 | <groupId>org.codehaus.mojo</groupId>
|
810 | 838 | <artifactId>l10n-maven-plugin</artifactId>
|
811 |
| - <version>${l10nPluginVersion}</version> |
812 |
| - <configuration> |
813 |
| - <locales> |
814 |
| - <locale>es</locale> |
815 |
| - <locale>fr</locale> |
816 |
| - <locale>no_NO</locale> |
817 |
| - <locale>pt_BR</locale> |
818 |
| - </locales> |
819 |
| - </configuration> |
820 | 839 | </plugin>
|
821 | 840 | <plugin>
|
822 | 841 | <groupId>org.codehaus.mojo</groupId>
|
823 | 842 | <artifactId>codenarc-maven-plugin</artifactId>
|
824 |
| - <configuration> |
825 |
| - <codeNarcVersion>${codenarc.version}</codeNarcVersion> |
826 |
| - <groovyVersion>${groovyVersion}</groovyVersion> |
827 |
| - <maxPriority1Violations>0</maxPriority1Violations> |
828 |
| - <maxPriority2Violations>0</maxPriority2Violations> |
829 |
| - <maxPriority3Violations>5</maxPriority3Violations> |
830 |
| - <sourceDirectory>${project.basedir}/src/main/groovy</sourceDirectory> |
831 |
| - </configuration> |
832 | 843 | </plugin>
|
833 | 844 | <plugin>
|
834 | 845 | <groupId>com.github.spotbugs</groupId>
|
835 | 846 | <artifactId>spotbugs-maven-plugin</artifactId>
|
836 |
| - <version>${project.version}</version> |
837 |
| - <configuration> |
838 |
| - <excludeFilterFile>${project.basedir}/src/main/tools/spotbugs-exclude-filters.xml</excludeFilterFile> |
839 |
| - </configuration> |
840 | 847 | </plugin>
|
841 | 848 | </plugins>
|
842 | 849 | </reporting>
|
|
0 commit comments