remm 02/01/17 12:02:16 Modified: webapps/admin build.xml Log: - The JMX support can now be built and distributed with an alternate JMX implmentation: OpenJMX. OpenJMX is a Sourceforge project which uses the Apache license, so this should remove the redistribution problems with the JMX RI. Overall, I think OpenJMX is an ideal candidate for distribution with upcoming Tomcat releases. - The build.properties mentions OpenJMX 1.0 b2, which is not released yet. 1.0 b1 will not work, as a few fixes were needed to work with Tomcat. - I don't see any reason why not to enable the JMX support by default once OpenJMX reaches 1.0 status. - Removes use of proprietary APIs from the JMX RI. - Rename the main JMX variable: jmxri.jar -> jmx.jar (the first one implied that the JMX RI is required). Revision Changes Path 1.3 +4 -4 jakarta-tomcat-4.0/webapps/admin/build.xml Index: build.xml =================================================================== RCS file: /home/cvs/jakarta-tomcat-4.0/webapps/admin/build.xml,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- build.xml 27 Oct 2001 22:18:49 -0000 1.2 +++ build.xml 17 Jan 2002 20:02:16 -0000 1.3 @@ -19,7 +19,7 @@ <!-- Construct Admin classpath --> <path id="admin.classpath"> <pathelement location="${commons-modeler.jar}"/> - <pathelement location="${jmxri.jar}"/> + <pathelement location="${jmx.jar}"/> <pathelement location="${servlet.jar}"/> <pathelement location="${struts.jar}"/> </path> @@ -49,7 +49,7 @@ </condition> <available property="jmx.present" classname="javax.management.MBeanServer" - classpath="${jmxri.jar}" /> + classpath="${jmx.jar}" /> <available property="modeler.present" classname="org.apache.commons.modeler.Registry" classpath="${commons-modeler.jar}"/> @@ -61,7 +61,7 @@ classpath="${struts.jar}" /> <!-- JAR files availability flags --> - <available property="jmxri.jar.present" file="${jmxri.jar}" /> + <available property="jmx.jar.present" file="${jmx.jar}" /> <available property="modeler.jar.present" file="${commons-modeler.jar}" /> <available property="servlet.jar.present" file="${servlet.jar}" /> <available property="struts.jar.present" file="${struts.jar}" /> @@ -121,7 +121,7 @@ <echo message="servlet.present=${servlet.present}" /> <echo message="--- Required JARs ---" /> - <echo message="jmxri.jar.present=${jmxri.jar.present}" /> + <echo message="jmx.jar.present=${jmx.jar.present}" /> <echo message="modeler.jar.present=${modeler.jar.present}" /> <echo message="servlet.jar.present=${servlet.jar.present}" /> <echo message="struts.jar.present=${struts.jar.present}" />
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>