You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@sling.apache.org by ol...@apache.org on 2015/12/15 14:04:27 UTC

svn commit: r1720149 - /sling/trunk/contrib/scripting/groovy/pom.xml

Author: olli
Date: Tue Dec 15 13:04:27 2015
New Revision: 1720149

URL: http://svn.apache.org/viewvc?rev=1720149&view=rev
Log:
SLING-5377 Update Groovy to 2.4.5

* add property groovy.version 2.4.5
* use groovy, groovy-json, groovy-templates and groovy-xml instead of groovy-all

Modified:
    sling/trunk/contrib/scripting/groovy/pom.xml

Modified: sling/trunk/contrib/scripting/groovy/pom.xml
URL: http://svn.apache.org/viewvc/sling/trunk/contrib/scripting/groovy/pom.xml?rev=1720149&r1=1720148&r2=1720149&view=diff
==============================================================================
--- sling/trunk/contrib/scripting/groovy/pom.xml (original)
+++ sling/trunk/contrib/scripting/groovy/pom.xml Tue Dec 15 13:04:27 2015
@@ -37,6 +37,10 @@
         Support for scripting with Groovy
     </description>
 
+  <properties>
+    <groovy.version>2.4.5</groovy.version>
+  </properties>
+
     <scm>
         <connection>scm:svn:http://svn.apache.org/repos/asf/sling/trunk/contrib/scripting/groovy</connection>
         <developerConnection>scm:svn:https://svn.apache.org/repos/asf/sling/trunk/contrib/scripting/groovy</developerConnection>
@@ -58,12 +62,30 @@
     </build>
 
     <dependencies>
-        <dependency>
-            <groupId>org.codehaus.groovy</groupId>
-            <artifactId>groovy-all</artifactId>
-            <version>2.4.3</version>
-            <scope>provided</scope>
-        </dependency>
+    <dependency>
+      <groupId>org.codehaus.groovy</groupId>
+      <artifactId>groovy</artifactId>
+      <version>${groovy.version}</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.groovy</groupId>
+      <artifactId>groovy-json</artifactId>
+      <version>${groovy.version}</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.groovy</groupId>
+      <artifactId>groovy-templates</artifactId>
+      <version>${groovy.version}</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.codehaus.groovy</groupId>
+      <artifactId>groovy-xml</artifactId>
+      <version>${groovy.version}</version>
+      <scope>provided</scope>
+    </dependency>
         <dependency>
             <groupId>org.slf4j</groupId>
             <artifactId>slf4j-api</artifactId>