You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by ka...@apache.org on 2012/07/09 13:22:53 UTC

svn commit: r1359070 - /db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/compatibility/build.xml

Author: kahatlen
Date: Mon Jul  9 11:22:53 2012
New Revision: 1359070

URL: http://svn.apache.org/viewvc?rev=1359070&view=rev
Log:
DERBY-2076: Rewrite junitTests/derbyNet/CompatibilityTest to conform to current JUnit usage

Set compiler level to 1.5 to allow the test to run on Java 5 platforms.

Modified:
    db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/compatibility/build.xml

Modified: db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/compatibility/build.xml
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/compatibility/build.xml?rev=1359070&r1=1359069&r2=1359070&view=diff
==============================================================================
--- db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/compatibility/build.xml (original)
+++ db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/compatibility/build.xml Mon Jul  9 11:22:53 2012
@@ -48,8 +48,8 @@
 
     <target name="compile" depends="copyfiles">
         <javac
-          source="${compilerLevel16}"
-          target="${compilerLevel16}"
+            source="1.5"
+            target="1.5"
             bootclasspath="${empty}"
             nowarn="on"
             debug="true"