You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by gs...@apache.org on 2009/02/14 11:44:21 UTC

svn commit: r744476 - /ant/antlibs/common/trunk/build.xml

Author: gscokart
Date: Sat Feb 14 10:44:21 2009
New Revision: 744476

URL: http://svn.apache.org/viewvc?rev=744476&view=rev
Log:
missing change in previous check-in.  To AntUnit integartion in Junit4, we need a test that use annotation

Modified:
    ant/antlibs/common/trunk/build.xml

Modified: ant/antlibs/common/trunk/build.xml
URL: http://svn.apache.org/viewvc/ant/antlibs/common/trunk/build.xml?rev=744476&r1=744475&r2=744476&view=diff
==============================================================================
--- ant/antlibs/common/trunk/build.xml (original)
+++ ant/antlibs/common/trunk/build.xml Sat Feb 14 10:44:21 2009
@@ -37,6 +37,8 @@
     <!-- javac properties -->
     <property name="javac.-source" value="1.2"/>
     <property name="javac.-target" value="1.2"/>
+  	<property name="javac.test-source" value="${javac.-source}"/>
+  	<property name="javac.test-target" value="${javac.-target}"/>
     <property name="javac.debug" value="on"/>
 
     <!--you really need a proper version in version.properties-->
@@ -153,8 +155,8 @@
       srcdir="${src.junit}"
       destdir="${build.testclasses}"
       debug="${javac.debug}"
-      source="${javac.-source}"
-      target="${javac.-target}"
+      source="${javac.test-source}"
+      target="${javac.test-target}"
       >
       <classpath>
         <pathelement location="${jarname}"/>