User: juhalindfors
Date: 02/02/05 05:23:21
Modified: . build.xml
Log:
delete some compiled classes so theyre loaded dynamically from the jars
and not from the system classpath
Revision Changes Path
1.11 +14 -8 jmx/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jmx/build.xml,v
retrieving revision 1.10
retrieving revision 1.11
diff -u -r1.10 -r1.11
--- build.xml 2002/02/01 21:50:58 1.10
+++ build.xml 2002/02/05 13:23:20 1.11
@@ -12,7 +12,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.10 2002/02/01 21:50:58 juhalindfors Exp $ -->
+<!-- $Id: build.xml,v 1.11 2002/02/05 13:23:20 juhalindfors Exp $ -->
<project default="main" name="JBoss/JMX">
@@ -138,9 +138,9 @@
<path refid="dependentmodule.classpath"/>
</path>
- <!-- This module is based on Java 1.2 -->
- <property name="javac.target" value="1.2"/>
-
+ <!-- This module is based on Java 1.3 -->
+ <property name="javac.target" value="1.3"/>
+
<!-- classpath and local.classpath must have a value using with a path -->
<property name="classpath" value=""/>
<property name="local.classpath" value=""/>
@@ -188,10 +188,10 @@
<mkdir dir="${build.classes}"/>
<javac destdir="${build.classes}"
optimize="${javac.optimize}"
- target="${javac.target}"
+ target="${javac.target}"
debug="${javac.debug}"
- depend="${javac.depend}"
- verbose="${javac.verbose}"
+ depend="${javac.depend}"
+ verbose="${javac.verbose}"
deprecation="${javac.deprecation}"
includeAntRuntime="${javac.include.ant.runtime}"
includeJavaRuntime="${javac.include.java.runtime}"
@@ -199,8 +199,14 @@
<src path="${source.java}"/>
<classpath refid="javac.classpath"/>
<include name="${javac.includes}"/>
- <exclude name="${javac.excludes}"/>
</javac>
+
+ <delete
file="${build.classes}/test/implementation/loading/support/AClass.class"/>
+ <delete
file="${build.classes}/test/implementation/loading/support/Start.class"/>
+ <delete
file="${build.classes}/test/implementation/loading/support/StartMBean.class"/>
+ <delete
file="${build.classes}/test/implementation/loading/support/Target.class"/>
+ <delete
file="${build.classes}/test/implementation/loading/support/TargetMBean.class"/>
+
</target>
_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development