mirror of https://github.com/apache/lucene.git
LUCENE-6568: Make rat invocation depend on ivy configuration being set up
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1688022 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
23e4ca0c6d
commit
9281fd9378
|
@ -251,6 +251,9 @@ Build
|
|||
* LUCENE-6567: Simplify payload checking in SpanPayloadCheckQuery (Alan
|
||||
Woodward)
|
||||
|
||||
* LUCENE-6568: Make rat invocation depend on ivy configuration being set up
|
||||
(Ramkumar Aiyengar)
|
||||
|
||||
Changes in Backwards Compatibility Policy
|
||||
|
||||
* LUCENE-6553: The iterator returned by the LeafReader.postings method now
|
||||
|
|
|
@ -1811,7 +1811,7 @@ ${ant.project.name}.test.dependencies=${test.classpath.list}
|
|||
</ant>
|
||||
</target>
|
||||
|
||||
<target name="rat-sources-typedef" unless="rat.loaded">
|
||||
<target name="rat-sources-typedef" unless="rat.loaded" depends="ivy-availability-check,ivy-configure">
|
||||
<ivy:cachepath organisation="org.apache.rat" module="apache-rat" revision="0.11" transitive="false" inline="true" conf="master" type="jar" pathid="rat.classpath"/>
|
||||
<typedef resource="org/apache/rat/anttasks/antlib.xml" uri="antlib:org.apache.rat.anttasks" classpathref="rat.classpath"/>
|
||||
<property name="rat.loaded" value="true"/>
|
||||
|
|
Loading…
Reference in New Issue