[java-parent-project] branch master updated: JPAR-171 - Parent POM dependencies should be managed only

Scott Cantor cantor.2 at osu.edu
Thu Aug 13 20:43:10 UTC 2020


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

scantor pushed a commit to branch master
in repository java-parent-project.

View the commit online:
http://git.shibboleth.net/view/?p=java-parent-project.git;a=commit;h=75bf1e85d218f64c012333e83b421011fd9b3bc6

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

commit 75bf1e85d218f64c012333e83b421011fd9b3bc6
Author: Scott Cantor <cantor.2 at osu.edu>
AuthorDate: Thu Aug 13 16:43:03 2020 -0400

    JPAR-171 - Parent POM dependencies should be managed only
    
    https://issues.shibboleth.net/jira/browse/JPAR-171
---
 pom.xml | 30 ++++++++++++------------------
 1 file changed, 12 insertions(+), 18 deletions(-)

diff --git a/pom.xml b/pom.xml
index 37b9344..c239a9b 100644
--- a/pom.xml
+++ b/pom.xml
@@ -185,37 +185,25 @@
         </pluginRepository>
     </pluginRepositories>
 
-    <!-- Dependencies set for all projects. Be certain anything added here really should apply to every single project. -->
+    <!-- Dependencies set for all projects. This should remain empty. -->
     <dependencies>
         <!-- Compile dependencies -->
-        <dependency>
-            <groupId>${slf4j.groupId}</groupId>
-            <artifactId>slf4j-api</artifactId>
-            <version>${slf4j.version}</version>
-        </dependency>
 
         <!-- Runtime dependencies -->
 
         <!-- Provided dependencies -->
 
         <!-- Test dependencies -->
-        <dependency>
-            <groupId>ch.qos.logback</groupId>
-            <artifactId>logback-classic</artifactId>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.testng</groupId>
-            <artifactId>testng</artifactId>
-            <version>7.1.0</version>
-            <scope>test</scope>
-        </dependency>
     </dependencies>
 
     <!-- Dependencies with fixed versions and excludes that may be used by projects. -->
     <dependencyManagement>
         <dependencies>
-            <!-- Compile dependencies -->
+            <dependency>
+                <groupId>${slf4j.groupId}</groupId>
+                <artifactId>slf4j-api</artifactId>
+                <version>${slf4j.version}</version>
+            </dependency>
             <dependency>
                 <groupId>commons-codec</groupId>
                 <artifactId>commons-codec</artifactId>
@@ -545,6 +533,12 @@
             </dependency>
 
             <!-- Test dependencies -->
+            <dependency>
+                <groupId>org.testng</groupId>
+                <artifactId>testng</artifactId>
+                <version>7.1.0</version>
+                <scope>test</scope>
+            </dependency>
             <dependency>
                 <groupId>org.mockito</groupId>
                 <artifactId>mockito-core</artifactId>

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


More information about the commits mailing list