[java-identity-provider] branch master updated: Clean up some POM mistakes.

Scott Cantor cantor.2 at osu.edu
Thu Apr 16 13:58:32 EDT 2020


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

scantor pushed a commit to branch master
in repository java-identity-provider.

View the commit online:
http://git.shibboleth.net/view/?p=java-identity-provider.git;a=commit;h=c13d525ed9af04c83bc5519bcf68cb695d36e355

The following commit(s) were added to refs/heads/master by this push:
       new  c13d525   Clean up some POM mistakes.
c13d525 is described below

commit c13d525ed9af04c83bc5519bcf68cb695d36e355
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Thu Apr 16 13:58:29 2020 -0400

    Clean up some POM mistakes.
    
    - Missed a reference to xmlunit-legacy.
    - JavaMail is just a runtime depedendency at the end.
    - Janino is runtime in dist and a test dependency.
---
 idp-conf/pom.xml         |  5 +++++
 idp-distribution/pom.xml | 12 +++++++++++-
 idp-parent/pom.xml       | 17 -----------------
 3 files changed, 16 insertions(+), 18 deletions(-)

diff --git a/idp-conf/pom.xml b/idp-conf/pom.xml
index 9c992cf..d492db3 100644
--- a/idp-conf/pom.xml
+++ b/idp-conf/pom.xml
@@ -147,6 +147,11 @@
             <artifactId>hsqldb</artifactId>
             <scope>test</scope>
         </dependency>
+        <dependency>
+            <groupId>org.codehaus.janino</groupId>
+            <artifactId>janino</artifactId>
+            <scope>test</scope>
+        </dependency>
 
         <!-- Managed Dependencies -->
     </dependencies>
diff --git a/idp-distribution/pom.xml b/idp-distribution/pom.xml
index 2c75652..fc802f0 100644
--- a/idp-distribution/pom.xml
+++ b/idp-distribution/pom.xml
@@ -68,11 +68,21 @@
             <artifactId>logback-core</artifactId>
             <scope>runtime</scope>
         </dependency>
+        <dependency>
+            <groupId>com.sun.mail</groupId>
+            <artifactId>jakarta.mail</artifactId>
+            <scope>runtime</scope>
+        </dependency>
+        <dependency>
+            <groupId>org.codehaus.janino</groupId>
+            <artifactId>janino</artifactId>
+            <scope>runtime</scope>
+        </dependency>
+
         <!-- Support for JVM metrics, per IDP-1205. -->
         <dependency>
             <groupId>io.dropwizard.metrics</groupId>
             <artifactId>metrics-jvm</artifactId>
-            <version>${metrics.version}</version>
             <scope>runtime</scope>
         </dependency>
         
diff --git a/idp-parent/pom.xml b/idp-parent/pom.xml
index 14d24c4..105268f 100644
--- a/idp-parent/pom.xml
+++ b/idp-parent/pom.xml
@@ -129,11 +129,6 @@
             <artifactId>metrics-core</artifactId>
         </dependency>
         <dependency>
-            <!-- needed for logback SMTP appender -->
-            <groupId>org.codehaus.janino</groupId>
-            <artifactId>janino</artifactId>
-        </dependency>
-        <dependency>
             <groupId>net.shibboleth.utilities</groupId>
             <artifactId>java-support</artifactId>
             <version>${java-support.version}</version>
@@ -155,13 +150,6 @@
 
         <!-- Runtime Dependencies -->
 
-        <!-- Needed for logback SMTP appender. -->
-        <dependency>
-            <groupId>com.sun.mail</groupId>
-            <artifactId>jakarta.mail</artifactId>
-            <scope>runtime</scope>
-        </dependency>
-
         <!-- Test Dependencies -->
         <dependency>
             <groupId>${spring.groupId}</groupId>
@@ -174,11 +162,6 @@
             <type>test-jar</type>
             <scope>test</scope>
         </dependency>
-        <dependency>
-            <groupId>org.xmlunit</groupId>
-            <artifactId>xmlunit-legacy</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