[logback-dev] svn commit: r1885 - in logback/trunk: . logback-access logback-classic

noreply.ceki at qos.ch noreply.ceki at qos.ch
Tue Oct 28 10:51:24 CET 2008


Author: ceki
Date: Tue Oct 28 10:51:23 2008
New Revision: 1885

Modified:
   logback/trunk/logback-access/pom.xml
   logback/trunk/logback-classic/pom.xml
   logback/trunk/pom.xml

Log:
Fixing http://jira.codehaus.org/browse/MNG-2045 as suggested by Joerg Schaible.

Given dependencies on test-jar logback could not be build as 'mvn package' from 
a pristine local repository. One had to 'mvn install' first. 

Modified: logback/trunk/logback-access/pom.xml
==============================================================================
--- logback/trunk/logback-access/pom.xml	(original)
+++ logback/trunk/logback-access/pom.xml	Tue Oct 28 10:51:23 2008
@@ -43,7 +43,7 @@
 		<dependency>
 			<groupId>ch.qos.logback</groupId>
 			<artifactId>logback-core</artifactId>
-			<classifier>tests</classifier>
+			<type>test-jar</type>
 			<scope>test</scope>
 		</dependency>
 

Modified: logback/trunk/logback-classic/pom.xml
==============================================================================
--- logback/trunk/logback-classic/pom.xml	(original)
+++ logback/trunk/logback-classic/pom.xml	Tue Oct 28 10:51:23 2008
@@ -48,7 +48,7 @@
    <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-api</artifactId>
-      <classifier>tests</classifier>
+      <type>test-jar</type>
       <version>${slf4j.version}</version>
       <scope>test</scope>
     </dependency>
@@ -89,7 +89,7 @@
     <dependency>
       <groupId>ch.qos.logback</groupId>
       <artifactId>logback-core</artifactId>
-      <classifier>tests</classifier>
+      <type>test-jar</type>
       <scope>test</scope>
     </dependency>
 

Modified: logback/trunk/pom.xml
==============================================================================
--- logback/trunk/pom.xml	(original)
+++ logback/trunk/pom.xml	Tue Oct 28 10:51:23 2008
@@ -54,7 +54,7 @@
         <groupId>ch.qos.logback</groupId>
         <artifactId>logback-core</artifactId>
         <version>${project.version}</version>
-        <classifier>tests</classifier>
+        <type>test-jar</type>
       </dependency>
       
       <dependency>


More information about the logback-dev mailing list