Skip to content

Commit a34b00d

Browse files
committed
Changes for new release, 2.6.1.0
1 parent 2904144 commit a34b00d

File tree

1 file changed

+26
-21
lines changed

1 file changed

+26
-21
lines changed

pom.xml

Lines changed: 26 additions & 21 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.7.0.0-SNAPSHOT</version>
6+
<version>2.6.1.0</version>
77
<packaging>jar</packaging>
88

99
<distributionManagement>
@@ -132,16 +132,16 @@
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> <!-- 2.0.0 fails on 'mvn site', but this works. -->
135+
<version.fluido>2.0.0-M11</version.fluido> <!-- Version 2.1.0 is available, but fails with this min Maven. -->
136136
<version.powermock>2.0.9</version.powermock>
137-
<version.spotbugs>4.8.6</version.spotbugs>
138-
<version.spotbugs.maven>4.8.6.6</version.spotbugs.maven>
139-
<version.surefire>3.5.2</version.surefire>
137+
<version.spotbugs>4.9.3</version.spotbugs>
138+
<version.spotbugs.maven>4.9.3.0</version.spotbugs.maven>
139+
<version.surefire>3.5.3</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 -->
143143
<!-- in the previous release notes file under the 'documentation/' directory. -->
144-
<date.prev_release>2024-10-08 00:00:00</date.prev_release>
144+
<date.prev_release>2024-11-25 00:00:00</date.prev_release>
145145
</properties>
146146

147147
<dependencies>
@@ -408,7 +408,7 @@
408408
<plugin>
409409
<groupId>org.apache.maven.plugins</groupId>
410410
<artifactId>maven-dependency-plugin</artifactId>
411-
<version>3.8.0</version>
411+
<version>3.8.1</version>
412412
</plugin>
413413
<plugin>
414414
<groupId>org.apache.maven.plugins</groupId>
@@ -418,7 +418,7 @@
418418
<plugin>
419419
<groupId>org.codehaus.mojo</groupId>
420420
<artifactId>versions-maven-plugin</artifactId>
421-
<version>2.17.1</version>
421+
<version>2.18.0</version>
422422
<configuration>
423423
<rulesUri>file:${project.basedir}/versionRuleset.xml</rulesUri>
424424
</configuration>
@@ -431,7 +431,7 @@
431431
<plugin>
432432
<groupId>org.cyclonedx</groupId>
433433
<artifactId>cyclonedx-maven-plugin</artifactId>
434-
<version>2.8.2</version>
434+
<version>2.9.1</version>
435435
<executions>
436436
<execution>
437437
<phase>package</phase>
@@ -467,19 +467,24 @@
467467
<plugin>
468468
<groupId>org.apache.maven.plugins</groupId>
469469
<artifactId>maven-changelog-plugin</artifactId>
470-
<version>2.3</version>
470+
<!-- 3.0.0-M1 is a "milestone" release, which is generally
471+
to an alpha or beta release. Normally we would avoid
472+
those, but generating a changelog is not an essential
473+
task, so we're fine with this.
474+
-->
475+
<version>3.0.0-M1</version>
471476
</plugin>
472477

473478
<plugin>
474479
<groupId>org.apache.maven.plugins</groupId>
475480
<artifactId>maven-clean-plugin</artifactId>
476-
<version>3.4.0</version>
481+
<version>3.4.1</version>
477482
</plugin>
478483

479484
<plugin>
480485
<groupId>org.apache.maven.plugins</groupId>
481486
<artifactId>maven-compiler-plugin</artifactId>
482-
<version>3.13.0</version>
487+
<version>3.14.0</version>
483488
<configuration>
484489
<source>${project.java.target}</source>
485490
<target>${project.java.target}</target>
@@ -513,7 +518,7 @@
513518
<plugin>
514519
<groupId>org.apache.maven.plugins</groupId>
515520
<artifactId>maven-deploy-plugin</artifactId>
516-
<version>3.1.3</version>
521+
<version>3.1.4</version>
517522
</plugin>
518523

519524
<plugin>
@@ -533,7 +538,7 @@
533538
<dependency>
534539
<groupId>org.codehaus.mojo</groupId>
535540
<artifactId>extra-enforcer-rules</artifactId>
536-
<version>1.9.0</version>
541+
<version>1.10.0</version>
537542
</dependency>
538543
<dependency>
539544
<groupId>org.codehaus.mojo</groupId>
@@ -615,7 +620,7 @@
615620
<plugin>
616621
<groupId>org.apache.maven.plugins</groupId>
617622
<artifactId>maven-install-plugin</artifactId>
618-
<version>3.1.3</version>
623+
<version>3.1.4</version>
619624
</plugin>
620625

621626
<plugin>
@@ -635,7 +640,7 @@
635640
<plugin>
636641
<groupId>org.apache.maven.plugins</groupId>
637642
<artifactId>maven-javadoc-plugin</artifactId>
638-
<version>3.10.1</version>
643+
<version>3.11.2</version>
639644
<configuration>
640645
<source>8</source>
641646
<doclint>none</doclint>
@@ -653,19 +658,19 @@
653658
<plugin>
654659
<groupId>org.apache.maven.plugins</groupId>
655660
<artifactId>maven-jxr-plugin</artifactId>
656-
<version>3.5.0</version>
661+
<version>3.6.0</version>
657662
</plugin>
658663

659664
<plugin>
660665
<groupId>org.apache.maven.plugins</groupId>
661666
<artifactId>maven-pmd-plugin</artifactId>
662-
<version>3.25.0</version>
667+
<version>3.26.0</version>
663668
</plugin>
664669

665670
<plugin>
666671
<groupId>org.apache.maven.plugins</groupId>
667672
<artifactId>maven-project-info-reports-plugin</artifactId>
668-
<version>3.7.0</version>
673+
<version>3.9.0</version>
669674
</plugin>
670675

671676
<plugin>
@@ -740,7 +745,7 @@
740745
<plugin>
741746
<groupId>org.owasp</groupId>
742747
<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
748+
<!-- Version 12.x is the latest, but 10.0.4 is the latest that we can use beccause 11.x has a breaking
744749
change that requires Java 11 or later and our mimimal JDK is Java 8.
745750
-->
746751
<version>10.0.4</version>
@@ -776,7 +781,7 @@
776781
<issueLinkUrl>https://github.com/ESAPI/esapi-java-legacy/issues/%ISSUE%</issueLinkUrl>
777782
<type>date</type>
778783
<dates>
779-
<!-- TODO: Be sure to update. Should be date of previous official release -->
784+
<!-- TODO: Be sure to update. Should be date of 10revious official release -->
780785
<!-- Exact date should be in previous release notes file under 'documentation/' directory. -->
781786
<date>${date.prev_release}</date>
782787
</dates>

0 commit comments

Comments
 (0)