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/10 21:42:40 UTC

svn commit: r1311957 - /lucene/dev/trunk/dev-tools/maven/solr/test-framework/pom.xml.template

Author: sarowe
Date: Tue Apr 10 19:42:40 2012
New Revision: 1311957

URL: http://svn.apache.org/viewvc?rev=1311957&view=rev
Log:
SOLR-3344: Maven configuration: In Solr test-framework POM template, switch Jetty dependencies' scope from compile to runtime, since these dependencies are not required during compilation

Modified:
    lucene/dev/trunk/dev-tools/maven/solr/test-framework/pom.xml.template

Modified: lucene/dev/trunk/dev-tools/maven/solr/test-framework/pom.xml.template
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/dev-tools/maven/solr/test-framework/pom.xml.template?rev=1311957&r1=1311956&r2=1311957&view=diff
==============================================================================
--- lucene/dev/trunk/dev-tools/maven/solr/test-framework/pom.xml.template (original)
+++ lucene/dev/trunk/dev-tools/maven/solr/test-framework/pom.xml.template Tue Apr 10 19:42:40 2012
@@ -68,14 +68,17 @@
     <dependency>
       <groupId>org.eclipse.jetty</groupId>
       <artifactId>jetty-server</artifactId>
+      <scope>runtime</scope>
     </dependency>
     <dependency>
       <groupId>org.eclipse.jetty</groupId>
       <artifactId>jetty-util</artifactId>
+      <scope>runtime</scope>
     </dependency>
     <dependency>
       <groupId>org.eclipse.jetty</groupId>
       <artifactId>jetty-webapp</artifactId>
+      <scope>runtime</scope>
     </dependency>
   </dependencies>
   <build>