LUCENE-6007: move 'transitive="false"' from <dependency>-s to <conf>-s

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1633647 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Steven Rowe 2014-10-22 16:21:30 +00:00
parent 9e9812cbb0
commit 115fbe39d8
1 changed files with 4 additions and 4 deletions

View File

@ -25,15 +25,15 @@
JUnit4 ANT task only, no ANT.
This is used from build scripts for taskdefs.
-->
<conf name="junit4-stdalone" />
<conf name="junit4-stdalone" transitive="false"/>
</configurations>
<dependencies>
<dependency org="org.apache.ant" name="ant" rev="${/org.apache.ant/ant}" conf="compile"/>
<dependency org="junit" name="junit" rev="${/junit/junit}" transitive="false" conf="compile,junit4-stdalone"/>
<dependency org="com.carrotsearch.randomizedtesting" name="junit4-ant" rev="${/com.carrotsearch.randomizedtesting/junit4-ant}" transitive="false" conf="compile,junit4-stdalone"/>
<dependency org="com.carrotsearch.randomizedtesting" name="randomizedtesting-runner" rev="${/com.carrotsearch.randomizedtesting/randomizedtesting-runner}" transitive="false" conf="compile,junit4-stdalone"/>
<dependency org="junit" name="junit" rev="${/junit/junit}" conf="compile,junit4-stdalone"/>
<dependency org="com.carrotsearch.randomizedtesting" name="junit4-ant" rev="${/com.carrotsearch.randomizedtesting/junit4-ant}" conf="compile,junit4-stdalone"/>
<dependency org="com.carrotsearch.randomizedtesting" name="randomizedtesting-runner" rev="${/com.carrotsearch.randomizedtesting/randomizedtesting-runner}" conf="compile,junit4-stdalone"/>
<exclude org="*" ext="*" matcher="regexp" type="${ivy.exclude.types}"/>
</dependencies>