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/07 00:09:12 UTC

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

Author: jbq
Date: Sun May  6 15:09:12 2007
New Revision: 535662

URL: http://svn.apache.org/viewvc?view=rev&rev=535662
Log:
Second 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=535662&r1=535661&r2=535662
==============================================================================
--- incubator/wicket/trunk/jdk-1.5/wicket-examples/pom.xml (original)
+++ incubator/wicket/trunk/jdk-1.5/wicket-examples/pom.xml Sun May  6 15:09:12 2007
@@ -91,11 +91,10 @@
 				<configuration>
 					<webResources>
 						<resource>
-							<!-- FIXME this is very unelegant! -->
-							<directory>${basedir}/target</directory>
-							<targetPath>WEB-INF/lib</targetPath>
+							<directory>src/main/java</directory>
+							<targetPath>WEB-INF/classes</targetPath>
 							<includes>
-								<include>wicket-*-sources.jar</include>
+								<include>**/*.java</include>
 							</includes>
 						</resource>
 					</webResources>