You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@velocity.apache.org by sd...@apache.org on 2015/09/07 08:34:26 UTC

svn commit: r1701552 - in /velocity/tools/trunk: pom.xml velocity-tools-generic/pom.xml

Author: sdumitriu
Date: Mon Sep  7 06:34:25 2015
New Revision: 1701552

URL: http://svn.apache.org/r1701552
Log:
Use properties to gather all instances with the same version

Modified:
    velocity/tools/trunk/pom.xml
    velocity/tools/trunk/velocity-tools-generic/pom.xml

Modified: velocity/tools/trunk/pom.xml
URL: http://svn.apache.org/viewvc/velocity/tools/trunk/pom.xml?rev=1701552&r1=1701551&r2=1701552&view=diff
==============================================================================
--- velocity/tools/trunk/pom.xml (original)
+++ velocity/tools/trunk/pom.xml Mon Sep  7 06:34:25 2015
@@ -43,6 +43,10 @@
     </description>
     <inceptionYear>2002</inceptionYear>
 
+    <properties>
+        <slf4j.version>1.7.12</slf4j.version>
+    </properties>
+
     <build>
         <defaultGoal>install</defaultGoal>
         <pluginManagement>

Modified: velocity/tools/trunk/velocity-tools-generic/pom.xml
URL: http://svn.apache.org/viewvc/velocity/tools/trunk/velocity-tools-generic/pom.xml?rev=1701552&r1=1701551&r2=1701552&view=diff
==============================================================================
--- velocity/tools/trunk/velocity-tools-generic/pom.xml (original)
+++ velocity/tools/trunk/velocity-tools-generic/pom.xml Mon Sep  7 06:34:25 2015
@@ -49,7 +49,7 @@
     <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-api</artifactId>
-      <version>1.7.12</version>
+      <version>${slf4j.version}</version>
     </dependency>
   	<dependency>
   		<groupId>junit</groupId>
@@ -60,7 +60,7 @@
     <dependency>
       <groupId>org.slf4j</groupId>
       <artifactId>slf4j-simple</artifactId>
-      <version>1.7.12</version>
+      <version>${slf4j.version}</version>
     </dependency>
   </dependencies>
 </project>