Skip to content

Commit 13eef6c

Browse files
committed
Update to support latest versions of dependencies and Maven plugins that ESAPI can support while still retaining Java 8 as the miminal JDK.
1 parent b987d5d commit 13eef6c

File tree

1 file changed

+8
-5
lines changed

1 file changed

+8
-5
lines changed

pom.xml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -132,11 +132,11 @@
132132
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
133133
<version.jmh>1.37</version.jmh>
134134
<version.findsecbugs>2.0.0-M3</version.findsecbugs>
135-
<version.fluido>2.0.0-M11</version.fluido>
135+
<version.fluido>2.0.0</version.fluido>
136136
<version.powermock>2.0.9</version.powermock>
137137
<version.spotbugs>4.8.6</version.spotbugs>
138-
<version.spotbugs.maven>4.8.6.4</version.spotbugs.maven>
139-
<version.surefire>3.5.1</version.surefire>
138+
<version.spotbugs.maven>4.8.6.6</version.spotbugs.maven>
139+
<version.surefire>3.5.2</version.surefire>
140140
<project.java.target>1.8</project.java.target>
141141
<!-- TODO: Be sure to update. Should be date of previous official release -->
142142
<!-- Exact date in the form 'yyyy-dd-yy 00:00:00' should be used. You can find the previous release date -->
@@ -243,7 +243,7 @@
243243
<dependency>
244244
<groupId>org.owasp.antisamy</groupId>
245245
<artifactId>antisamy</artifactId>
246-
<version>1.7.6</version>
246+
<version>1.7.7</version>
247247
<exclusions>
248248
<!-- excluded because we directly import newer version below. -->
249249
<exclusion>
@@ -740,6 +740,9 @@
740740
<plugin>
741741
<groupId>org.owasp</groupId>
742742
<artifactId>dependency-check-maven</artifactId>
743+
<!-- Version 11.x is the latest, but 10.0.4 is the latest that we can use beccause 11.x has a breaking
744+
change that requires Java 11 or later and our mimimal JDK is Java 8.
745+
-->
743746
<version>10.0.4</version>
744747
<configuration>
745748
<nvdApiKey>${env.NVD_API_KEY}</nvdApiKey>
@@ -949,7 +952,7 @@
949952
<plugin>
950953
<groupId>org.eclipse.transformer</groupId>
951954
<artifactId>transformer-maven-plugin</artifactId>
952-
<version>0.5.0</version>
955+
<version>0.5.0</version> <!-- 1.0.0 is available, but requires newer JDK than ESAPI minimum. -->
953956
<extensions>true</extensions>
954957
<configuration>
955958
<rules>

0 commit comments

Comments
 (0)