[java-idp-plugin-scripting] branch main updated: JPAR-171 - Parent POM dependencies should be managed only

Scott Cantor cantor.2 at osu.edu
Thu Aug 13 22:00:44 UTC 2020


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

scantor pushed a commit to branch main
in repository java-idp-plugin-scripting.

View the commit online:
http://git.shibboleth.net/view/?p=java-idp-plugin-scripting.git;a=commit;h=442c28ed43f6a3e7d62eecb26eb9274e1f2fa0af

The following commit(s) were added to refs/heads/main by this push:
       new  442c28e   JPAR-171 - Parent POM dependencies should be managed only
442c28e is described below

commit 442c28ed43f6a3e7d62eecb26eb9274e1f2fa0af
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Thu Aug 13 18:00:37 2020 -0400

    JPAR-171 - Parent POM dependencies should be managed only
    
    https://issues.shibboleth.net/jira/browse/JPAR-171
---
 nashorn-impl/pom.xml | 29 +++++++++++++++++++++--------
 rhino-impl/pom.xml   | 34 ++++++++++++++++++++++++----------
 2 files changed, 45 insertions(+), 18 deletions(-)

diff --git a/nashorn-impl/pom.xml b/nashorn-impl/pom.xml
index 6319648..410c50f 100644
--- a/nashorn-impl/pom.xml
+++ b/nashorn-impl/pom.xml
@@ -32,12 +32,21 @@
             <version>0.1.1-SNAPSHOT</version>
         </dependency>
 
+        <dependency>
+            <groupId>${slf4j.groupId}</groupId>
+            <artifactId>slf4j-api</artifactId>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>com.google.code.findbugs</groupId>
+            <artifactId>jsr305</artifactId>
+            <scope>provided</scope>
+        </dependency>
         <dependency>
             <groupId>net.shibboleth.idp</groupId>
             <artifactId>idp-admin-api</artifactId>
             <scope>provided</scope>
         </dependency>
-
         <dependency>
             <groupId>net.shibboleth.utilities</groupId>
             <artifactId>java-support</artifactId>
@@ -46,19 +55,13 @@
         <dependency>
             <groupId>net.shibboleth.ext</groupId>
             <artifactId>spring-extensions</artifactId>
-	    <scope>provided</scope>
+	        <scope>provided</scope>
         </dependency>
         <dependency>
             <groupId>${spring.groupId}</groupId>
             <artifactId>spring-core</artifactId>
             <scope>provided</scope>
         </dependency>
-        <dependency>
-            <groupId>com.google.code.findbugs</groupId>
-            <artifactId>jsr305</artifactId>
-            <scope>provided</scope>
-        </dependency>
-
         <dependency>
             <groupId>${spring.groupId}</groupId>
             <artifactId>spring-beans</artifactId>
@@ -83,6 +86,16 @@
             <artifactId>idp-admin-impl</artifactId>
             <scope>test</scope>
         </dependency>
+        <dependency>
+            <groupId>org.testng</groupId>
+            <artifactId>testng</artifactId>
+            <scope>test</scope>
+        </dependency>        
+        <dependency>
+            <groupId>ch.qos.logback</groupId>
+            <artifactId>logback-classic</artifactId>
+            <scope>test</scope>
+        </dependency>
 
     </dependencies>
 
diff --git a/rhino-impl/pom.xml b/rhino-impl/pom.xml
index 0af59aa..f10b869 100644
--- a/rhino-impl/pom.xml
+++ b/rhino-impl/pom.xml
@@ -30,12 +30,6 @@
             <version>0.1.1-SNAPSHOT</version>
         </dependency>
         
-        <dependency>
-            <groupId>net.shibboleth.idp</groupId>
-            <artifactId>idp-admin-api</artifactId>
-            <scope>provided</scope>
-        </dependency>
-
         <dependency>
             <groupId>org.mozilla</groupId>
             <artifactId>rhino</artifactId>
@@ -43,15 +37,30 @@
         </dependency>
 
         <dependency>
-	    <groupId>net.shibboleth.utilities</groupId>
+            <groupId>${slf4j.groupId}</groupId>
+            <artifactId>slf4j-api</artifactId>
+            <scope>provided</scope>
+        </dependency>
+        <dependency>
+            <groupId>net.shibboleth.utilities</groupId>
             <artifactId>java-support</artifactId>
             <scope>provided</scope>
         </dependency>
+        <dependency>
+            <groupId>net.shibboleth.idp</groupId>
+            <artifactId>idp-admin-api</artifactId>
+            <scope>provided</scope>
+        </dependency>
         <dependency>
             <groupId>${spring.groupId}</groupId>
             <artifactId>spring-core</artifactId>
             <scope>provided</scope>
         </dependency>
+        <dependency>
+            <groupId>${spring.groupId}</groupId>
+            <artifactId>spring-beans</artifactId>
+            <scope>provided</scope>
+        </dependency>
 
         <dependency>
             <groupId>${idp.groupId}</groupId>
@@ -60,9 +69,14 @@
         </dependency>
 
         <dependency>
-            <groupId>${spring.groupId}</groupId>
-            <artifactId>spring-beans</artifactId>
-            <scope>provided</scope>
+            <groupId>org.testng</groupId>
+            <artifactId>testng</artifactId>
+            <scope>test</scope>
+        </dependency>        
+        <dependency>
+            <groupId>ch.qos.logback</groupId>
+            <artifactId>logback-classic</artifactId>
+            <scope>test</scope>
         </dependency>
 
     </dependencies>

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


More information about the commits mailing list