You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by rj...@apache.org on 2017/02/16 22:09:25 UTC

svn commit: r1783313 - /tomcat/native/trunk/build.xml

Author: rjung
Date: Thu Feb 16 22:09:25 2017
New Revision: 1783313

URL: http://svn.apache.org/viewvc?rev=1783313&view=rev
Log:
- Switch to junit 4 in r1781065 was combined with
  downloading jar from maven instead of zip from
  sourceforge. So we need to use downloadfile
  instead of downloadzip
- The new tests added in r1781153 and r1781163
  need hamcrest as a dependency. Add to downloads.

Modified:
    tomcat/native/trunk/build.xml

Modified: tomcat/native/trunk/build.xml
URL: http://svn.apache.org/viewvc/tomcat/native/trunk/build.xml?rev=1783313&r1=1783312&r2=1783313&view=diff
==============================================================================
--- tomcat/native/trunk/build.xml (original)
+++ tomcat/native/trunk/build.xml Thu Feb 16 22:09:25 2017
@@ -143,11 +143,18 @@
 
       <mkdir dir="${base.path}"/>
 
-      <antcall target="downloadzip">
+      <antcall target="downloadfile">
         <param name="sourcefile" value="${junit.loc}"/>
         <param name="destfile" value="${junit.jar}"/>
-        <param name="destdir" value="${base.path}"/>
+        <param name="destdir" value="${junit.home}"/>
       </antcall>
+
+      <antcall target="downloadfile">
+        <param name="sourcefile" value="${hamcrest.loc}"/>
+        <param name="destfile" value="${hamcrest.jar}"/>
+        <param name="destdir" value="${hamcrest.home}"/>
+      </antcall>
+
     </target>
 
     <!-- =================================================================== -->



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org