User: user57  
  Date: 02/02/14 22:18:33

  Modified:    varia    build.xml
  Log:
   o Moved MBeanProxy, ObjectNameFactory and MBeanServerLocator to
     jboss/common and repackaged under org.jboss.util.jmx
   o Not building jboss-util.jar anymore, jboss-common.jar covers this, though
     still need to move some more stuff over (and some to varia)
   o updated users of the repackaged classes
  
  Revision  Changes    Path
  1.16      +21 -8     contrib/varia/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /cvsroot/jboss/contrib/varia/build.xml,v
  retrieving revision 1.15
  retrieving revision 1.16
  diff -u -r1.15 -r1.16
  --- build.xml 12 Feb 2002 03:22:01 -0000      1.15
  +++ build.xml 15 Feb 2002 06:18:33 -0000      1.16
  @@ -12,9 +12,9 @@
   <!--                                                                        -->
   <!-- ====================================================================== -->
   
  -<!-- $Id: build.xml,v 1.15 2002/02/12 03:22:01 user57 Exp $ -->
  +<!-- $Id: build.xml,v 1.16 2002/02/15 06:18:33 user57 Exp $ -->
   
  -<project default="main" name="JBoss Plugins/Varia">
  +<project default="main" name="JBoss/Varia">
   
     <!-- ================================================================== -->
     <!-- Setup                                                              -->
  @@ -27,8 +27,6 @@
        | It also sets up the basic extention tasks amoung other things.
      -->
   
  -  <property name="_project.root" value="../.."/>
  -
     &buildmagic;
   
   
  @@ -64,7 +62,7 @@
   
       <!-- Module name(s) & version -->
       <property name="module.name" value="varia"/>
  -    <property name="module.Name" value="Various Plugins"/>
  +    <property name="module.Name" value="Various"/>
       <property name="module.version" value="DEV"/>
   
       <!-- ========= -->
  @@ -200,6 +198,13 @@
         <pathelement path="${jboss.j2ee.lib}/jboss-j2ee.jar"/>
       </path>
   
  +    <!-- Common -->
  +    <property name="jboss.common.root" value="${project.root}/common/output"/>
  +    <property name="jboss.common.lib" value="${jboss.common.root}/lib"/>
  +    <path id="jboss.common.classpath">
  +      <pathelement path="${jboss.common.lib}/jboss-common.jar"/>
  +    </path>
  +
       <!-- Naming -->
       <property name="jboss.naming.root" value="${project.root}/naming/output"/>
       <property name="jboss.naming.lib" value="${jboss.naming.root}/lib"/>
  @@ -212,12 +217,12 @@
       <property name="jboss.server.lib" value="${jboss.server.root}/lib"/>
       <path id="jboss.server.classpath">
         <pathelement path="${jboss.server.lib}/jboss.jar"/>
  -      <pathelement path="${jboss.server.lib}/jboss-util.jar"/>
       </path>
   
       <!-- The combined dependent module classpath -->
       <path id="dependentmodule.classpath">
         <path refid="jboss.j2ee.classpath"/>
  +      <path refid="jboss.common.classpath"/>
         <path refid="jboss.naming.classpath"/>
         <path refid="jboss.server.classpath"/>
       </path>
  @@ -361,19 +366,27 @@
     <target name="jars" depends="compile" description="Builds all jar files.">
       <mkdir dir="${build.lib}"/>
   
  -    <!-- Build castor-jdo-plugin.jar -->
  +    <!-- FIXME: TURN ME INTO A SAR
  +
  +    <!- - Build castor-jdo-plugin.jar - ->
       <jar jarfile="${build.lib}/castor-jdo-plugin.jar">
         <fileset dir="${build.classes}">
           <include name="org/jboss/jdo/castor/**"/>
         </fileset>
       </jar>
   
  -    <!-- Build tyrex-tm-plugin.jar -->
  +    -->
  +
  +    <!-- FIXME: TURN ME INTO A SAR
  +
  +    <!- - Build tyrex-tm-plugin.jar - ->
       <jar jarfile="${build.lib}/tyrex-tm-plugin.jar">
         <fileset dir="${build.classes}">
           <include name="org/jboss/tm/plugins/tyrex/**"/>
         </fileset>
       </jar>
  +
  +    -->
   
       <!-- Build hsqldb-plugin.jar -->
       <jar jarfile="${build.lib}/hsqldb-plugin.jar">
  
  
  

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

Reply via email to