Author: jstrachan
Date: Thu Jul  1 15:47:56 2010
New Revision: 959702

URL: http://svn.apache.org/viewvc?rev=959702&view=rev
Log:
fix for CAMEL-2892 to remove warnings when running tests

Modified:
    camel/trunk/components/camel-web/pom.xml

Modified: camel/trunk/components/camel-web/pom.xml
URL: 
http://svn.apache.org/viewvc/camel/trunk/components/camel-web/pom.xml?rev=959702&r1=959701&r2=959702&view=diff
==============================================================================
--- camel/trunk/components/camel-web/pom.xml (original)
+++ camel/trunk/components/camel-web/pom.xml Thu Jul  1 15:47:56 2010
@@ -156,6 +156,12 @@
                        <version>${jetty-version}</version>
                        <scope>test</scope>
                </dependency>
+    <dependency>
+      <groupId>org.eclipse.jetty</groupId>
+      <artifactId>jetty-jsp-2.1</artifactId>
+      <version>${jetty-version}</version>
+      <scope>test</scope>
+    </dependency>
                <dependency>
                        <groupId>org.mortbay.jetty</groupId>
                        <artifactId>jsp-2.1-glassfish</artifactId>
@@ -269,7 +275,24 @@
                                </configuration>
                        </plugin>
 
-                       <plugin>
+      <plugin>
+        <groupId>org.codehaus.mojo</groupId>
+        <artifactId>exec-maven-plugin</artifactId>
+        <version>1.1.1</version>
+        <executions>
+          <execution>
+            <goals>
+              <goal>java</goal>
+            </goals>
+          </execution>
+        </executions>
+        <configuration>
+          <classpathScope>test</classpathScope>
+          <mainClass>org.apache.camel.web.Main</mainClass>
+        </configuration>
+      </plugin>
+
+      <plugin>
                                <groupId>org.apache.maven.plugins</groupId>
                                <artifactId>maven-javadoc-plugin</artifactId>
                                <executions>


Reply via email to