You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@continuum.apache.org by ol...@apache.org on 2008/12/27 18:41:25 UTC

svn commit: r729648 - in /continuum/trunk: continuum-webapp/pom.xml pom.xml

Author: olamy
Date: Sat Dec 27 09:41:25 2008
New Revision: 729648

URL: http://svn.apache.org/viewvc?rev=729648&view=rev
Log:
move slf4j version to a property

Modified:
    continuum/trunk/continuum-webapp/pom.xml
    continuum/trunk/pom.xml

Modified: continuum/trunk/continuum-webapp/pom.xml
URL: http://svn.apache.org/viewvc/continuum/trunk/continuum-webapp/pom.xml?rev=729648&r1=729647&r2=729648&view=diff
==============================================================================
--- continuum/trunk/continuum-webapp/pom.xml (original)
+++ continuum/trunk/continuum-webapp/pom.xml Sat Dec 27 09:41:25 2008
@@ -377,6 +377,10 @@
     </dependency>
     <dependency>
       <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-api</artifactId>
+    </dependency>    
+    <dependency>
+      <groupId>org.slf4j</groupId>
       <artifactId>slf4j-log4j12</artifactId>
       <scope>runtime</scope>
     </dependency>

Modified: continuum/trunk/pom.xml
URL: http://svn.apache.org/viewvc/continuum/trunk/pom.xml?rev=729648&r1=729647&r2=729648&view=diff
==============================================================================
--- continuum/trunk/pom.xml (original)
+++ continuum/trunk/pom.xml Sat Dec 27 09:41:25 2008
@@ -719,12 +719,12 @@
       <dependency>
         <groupId>org.slf4j</groupId>
         <artifactId>slf4j-api</artifactId>
-        <version>1.5.0</version>
+        <version>${slf4jVersion}</version>
       </dependency>      
       <dependency>
         <groupId>org.slf4j</groupId>
         <artifactId>slf4j-log4j12</artifactId>
-        <version>1.5.0</version>
+        <version>${slf4jVersion}</version>
       </dependency>
       <dependency>
         <groupId>org.codehaus.plexus</groupId>
@@ -1049,5 +1049,6 @@
     <maven-scm.version>1.1</maven-scm.version>
     <redback.version>1.2-beta-1</redback.version>
     <archiva.version>1.1</archiva.version>
+    <slf4jVersion>1.5.0</slf4jVersion>
   </properties>
 </project>