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:01:37 UTC

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

Repository: lucene-solr
Updated Branches:
  refs/heads/master 91424ae96 -> 093a3e871


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/093a3e87
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/093a3e87
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/093a3e87

Branch: refs/heads/master
Commit: 093a3e8711a33e59bea60a179556ec358a70b14e
Parents: 91424ae
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 11:59:56 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/093a3e87/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;