You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@manifoldcf.apache.org by kw...@apache.org on 2022/05/09 09:33:47 UTC

svn commit: r1900730 - in /manifoldcf/trunk: framework/core/pom.xml framework/ui-core/pom.xml pom.xml

Author: kwright
Date: Mon May  9 09:33:47 2022
New Revision: 1900730

URL: http://svn.apache.org/viewvc?rev=1900730&view=rev
Log:
Fix maven poms to use right version of velocity

Modified:
    manifoldcf/trunk/framework/core/pom.xml
    manifoldcf/trunk/framework/ui-core/pom.xml
    manifoldcf/trunk/pom.xml

Modified: manifoldcf/trunk/framework/core/pom.xml
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/core/pom.xml?rev=1900730&r1=1900729&r2=1900730&view=diff
==============================================================================
--- manifoldcf/trunk/framework/core/pom.xml (original)
+++ manifoldcf/trunk/framework/core/pom.xml Mon May  9 09:33:47 2022
@@ -83,8 +83,8 @@
     </dependency>
     <dependency>
       <groupId>org.apache.velocity</groupId>
-      <artifactId>velocity</artifactId>
-      <version>${velocity.version}</version>
+      <artifactId>velocity-engine-core</artifactId>
+      <version>${velocity-engine-core.version}</version>
       <exclusions>
         <exclusion>
           <groupId>oro</groupId>

Modified: manifoldcf/trunk/framework/ui-core/pom.xml
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/framework/ui-core/pom.xml?rev=1900730&r1=1900729&r2=1900730&view=diff
==============================================================================
--- manifoldcf/trunk/framework/ui-core/pom.xml (original)
+++ manifoldcf/trunk/framework/ui-core/pom.xml Mon May  9 09:33:47 2022
@@ -97,8 +97,8 @@
     </dependency>
     <dependency>
       <groupId>org.apache.velocity</groupId>
-      <artifactId>velocity</artifactId>
-      <version>${velocity.version}</version>
+      <artifactId>velocity-engine-core</artifactId>
+      <version>${velocity-engine-core.version}</version>
     </dependency>
   </dependencies>
 </project>

Modified: manifoldcf/trunk/pom.xml
URL: http://svn.apache.org/viewvc/manifoldcf/trunk/pom.xml?rev=1900730&r1=1900729&r2=1900730&view=diff
==============================================================================
--- manifoldcf/trunk/pom.xml (original)
+++ manifoldcf/trunk/pom.xml Mon May  9 09:33:47 2022
@@ -78,7 +78,7 @@
     <jstl.version>1.2</jstl.version>
     <glassfish.version>2.1.v20091210</glassfish.version>
     <log4j.version>2.17.0</log4j.version>
-    <velocity.version>1.7</velocity.version>
+    <velocity-engine-core.version>2.3</velocity-engine-core.version>
     <slf4j.version>1.7.7</slf4j.version>
     <jaxb.version>2.2.6</jaxb.version>
     <zookeeper.version>3.4.10</zookeeper.version>