Skip to content

Commit ff93608

Browse files
committed
Update pom to eliminate Maven errors and update dependencies and plugins.
* Removed <parent>...</parent> node, which was causing warning in pom.xml * Updated dependencies and plugins after running: $ mvn -U versions:display-plugin-updates # Check new versions of plugins. $ mvn -U versions:display-dependency-updates # Check new versions of dependencies. $ mvn -U versions:display-property-updates # Check new versions specified by properties.
1 parent 0d56c83 commit ff93608

File tree

1 file changed

+23
-28
lines changed

1 file changed

+23
-28
lines changed

pom.xml

Lines changed: 23 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>org.owasp.esapi</groupId>
55
<artifactId>esapi</artifactId>
6-
<version>2.5.3.0-SNAPSHOT</version>
6+
<version>2.5.3.0</version>
77
<packaging>jar</packaging>
88

99
<distributionManagement>
@@ -17,12 +17,6 @@
1717
</repository>
1818
</distributionManagement>
1919

20-
<parent>
21-
<groupId>org.sonatype.oss</groupId>
22-
<artifactId>oss-parent</artifactId>
23-
<version>9</version>
24-
</parent>
25-
2620
<licenses>
2721
<license>
2822
<name>BSD</name>
@@ -136,13 +130,13 @@
136130

137131
<properties>
138132
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
139-
<version.jmh>1.36</version.jmh>
133+
<version.jmh>1.37</version.jmh>
140134
<version.findsecbugs>2.0.0-M3</version.findsecbugs>
141-
<version.fluido>2.0.0-M3</version.fluido>
135+
<version.fluido>2.0.0-M8</version.fluido>
142136
<version.powermock>2.0.9</version.powermock>
143-
<version.spotbugs>4.7.3</version.spotbugs>
144-
<version.spotbugs.maven>4.7.3.4</version.spotbugs.maven>
145-
<version.surefire>3.0.0</version.surefire>
137+
<version.spotbugs>4.8.1</version.spotbugs>
138+
<version.spotbugs.maven>4.8.1.0</version.spotbugs.maven>
139+
<version.surefire>3.2.2</version.surefire>
146140
<project.java.target>1.8</project.java.target>
147141
<!-- TODO: Be sure to update. Should be date of previous official release -->
148142
<!-- Exact date in the form 'yyyy-dd-yy 00:00:00' should be used. You can find the previous release date -->
@@ -419,22 +413,22 @@
419413
<plugin>
420414
<groupId>org.apache.maven.plugins</groupId>
421415
<artifactId>maven-assembly-plugin</artifactId>
422-
<version>3.5.0</version>
416+
<version>3.6.0</version>
423417
</plugin>
424418
<plugin>
425419
<groupId>org.apache.maven.plugins</groupId>
426420
<artifactId>maven-dependency-plugin</artifactId>
427-
<version>3.5.0</version>
421+
<version>3.6.1</version>
428422
</plugin>
429423
<plugin>
430424
<groupId>org.apache.maven.plugins</groupId>
431425
<artifactId>maven-release-plugin</artifactId>
432-
<version>3.0.0</version>
426+
<version>3.0.1</version>
433427
</plugin>
434428
<plugin>
435429
<groupId>org.codehaus.mojo</groupId>
436430
<artifactId>versions-maven-plugin</artifactId>
437-
<version>2.15.0</version>
431+
<version>2.16.2</version>
438432
<configuration>
439433
<rulesUri>file:${project.basedir}/versionRuleset.xml</rulesUri>
440434
</configuration>
@@ -447,7 +441,7 @@
447441
<plugin>
448442
<groupId>org.cyclonedx</groupId>
449443
<artifactId>cyclonedx-maven-plugin</artifactId>
450-
<version>2.7.6</version>
444+
<version>2.7.10</version>
451445
<executions>
452446
<execution>
453447
<phase>package</phase>
@@ -489,7 +483,7 @@
489483
<plugin>
490484
<groupId>org.apache.maven.plugins</groupId>
491485
<artifactId>maven-clean-plugin</artifactId>
492-
<version>3.2.0</version>
486+
<version>3.3.2</version>
493487
</plugin>
494488

495489
<plugin>
@@ -544,12 +538,12 @@
544538
<plugin>
545539
<groupId>org.apache.maven.plugins</groupId>
546540
<artifactId>maven-enforcer-plugin</artifactId>
547-
<version>3.3.0</version>
541+
<version>3.4.1</version>
548542
<dependencies>
549543
<dependency>
550544
<groupId>org.codehaus.mojo</groupId>
551545
<artifactId>extra-enforcer-rules</artifactId>
552-
<version>1.6.2</version>
546+
<version>1.7.0</version>
553547
</dependency>
554548
<dependency>
555549
<groupId>org.codehaus.mojo</groupId>
@@ -618,7 +612,7 @@
618612
<plugin>
619613
<groupId>org.apache.maven.plugins</groupId>
620614
<artifactId>maven-gpg-plugin</artifactId>
621-
<version>3.0.1</version>
615+
<version>3.1.0</version>
622616
<executions>
623617
<execution>
624618
<id>sign-artifacts</id>
@@ -651,7 +645,7 @@
651645
<plugin>
652646
<groupId>org.apache.maven.plugins</groupId>
653647
<artifactId>maven-javadoc-plugin</artifactId>
654-
<version>3.5.0</version>
648+
<version>3.6.2</version>
655649
<configuration>
656650
<source>8</source>
657651
<doclint>none</doclint>
@@ -669,19 +663,19 @@
669663
<plugin>
670664
<groupId>org.apache.maven.plugins</groupId>
671665
<artifactId>maven-jxr-plugin</artifactId>
672-
<version>3.3.0</version>
666+
<version>3.3.1</version>
673667
</plugin>
674668

675669
<plugin>
676670
<groupId>org.apache.maven.plugins</groupId>
677671
<artifactId>maven-pmd-plugin</artifactId>
678-
<version>3.20.0</version>
672+
<version>3.21.2</version>
679673
</plugin>
680674

681675
<plugin>
682676
<groupId>org.apache.maven.plugins</groupId>
683677
<artifactId>maven-project-info-reports-plugin</artifactId>
684-
<version>3.4.2</version>
678+
<version>3.5.0</version>
685679
</plugin>
686680

687681
<plugin>
@@ -695,7 +689,7 @@
695689
The skin is referenced in src/site/site.xml. -->
696690
<groupId>org.apache.maven.plugins</groupId>
697691
<artifactId>maven-site-plugin</artifactId>
698-
<version>4.0.0-M5</version>
692+
<version>4.0.0-M11</version>
699693
<dependencies>
700694
<dependency>
701695
<groupId>org.apache.maven.skins</groupId>
@@ -708,7 +702,7 @@
708702
<plugin>
709703
<groupId>org.apache.maven.plugins</groupId>
710704
<artifactId>maven-source-plugin</artifactId>
711-
<version>3.2.1</version>
705+
<version>3.3.0</version>
712706
<executions>
713707
<execution>
714708
<id>attach-sources</id>
@@ -756,7 +750,7 @@
756750
<plugin>
757751
<groupId>org.owasp</groupId>
758752
<artifactId>dependency-check-maven</artifactId>
759-
<version>8.2.1</version>
753+
<version>9.0.0</version>
760754
<configuration>
761755
<failBuildOnCVSS>1.0</failBuildOnCVSS>
762756
<suppressionFiles>./suppressions.xml</suppressionFiles>
@@ -963,6 +957,7 @@
963957
<plugin>
964958
<groupId>org.eclipse.transformer</groupId>
965959
<artifactId>transformer-maven-plugin</artifactId>
960+
<version>0.5.0</version>
966961
<extensions>true</extensions>
967962
<configuration>
968963
<rules>

0 commit comments

Comments
 (0)