[java-opensaml] branch main updated: Fix some dependency issues

Ian Young ian at iay.org.uk
Wed Nov 11 17:57:37 UTC 2020


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

iay 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=b3b6a583853838697eddcacbb4fd7a14d5cc2837

The following commit(s) were added to refs/heads/main by this push:
       new  b3b6a5838 Fix some dependency issues
b3b6a5838 is described below

commit b3b6a583853838697eddcacbb4fd7a14d5cc2837
Author: Ian Young <ian at iay.org.uk>
AuthorDate: Wed Nov 11 17:57:33 2020 +0000

    Fix some dependency issues
    
    spring-core is NOT a compile-time dependency, just used for tests.
---
 opensaml-security-api/pom.xml | 18 +++++-------------
 1 file changed, 5 insertions(+), 13 deletions(-)

diff --git a/opensaml-security-api/pom.xml b/opensaml-security-api/pom.xml
index 70ad93827..2163bb9d9 100644
--- a/opensaml-security-api/pom.xml
+++ b/opensaml-security-api/pom.xml
@@ -63,11 +63,6 @@
             <artifactId>bcpkix-jdk15on</artifactId>
         </dependency>
 
-		<dependency>
-			<groupId>org.springframework</groupId>
-			<artifactId>spring-core</artifactId>
-		</dependency>
-
         <dependency>
             <groupId>${httpclient.groupId}</groupId>
             <artifactId>httpclient</artifactId>
@@ -82,19 +77,16 @@
         <!-- Runtime Dependencies -->
 
         <!-- Test Dependencies -->
-        <dependency>
-            <groupId>${project.groupId}</groupId>
-            <artifactId>opensaml-core</artifactId>
-            <version>${project.version}</version>
-            <type>test-jar</type>
-            <scope>test</scope>
-        </dependency>
-
         <dependency>
           <groupId>${spring.groupId}</groupId>
           <artifactId>spring-beans</artifactId>
           <scope>test</scope>
         </dependency>
+        <dependency>
+            <groupId>org.springframework</groupId>
+            <artifactId>spring-core</artifactId>
+            <scope>test</scope>
+        </dependency>
         <dependency>
           <groupId>${spring.groupId}</groupId>
           <artifactId>spring-test</artifactId>

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


More information about the commits mailing list