You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@turbine.apache.org by pa...@apache.org on 2019/01/05 16:20:19 UTC

svn commit: r1850498 - /turbine/core/trunk/pom.xml

Author: painter
Date: Sat Jan  5 16:20:19 2019
New Revision: 1850498

URL: http://svn.apache.org/viewvc?rev=1850498&view=rev
Log:
Make torque version a property for easy update

Modified:
    turbine/core/trunk/pom.xml

Modified: turbine/core/trunk/pom.xml
URL: http://svn.apache.org/viewvc/turbine/core/trunk/pom.xml?rev=1850498&r1=1850497&r2=1850498&view=diff
==============================================================================
--- turbine/core/trunk/pom.xml (original)
+++ turbine/core/trunk/pom.xml Sat Jan  5 16:20:19 2019
@@ -562,7 +562,7 @@
       <plugin>
         <groupId>org.apache.torque</groupId>
         <artifactId>torque-maven-plugin</artifactId>
-        <version>4.0</version>
+        <version>${torque.version}</version>
         <configuration>
           <targetDatabase>mysql</targetDatabase>
           <schemaDir>src/torque/schema</schemaDir>
@@ -817,7 +817,7 @@
             <dependency>
                 <groupId>org.apache.torque</groupId>
                 <artifactId>torque-templates</artifactId>
-                <version>4.0</version>
+                <version>${torque.version}</version>
             </dependency>
         </dependencies>
       </plugin>
@@ -969,7 +969,7 @@
     <dependency>
       <groupId>org.apache.torque</groupId>
       <artifactId>torque-runtime</artifactId>
-      <version>4.0</version>
+      <version>${torque.version}</version>
       <exclusions>
         <exclusion>
             <groupId>avalon-framework</groupId>
@@ -1195,6 +1195,7 @@
     <slf4j.version>1.7.25</slf4j.version>
     <log4j2.version>2.11.1</log4j2.version>
     <dependency.check.skip>true</dependency.check.skip>
+    <torque.version>4.0</torque.version>
   </properties>
 
 </project>