|
From: David J. <d_j...@us...> - 2002-09-13 19:17:37
|
User: d_jencks
Date: 02/09/13 12:17:35
Modified: . build.xml
Log:
split libraries into needed-for-jmx and other to make jmx project work without all of thirdparty. I hope for a better solution soon
Revision Changes Path
1.175 +9 -2 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.174
retrieving revision 1.175
diff -u -r1.174 -r1.175
--- build.xml 13 Sep 2002 03:06:06 -0000 1.174
+++ build.xml 13 Sep 2002 19:17:35 -0000 1.175
@@ -1,6 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE project [
<!ENTITY buildmagic SYSTEM "resource://org/jboss/tools/buildmagic/common.xml">
+ <!ENTITY xdoclet SYSTEM "../tools/etc/buildfragments/xdoclet.ent">
+ <!ENTITY libraries-jmx SYSTEM "../tools/etc/buildfragments/libraries-jmx.ent">
+ <!ENTITY libraries SYSTEM "../tools/etc/buildfragments/libraries.ent">
+ <!ENTITY modules SYSTEM "../tools/etc/buildfragments/modules.ent">
+ <!ENTITY documentation SYSTEM "../tools/etc/buildfragments/documentation.ent">
<!ENTITY mqstress SYSTEM "mqstress.xml">
]>
@@ -13,7 +18,7 @@
<!-- -->
<!-- ====================================================================== -->
-<!-- $Id: build.xml,v 1.174 2002/09/13 03:06:06 chirino Exp $ -->
+<!-- $Id: build.xml,v 1.175 2002/09/13 19:17:35 d_jencks Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -73,6 +78,8 @@
<!-- ========= -->
<!-- Libraries -->
<!-- ========= -->
+ &libraries-jmx;
+ &libraries;
<!-- Java Cryptography Extension (JCE) -->
<property name="sun.jce.root" value="${project.thirdparty}/sun/jce"/>
@@ -182,7 +189,7 @@
<path refid="sun.jsse.classpath"/>
<path refid="sun.javamail.classpath"/>
<path refid="sun.servlet.classpath"/>
- <path refid="apache.crimson.classpath"/>
+ <path refid="apache.xalan.classpath"/>
<path refid="apache.log4j.classpath"/>
<path refid="oswego.concurrent.classpath"/>
<path refid="jacorb.jacorb.classpath"/>
|