Author: psharples
Date: Tue Apr 24 10:40:58 2012
New Revision: 1329630
URL: http://svn.apache.org/viewvc?rev=1329630&view=rev
Log:
Minor fix - Before it the maven WAR artifact contained all the *.java files as
well as the compiled classes, under WEB-INF/classes.
Modified:
incubator/wookie/trunk/ant/ivy-java-common.xml
Modified: incubator/wookie/trunk/ant/ivy-java-common.xml
URL:
http://svn.apache.org/viewvc/incubator/wookie/trunk/ant/ivy-java-common.xml?rev=1329630&r1=1329629&r2=1329630&view=diff
==============================================================================
--- incubator/wookie/trunk/ant/ivy-java-common.xml (original)
+++ incubator/wookie/trunk/ant/ivy-java-common.xml Tue Apr 24 10:40:58 2012
@@ -243,7 +243,9 @@
<target name="init-war" unless="subproject"
depends="test-calling-project-true" >
<copy
todir="${build.dir}/maven-webapp/${ant.project.name}/WEB-INF/classes">
- <fileset dir="${project.build.classes.dir}" />
+ <fileset dir="${project.build.classes.dir}">
+ <exclude name="**/*.java" />
+ </fileset>
</copy>
<copy todir="${build.dir}/maven-webapp/${ant.project.name}">