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 2022/03/15 09:26:25 UTC

[ws-wss4j] branch master updated: Moving SAAJ out of profile

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

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


The following commit(s) were added to refs/heads/master by this push:
     new a4b8b8c  Moving SAAJ out of profile
a4b8b8c is described below

commit a4b8b8c175ce52063be546e8d2673775310aceed
Author: Colm O hEigeartaigh <co...@apache.org>
AuthorDate: Tue Mar 15 09:26:13 2022 +0000

    Moving SAAJ out of profile
---
 integration/pom.xml             |  5 +++++
 parent/pom.xml                  |  5 +++++
 pom.xml                         | 12 ++----------
 ws-security-common/pom.xml      |  5 +++++
 ws-security-dom/pom.xml         |  5 +++++
 ws-security-policy-stax/pom.xml |  5 +++++
 ws-security-stax/pom.xml        |  5 +++++
 7 files changed, 32 insertions(+), 10 deletions(-)

diff --git a/integration/pom.xml b/integration/pom.xml
index 8e5fa08..6c53282 100644
--- a/integration/pom.xml
+++ b/integration/pom.xml
@@ -99,5 +99,10 @@
             <artifactId>bcprov-jdk15on</artifactId>
             <scope>test</scope>
         </dependency>
+        <dependency>
+            <groupId>com.sun.xml.messaging.saaj</groupId>
+            <artifactId>saaj-impl</artifactId>
+            <scope>test</scope>
+        </dependency>
     </dependencies>
 </project>
diff --git a/parent/pom.xml b/parent/pom.xml
index ad9b617..9f0c996 100644
--- a/parent/pom.xml
+++ b/parent/pom.xml
@@ -150,6 +150,11 @@
                 <artifactId>hamcrest-library</artifactId>
                 <version>${hamcrest.version}</version>
             </dependency>
+            <dependency>
+                <groupId>com.sun.xml.messaging.saaj</groupId>
+                <artifactId>saaj-impl</artifactId>
+                <version>2.0.1</version>
+            </dependency>
         </dependencies>
     </dependencyManagement>
 
diff --git a/pom.xml b/pom.xml
index 78907e9..78ca373 100644
--- a/pom.xml
+++ b/pom.xml
@@ -365,7 +365,7 @@
                 <checkstyle.skip>true</checkstyle.skip>
             </properties>
         </profile>
-         <profile>
+        <profile>
             <id>jdk19-plus</id>
             <activation>
                 <jdk>[9,)</jdk>
@@ -393,15 +393,7 @@
                     </plugins>
                 </pluginManagement>
             </build>
-            <dependencies>
-                 <dependency>
-                     <groupId>com.sun.xml.messaging.saaj</groupId>
-                     <artifactId>saaj-impl</artifactId>
-                     <scope>test</scope>
-                     <version>2.0.1</version>
-                </dependency>
-             </dependencies>
-         </profile>
+        </profile>
 
         <profile>
             <id>activate-buildtools-in-module</id>
diff --git a/ws-security-common/pom.xml b/ws-security-common/pom.xml
index 01e33a0..8f128cd 100644
--- a/ws-security-common/pom.xml
+++ b/ws-security-common/pom.xml
@@ -249,6 +249,11 @@
             <artifactId>hamcrest-library</artifactId>
             <scope>test</scope>
         </dependency>
+        <dependency>
+            <groupId>com.sun.xml.messaging.saaj</groupId>
+            <artifactId>saaj-impl</artifactId>
+            <scope>test</scope>
+        </dependency>
     </dependencies>
 
 </project>
diff --git a/ws-security-dom/pom.xml b/ws-security-dom/pom.xml
index d5ab7b0..5cef70b 100644
--- a/ws-security-dom/pom.xml
+++ b/ws-security-dom/pom.xml
@@ -131,6 +131,11 @@
             <artifactId>xalan</artifactId>
             <scope>test</scope>
         </dependency>
+        <dependency>
+            <groupId>com.sun.xml.messaging.saaj</groupId>
+            <artifactId>saaj-impl</artifactId>
+            <scope>test</scope>
+        </dependency>
     </dependencies>
 
 </project>
diff --git a/ws-security-policy-stax/pom.xml b/ws-security-policy-stax/pom.xml
index ea5eb39..7b3839a 100644
--- a/ws-security-policy-stax/pom.xml
+++ b/ws-security-policy-stax/pom.xml
@@ -89,6 +89,11 @@
             <artifactId>slf4j-log4j12</artifactId>
             <scope>test</scope>
         </dependency>
+        <dependency>
+            <groupId>com.sun.xml.messaging.saaj</groupId>
+            <artifactId>saaj-impl</artifactId>
+            <scope>test</scope>
+        </dependency>
     </dependencies>
     <build>
         <plugins>
diff --git a/ws-security-stax/pom.xml b/ws-security-stax/pom.xml
index 3117d18..7034987 100644
--- a/ws-security-stax/pom.xml
+++ b/ws-security-stax/pom.xml
@@ -110,6 +110,11 @@
             <version>${jaxb-runtime.version}</version>
             <scope>runtime</scope>
         </dependency>
+        <dependency>
+            <groupId>com.sun.xml.messaging.saaj</groupId>
+            <artifactId>saaj-impl</artifactId>
+            <scope>test</scope>
+        </dependency>
     </dependencies>
     <build>
         <plugins>