|
From: Julien V. <vi...@us...> - 2004-09-11 23:47:59
|
User: vietj
Date: 04/09/11 16:47:50
Modified: . Tag: Branch_3_2 build.xml
Log:
Backport from HEAD :
- Added an optional attribute "interface" on the mbean element in jboss-service.xml. This enable to specify the full qualified name of an interface used to create the management interface of the MBean. It uses the javax.management.StandardMBean introduced in JMX 1.2
- Added an operation register(ObjectName) and register(ObjectName,Collection) that allow one to register a dependency without triggering the create step of the service
Revision Changes Path
No revision
No revision
1.165.2.163 +11 -1 jbosstest/build.xml
Index: build.xml
===================================================================
RCS file: /cvsroot/jboss/jbosstest/build.xml,v
retrieving revision 1.165.2.162
retrieving revision 1.165.2.163
diff -u -r1.165.2.162 -r1.165.2.163
--- build.xml 26 Aug 2004 05:57:43 -0000 1.165.2.162
+++ build.xml 11 Sep 2004 23:47:37 -0000 1.165.2.163
@@ -15,7 +15,7 @@
<!-- -->
<!-- ============================================================ -->
-<!-- $Id: build.xml,v 1.165.2.162 2004/08/26 05:57:43 ovidiuf Exp $ -->
+<!-- $Id: build.xml,v 1.165.2.163 2004/09/11 23:47:37 vietj Exp $ -->
<project default="main" name="JBoss/Testsuite">
@@ -2899,6 +2899,16 @@
<include name="META-INF/*.xml"/>
</fileset>
</jar>
+
+ <!-- explicit standard interface sar -->
+ <jar jarfile="${build.lib}/explicit-standard-interface.sar">
+ <fileset dir="${build.classes}">
+ <include name="org/jboss/test/jmx/standard/**"/>
+ </fileset>
+ <fileset dir="${build.resources}/jmx/standard">
+ <include name="META-INF/jboss-service.xml"/>
+ </fileset>
+ </jar>
</target>
<!-- isolation test -->
|