You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by jh...@apache.org on 2014/06/03 11:03:06 UTC

[1/2] git commit: get antunit.jar, so a local build has all required jars

Repository: ant-antlibs-common
Updated Branches:
  refs/heads/master a7e796410 -> 6fbf64335


get antunit.jar, so a local build has all required jars


Project: http://git-wip-us.apache.org/repos/asf/ant-antlibs-common/repo
Commit: http://git-wip-us.apache.org/repos/asf/ant-antlibs-common/commit/1b6c5693
Tree: http://git-wip-us.apache.org/repos/asf/ant-antlibs-common/tree/1b6c5693
Diff: http://git-wip-us.apache.org/repos/asf/ant-antlibs-common/diff/1b6c5693

Branch: refs/heads/master
Commit: 1b6c5693a38cb3308fd6bc6fadc7a1812f1fd742
Parents: a7e7964
Author: Jan Mat�rne <jh...@apache.org>
Authored: Tue Jun 3 11:00:10 2014 +0200
Committer: Jan Mat�rne <jh...@apache.org>
Committed: Tue Jun 3 11:00:10 2014 +0200

----------------------------------------------------------------------
 prepare.xml | 14 ++++++++++----
 1 file changed, 10 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ant-antlibs-common/blob/1b6c5693/prepare.xml
----------------------------------------------------------------------
diff --git a/prepare.xml b/prepare.xml
index cbb3c2e..ee14272 100644
--- a/prepare.xml
+++ b/prepare.xml
@@ -32,7 +32,7 @@ The original of this snippet is maintained in the antlib-common project.
 
   <property name="antlib.common.git" value="https://git-wip-us.apache.org/repos/asf/ant-antlibs-common.git"/>
   <property name="git" value="git"/>
-  
+
   <available property="common.present" file="common" type="dir"/>
 
   <echo message="cloning antlib-common" unless:set="common.present"/>
@@ -46,7 +46,13 @@ The original of this snippet is maintained in the antlib-common project.
   <exec executable="${git}" dir="common" taskname="git" if:set="common.present">
     <arg value="pull"/>
   </exec>
-  
+
+  <echo>updating prepare.xml</echo>
   <copy file="common/prepare.xml" tofile="prepare.xml"/>
-  
-</project>
+
+  <echo>updating AntUnit</echo>
+  <property name="antunit.version" value="1.3"/>
+  <property name="antunit.url" value="http://repo1.maven.org/maven2/org/apache/ant/ant-antunit/${antunit.version}/ant-antunit-${antunit.version}.jar"/>
+  <get src="${antunit.url}" dest="ant-antunit.jar" usetimestamp="true"/>
+
+</project>
\ No newline at end of file


[2/2] git commit: specify default location of ant-testutil.jar

Posted by jh...@apache.org.
specify default location of ant-testutil.jar


Project: http://git-wip-us.apache.org/repos/asf/ant-antlibs-common/repo
Commit: http://git-wip-us.apache.org/repos/asf/ant-antlibs-common/commit/6fbf6433
Tree: http://git-wip-us.apache.org/repos/asf/ant-antlibs-common/tree/6fbf6433
Diff: http://git-wip-us.apache.org/repos/asf/ant-antlibs-common/diff/6fbf6433

Branch: refs/heads/master
Commit: 6fbf64335bb83b55e490c437fdc47e973a413ca6
Parents: 1b6c569
Author: Jan Mat�rne <jh...@apache.org>
Authored: Tue Jun 3 11:00:30 2014 +0200
Committer: Jan Mat�rne <jh...@apache.org>
Committed: Tue Jun 3 11:00:30 2014 +0200

----------------------------------------------------------------------
 build.xml | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ant-antlibs-common/blob/6fbf6433/build.xml
----------------------------------------------------------------------
diff --git a/build.xml b/build.xml
index f2ff8df..a3e3fc4 100644
--- a/build.xml
+++ b/build.xml
@@ -67,6 +67,8 @@
     <!-- junit test properties -->
     <property name="junit.fork" value="true" />
     <property name="junit.forkmode" value="once" />
+    <!-- Default to the location in the Ant installation -->
+    <property name="ant-testutil.jar" value="${ant.home}/lib/ant-testutil.jar" />
   </target>
 
   <target name="setup" depends="setup-properties">