Author: olamy Date: Sat Oct 22 19:50:49 2011 New Revision: 1187764 URL: http://svn.apache.org/viewvc?rev=1187764&view=rev Log: temporary copy sources ${basedir}/target/src/main/java rather than to ./src/ it will prevents to add too much svn:ignore and will be deleted by a simple clean
Modified: tomcat/tc7.0.x/trunk/maven/pom.xml tomcat/tc7.0.x/trunk/maven/tomcat-annotations-api/pom.xml tomcat/tc7.0.x/trunk/maven/tomcat-api/pom.xml tomcat/tc7.0.x/trunk/maven/tomcat-catalina-ant/pom.xml tomcat/tc7.0.x/trunk/maven/tomcat-catalina-ha/pom.xml tomcat/tc7.0.x/trunk/maven/tomcat-catalina-jmx-remote/pom.xml tomcat/tc7.0.x/trunk/maven/tomcat-catalina-ws/pom.xml tomcat/tc7.0.x/trunk/maven/tomcat-catalina/pom.xml tomcat/tc7.0.x/trunk/maven/tomcat-coyote/pom.xml tomcat/tc7.0.x/trunk/maven/tomcat-dbcp/pom.xml tomcat/tc7.0.x/trunk/maven/tomcat-el-api/pom.xml tomcat/tc7.0.x/trunk/maven/tomcat-embed-core/pom.xml tomcat/tc7.0.x/trunk/maven/tomcat-embed-logging-juli/pom.xml tomcat/tc7.0.x/trunk/maven/tomcat-embed-logging-log4j/pom.xml tomcat/tc7.0.x/trunk/maven/tomcat-extras-juli-adapters/pom.xml tomcat/tc7.0.x/trunk/maven/tomcat-jasper-el/pom.xml tomcat/tc7.0.x/trunk/maven/tomcat-jasper/pom.xml tomcat/tc7.0.x/trunk/maven/tomcat-jsp-api/pom.xml tomcat/tc7.0.x/trunk/maven/tomcat-juli/pom.xml tomcat/tc7.0.x/trunk/maven/tomcat-mail-api/pom.xml tomcat/tc7.0.x/trunk/maven/tomcat-servlet-api/pom.xml tomcat/tc7.0.x/trunk/maven/tomcat-tests/pom.xml tomcat/tc7.0.x/trunk/maven/tomcat-tribes/pom.xml tomcat/tc7.0.x/trunk/maven/tomcat-util/pom.xml Modified: tomcat/tc7.0.x/trunk/maven/pom.xml URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/maven/pom.xml?rev=1187764&r1=1187763&r2=1187764&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/maven/pom.xml (original) +++ tomcat/tc7.0.x/trunk/maven/pom.xml Sat Oct 22 19:50:49 2011 @@ -41,6 +41,7 @@ <compiler.debug>true</compiler.debug> <!-- looks to not be UTF-8 --> <project.build.sourceEncoding>ISO-8859-1</project.build.sourceEncoding> + <sourceBasePath>${basedir}/target/src/main/java</sourceBasePath> </properties> @@ -79,6 +80,7 @@ <build> + <sourceDirectory>${sourceBasePath}</sourceDirectory> <pluginManagement> <plugins> Modified: tomcat/tc7.0.x/trunk/maven/tomcat-annotations-api/pom.xml URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/maven/tomcat-annotations-api/pom.xml?rev=1187764&r1=1187763&r2=1187764&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/maven/tomcat-annotations-api/pom.xml (original) +++ tomcat/tc7.0.x/trunk/maven/tomcat-annotations-api/pom.xml Sat Oct 22 19:50:49 2011 @@ -41,7 +41,7 @@ <phase>generate-sources</phase> <configuration> <tasks> - <copy todir="src/main/java" includeEmptyDirs="false"> + <copy todir="${sourceBasePath}" includeEmptyDirs="false"> <fileset dir="../../java/"> <include name="javax/annotation/*" /> <include name="javax/annotation/security/*" /> Modified: tomcat/tc7.0.x/trunk/maven/tomcat-api/pom.xml URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/maven/tomcat-api/pom.xml?rev=1187764&r1=1187763&r2=1187764&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/maven/tomcat-api/pom.xml (original) +++ tomcat/tc7.0.x/trunk/maven/tomcat-api/pom.xml Sat Oct 22 19:50:49 2011 @@ -47,7 +47,7 @@ <phase>generate-sources</phase> <configuration> <tasks> - <copy todir="src/main/java" includeEmptyDirs="false"> + <copy todir="${sourceBasePath}" includeEmptyDirs="false"> <fileset dir="../../java/"> <include name="org/apache/tomcat/*" /> </fileset> Modified: tomcat/tc7.0.x/trunk/maven/tomcat-catalina-ant/pom.xml URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/maven/tomcat-catalina-ant/pom.xml?rev=1187764&r1=1187763&r2=1187764&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/maven/tomcat-catalina-ant/pom.xml (original) +++ tomcat/tc7.0.x/trunk/maven/tomcat-catalina-ant/pom.xml Sat Oct 22 19:50:49 2011 @@ -62,7 +62,7 @@ <phase>generate-sources</phase> <configuration> <tasks> - <copy todir="src/main/java" includeEmptyDirs="false"> + <copy todir="${sourceBasePath}" includeEmptyDirs="false"> <fileset dir="../../java/"> <include name="org/apache/catalina/ant/*" /> <include name="org/apache/catalina/ant/jmx/*" /> Modified: tomcat/tc7.0.x/trunk/maven/tomcat-catalina-ha/pom.xml URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/maven/tomcat-catalina-ha/pom.xml?rev=1187764&r1=1187763&r2=1187764&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/maven/tomcat-catalina-ha/pom.xml (original) +++ tomcat/tc7.0.x/trunk/maven/tomcat-catalina-ha/pom.xml Sat Oct 22 19:50:49 2011 @@ -81,7 +81,7 @@ <phase>generate-sources</phase> <configuration> <tasks> - <copy todir="src/main/java" includeEmptyDirs="false"> + <copy todir="${sourceBasePath}" includeEmptyDirs="false"> <fileset dir="../../java/"> <include name="org/apache/catalina/ha/**" /> </fileset> Modified: tomcat/tc7.0.x/trunk/maven/tomcat-catalina-jmx-remote/pom.xml URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/maven/tomcat-catalina-jmx-remote/pom.xml?rev=1187764&r1=1187763&r2=1187764&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/maven/tomcat-catalina-jmx-remote/pom.xml (original) +++ tomcat/tc7.0.x/trunk/maven/tomcat-catalina-jmx-remote/pom.xml Sat Oct 22 19:50:49 2011 @@ -60,7 +60,7 @@ <phase>generate-sources</phase> <configuration> <tasks> - <copy todir="src/main/java" includeEmptyDirs="false"> + <copy todir="${sourceBasePath}" includeEmptyDirs="false"> <fileset dir="../../java/"> <include name="org/apache/catalina/mbeans/JmxRemote*" /> </fileset> Modified: tomcat/tc7.0.x/trunk/maven/tomcat-catalina-ws/pom.xml URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/maven/tomcat-catalina-ws/pom.xml?rev=1187764&r1=1187763&r2=1187764&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/maven/tomcat-catalina-ws/pom.xml (original) +++ tomcat/tc7.0.x/trunk/maven/tomcat-catalina-ws/pom.xml Sat Oct 22 19:50:49 2011 @@ -66,7 +66,7 @@ <phase>generate-sources</phase> <configuration> <tasks> - <copy todir="src/main/java" includeEmptyDirs="false"> + <copy todir="${sourceBasePath}" includeEmptyDirs="false"> <fileset dir="../../java/"> <include name="org/apache/naming/factory/webservices/**" /> </fileset> Modified: tomcat/tc7.0.x/trunk/maven/tomcat-catalina/pom.xml URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/maven/tomcat-catalina/pom.xml?rev=1187764&r1=1187763&r2=1187764&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/maven/tomcat-catalina/pom.xml (original) +++ tomcat/tc7.0.x/trunk/maven/tomcat-catalina/pom.xml Sat Oct 22 19:50:49 2011 @@ -93,7 +93,7 @@ <phase>generate-sources</phase> <configuration> <tasks> - <copy todir="src/main/java" includeEmptyDirs="false"> + <copy todir="${sourceBasePath}" includeEmptyDirs="false"> <fileset dir="../../java/"> <include name="org/apache/catalina/**" /> <include name="org/apache/naming/**" /> @@ -105,7 +105,7 @@ <exclude name="org/apache/naming/factory/webservices/**" /> </fileset> </copy> - <copy todir="src/main/java" includeEmptyDirs="false"> + <copy todir="${sourceBasePath}" includeEmptyDirs="false"> <fileset dir="../../java/"> <!-- hackhish --> <include name="org/apache/catalina/ha/ClusterRuleSet.java" /> Modified: tomcat/tc7.0.x/trunk/maven/tomcat-coyote/pom.xml URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/maven/tomcat-coyote/pom.xml?rev=1187764&r1=1187763&r2=1187764&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/maven/tomcat-coyote/pom.xml (original) +++ tomcat/tc7.0.x/trunk/maven/tomcat-coyote/pom.xml Sat Oct 22 19:50:49 2011 @@ -69,7 +69,7 @@ <phase>generate-sources</phase> <configuration> <tasks> - <copy todir="src/main/java" includeEmptyDirs="false"> + <copy todir="${sourceBasePath}" includeEmptyDirs="false"> <fileset dir="../../java/"> <include name="org/apache/coyote/**" /> <include name="org/apache/tomcat/jni/**" /> Modified: tomcat/tc7.0.x/trunk/maven/tomcat-dbcp/pom.xml URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/maven/tomcat-dbcp/pom.xml?rev=1187764&r1=1187763&r2=1187764&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/maven/tomcat-dbcp/pom.xml (original) +++ tomcat/tc7.0.x/trunk/maven/tomcat-dbcp/pom.xml Sat Oct 22 19:50:49 2011 @@ -58,7 +58,7 @@ <id>import-commons-sources</id> <activation> <file> - <missing>${basedir}/src/main/java/org/apache/tomcat/dbcp</missing> + <missing>${sourceBasePath}/org/apache/tomcat/dbcp</missing> </file> </activation> <build> @@ -124,8 +124,8 @@ value="enumeration" /> </replace> - <mkdir dir="${basedir}/src/main/java/org/apache/tomcat/dbcp" /> - <move todir="${basedir}/src/main/java/org/apache/tomcat/dbcp"> + <mkdir dir="${sourceBasePath}/org/apache/tomcat/dbcp" /> + <move todir="${sourceBasePath}/org/apache/tomcat/dbcp"> <fileset dir="${tomcat-dbcp.home}/src/java/org/apache/commons" /> </move> </tasks> Modified: tomcat/tc7.0.x/trunk/maven/tomcat-el-api/pom.xml URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/maven/tomcat-el-api/pom.xml?rev=1187764&r1=1187763&r2=1187764&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/maven/tomcat-el-api/pom.xml (original) +++ tomcat/tc7.0.x/trunk/maven/tomcat-el-api/pom.xml Sat Oct 22 19:50:49 2011 @@ -48,7 +48,7 @@ <phase>generate-sources</phase> <configuration> <tasks> - <copy todir="src/main/java" includeEmptyDirs="false"> + <copy todir="${sourceBasePath}" includeEmptyDirs="false"> <fileset dir="../../java/"> <include name="javax/el/*" /> </fileset> Modified: tomcat/tc7.0.x/trunk/maven/tomcat-embed-core/pom.xml URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/maven/tomcat-embed-core/pom.xml?rev=1187764&r1=1187763&r2=1187764&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/maven/tomcat-embed-core/pom.xml (original) +++ tomcat/tc7.0.x/trunk/maven/tomcat-embed-core/pom.xml Sat Oct 22 19:50:49 2011 @@ -88,7 +88,7 @@ <phase>generate-sources</phase> <configuration> <tasks> - <copy todir="src/main/java" includeEmptyDirs="false"> + <copy todir="${sourceBasePath}" includeEmptyDirs="false"> <fileset dir="../../java/"> <include name="org/apache/coyote/**" /> <include name="org/apache/tomcat/jni/**" /> Modified: tomcat/tc7.0.x/trunk/maven/tomcat-embed-logging-juli/pom.xml URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/maven/tomcat-embed-logging-juli/pom.xml?rev=1187764&r1=1187763&r2=1187764&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/maven/tomcat-embed-logging-juli/pom.xml (original) +++ tomcat/tc7.0.x/trunk/maven/tomcat-embed-logging-juli/pom.xml Sat Oct 22 19:50:49 2011 @@ -41,7 +41,7 @@ <phase>generate-sources</phase> <configuration> <tasks> - <copy todir="src/main/java" includeEmptyDirs="false"> + <copy todir="${sourceBasePath}" includeEmptyDirs="false"> <fileset dir="../../java/"> <include name="org/apache/juli/**" /> </fileset> Modified: tomcat/tc7.0.x/trunk/maven/tomcat-embed-logging-log4j/pom.xml URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/maven/tomcat-embed-logging-log4j/pom.xml?rev=1187764&r1=1187763&r2=1187764&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/maven/tomcat-embed-logging-log4j/pom.xml (original) +++ tomcat/tc7.0.x/trunk/maven/tomcat-embed-logging-log4j/pom.xml Sat Oct 22 19:50:49 2011 @@ -71,7 +71,7 @@ <id>import-commons-sources</id> <activation> <file> - <missing>${basedir}/src/main/java/org/apache/juli</missing> + <missing>${sourceBasePath}/org/apache/juli</missing> </file> </activation> @@ -123,8 +123,8 @@ <replacefilter token="org.apache.commons" value="org.apache.juli" /> </replace> - <mkdir dir="${basedir}/src/main/java/org/apache/juli" /> - <move todir="${basedir}/src/main/java/org/apache/juli"> + <mkdir dir="${sourceBasePath}/src/main/java/org/apache/juli" /> + <move todir="${sourceBasePath}/org/apache/juli"> <fileset dir="${commons-logging-sources}/src/java/org/apache/commons" /> </move> </tasks> Modified: tomcat/tc7.0.x/trunk/maven/tomcat-extras-juli-adapters/pom.xml URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/maven/tomcat-extras-juli-adapters/pom.xml?rev=1187764&r1=1187763&r2=1187764&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/maven/tomcat-extras-juli-adapters/pom.xml (original) +++ tomcat/tc7.0.x/trunk/maven/tomcat-extras-juli-adapters/pom.xml Sat Oct 22 19:50:49 2011 @@ -51,7 +51,7 @@ <phase>generate-sources</phase> <configuration> <tasks> - <copy todir="src/main/java" includeEmptyDirs="false"> + <copy todir="${sourceBasePath}" includeEmptyDirs="false"> <fileset dir="../../java/"> <include name="org/apache/juli/logging/impl/**" /> <exclude name="org/apache/juli/logging/impl/WeakHashtable*" /> Modified: tomcat/tc7.0.x/trunk/maven/tomcat-jasper-el/pom.xml URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/maven/tomcat-jasper-el/pom.xml?rev=1187764&r1=1187763&r2=1187764&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/maven/tomcat-jasper-el/pom.xml (original) +++ tomcat/tc7.0.x/trunk/maven/tomcat-jasper-el/pom.xml Sat Oct 22 19:50:49 2011 @@ -47,7 +47,7 @@ <phase>generate-sources</phase> <configuration> <tasks> - <copy todir="src/main/java" includeEmptyDirs="false"> + <copy todir="${sourceBasePath}" includeEmptyDirs="false"> <fileset dir="../../java/"> <include name="org/apache/el/**" /> </fileset> Modified: tomcat/tc7.0.x/trunk/maven/tomcat-jasper/pom.xml URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/maven/tomcat-jasper/pom.xml?rev=1187764&r1=1187763&r2=1187764&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/maven/tomcat-jasper/pom.xml (original) +++ tomcat/tc7.0.x/trunk/maven/tomcat-jasper/pom.xml Sat Oct 22 19:50:49 2011 @@ -1,6 +1,5 @@ <?xml version="1.0" encoding="UTF-8"?> <!-- -<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file distributed with this work for additional information regarding copyright ownership. @@ -106,7 +105,7 @@ <phase>generate-sources</phase> <configuration> <tasks> - <copy todir="src/main/java" includeEmptyDirs="false"> + <copy todir="${sourceBasePath}" includeEmptyDirs="false"> <fileset dir="../../java/"> <include name="org/apache/jasper/**" /> </fileset> Modified: tomcat/tc7.0.x/trunk/maven/tomcat-jsp-api/pom.xml URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/maven/tomcat-jsp-api/pom.xml?rev=1187764&r1=1187763&r2=1187764&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/maven/tomcat-jsp-api/pom.xml (original) +++ tomcat/tc7.0.x/trunk/maven/tomcat-jsp-api/pom.xml Sat Oct 22 19:50:49 2011 @@ -54,7 +54,7 @@ <phase>generate-sources</phase> <configuration> <tasks> - <copy todir="src/main/java" includeEmptyDirs="false"> + <copy todir="${sourceBasePath}" includeEmptyDirs="false"> <fileset dir="../../java/"> <include name="javax/servlet/jsp/**" /> </fileset> Modified: tomcat/tc7.0.x/trunk/maven/tomcat-juli/pom.xml URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/maven/tomcat-juli/pom.xml?rev=1187764&r1=1187763&r2=1187764&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/maven/tomcat-juli/pom.xml (original) +++ tomcat/tc7.0.x/trunk/maven/tomcat-juli/pom.xml Sat Oct 22 19:50:49 2011 @@ -30,8 +30,8 @@ <description>Tomcat Core Logging Package</description> <build> + <plugins> - <!-- See http://maven.apache.org/plugins/maven-antrun-plugin --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> @@ -41,7 +41,7 @@ <phase>generate-sources</phase> <configuration> <tasks> - <copy todir="src/main/java" includeEmptyDirs="false"> + <copy todir="${sourceBasePath}" includeEmptyDirs="false"> <fileset dir="../../java/"> <include name="org/apache/juli/**/*.java"/> </fileset> Modified: tomcat/tc7.0.x/trunk/maven/tomcat-mail-api/pom.xml URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/maven/tomcat-mail-api/pom.xml?rev=1187764&r1=1187763&r2=1187764&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/maven/tomcat-mail-api/pom.xml (original) +++ tomcat/tc7.0.x/trunk/maven/tomcat-mail-api/pom.xml Sat Oct 22 19:50:49 2011 @@ -40,7 +40,7 @@ <phase>generate-sources</phase> <configuration> <tasks> - <copy todir="src/main/java" includeEmptyDirs="false"> + <copy todir="${sourceBasePath}" includeEmptyDirs="false"> <fileset dir="../../java/"> <include name="javax/mail/**" /> </fileset> Modified: tomcat/tc7.0.x/trunk/maven/tomcat-servlet-api/pom.xml URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/maven/tomcat-servlet-api/pom.xml?rev=1187764&r1=1187763&r2=1187764&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/maven/tomcat-servlet-api/pom.xml (original) +++ tomcat/tc7.0.x/trunk/maven/tomcat-servlet-api/pom.xml Sat Oct 22 19:50:49 2011 @@ -48,7 +48,7 @@ <phase>generate-sources</phase> <configuration> <tasks> - <copy todir="src/main/java" includeEmptyDirs="false"> + <copy todir="${sourceBasePath}" includeEmptyDirs="false"> <fileset dir="../../java/"> <include name="javax/servlet/*" /> <include name="javax/servlet/annotation/*" /> Modified: tomcat/tc7.0.x/trunk/maven/tomcat-tests/pom.xml URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/maven/tomcat-tests/pom.xml?rev=1187764&r1=1187763&r2=1187764&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/maven/tomcat-tests/pom.xml (original) +++ tomcat/tc7.0.x/trunk/maven/tomcat-tests/pom.xml Sat Oct 22 19:50:49 2011 @@ -30,6 +30,7 @@ <properties> <surefireForkedVmArgs>-Xmx512m -Xms512m -client</surefireForkedVmArgs> + <testSourcesPath>target/src/test/java</testSourcesPath> </properties> <dependencies> @@ -79,6 +80,7 @@ <build> + <testSourceDirectory>${testSourcesPath}</testSourceDirectory> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> @@ -90,7 +92,7 @@ <configuration> <tasks> <!--delete dir="src/test/java"/--> - <copy todir="src/test/java" includeEmptyDirs="false"> + <copy todir="${testSourcesPath}" includeEmptyDirs="false"> <fileset dir="../../test/"> <include name="**/**" /> </fileset> Modified: tomcat/tc7.0.x/trunk/maven/tomcat-tribes/pom.xml URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/maven/tomcat-tribes/pom.xml?rev=1187764&r1=1187763&r2=1187764&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/maven/tomcat-tribes/pom.xml (original) +++ tomcat/tc7.0.x/trunk/maven/tomcat-tribes/pom.xml Sat Oct 22 19:50:49 2011 @@ -48,7 +48,7 @@ <phase>generate-sources</phase> <configuration> <tasks> - <copy todir="src/main/java" includeEmptyDirs="false"> + <copy todir="${sourceBasePath}" includeEmptyDirs="false"> <fileset dir="../../java/"> <include name="org/apache/catalina/tribes/**" /> </fileset> Modified: tomcat/tc7.0.x/trunk/maven/tomcat-util/pom.xml URL: http://svn.apache.org/viewvc/tomcat/tc7.0.x/trunk/maven/tomcat-util/pom.xml?rev=1187764&r1=1187763&r2=1187764&view=diff ============================================================================== --- tomcat/tc7.0.x/trunk/maven/tomcat-util/pom.xml (original) +++ tomcat/tc7.0.x/trunk/maven/tomcat-util/pom.xml Sat Oct 22 19:50:49 2011 @@ -73,7 +73,7 @@ <phase>generate-sources</phase> <configuration> <tasks> - <copy todir="src/main/java" includeEmptyDirs="false"> + <copy todir="${sourceBasePath}" includeEmptyDirs="false"> <fileset dir="../../java/"> <include name="org/apache/tomcat/util/file/**" /> <include name="org/apache/tomcat/util/res/**" /> --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org