|
From: Scott M S. <st...@us...> - 2004-10-31 14:49:11
|
User: starksm Date: 04/10/31 06:49:00 Modified: . Tag: Branch_4_0 build.xml Log: Get rid of the local javac.target override Revision Changes Path No revision No revision 1.406.2.13 +6 -7 jbosstest/build.xml Index: build.xml =================================================================== RCS file: /cvsroot/jboss/jbosstest/build.xml,v retrieving revision 1.406.2.12 retrieving revision 1.406.2.13 diff -u -r1.406.2.12 -r1.406.2.13 --- build.xml 30 Oct 2004 19:55:05 -0000 1.406.2.12 +++ build.xml 31 Oct 2004 14:48:59 -0000 1.406.2.13 @@ -6,7 +6,7 @@ <!-- See terms of license at http://www.gnu.org. --> <!-- ============================================================ --> -<!-- $Id: build.xml,v 1.406.2.12 2004/10/30 19:55:05 loubyansky Exp $ --> +<!-- $Id: build.xml,v 1.406.2.13 2004/10/31 14:48:59 starksm Exp $ --> <project default="main" name="JBoss/Testsuite"> <import file="../tools/etc/buildmagic/build-common.xml"/> @@ -192,12 +192,6 @@ <path refid="thirdparty.classpath"/> </path> - <!-- This module is based on Java 1.2 --> - <property name="javac.target" value="1.2"/> - - <!-- RMIC should generate stubs compatible with Java 1.2+ --> - <property name="rmic.stubVersion" value="1.2"/> - <!-- classpath and local.classpath must have a value using with a path --> <property name="classpath" value=""/> <property name="local.classpath" value=""/> @@ -1210,6 +1204,9 @@ <include name="deploy/ear-deployer.xml"/> <include name="deploy/ejb-deployer.xml"/> <include name="deploy/jmx-invoker-service.xml"/> + <include name="deploy/jbossjca-service.xml"/> + <include name="deploy/jboss-local-jdbc.rar"/> + <include name="deploy/jms/*"/> <include name="lib/**"/> </patternset> </create-config> @@ -1654,6 +1651,8 @@ <pathelement location="${build.classes}"/> <pathelement location="${build.resources}"/> <path refid="tests.classpath"/> + <path refid="apache.jaxme.classpath"/> + <path refid="wutka.dtdparser.classpath"/> </classpath> <formatter type="xml" usefile="${junit.formatter.usefile}"/> |