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

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1311957 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Steven Rowe 2012-04-10 19:42:40 +00:00
parent a9535971f3
commit 610d93357c
1 changed files with 3 additions and 0 deletions

View File

@ -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>