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/05/06 22:37:01 UTC

svn commit: r535654 - /incubator/wicket/trunk/jdk-1.5/wicket-examples/pom.xml

Author: jbq
Date: Sun May  6 13:36:56 2007
New Revision: 535654

URL: http://svn.apache.org/viewvc?view=rev&rev=535654
Log:
Attempt to fix WICKET-319 No java source code in examples

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

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=535654&r1=535653&r2=535654
==============================================================================
--- incubator/wicket/trunk/jdk-1.5/wicket-examples/pom.xml (original)
+++ incubator/wicket/trunk/jdk-1.5/wicket-examples/pom.xml Sun May  6 13:36:56 2007
@@ -83,4 +83,24 @@
 			<artifactId>jetty-management</artifactId>
 		</dependency>
 	</dependencies>
+	<build>
+		<plugins>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-war-plugin</artifactId>
+				<configuration>
+					<webResources>
+						<resource>
+							<!-- FIXME this is very unelegant! -->
+							<directory>${basedir}/target</directory>
+							<targetPath>WEB-INF/lib</targetPath>
+							<includes>
+								<include>wicket-*-sources.jar</include>
+							</includes>
+						</resource>
+					</webResources>
+				</configuration>
+			</plugin>
+		</plugins>
+	</build>
 </project>