@@ -6,8 +6,8 @@
<groupId>ant</groupId>
<groupId>ant</groupId>
<artifactId>ant</artifactId>
<artifactId>ant</artifactId>
<version>1.7.0-SNAPSHOT</version>
<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>
<dependencies>
<dependency>
<dependency>
<!-- the implementation jar of the xerces jar will be used by ant to parse
<!-- the implementation jar of the xerces jar will be used by ant to parse
@@ -45,6 +45,12 @@
<filter>.build.timestamp.properties</filter>
<filter>.build.timestamp.properties</filter>
</filters>
</filters>
<plugins>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<configuration>
</configuration>
</plugin>
<plugin>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<artifactId>maven-antrun-plugin</artifactId>
<executions>
<executions>
@@ -57,8 +63,9 @@
<configuration>
<configuration>
<tasks>
<tasks>
<tstamp/>
<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}" />
message="TODAY=${TODAY}" />
</tasks>
</tasks>
</configuration>
</configuration>
@@ -71,7 +78,7 @@
</goals>
</goals>
<configuration>
<configuration>
<tasks>
<tasks>
<delete file=".build.timestamp.properties" />
<delete file="${project.build.directory}/ .build.timestamp.properties" />
</tasks>
</tasks>
</configuration>
</configuration>
</execution>
</execution>
@@ -134,5 +141,6 @@
</resources>
</resources>
<outputDirectory>../../../../target/ant/classes</outputDirectory>
<outputDirectory>../../../../target/ant/classes</outputDirectory>
<testOutputDirectory>../../../../target/ant/testcases</testOutputDirectory>
<testOutputDirectory>../../../../target/ant/testcases</testOutputDirectory>
<directory>../../../../target/ant</directory>
</build>
</build>
</project>
</project>