User: ejort   
  Date: 02/02/01 18:58:14

  Modified:    jboss    build.xml
  Log:
  Add jmx to the standard compile, required in the testsuite
  
  Revision  Changes    Path
  1.67      +28 -2     build/jboss/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/build/jboss/build.xml,v
  retrieving revision 1.66
  retrieving revision 1.67
  diff -u -r1.66 -r1.67
  --- build.xml 2002/01/28 22:41:21     1.66
  +++ build.xml 2002/02/02 02:58:14     1.67
  @@ -12,7 +12,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.66 2002/01/28 22:41:21 mnf999 Exp $ -->
  +<!-- $Id: build.xml,v 1.67 2002/02/02 02:58:14 ejort Exp $ -->
   
   <project default="main" name="JBoss/Build">
   
  @@ -169,6 +169,7 @@
         <!-- Standard modules -->
         <module name="j2ee"/>
         <module name="naming"/>
  +      <module name="jmx"/>
         <module name="server"/>
         <module name="security"/>
         <module name="messaging"/>
  @@ -188,8 +189,10 @@
           <include modules="j2ee, naming, server"/>
         </group>
   
  +<!-- Should jmx go in core? -->
         <group name="standard">
  -        <include modules="security, 
  +        <include modules="security,
  +                          jmx,
                             messaging, 
                             pool, 
                             connector,  
  @@ -794,6 +797,29 @@
     </target>
   
     <target name="_module-pool-all" depends="_module-pool-most">
  +    <!-- Copy the generated javadocs -->
  +    <mkdir dir="${install.api}/${_module.name}"/>
  +    <copy todir="${install.api}/${_module.name}" filtering="no">
  +      <fileset dir="${_module.output}/api">
  +         <include name="**/*"/>
  +      </fileset>
  +    </copy>
  +  </target>
  +
  +  <!-- === -->
  +  <!-- JMX -->
  +  <!-- === -->
  +
  +  <target name="_module-jmx-most">
  +    <property name="_module.name" value="jmx" override="true"/>
  +    <property name="_module.output" override="true"
  +           value="${project.root}/${_module.name}/output"/>
  +
  +
  +    <!-- TODO Install -->
  +  </target>
  +
  +  <target name="_module-jmx-all" depends="_module-jmx-most">
       <!-- Copy the generated javadocs -->
       <mkdir dir="${install.api}/${_module.name}"/>
       <copy todir="${install.api}/${_module.name}" filtering="no">
  
  
  

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

Reply via email to