User: schaefera
  Date: 02/03/10 20:31:31

  Modified:    jboss    build.xml
  Log:
  Moved the JSR-77 code to the new "management" module. It contains the
  specification implementation for MEJB and the JBoss implementation.
  It does not contain references to JBoss server.
  
  The only workaround there is that MEJB needs to use the JMX RemoteMBean-
  Server which is not available in JBossMX right now. Therefore I added
  this to a JAR achive under tools/lib.
  
  Revision  Changes    Path
  1.107     +14 -10    build/jboss/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/build/jboss/build.xml,v
  retrieving revision 1.106
  retrieving revision 1.107
  diff -u -r1.106 -r1.107
  --- build.xml 10 Mar 2002 01:57:49 -0000      1.106
  +++ build.xml 11 Mar 2002 04:31:30 -0000      1.107
  @@ -12,7 +12,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.106 2002/03/10 01:57:49 user57 Exp $ -->
  +<!-- $Id: build.xml,v 1.107 2002/03/11 04:31:30 schaefera Exp $ -->
   
   <project default="main" name="JBoss/Build">
   
  @@ -183,6 +183,7 @@
         <module name="ejb"/>
         <module name="naming"/>
         <module name="jmx"/>
  +      <module name="management"/>
         <module name="server"/>
         <module name="security"/>
         <module name="messaging"/>
  @@ -196,7 +197,6 @@
         <module name="jboss.net"/>
         <module name="catalina"/>
         <module name="iiop"/>
  -      <module name="management"/>
   
         <!-- Module groups -->
   
  @@ -206,7 +206,8 @@
   
         <group name="basic">
           <include modules="j2ee,
  -                          naming, 
  +                          naming,
  +                          management,
                             server"/>
         </group>
   
  @@ -219,7 +220,6 @@
                             admin,
                             jetty,
                             varia"/>
  -                <!-- add management when src files are added -->
                   <!-- cluster, was removed add when proxy is fixed -->
         </group>
   
  @@ -650,7 +650,6 @@
   
         <!-- Deployable archives -->
         <fileset dir="${_module.output}/lib">
  -         <include name="ejb-management.jar"/>
            <include name="jmx-ejb-connector-server.sar"/>
            <include name="jmx-ejb-adaptor.jar"/>
            <include name="jmx-html-adaptor.sar"/>
  @@ -1289,24 +1288,29 @@
              value="${project.root}/${_module.name}/output"/>
   
       <!-- Copy the generated libraries -->
  -<!-- FIXME
       <mkdir dir="${install.lib}"/>
       <copy todir="${install.lib}" filtering="no">
         <fileset dir="${_module.output}/lib">
  +         <include name="jboss-jsr77.jar"/>
            <include name="jboss-management.jar"/>
         </fileset>
       </copy>
  --->
  +
  +    <mkdir dir="${install.server}/default/deploy"/>
  +    <copy todir="${install.server}/default/deploy" filtering="no">
  +      <!-- Deployable archives -->
  +      <fileset dir="${_module.output}/lib">
  +         <include name="ejb-management.jar"/>
  +      </fileset>
  +    </copy>
   
       <!-- Copy the generated client libraries -->
  -<!-- FIXME
       <mkdir dir="${install.client}"/>
       <copy todir="${install.client}" filtering="no">
         <fileset dir="${_module.output}/lib">
  -         <include name="jboss-management-client.jar"/>
  +         <include name="jboss-jsr77.jar"/>
         </fileset>
       </copy>
  --->
   
       <!-- Copy thirdparty code -->
   <!-- FIXME
  
  
  

_______________________________________________
Jboss-development mailing list
[EMAIL PROTECTED]
https://lists.sourceforge.net/lists/listinfo/jboss-development

Reply via email to