User: user57  
  Date: 02/03/09 17:57:50

  Modified:    jboss    build.xml
  Log:
   o added management module config (not hooked up to standard group yet)
   o added example hook
  
  Revision  Changes    Path
  1.106     +66 -1     build/jboss/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/build/jboss/build.xml,v
  retrieving revision 1.105
  retrieving revision 1.106
  diff -u -r1.105 -r1.106
  --- build.xml 9 Mar 2002 02:48:02 -0000       1.105
  +++ build.xml 10 Mar 2002 01:57:49 -0000      1.106
  @@ -12,7 +12,7 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.105 2002/03/09 02:48:02 user57 Exp $ -->
  +<!-- $Id: build.xml,v 1.106 2002/03/10 01:57:49 user57 Exp $ -->
   
   <project default="main" name="JBoss/Build">
   
  @@ -196,6 +196,7 @@
         <module name="jboss.net"/>
         <module name="catalina"/>
         <module name="iiop"/>
  +      <module name="management"/>
   
         <!-- Module groups -->
   
  @@ -218,6 +219,7 @@
                             admin,
                             jetty,
                             varia"/>
  +                <!-- add management when src files are added -->
                   <!-- cluster, was removed add when proxy is fixed -->
         </group>
   
  @@ -1272,6 +1274,69 @@
       <mkdir dir="${install.api}/${_module.name}"/>
       <copy todir="${install.api}/${_module.name}" filtering="no">
         <fileset dir="${_module.output}/api">
  +         <include name="**/*"/>
  +      </fileset>
  +    </copy>
  +  </target>
  +
  +  <!-- ========== -->
  +  <!-- Management -->
  +  <!-- ========== -->
  +
  +  <target name="_module-management-most">
  +    <property name="_module.name" value="management" override="true"/>
  +    <property name="_module.output" override="true"
  +           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-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"/>
  +      </fileset>
  +    </copy>
  +-->
  +
  +    <!-- Copy thirdparty code -->
  +<!-- FIXME
  +    <copy todir="${install.lib}" filtering="no">
  +      <fileset dir="${sun.jaxp.lib}">
  +        <include name="jaxp.jar"/>
  +        <include name="crimson.jar"/>
  +        <include name="xalan.jar"/>
  +      </fileset>
  +      <fileset dir="${sun.jmx.lib}">
  +        <include name="jmxri.jar"/>
  +        <include name="jmxtools.jar"/>
  +      </fileset>
  +    </copy>
  +-->
  +  </target>
  +
  +  <target name="_module-management-all" depends="_module-management-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>
  +
  +    <!-- Copy the generated todo docs -->
  +    <mkdir dir="${install.todo}/${_module.name}"/>
  +    <copy todir="${install.todo}/${_module.name}" filtering="no">
  +      <fileset dir="${_module.output}/todo">
            <include name="**/*"/>
         </fileset>
       </copy>
  
  
  

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

Reply via email to