This is an automated email from the ASF dual-hosted git repository.

robertlazarski pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/axis-axis2-java-rampart.git

commit 08fd2e334b9271280ae876d8313cd086e4e479ec
Author: Robert Lazarski <[email protected]>
AuthorDate: Tue Jun 9 11:52:49 2026 -1000

    Use released Axis2 2.0.1, fix JDK 25 build, bump dependencies
    
    Prepare for the Rampart 2.0.0 release.
    
    - axis2.version 2.0.1-SNAPSHOT -> 2.0.1 (released): fixes CI failure
      "Unknown packaging: mar" / axis2-mar-maven-plugin could not be
      resolved, and removes the forbidden SNAPSHOT dependency from a release.
    - gmavenplus groovy-all 4.0.23 -> 4.0.32: Groovy 4.0.23 predates JDK 25
      and failed the Java 25 CI matrix job in rampart-dist with
      "Unsupported class file major version 69".
    - apache.snapshots plugin repo http:// -> https:// (modern Maven blocks
      plaintext HTTP repositories).
    
    Stable dependency upgrades:
    - opensaml 5.2.1 -> 5.2.2
    - bcprov/bcpkix 1.83 -> 1.84
    - dropwizard metrics 4.2.38 -> 4.2.39
    - jacoco 0.8.14 -> 0.8.15
    - maven-dependency-plugin 3.10.0 -> 3.11.0
    - maven-enforcer-plugin 3.6.2 -> 3.6.3
    
    Verified with a full clean -Papache-release verify (all 12 modules,
    all tests including the 9 policy samples) on JDK 25.
    
    Co-Authored-By: Claude Opus 4.8 (1M context) <[email protected]>
---
 pom.xml | 18 +++++++++---------
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/pom.xml b/pom.xml
index 9784c58a..6d9d9807 100644
--- a/pom.xml
+++ b/pom.xml
@@ -184,14 +184,14 @@
                         <dependency>
                             <groupId>org.apache.groovy</groupId>
                             <artifactId>groovy-all</artifactId>
-                            <version>4.0.23</version>
+                            <version>4.0.32</version>
                             <type>pom</type>
                         </dependency>
                     </dependencies>
                 </plugin>
                 <plugin>
                     <artifactId>maven-dependency-plugin</artifactId>
-                    <version>3.10.0</version>
+                    <version>3.11.0</version>
                 </plugin>
                 <plugin>
                     <artifactId>maven-antrun-plugin</artifactId>
@@ -228,7 +228,7 @@
         <plugins>
             <plugin>
                 <artifactId>maven-enforcer-plugin</artifactId>
-                <version>3.6.2</version>
+                <version>3.6.3</version>
                 <executions>
                     <execution>
                         <phase>validate</phase>
@@ -843,20 +843,20 @@
             3. Re-run the full reactor plus the nine policy samples before
                pushing.
         -->
-        <axis2.version>2.0.1-SNAPSHOT</axis2.version>
+        <axis2.version>2.0.1</axis2.version>
         <axiom.version>2.0.0</axiom.version>
 
         <wss4j.version>4.0.1</wss4j.version>
-        <opensaml.version>5.2.1</opensaml.version>
+        <opensaml.version>5.2.2</opensaml.version>
         <shibboleth.utilities.version>8.4.2</shibboleth.utilities.version>
-        <dropwizard.metrics.version>4.2.38</dropwizard.metrics.version>
+        <dropwizard.metrics.version>4.2.39</dropwizard.metrics.version>
         <cryptacular.version>1.3.0</cryptacular.version>
 
-        <bcprov.jdk18.version>1.83</bcprov.jdk18.version>
+        <bcprov.jdk18.version>1.84</bcprov.jdk18.version>
 
         <failIfNoTests>false</failIfNoTests>
 
-        <jacoco.version>0.8.14</jacoco.version>
+        <jacoco.version>0.8.15</jacoco.version>
         <slf4j.version>2.0.16</slf4j.version>
         <log4j.version>2.25.4</log4j.version>
        <!-- see the parent artifact 'apache' i.e 33, it defaults to a older 
version-->
@@ -866,7 +866,7 @@
     <pluginRepositories>
          <pluginRepository>
              <id>apache.snapshots</id>
-             <url>http://repository.apache.org/snapshots/</url>
+             <url>https://repository.apache.org/snapshots/</url>
              <snapshots>
                  <enabled>true</enabled>
              </snapshots>

Reply via email to