Update some build dependencies to newer versions (pegdown uses ASM 5, Groovy is now ASF project, SvnKit)

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1692102 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Uwe Schindler 2015-07-21 12:48:08 +00:00
parent 3b63fbe07a
commit 585f8a7b26
2 changed files with 3 additions and 3 deletions

View File

@ -25,7 +25,7 @@
<import file="lucene/common-build.xml"/>
<property name="svnkit.version" value="1.8.7"/>
<property name="svnkit.version" value="1.8.10"/>
<target name="-run-test">
<mkdir dir="lucene/build" />

View File

@ -2341,7 +2341,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.3.10"
<ivy:cachepath organisation="org.codehaus.groovy" module="groovy-all" revision="2.4.4"
inline="true" conf="default" type="jar" transitive="true" pathid="groovy.classpath"/>
<taskdef name="groovy"
classname="org.codehaus.groovy.ant.Groovy"
@ -2416,7 +2416,7 @@ ${ant.project.name}.test.dependencies=${test.classpath.list}
<!-- PEGDOWN macro: Before using depend on the target "resolve-pegdown,resolve-groovy" -->
<target name="resolve-pegdown" unless="pegdown.loaded" depends="ivy-availability-check,ivy-configure">
<ivy:cachepath organisation="org.pegdown" module="pegdown" revision="1.4.2"
<ivy:cachepath organisation="org.pegdown" module="pegdown" revision="1.5.0"
inline="true" conf="default" transitive="true" pathid="pegdown.classpath"/>
<property name="pegdown.loaded" value="true"/>
</target>