remm 02/01/15 17:04:17
Modified: modeler build.properties.sample build.xml
Log:
- Remove hardcoding for the JMX RI. Only the demonstration example actually
requires the RI.
- jmxri.jar -> jmx.jar.
Revision Changes Path
1.4 +8 -2 jakarta-commons-sandbox/modeler/build.properties.sample
Index: build.properties.sample
===================================================================
RCS file: /home/cvs/jakarta-commons-sandbox/modeler/build.properties.sample,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- build.properties.sample 5 Jan 2002 01:39:17 -0000 1.3
+++ build.properties.sample 16 Jan 2002 01:04:16 -0000 1.4
@@ -19,11 +19,17 @@
commons-digester.jar=${digester.home}/dist/commons-digester.jar
commons-logging.jar=${logging.home}/dist/commons-logging.jar
+# JMX libraries
+# jmx.jar must contain the JMX classes and interfaces, as well as the
+# server implementation. Any JMX compliant implementation can be used.
+jmx.jar=${jmx.home}/lib/jmxri.jar
+# jmxtools.jar from the JMX RI is only used for the demonstration example.
+jmxtools.jar=${jmx.home}/lib/jmxtools.jar
+
+
# External packages
jaxp.jaxp.jar=${jaxp.home}/jaxp.jar
jaxp.parser.jar=${jaxp.home}/crimson.jar
jaxp.xalan.jar=${jaxp.home}/xalan.jar
-jmxri.jar=${jmx.home}/lib/jmxri.jar
-jmxtools.jar=${jmx.home}/lib/jmxtools.jar
junit.jar=${junit.home}/junit.jar
1.4 +6 -5 jakarta-commons-sandbox/modeler/build.xml
Index: build.xml
===================================================================
RCS file: /home/cvs/jakarta-commons-sandbox/modeler/build.xml,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- build.xml 5 Jan 2002 01:39:17 -0000 1.3
+++ build.xml 16 Jan 2002 01:04:16 -0000 1.4
@@ -3,7 +3,7 @@
<!--
"Modeler" component of the Jakarta Commons Subproject
- $Id: build.xml,v 1.3 2002/01/05 01:39:17 craigmcc Exp $
+ $Id: build.xml,v 1.4 2002/01/16 01:04:16 remm Exp $
-->
@@ -36,7 +36,7 @@
<property name="jaxp.jaxp.jar" value="${jaxp.home}/jaxp.jar"/>
<property name="jaxp.parser.jar" value="${jaxp.home}/crimson.jar"/>
<property name="jaxp.xalan.jar" value="${jaxp.home}/xalan.jar"/>
- <property name="jmxri.jar" value="${jmx.home}/lib/jmxri.jar"/>
+ <property name="jmx.jar" value="${jmx.home}/lib/jmxri.jar"/>
<property name="jmxtools.jar" value="${jmx.home}/lib/jmxtools.jar"/>
<property name="junit.jar" value="${junit.home}/junit.jar"/>
<property name="commons-beanutils.jar"
value="${beanutils.home}/dist/commons-beanutils.jar"/>
@@ -95,7 +95,7 @@
<pathelement location="${commons-collections.jar}"/>
<pathelement location="${commons-digester.jar}"/>
<pathelement location="${commons-logging.jar}"/>
- <pathelement location="${jmxri.jar}"/>
+ <pathelement location="${jmx.jar}"/>
<pathelement location="${jmxtools.jar}"/>
</path>
@@ -114,7 +114,7 @@
<pathelement location="${commons-collections.jar}"/>
<pathelement location="${commons-digester.jar}"/>
<pathelement location="${commons-logging.jar}"/>
- <pathelement location="${jmxri.jar}"/>
+ <pathelement location="${jmx.jar}"/>
<pathelement location="${jmxtools.jar}"/>
<pathelement location="${junit.jar}"/>
</path>
@@ -196,7 +196,8 @@
version="true"
doctitle="<h1>${component.title}</h1>"
windowtitle="${component.title} (Version ${component.version})"
- bottom="Copyright (c) 2001 - Apache Software Foundation"/>
+ bottom="Copyright (c) 2001-2002 - Apache Software Foundation"
+ classpathref="compile.classpath" />
</target>
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>