Skip to content

Commit 6edc308

Browse files
committed
1 parent 55cb250 commit 6edc308

File tree

1 file changed

+10
-38
lines changed

1 file changed

+10
-38
lines changed

pom.xml

Lines changed: 10 additions & 38 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
<packaging>jar</packaging>
1010
<version>1.1.1-SNAPSHOT</version>
1111
<name>JSR 354 (Money and Currency API)</name>
12-
<url>https://javamoney.github.io/</url>
12+
<url>https://javamoney.github.io</url>
1313
<inceptionYear>2012</inceptionYear>
1414
<description>JSR 354 provides an API for representing, transporting, and performing comprehensive calculations with Money and Currency.</description>
1515

@@ -29,7 +29,6 @@
2929
<mockito.version>1.10.19</mockito.version>
3030
<hamcrest.version>2.2</hamcrest.version>
3131
<jacoco.version>0.8.5</jacoco.version>
32-
<findbugs.version>3.0.5</findbugs.version>
3332
<javadoc.version>3.0.1</javadoc.version>
3433
</properties>
3534

@@ -39,14 +38,6 @@
3938
</organization>
4039

4140
<developers>
42-
<developer>
43-
<id>atsticks</id>
44-
<name>Anatole Tresch</name>
45-
<organization>Trivadis AG</organization>
46-
<roles>
47-
<role>Maintenance Lead</role>
48-
</roles>
49-
</developer>
5041
<developer>
5142
<id>keilw</id>
5243
<name>Werner Keil</name>
@@ -460,7 +451,7 @@
460451
<plugin>
461452
<groupId>org.apache.maven.plugins</groupId>
462453
<artifactId>maven-site-plugin</artifactId>
463-
<version>3.1</version>
454+
<version>3.9.1</version>
464455
</plugin>
465456
<!-- ======================================================= -->
466457
<!-- Packaging (OSGi bundle) -->
@@ -1043,41 +1034,22 @@
10431034
<dataFile>${basedir}/target/coverage-reports/jacoco-unit.exec</dataFile>
10441035
</configuration>
10451036
</plugin>
1037+
<!-- Static analysis for occurrences of bug patterns -->
10461038
<plugin>
1047-
<groupId>org.codehaus.mojo</groupId>
1048-
<artifactId>findbugs-maven-plugin</artifactId>
1049-
<version>${findbugs.version}</version>
1050-
<configuration>
1051-
<xrefLocation>${project.reporting.outputDirectory}/../xref</xrefLocation>
1052-
<xmlOutput>true</xmlOutput>
1053-
<effort>Max</effort>
1054-
<threshold>Low</threshold>
1055-
<failOnError>false</failOnError>
1056-
<findbugsXmlOutput>true</findbugsXmlOutput>
1057-
<findbugsXmlOutputDirectory>target/site</findbugsXmlOutputDirectory>
1058-
<xrefLocation>xref/</xrefLocation>
1059-
</configuration>
1039+
<groupId>com.github.spotbugs</groupId>
1040+
<artifactId>spotbugs-maven-plugin</artifactId>
1041+
<version>4.0.4</version>
10601042
</plugin>
1061-
10621043
<plugin>
10631044
<groupId>org.apache.maven.plugins</groupId>
10641045
<artifactId>maven-project-info-reports-plugin</artifactId>
10651046
<version>3.0.0</version>
10661047
</plugin>
1048+
<!-- Static analysis for occurrences of bug patterns -->
10671049
<plugin>
1068-
<groupId>org.codehaus.mojo</groupId>
1069-
<artifactId>findbugs-maven-plugin</artifactId>
1070-
<version>${findbugs.version}</version>
1071-
<configuration>
1072-
<xrefLocation>${project.reporting.outputDirectory}/../xref</xrefLocation>
1073-
<xmlOutput>true</xmlOutput>
1074-
<effort>Max</effort>
1075-
<threshold>Low</threshold>
1076-
<failOnError>false</failOnError>
1077-
<findbugsXmlOutput>true</findbugsXmlOutput>
1078-
<findbugsXmlOutputDirectory>target/site</findbugsXmlOutputDirectory>
1079-
<xrefLocation>xref/</xrefLocation>
1080-
</configuration>
1050+
<groupId>com.github.spotbugs</groupId>
1051+
<artifactId>spotbugs-maven-plugin</artifactId>
1052+
<version>4.0.4</version>
10811053
</plugin>
10821054
<plugin>
10831055
<groupId>org.apache.maven.plugins</groupId>

0 commit comments

Comments
 (0)