Author: antoine
Date: Sun Oct 22 12:47:14 2006
New Revision: 466870

URL: http://svn.apache.org/viewvc?view=rev&rev=466870
Log:
control the location of the output jars

Modified:
    ant/core/trunk/src/etc/poms/ant-launcher/pom.xml
    ant/core/trunk/src/etc/poms/ant/pom.xml

Modified: ant/core/trunk/src/etc/poms/ant-launcher/pom.xml
URL: 
http://svn.apache.org/viewvc/ant/core/trunk/src/etc/poms/ant-launcher/pom.xml?view=diff&rev=466870&r1=466869&r2=466870
==============================================================================
--- ant/core/trunk/src/etc/poms/ant-launcher/pom.xml (original)
+++ ant/core/trunk/src/etc/poms/ant-launcher/pom.xml Sun Oct 22 12:47:14 2006
@@ -31,5 +31,6 @@
     <testSourceDirectory>../../../../src/testcases</testSourceDirectory>
     <outputDirectory>../../../../target/ant-launcher/classes</outputDirectory>
     
<testOutputDirectory>../../../../target/ant-launcher/testcases</testOutputDirectory>
+    <directory>../../../../target/ant-launcher</directory>
   </build>
 </project>

Modified: ant/core/trunk/src/etc/poms/ant/pom.xml
URL: 
http://svn.apache.org/viewvc/ant/core/trunk/src/etc/poms/ant/pom.xml?view=diff&rev=466870&r1=466869&r2=466870
==============================================================================
--- ant/core/trunk/src/etc/poms/ant/pom.xml (original)
+++ ant/core/trunk/src/etc/poms/ant/pom.xml Sun Oct 22 12:47:14 2006
@@ -6,8 +6,8 @@
   <groupId>ant</groupId>
   <artifactId>ant</artifactId>
   <version>1.7.0-SNAPSHOT</version>
-  <description>ant.jar contains the ant framework, except a few classes which 
are in ant-launcher it
-    also contains the implementation and API of the core tasks and types. 
</description>
+  <name>org.apache.tools.ant</name>
+  <description>Apache Ant</description>
   <dependencies>
     <dependency>
       <!-- the implementation jar of the xerces jar will be used by ant to 
parse
@@ -46,6 +46,12 @@
     </filters>
     <plugins>
       <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-jar-plugin</artifactId>
+        <configuration>
+        </configuration>
+      </plugin>
+      <plugin>
         <artifactId>maven-antrun-plugin</artifactId>
         <executions>
           <execution>
@@ -57,8 +63,9 @@
             <configuration>
               <tasks>
                 <tstamp/>
-                <touch file=".build.timestamp.properties" />
-                <echo file=".build.timestamp.properties" append="false" 
+                <mkdir dir="${project.build.directory}"/>
+                <touch 
file="${project.build.directory}/.build.timestamp.properties" />
+                <echo 
file="${project.build.directory}/.build.timestamp.properties" append="false" 
                   message="TODAY=${TODAY}" />
               </tasks>
             </configuration>
@@ -71,7 +78,7 @@
             </goals>
             <configuration>
               <tasks>
-                <delete file=".build.timestamp.properties" />
+                <delete 
file="${project.build.directory}/.build.timestamp.properties" />
               </tasks>
             </configuration>
           </execution>
@@ -134,5 +141,6 @@
     </resources>
     <outputDirectory>../../../../target/ant/classes</outputDirectory>
     <testOutputDirectory>../../../../target/ant/testcases</testOutputDirectory>
+    <directory>../../../../target/ant</directory>
   </build>
 </project>



---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to