[java-opensaml] branch main updated: Move managed test dependencies out of parent POM.

Scott Cantor cantor.2 at osu.edu
Thu Sep 15 14:40:34 UTC 2022


This is an automated email from the git hooks/post-receive script.

scantor pushed a commit to branch main
in repository java-opensaml.

View the commit online:
http://git.shibboleth.net/view/?p=java-opensaml.git;a=commit;h=5d9db8018ce94b0ff6f8fb2cc4bc304efa63fefb

The following commit(s) were added to refs/heads/main by this push:
     new 5d9db8018 Move managed test dependencies out of parent POM.
5d9db8018 is described below

commit 5d9db8018ce94b0ff6f8fb2cc4bc304efa63fefb
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Thu Sep 15 10:40:31 2022 -0400

    Move managed test dependencies out of parent POM.
---
 opensaml-core/pom.xml            | 10 ++++++++++
 opensaml-parent/pom.xml          | 11 -----------
 opensaml-saml-impl/pom.xml       | 30 ++++++++++++++++++------------
 opensaml-xacml-impl/pom.xml      | 11 +++++++++++
 opensaml-xacml-saml-impl/pom.xml | 10 ++++++++++
 5 files changed, 49 insertions(+), 23 deletions(-)

diff --git a/opensaml-core/pom.xml b/opensaml-core/pom.xml
index 35f39848c..1de55ff7b 100644
--- a/opensaml-core/pom.xml
+++ b/opensaml-core/pom.xml
@@ -42,6 +42,16 @@
         <!-- Runtime Dependencies -->
 
         <!-- Test Dependencies -->
+        <dependency>
+            <groupId>org.xmlunit</groupId>
+            <artifactId>xmlunit-core</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.xmlunit</groupId>
+            <artifactId>xmlunit-matchers</artifactId>
+            <scope>test</scope>
+        </dependency>
     </dependencies>
     
     <build>
diff --git a/opensaml-parent/pom.xml b/opensaml-parent/pom.xml
index 315528364..7707bb1f1 100644
--- a/opensaml-parent/pom.xml
+++ b/opensaml-parent/pom.xml
@@ -115,17 +115,6 @@
             <artifactId>logback-classic</artifactId>
             <scope>test</scope>
         </dependency>
-        <dependency>
-            <groupId>org.xmlunit</groupId>
-            <artifactId>xmlunit-core</artifactId>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.xmlunit</groupId>
-            <artifactId>xmlunit-matchers</artifactId>
-            <scope>test</scope>
-        </dependency>
-
     </dependencies>
 
     <!-- Dependencies which are not required by every project module but for which every module should use the same version
diff --git a/opensaml-saml-impl/pom.xml b/opensaml-saml-impl/pom.xml
index 470c9ce25..1e244b3de 100644
--- a/opensaml-saml-impl/pom.xml
+++ b/opensaml-saml-impl/pom.xml
@@ -165,13 +165,6 @@
             <type>test-jar</type>
             <scope>test</scope>
         </dependency>
-        <dependency>
-            <groupId>${project.groupId}</groupId>
-            <artifactId>opensaml-security-api</artifactId>
-            <version>${project.version}</version>
-            <type>test-jar</type>
-            <scope>test</scope>
-        </dependency>
         <dependency>
             <groupId>${project.groupId}</groupId>
             <artifactId>opensaml-testing</artifactId>
@@ -188,6 +181,24 @@
             <artifactId>shib-spring</artifactId>
             <scope>test</scope>
         </dependency>
+
+        <dependency>
+            <groupId>org.xmlunit</groupId>
+            <artifactId>xmlunit-core</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.xmlunit</groupId>
+            <artifactId>xmlunit-matchers</artifactId>
+            <scope>test</scope>
+        </dependency>
+        
+        <dependency>
+            <groupId>org.jsoup</groupId>
+            <artifactId>jsoup</artifactId>
+            <scope>test</scope>
+        </dependency>
+
         <dependency>
             <groupId>${spring.groupId}</groupId>
             <artifactId>spring-test</artifactId>
@@ -204,11 +215,6 @@
             <artifactId>spring-core</artifactId>
             <scope>test</scope>
         </dependency>
-        <dependency>
-            <groupId>org.jsoup</groupId>
-            <artifactId>jsoup</artifactId>
-            <scope>test</scope>
-        </dependency>
     </dependencies>
 
     <profiles>
diff --git a/opensaml-xacml-impl/pom.xml b/opensaml-xacml-impl/pom.xml
index 70a3ee4a0..9f3e46352 100644
--- a/opensaml-xacml-impl/pom.xml
+++ b/opensaml-xacml-impl/pom.xml
@@ -51,6 +51,17 @@
             <type>test-jar</type>
             <scope>test</scope>
         </dependency>
+
+        <dependency>
+            <groupId>org.xmlunit</groupId>
+            <artifactId>xmlunit-core</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.xmlunit</groupId>
+            <artifactId>xmlunit-matchers</artifactId>
+            <scope>test</scope>
+        </dependency>
     </dependencies>
     
     <scm>
diff --git a/opensaml-xacml-saml-impl/pom.xml b/opensaml-xacml-saml-impl/pom.xml
index 1b0c4d6e9..ab2b1dc1a 100644
--- a/opensaml-xacml-saml-impl/pom.xml
+++ b/opensaml-xacml-saml-impl/pom.xml
@@ -68,6 +68,16 @@
             <scope>test</scope>
         </dependency>
         
+        <dependency>
+            <groupId>org.xmlunit</groupId>
+            <artifactId>xmlunit-core</artifactId>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.xmlunit</groupId>
+            <artifactId>xmlunit-matchers</artifactId>
+            <scope>test</scope>
+        </dependency>
     </dependencies>
     
     <scm>

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the commits mailing list