You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by us...@apache.org on 2016/03/20 12:03:20 UTC

lucene-solr:branch_6_0: Update tools for maximum Java 9 compatibility (especially Groovy)

Repository: lucene-solr
Updated Branches:
  refs/heads/branch_6_0 2e06790bd -> 6531ae054


Update tools for maximum Java 9 compatibility (especially Groovy)


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/6531ae05
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/6531ae05
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/6531ae05

Branch: refs/heads/branch_6_0
Commit: 6531ae0540a239d52c9728af532b049568eafcfd
Parents: 2e06790
Author: Uwe Schindler <us...@apache.org>
Authored: Sun Mar 20 11:59:56 2016 +0100
Committer: Uwe Schindler <us...@apache.org>
Committed: Sun Mar 20 12:03:03 2016 +0100

----------------------------------------------------------------------
 lucene/common-build.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/6531ae05/lucene/common-build.xml
----------------------------------------------------------------------
diff --git a/lucene/common-build.xml b/lucene/common-build.xml
index 145f8d2..6348875 100644
--- a/lucene/common-build.xml
+++ b/lucene/common-build.xml
@@ -2342,7 +2342,7 @@ ${ant.project.name}.test.dependencies=${test.classpath.list}
 
   <!-- GROOVY scripting engine for ANT tasks -->
   <target name="resolve-groovy" unless="groovy.loaded" depends="ivy-availability-check,ivy-configure">
-    <ivy:cachepath organisation="org.codehaus.groovy" module="groovy-all" revision="2.4.4"
+    <ivy:cachepath organisation="org.codehaus.groovy" module="groovy-all" revision="2.4.6"
       inline="true" conf="default" type="jar" transitive="true" pathid="groovy.classpath"/>
     <taskdef name="groovy"
       classname="org.codehaus.groovy.ant.Groovy"
@@ -2417,7 +2417,7 @@ ${ant.project.name}.test.dependencies=${test.classpath.list}
   </target>
 
   <target name="resolve-pegdown" unless="pegdown.loaded" depends="resolve-groovy">
-    <ivy:cachepath organisation="org.pegdown" module="pegdown" revision="1.5.0"
+    <ivy:cachepath organisation="org.pegdown" module="pegdown" revision="1.6.0"
       inline="true" conf="default" transitive="true" pathid="pegdown.classpath"/>
     <groovy classpathref="pegdown.classpath"><![CDATA[
       import org.apache.tools.ant.AntTypeDefinition;