You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by sa...@apache.org on 2014/10/22 18:22:58 UTC

svn commit: r1633648 - in /lucene/dev/branches/branch_5x: ./ lucene/ lucene/test-framework/ lucene/test-framework/ivy.xml

Author: sarowe
Date: Wed Oct 22 16:22:57 2014
New Revision: 1633648

URL: http://svn.apache.org/r1633648
Log:
LUCENE-6007: move 'transitive="false"' from <dependency>-s to <conf>-s (merged trunk r1633647)

Modified:
    lucene/dev/branches/branch_5x/   (props changed)
    lucene/dev/branches/branch_5x/lucene/   (props changed)
    lucene/dev/branches/branch_5x/lucene/test-framework/   (props changed)
    lucene/dev/branches/branch_5x/lucene/test-framework/ivy.xml

Modified: lucene/dev/branches/branch_5x/lucene/test-framework/ivy.xml
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_5x/lucene/test-framework/ivy.xml?rev=1633648&r1=1633647&r2=1633648&view=diff
==============================================================================
--- lucene/dev/branches/branch_5x/lucene/test-framework/ivy.xml (original)
+++ lucene/dev/branches/branch_5x/lucene/test-framework/ivy.xml Wed Oct 22 16:22:57 2014
@@ -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>