[logback-dev] svn commit: r1243 - in logback/trunk: . log4j-bridge logback-access logback-classic logback-core

noreply.seb at qos.ch noreply.seb at qos.ch
Wed Jan 17 16:12:41 CET 2007


Author: seb
Date: Wed Jan 17 16:12:40 2007
New Revision: 1243

Modified:
   logback/trunk/log4j-bridge/pom.xml
   logback/trunk/logback-access/pom.xml
   logback/trunk/logback-classic/pom.xml
   logback/trunk/logback-core/pom.xml
   logback/trunk/pom.xml

Log:
better luck with configuration inheritance... 

Modified: logback/trunk/log4j-bridge/pom.xml
==============================================================================
--- logback/trunk/log4j-bridge/pom.xml	(original)
+++ logback/trunk/log4j-bridge/pom.xml	Wed Jan 17 16:12:40 2007
@@ -77,9 +77,6 @@
                 target/${artifactId}-${project.version}-jdk14.jar
               </destjar>
               <verify>${retrotranslator.verify}</verify>
-              <verifyClasspath>
-                <element>${path.to.rt.jar}</element>
-              </verifyClasspath>
               <failonwarning>false</failonwarning>
             </configuration>
           </execution>

Modified: logback/trunk/logback-access/pom.xml
==============================================================================
--- logback/trunk/logback-access/pom.xml	(original)
+++ logback/trunk/logback-access/pom.xml	Wed Jan 17 16:12:40 2007
@@ -145,9 +145,6 @@
                 target/${artifactId}-${project.version}-jdk14.jar
               </destjar>
               <verify>${retrotranslator.verify}</verify>
-              <verifyClasspath>
-                <element>${path.to.rt.jar}</element>
-              </verifyClasspath>
               <failonwarning>false</failonwarning>
             </configuration>
           </execution>

Modified: logback/trunk/logback-classic/pom.xml
==============================================================================
--- logback/trunk/logback-classic/pom.xml	(original)
+++ logback/trunk/logback-classic/pom.xml	Wed Jan 17 16:12:40 2007
@@ -145,9 +145,6 @@
                 target/${artifactId}-${project.version}-jdk14.jar
               </destjar>
               <verify>${retrotranslator.verify}</verify>
-              <verifyClasspath>
-                <element>${path.to.rt.jar}</element>
-              </verifyClasspath>
               <failonwarning>false</failonwarning>
             </configuration>
           </execution>

Modified: logback/trunk/logback-core/pom.xml
==============================================================================
--- logback/trunk/logback-core/pom.xml	(original)
+++ logback/trunk/logback-core/pom.xml	Wed Jan 17 16:12:40 2007
@@ -114,9 +114,6 @@
                 target/${artifactId}-${project.version}-jdk14.jar
               </destjar>
               <verify>${retrotranslator.verify}</verify>
-              <verifyClasspath>
-                <element>${path.to.rt.jar}</element>
-              </verifyClasspath>
               <failonwarning>false</failonwarning>
             </configuration>
           </execution>

Modified: logback/trunk/pom.xml
==============================================================================
--- logback/trunk/pom.xml	(original)
+++ logback/trunk/pom.xml	Wed Jan 17 16:12:40 2007
@@ -118,7 +118,7 @@
     </dependencies>
   </dependencyManagement>
   
-  <profiles>
+  <profiles>    
     <profile>
       <id>testSkip</id>
       <properties>
@@ -147,6 +147,18 @@
       </dependencies>
       <build>
       	<defaultGoal>process-classes</defaultGoal>
+      	<plugins>
+      		<plugin>
+      			<groupId>org.codehaus.mojo</groupId>
+        		<artifactId>retrotranslator-maven-plugin</artifactId>
+        		<inherited>true</inherited>
+        		<configuration>
+              <verifyClasspath>
+                <element>${path.to.rt.jar}</element>
+              </verifyClasspath>
+        		</configuration>
+      		</plugin>
+      	</plugins>
       </build>
     </profile>    
   </profiles>



More information about the logback-dev mailing list