LUCENE-8738: Add missing dependency for Maven build

This commit is contained in:
Uwe Schindler 2019-04-20 00:51:55 +02:00
parent cef7952569
commit 77e1bec7dc
1 changed files with 7 additions and 3 deletions

View File

@ -2311,8 +2311,12 @@ ${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-ant" revision="2.5.6"
inline="true" conf="default" type="jar" transitive="true" pathid="groovy.classpath"/>
<property name="groovy.version" value="2.5.6"/>
<ivy:cachepath transitive="true" resolveId="groovy" pathid="groovy.classpath">
<ivy:dependency org="org.codehaus.groovy" name="groovy" rev="${groovy.version}" conf="default" />
<ivy:dependency org="org.codehaus.groovy" name="groovy-ant" rev="${groovy.version}" conf="default" />
<ivy:dependency org="org.codehaus.groovy" name="groovy-xml" rev="${groovy.version}" conf="default" />
</ivy:cachepath>
<taskdef name="groovy"
classname="org.codehaus.groovy.ant.Groovy"
classpathref="groovy.classpath"/>
@ -2389,7 +2393,7 @@ ${ant.project.name}.test.dependencies=${test.classpath.list}
<target name="resolve-markdown" unless="markdown.loaded" depends="resolve-groovy">
<property name="flexmark.version" value="0.16.1"/>
<ivy:cachepath transitive="true" pathid="markdown.classpath">
<ivy:cachepath transitive="true" resolveId="flexmark" pathid="markdown.classpath">
<ivy:dependency org="com.vladsch.flexmark" name="flexmark" rev="${flexmark.version}" conf="default" />
<ivy:dependency org="com.vladsch.flexmark" name="flexmark-ext-autolink" rev="${flexmark.version}" conf="default" />
<ivy:dependency org="com.vladsch.flexmark" name="flexmark-ext-abbreviation" rev="${flexmark.version}" conf="default" />