You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@wicket.apache.org by jb...@apache.org on 2007/06/04 17:33:06 UTC

svn commit: r544166 - in /incubator/wicket/trunk: jdk-1.4/wicket-quickstart/pom.xml jdk-1.5/wicket-examples/pom.xml

Author: jbq
Date: Mon Jun  4 08:33:03 2007
New Revision: 544166

URL: http://svn.apache.org/viewvc?view=rev&rev=544166
Log:
WICKET-455 maven-jetty-plugin not configured

Modified:
    incubator/wicket/trunk/jdk-1.4/wicket-quickstart/pom.xml
    incubator/wicket/trunk/jdk-1.5/wicket-examples/pom.xml

Modified: incubator/wicket/trunk/jdk-1.4/wicket-quickstart/pom.xml
URL: http://svn.apache.org/viewvc/incubator/wicket/trunk/jdk-1.4/wicket-quickstart/pom.xml?view=diff&rev=544166&r1=544165&r2=544166
==============================================================================
--- incubator/wicket/trunk/jdk-1.4/wicket-quickstart/pom.xml (original)
+++ incubator/wicket/trunk/jdk-1.4/wicket-quickstart/pom.xml Mon Jun  4 08:33:03 2007
@@ -55,4 +55,12 @@
 			<artifactId>jetty-management</artifactId>
 		</dependency>
 	</dependencies>
+	<build>
+		<plugins>
+			<plugin>
+				<groupId>org.mortbay.jetty</groupId>
+				<artifactId>maven-jetty-plugin</artifactId>
+			</plugin>
+		</plugins>
+	</build>
 </project>

Modified: incubator/wicket/trunk/jdk-1.5/wicket-examples/pom.xml
URL: http://svn.apache.org/viewvc/incubator/wicket/trunk/jdk-1.5/wicket-examples/pom.xml?view=diff&rev=544166&r1=544165&r2=544166
==============================================================================
--- incubator/wicket/trunk/jdk-1.5/wicket-examples/pom.xml (original)
+++ incubator/wicket/trunk/jdk-1.5/wicket-examples/pom.xml Mon Jun  4 08:33:03 2007
@@ -112,6 +112,10 @@
 					</webResources>
 				</configuration>
 			</plugin>
+			<plugin>
+				<groupId>org.mortbay.jetty</groupId>
+				<artifactId>maven-jetty-plugin</artifactId>
+			</plugin>
 		</plugins>
 	</build>
 </project>