You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ws.apache.org by co...@apache.org on 2021/04/12 08:48:22 UTC

[ws-wss4j] branch 2_2_x-fixes updated: Upgrade joda version to 2.2.10 (#34)

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

coheigea pushed a commit to branch 2_2_x-fixes
in repository https://gitbox.apache.org/repos/asf/ws-wss4j.git


The following commit(s) were added to refs/heads/2_2_x-fixes by this push:
     new 13b6bc6  Upgrade joda version to 2.2.10 (#34)
13b6bc6 is described below

commit 13b6bc6ab9c063b3b6a4709fb353e0c4a8a2cf0c
Author: jimma <em...@redhat.com>
AuthorDate: Mon Apr 12 16:48:16 2021 +0800

    Upgrade joda version to 2.2.10 (#34)
---
 parent/pom.xml             |  2 +-
 ws-security-common/pom.xml | 18 +++++++++++++++++-
 2 files changed, 18 insertions(+), 2 deletions(-)

diff --git a/parent/pom.xml b/parent/pom.xml
index 2b05313..a05cf9c 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -49,7 +49,7 @@
         <xz.version>1.8</xz.version>
         <xmlsec.version>2.1.6</xmlsec.version>
         <xmlunit.version>1.6</xmlunit.version>
-        
+        <joda.version>2.10.10</joda.version>
         <!-- OSGi related properties -->
         <wss4j.osgi.import />
         <wss4j.osgi.symbolic.name>${project.groupId}.${project.artifactId}</wss4j.osgi.symbolic.name>
diff --git a/ws-security-common/pom.xml b/ws-security-common/pom.xml
index 45bc690..2bde153 100644
--- a/ws-security-common/pom.xml
+++ b/ws-security-common/pom.xml
@@ -30,7 +30,7 @@
     
     <properties>
         <wss4j.osgi.import>
-            org.joda.time*;version="[1.6,3)",
+            org.joda.time*;version="[2.9,3)",
             net.shibboleth*;resolution:=optional
         </wss4j.osgi.import>
         <!--
@@ -135,6 +135,10 @@
                     <groupId>org.cryptacular</groupId>
                     <artifactId>cryptacular</artifactId>
                 </exclusion>
+                <exclusion>
+                    <groupId>joda-time</groupId>
+                    <artifactId>joda-time</artifactId>
+                </exclusion>
             </exclusions>
         </dependency>
         <dependency>
@@ -144,6 +148,18 @@
             <scope>compile</scope>
         </dependency>
         <dependency>
+            <groupId>joda-time</groupId>
+            <artifactId>joda-time</artifactId>
+            <version>${joda.version}</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.cryptacular</groupId>
+            <artifactId>cryptacular</artifactId>
+            <version>${cryptacular.version}</version>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
             <groupId>org.opensaml</groupId>
             <artifactId>opensaml-xacml-impl</artifactId>
             <version>${opensaml.version}</version>