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 2012/04/16 04:37:54 UTC

svn commit: r1326466 - /lucene/dev/trunk/dev-tools/maven/lucene/core/pom.xml.template

Author: sarowe
Date: Mon Apr 16 02:37:53 2012
New Revision: 1326466

URL: http://svn.apache.org/viewvc?rev=1326466&view=rev
Log:
LUCENE-3808: Maven configuration: The lucene-core module needs randomizedtesting dependency independently from the test-framework module, since under maven, lucene-core includes test-framework source instead of depending on the test-framework module

Modified:
    lucene/dev/trunk/dev-tools/maven/lucene/core/pom.xml.template

Modified: lucene/dev/trunk/dev-tools/maven/lucene/core/pom.xml.template
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/dev-tools/maven/lucene/core/pom.xml.template?rev=1326466&r1=1326465&r2=1326466&view=diff
==============================================================================
--- lucene/dev/trunk/dev-tools/maven/lucene/core/pom.xml.template (original)
+++ lucene/dev/trunk/dev-tools/maven/lucene/core/pom.xml.template Mon Apr 16 02:37:53 2012
@@ -62,6 +62,11 @@
       <artifactId>ant-junit</artifactId>
       <scope>test</scope>
     </dependency>
+    <dependency>
+      <groupId>com.carrotsearch.randomizedtesting</groupId>
+      <artifactId>randomizedtesting-runner</artifactId>
+      <scope>test</scope>
+    </dependency>
   </dependencies>
   <build>
     <directory>${build-directory}</directory>