[jboss-cvs] JBossAS SVN: r79795 - trunk/build.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Oct 21 04:23:16 EDT 2008


Author: dimitris at jboss.org
Date: 2008-10-21 04:23:15 -0400 (Tue, 21 Oct 2008)
New Revision: 79795

Removed:
   trunk/build/build-old.xml
   trunk/build/build-thirdparty-old.xml
Log:
drop the old build files.

Deleted: trunk/build/build-old.xml
===================================================================
--- trunk/build/build-old.xml	2008-10-21 07:51:50 UTC (rev 79794)
+++ trunk/build/build-old.xml	2008-10-21 08:23:15 UTC (rev 79795)
@@ -1,976 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!DOCTYPE project [
-   <!ENTITY buildmagic SYSTEM "../tools/etc/buildmagic/buildmagic.ent">
-]>
-
-<!-- ====================================================================== -->
-<!--                                                                        -->
-<!--  JBoss, the OpenSource J2EE webOS                                      -->
-<!--                                                                        -->
-<!--  Distributable under LGPL license.                                     -->
-<!--  See terms of license at http://www.gnu.org.                           -->
-<!--                                                                        -->
-<!-- ====================================================================== -->
-
-<!-- $Id$ -->
-
-<project default="main" name="JBoss/Build">
-
-  <!-- ================================================================== -->
-  <!-- Setup                                                              -->
-  <!-- ================================================================== -->
-
-  <!--
-     | Include the common Buildmagic elements.
-     |
-     | This defines several different targets, properties and paths.
-     | It also sets up the basic extention tasks amoung other things.
-   -->
-
-  &buildmagic;
-
-
-  <!-- ================================================================== -->
-  <!-- Initialization                                                     -->
-  <!-- ================================================================== -->
-
-  <!--
-     | Initialize the build system.  Must depend on '_buildmagic:init'.
-     | Other targets should depend on 'init' or things will mysteriously fail.
-   -->
-
-  <target name="init" unless="init.disable" depends="_buildmagic:init">
-  </target>
-
-
-  <!-- ================================================================== -->
-  <!-- Configuration                                                      -->
-  <!-- ================================================================== -->
-
-  <!--
-     | Configure the build system.
-     |
-     | This target is invoked by the Buildmagic initialization logic and
-     | should contain module specific configuration elements.
-   -->
-
-  <target name="configure" unless="configure.disable">
-
-    <!-- =================== -->
-    <!-- Basic Configuration -->
-    <!-- =================== -->
-
-    <!-- Module name(s) & version -->
-    <property name="module.name" value="jboss"/>
-    <property name="module.Name" value="JBoss Build"/>
-    <property name="module.version" value="${version.major}.${version.minor}.${version.revision}.${version.tag}"/>
-
-    <!-- The combined library classpath -->
-    <path id="library.classpath">
-    </path>
-
-    <!-- ============== -->
-    <!-- Modules/Groups -->
-    <!-- ============== -->
-
-    <!-- The group to use by default -->
-    <property name="groups" value="default"/>
-
-
-    <!-- Sets up the module configuration. -->
-    <moduleconfig property="modules" selected="${groups}">
-
-      <!-- Modules -->
-      <module name="aspects"/>
-      <module name="bootstrap"/>
-      <module name="cluster"/>
-      <module name="connector"/>
-      <module name="console"/>
-      <module name="deployment"/>
-      <module name="ejb3"/>
-      <module name="embedded"/>
-      <module name="hibernate-int"/>
-      <module name="iiop"/>
-      <module name="j2se"/>
-      <module name="jmx"/>
-      <module name="main"/>
-      <module name="management"/>
-      <module name="mbeans"/>
-      <module name="messaging"/>
-      <module name="jbossmq"/>
-      <module name="jbossas/remoting"/>
-      <module name="jmx-remoting"/>
-      <module name="jbossas/jmx-remoting"/>
-      <module name="profileservice"/>
-      <module name="security"/>
-      <module name="server"/>
-      <module name="spring-int"/>
-      <module name="system"/>
-      <module name="system-jmx"/>
-      <module name="testsuite"/>
-      <module name="tomcat"/>
-      <module name="varia"/>
-      <module name="webservices"/>
-
-      <!-- Module groups -->
-
-      <!--this lets you recompile a single module using a command line like
-./build.sh -emacs -Dgroups=single -Dsingle-module=server
-      -->
-      <group name="single">
-        <include modules="${single-module}"/>
-      </group>
-
-      <group name="core">
-        <include modules="main, bootstrap, j2se, mbeans, jmx, system, system-jmx"/>
-      </group>
-
-      <group name="basic">
-        <include modules="security,
-                          server,
-                          deployment" />
-
-      </group>
-
-      <group name="standard">
-        <include modules="jbossas/remoting,
-                          jmx-remoting,
-                          jbossas/jmx-remoting,
-                          messaging,
-                          jbossmq,
-                          cluster,
-                          varia,
-                          iiop,
-                          aspects,
-                          profileservice,
-                          connector,
-                          management,
-                          ejb3,
-                          tomcat,
-                          webservices,
-                          hibernate-int,
-                          console,
-                          spring-int
-                          "/>
-      </group>
-
-      <group name="optional">
-         <include modules="embedded
-            "/>
-      </group>
-
-      <!-- Module group sets -->
-
-      <group name="default">
-        <include groups="core, basic, standard"/>
-      </group>
-
-      <group name="most">
-        <include groups="core, basic, standard"/>
-      </group>
-
-      <group name="all">
-        <include groups="core, basic, standard, optional"/>
-      </group>
-
-    </moduleconfig>
-
-    <!-- Show the module configuration -->
-    <echo>groups:  ${groups}</echo>
-    <echo>modules: ${modules}</echo>
-
-    <!-- The combined dependent module classpath -->
-    <path id="dependentmodule.classpath">
-    </path>
-
-    <!-- ===== -->
-    <!-- Tasks -->
-    <!-- ===== -->
-
-    <!-- Skip any missing modules and issue a warning -->
-    <property name="executemodules.skipmissing" value="true"/>
-
-    <!-- The header and footer displayed during each module execution -->
-    <property name="executemodules.header"><![CDATA[
-    ======================================================================
-    ==  Executing '${target}' in module '${module}'...
-    ==]]></property>
-
-    <property name="executemodules.footer"><![CDATA[
-    ==
-    ==  Finished with '${target}' in module '${module}'.
-    ======================================================================
-    ]]></property>
-
-    <property name="executemodules.exportproperties">
-       version.major,
-       version.minor,
-       version.revision,
-       version.tag,
-       version.name,
-       version.cvstag,
-
-       specification.title,
-       specification.version,
-       specification.vendor,
-
-       implementation.title,
-       implementation.version,
-       implementation.vendor,
-       implementation.vendor.id,
-       implementation.url
-    </property>
-
-    <!-- Install/Release structure -->
-    <property name="install.id" value="${module.name}-${module.version}"/>
-    <property name="release.id" value="${install.id}"/>
-
-    <property name="install.root" value="${module.output}/${install.id}"/>
-
-    <property name="install.docs" value="${install.root}/docs"/>
-    <property name="install.api" value="${install.docs}/api"/>
-    <property name="install.jmx-api" value="${install.docs}/jmx-api"/>
-    <property name="install.todo" value="${install.docs}/todo"/>
-    <property name="install.examples" value="${install.docs}/examples"/>
-    <property name="install.examples.jca" value="${install.docs}/examples/jca"/>
-    <property name="install.examples.jms" value="${install.docs}/examples/jms"/>
-    <property name="install.examples.jbossweb" value="${install.examples}/jbossweb"/>
-    <property name="install.examples.netboot" value="${install.examples}/netboot"/>
-    <property name="install.examples.binding-manager" value="${install.examples}/binding-manager"/>
-    <property name="install.examples.varia" value="${install.examples}/varia"/>
-    <property name="install.dtd" value="${install.docs}/dtd"/>
-    <property name="install.schema" value="${install.docs}/schema"/>
-
-    <property name="install.bin" value="${install.root}/bin"/>
-    <property name="install.etc" value="${install.root}/etc"/>
-    <property name="install.client" value="${install.root}/client"/>
-    <property name="install.lib" value="${install.root}/lib"/>
-
-    <property name="install.server" value="${install.root}/server"/>
-    <property name="install.all" value="${install.server}/all"/>
-    <property name="install.all.lib" value="${install.all}/lib"/>
-    <property name="install.all.deploy" value="${install.all}/deploy"/>
-    <property name="install.all.deployers" value="${install.all}/deployers"/>
-    <property name="install.all.conf" value="${install.all}/conf"/>
-    <property name="install.all.deploy.hasingleton" value="${install.all}/deploy-hasingleton"/>
-
-    <property name="install.default" value="${install.server}/default"/>
-    <property name="install.default.lib" value="${install.default}/lib"/>
-    <property name="install.default.deploy" value="${install.default}/deploy"/>
-    <property name="install.default.deployers" value="${install.default}/deployers"/>
-    <property name="install.default.conf" value="${install.default}/conf"/>
-
-    <property name="install.minimal" value="${install.server}/minimal"/>
-    <property name="install.minimal.lib" value="${install.minimal}/lib"/>
-    <property name="install.minimal.deploy" value="${install.minimal}/deploy"/>
-    <property name="install.minimal.deployers" value="${install.minimal}/deployers"/>
-    <property name="install.minimal.conf" value="${install.minimal}/conf"/>
-
-    <!-- Configuration for the nightly build and test job -->
-    <property name="run.nightly.sleep" value="1"/> <!-- 1 minute -->
-    <property name="run.nightly.email.tolist" value="jboss-development at lists.sourceforge.net"/>
-    <property name="run.nightly.email.from" value="noreply at jboss.org"/>
-    <property name="run.nightly.email.mailhost" value="localhost"/>
-    <property name="run.home.dir" value="${module.output}/${release.id}" />
-    <property name="run.bin.dir" value="${run.home.dir}/bin" />
-
-    <!-- Bits for building source archives -->
-    <patternset id="source.ignore">
-      <exclude name="**/output/**"/>
-      <exclude name="**/CVS/**" />
-    </patternset>
-    <patternset id="source.free">
-      <exclude name="tools/**"/>
-      <exclude name="thirdparty/**"/>
-      <include name="**"/>
-    </patternset>
-    <patternset id="source.external">
-      <include name="tools/**"/>
-      <include name="thirdparty/**"/>
-    </patternset>
-</target>
-
-  <!-- ================================================================== -->
-  <!-- Module Pass-through Targets                                        -->
-  <!-- ================================================================== -->
-
-  <!--
-     | These targets will execute all configured modules with the specified
-     | target.
-   -->
-
-  <target name="modules-all" depends="_buildmagic:modules:all">
-     <antcall target="thirdparty"/>
-  </target>
-  <target name="modules-most" depends="_buildmagic:modules:most">
-     <antcall target="thirdparty"/>
-  </target>
-  <target name="modules-main" depends="_buildmagic:modules:main"/>
-  <target name="modules-release" depends="_buildmagic:modules:release"/>
-  <target name="modules-tests" depends="_buildmagic:modules:tests"/>
-  <target name="modules-clean" depends="_buildmagic:modules:clean"/>
-  <target name="modules-clobber" depends="_buildmagic:modules:clobber"/>
-  <target name="modules-docs" depends="_buildmagic:modules:docs"/>
-
-  <!-- ================================================================== -->
-  <!-- Module Pass-through Hooks                                          -->
-  <!-- ================================================================== -->
-
-  <!--
-     | These hooks are executed after the above pass-through targets have
-     | finished with a given module.
-   -->
-
-   <!-- ======== -->
-   <!-- Test     -->
-   <!-- ======== -->
-
-   <target name="_module-test-most">
-     <ant antfile="build-distr.xml" target="_module-test-most"/>
-   </target>
-
-   <target name="_module-test-all" depends="_module-test-most">
-     <ant antfile="build-distr.xml" target="_module-test-all"/>
-   </target>
-
-  <!-- ======== -->
-  <!-- Remoting -->
-  <!-- ======== -->
-
-  <target name="_module-jbossas/remoting-most">
-     <ant antfile="build-distr.xml" target="_module-jbossas/remoting-most"/>
-  </target>
-
-  <target name="_module-remoting-all" depends="_module-jbossas/remoting-most">
-     <ant antfile="build-distr.xml" target="_module-jbossas/remoting-all"/>
-  </target>
-
-  <!-- ============ -->
-  <!-- JMX Remoting -->
-  <!-- ============ -->
-
-   <target name="_module-jmx-remoting-most">
-     <ant antfile="build-distr.xml" target="_module-jmx-remoting-most"/>
-   </target>
-
-   <target name="_module-jmx-remoting-all" depends="_module-jmx-remoting-most">
-     <ant antfile="build-distr.xml" target="_module-jmx-remoting-all"/>
-   </target>
-
-   <target name="_module-jbossas/jmx-remoting-all" depends="_module-jbossas/jmx-remoting-most">
-     <ant antfile="build-distr.xml" target="_module-jbossas/jmx-remoting-all"/>
-   </target>
-
-   <target name="_module-jbossas/jmx-remoting-most">
-     <ant antfile="build-distr.xml" target="_module-jbossas/jmx-remoting-most"/>
-   </target>
-
-   <!-- ======== -->
-   <!-- EJB 3.0 -->
-   <!-- ======== -->
-
-   <target name="_module-ejb3-most">
-     <ant antfile="build-distr.xml" target="_module-ejb3-most"/>
-   </target>
-
-   <target name="_module-ejb3-all" depends="_module-ejb3-most">
-     <ant antfile="build-distr.xml" target="_module-ejb3-all"/>
-   </target>
-
-  <!-- ======== -->
-   <!-- EJB3X -->
-   <!-- ======== -->
-
-<!--
-   <target name="_module-ejb3x-most">
-     <ant antfile="build-distr.xml" target="_module-ejb3x-most"/>
-   </target>
--->
-
-  <!-- ======== -->
-  <!-- ASPECTS -->
-  <!-- ======== -->
-
-  <target name="_module-aspects-most">
-     <ant antfile="build-distr.xml" target="_module-aspects-most"/>
-  </target>
-
-  <target name="_module-aspects-all" depends="_module-aspects-most">
-     <ant antfile="build-distr.xml" target="_module-aspects-all"/>
-  </target>
-
-  <!-- ==== -->
-  <!-- J2EE -->
-  <!-- ==== -->
-
-<!--
-  <target name="_module-j2ee-most">
-     <ant antfile="build-distr.xml" target="_module-j2ee-most"/>
-  </target>
-
-  <target name="_module-j2ee-all" depends="_module-j2ee-most">
-     <ant antfile="build-distr.xml" target="_module-j2ee-all"/>
-  </target>
--->
-
-  <!-- ==== -->
-  <!-- Main -->
-  <!-- ==== -->
-
-  <target name="_module-main-most">
-     <ant antfile="build-distr.xml" target="_module-main-most"/>
-  </target>
-
-  <target name="_module-main-all" depends="_module-main-most">
-     <ant antfile="build-distr.xml" target="_module-main-all"/>
-  </target>
-
-  <!-- ========= -->
-  <!-- Bootstrap -->
-  <!-- ========= -->
-
-  <target name="_module-bootstrap-most">
-     <ant antfile="build-distr.xml" target="_module-bootstrap-most"/>
-  </target>
-
-  <target name="_module-bootstrap-all" depends="_module-bootstrap-most">
-     <ant antfile="build-distr.xml" target="_module-bootstrap-all"/>
-  </target>
-
-  <!-- ====== -->
-  <!-- System -->
-  <!-- ====== -->
-
-  <target name="_module-system-most">
-     <ant antfile="build-distr.xml" target="_module-system-most"/>
-  </target>
-
-  <target name="_module-system-all" depends="_module-system-most">
-     <ant antfile="build-distr.xml" target="_module-system-all"/>
-  </target>
-	  <target name="_module-system-jmx-most">
-	     <ant antfile="build-distr.xml" target="_module-system-jmx-most"/>
-	  </target>
-
-	  <target name="_module-system-jmx-all" depends="_module-system-jmx-most">
-	     <ant antfile="build-distr.xml" target="_module-system-jmx-all"/>
-	  </target>
-
-  <!-- ====== -->
-  <!-- Server -->
-  <!-- ====== -->
-
-  <target name="_module-server-most">
-     <ant antfile="build-distr.xml" target="_module-server-most"/>
-  </target>
-
-  <target name="_module-server-all" depends="_module-server-most">
-     <ant antfile="build-distr.xml" target="_module-server-all"/>
-  </target>
-
-  <!-- ========= -->
-  <!-- Connector -->
-  <!-- ========= -->
-
-  <target name="_module-connector-most">
-     <ant antfile="build-distr.xml" target="_module-connector-most"/>
-  </target>
-
-  <target name="_module-connector-all" depends="_module-connector-most">
-     <ant antfile="build-distr.xml" target="_module-connector-all"/>
-  </target>
-
-  <!-- ========= -->
-  <!-- Messaging -->
-  <!-- ========= -->
-
-  <target name="_module-messaging-most">
-     <ant antfile="build-distr.xml" target="_module-messaging-most"/>
-  </target>
-
-  <target name="_module-messaging-all" depends="_module-messaging-most">
-     <ant antfile="build-distr.xml" target="_module-messaging-all"/>
-  </target>
-
-
-  <!-- ==== -->
-  <!-- J2SE -->
-  <!-- ==== -->
-
-  <target name="_module-j2se-most">
-     <ant antfile="build-distr.xml" target="_module-j2se-most"/>
-  </target>
-
-  <target name="_module-j2se-all" depends="_module-j2se-most">
-     <ant antfile="build-distr.xml" target="_module-j2se-all"/>
- </target>
-
-  <!-- ====== -->
-  <!-- MBeans -->
-  <!-- ====== -->
-
-  <target name="_module-mbeans-most">
-     <ant antfile="build-distr.xml" target="_module-mbeans-most"/>
-  </target>
-
-  <target name="_module-mbeans-all" depends="_module-mbeans-most">
-     <ant antfile="build-distr.xml" target="_module-mbeans-most"/>
- </target>
-
-  <!-- === -->
-  <!-- JMX -->
-  <!-- === -->
-
-  <target name="_module-jmx-most">
-     <ant antfile="build-distr.xml" target="_module-jmx-most"/>
-  </target>
-
-  <target name="_module-jmx-all" depends="_module-jmx-most">
-     <ant antfile="build-distr.xml" target="_module-jmx-all"/>
- </target>
-
-  <!-- ======== -->
-  <!-- Security -->
-  <!-- ======== -->
-
-  <target name="_module-security-most">
-     <ant antfile="build-distr.xml" target="_module-security-most"/>
-  </target>
-
-  <target name="_module-security-all" depends="_module-security-most">
-     <ant antfile="build-distr.xml" target="_module-security-all"/>
-  </target>
-
-  <!-- ======= -->
-  <!-- Cluster -->
-  <!-- ======= -->
-
-  <target name="_module-cluster-most">
-     <ant antfile="build-distr.xml" target="_module-cluster-most"/>
-  </target>
-
-  <target name="_module-cluster-all" depends="_module-cluster-most">
-     <ant antfile="build-distr.xml" target="_module-cluster-all"/>
-  </target>
-
-  <!-- ===== -->
-  <!-- Varia -->
-  <!-- ===== -->
-
-  <target name="_module-varia-most">
-     <ant antfile="build-distr.xml" target="_module-varia-most"/>
-  </target>
-
-  <target name="_module-varia-all" depends="_module-varia-most">
-     <ant antfile="build-distr.xml" target="_module-varia-all"/>
-  </target>
-
-  <!-- ===== -->
-  <!-- Tomcat5.5.x -->
-  <!-- ===== -->
-
-  <target name="_module-tomcat-most">
-     <ant antfile="build-distr.xml" target="_module-tomcat-most"/>
-  </target>
-
-  <target name="_module-tomcat-all" depends="_module-tomcat-most">
-     <ant antfile="build-distr.xml" target="_module-tomcat-all"/>
-  </target>
-
-
-  <!-- ==== -->
-  <!-- IIOP -->
-  <!-- ==== -->
-
-  <target name="_module-iiop-most">
-     <ant antfile="build-distr.xml" target="_module-iiop-most"/>
-  </target>
-
-  <target name="_module-iiop-all" depends="_module-iiop-most">
-     <ant antfile="build-distr.xml" target="_module-iiop-all"/>
-  </target>
-
-  <!-- ========== -->
-  <!-- Management -->
-  <!-- ========== -->
-
-  <target name="_module-management-most">
-     <ant antfile="build-distr.xml" target="_module-management-most"/>
-  </target>
-
-  <target name="_module-management-all" depends="_module-management-most">
-     <ant antfile="build-distr.xml" target="_module-management-all"/>
-  </target>
-
-  <!-- ======= -->
-  <!-- Console -->
-  <!-- ======= -->
-
-  <target name="_module-console-most">
-     <ant antfile="build-distr.xml" target="_module-console-most"/>
-  </target>
-
-  <target name="_module-console-all" depends="_module-console-most">
-     <ant antfile="build-distr.xml" target="_module-console-all"/>
-  </target>
-
-
-
-
-
-  <!-- ========== -->
-  <!-- Deployment -->
-  <!-- ========== -->
-
-  <target name="_module-deployment-most">
-     <ant antfile="build-distr.xml" target="_module-deployment-most"/>
-  </target>
-
-  <target name="_module-deployment-all" depends="_module-deployment-most">
-     <ant antfile="build-distr.xml" target="_module-deployment-all"/>
-  </target>
-
-  <!-- =========== -->
-  <!-- Webservices -->
-  <!-- =========== -->
-
-  <target name="_module-webservices-most">
-     <ant antfile="build-distr.xml" target="_module-webservices-most"/>
-  </target>
-
-  <target name="_module-webservices-all" depends="_module-webservices-most">
-     <ant antfile="build-distr.xml" target="_module-webservices-all"/>
-  </target>
-
-  <!-- ============ -->
-  <!-- Hibernate    -->
-  <!-- ============ -->
-
-  <target name="_module-hibernate-int-most">
-     <ant antfile="build-distr.xml" target="_module-hibernate-int-most"/>
-  </target>
-
-  <target name="_module-hibernate-int-all" depends="_module-hibernate-int-most">
-     <ant antfile="build-distr.xml" target="_module-hibernate-int-all"/>
-  </target>
-
-   <!-- ============ -->
-   <!--   ProfileService     -->
-   <!-- ============ -->
-
-   <target name="_module-profileservice-most">
-      <ant antfile="build-distr.xml" target="_module-profileservice-most"/>
-   </target>
-   
-   <target name="_module-profileservice-all">
-      <ant antfile="build-distr.xml" target="_module-profileservice-most"/>
-   </target>
-
-    <!-- ============ -->
-    <!--   Spring     -->
-    <!-- ============ -->
-
-  <target name="_module-spring-int-most">
-         <ant antfile="build-distr.xml" target="_module-spring-int-most"/>
-  </target>
-
-  <target name="_module-spring-int-all" depends="_module-spring-int-most">
-     <ant antfile="build-distr.xml" target="_module-spring-int-all"/>
-  </target>
-
-  <target name="thirdparty">
-     <ant antfile="build-distr.xml" target="thirdparty"/>
-  </target>
-
-
-  <!-- ================================================================== -->
-  <!-- Install & Release                                                  -->
-  <!-- ================================================================== -->
-
-  <target name="install"
-	  description="Install the structure for a release."
-     depends="partition-build"
-     />
-
-  <!-- Partition the default single configuration build into a minimal,
-  default and all configs with a minimal set of jars in the root lib dir.
-  -->
-  <target name="partition-build" depends="init">
-
-    <!-- Copy server/all to server/default and then remove the services and
-    jars outside of the scope of the default config -->
-    <copy todir="${install.default}">
-      <fileset dir="${install.all}">
-        <exclude name="data/**"/>
-        <exclude name="log/**"/>
-        <exclude name="tmp/**"/>
-        <exclude name="work/**"/>
-        <exclude name="deploy-hasingleton/**"/>
-        <exclude name="conf/jacorb.properties"/>
-        <exclude name="lib/avalon-framework.jar"/>
-        <exclude name="lib/jgroups.jar"/>
-        <exclude name="lib/jacorb.jar"/>
-        <exclude name="lib/jaxr-client.jar" />
-        <exclude name="lib/jbosscache-core.jar"/>
-        <exclude name="lib/jbosscache-pojo.jar"/>
-        <exclude name="lib/jbossmqha.jar"/>
-        <exclude name="deploy/cluster/**"/>
-        <exclude name="deploy/iiop-service.xml"/>
-        <exclude name="deploy/jbossweb-ejb.jar"/>
-        <exclude name="deploy/jms/hajndi-jms-ds.xml"/>
-        <exclude name="deploy/deploy.last/**"/>
-        <exclude name="deploy/httpha-invoker.sar/**"/>
-        <exclude name="deploy/snmp-adaptor.sar/**"/>
-        <exclude name="farm/**"/>
-        <exclude name="deploy/juddi-service.sar/**"/>
-        <exclude name="deploy/messaging/**"/>
-        <exclude name="deploy/jms-ds.xml"/>
-      </fileset>
-    </copy>
-    <copy todir="${install.default.conf}"
-          file="${project.root}/server/output/etc/conf/default/jndi.properties" overwrite="true"/>
-<!--
-    <copy todir="${install.default.deploy}">
-      <fileset dir="${install.all.deploy.hasingleton}">
-        <include name="jms/**"/>
--->
-        <!-- Trim the default config jms layer to only the JVM/UIL2 invoker -->
-<!--       
-        <exclude name="jms/jbossmq-hail.sar/**"/>
-      </fileset>
-    </copy>
-    <copy todir="${install.default.deploy}/jms">
-      <fileset dir="${install.examples.jca}">
-         <include name="jms-ds.xml"/>
-      </fileset>
-    </copy>
---> 
-    <unjar src="${project.root}/varia/output/lib/http-invoker.sar"
-      dest="${install.default}/deploy/http-invoker.sar"/>
-
-    <!-- Build server/minimal manually -->
-    <mkdir dir="${install.minimal.deploy}"/>
-    <mkdir dir="${install.minimal.deployers}"/>
-    <copy todir="${install.minimal.conf}">
-      <fileset dir="${install.default.conf}">
-        <include name="jndi.properties" />
-        <include name="jboss-log4j.xml" />
-        <include name="bootstrap-beans.xml" />
-        <include name="xmdesc/NamingBean-xmbean.xml" />
-        <include name="xmdesc/NamingService-xmbean.xml" />
-      </fileset>
-    </copy>
-    <copy file="${install.default.conf}/jboss-minimal.xml"
-          tofile="${install.minimal.conf}/jboss-service.xml"/>
-    <copy todir="${install.minimal.lib}">
-      <fileset dir="${install.default.lib}">
-        <include name="jboss-management.jar" />
-        <include name="jnpserver.jar" />
-        <include name="log4j.jar" />
-      </fileset>
-    </copy>
-    <copy todir="${install.minimal.lib}"
-      file="${project.root}/server/output/lib/jboss-minimal.jar" />
-
-    <call target="jboss-all-client"/>
-
-  </target>
-
-  <target name="bypass-jboss-all-client" depends="init">
-
-   <uptodate property="bypass-jboss-all-client.on" targetfile="${install.client}/jbossall-client.jar">
-      <srcfiles dir="${install.client}">
-        <include name="*-client.jar"/>
-        <include name="jboss-logging-*.jar" />
-        <include name="asm.jar"/>
-        <include name="cglib-2.1.1.jar"/>
-        <include name="commons-logging.jar"/>
-        <include name="concurrent.jar"/>
-        <include name="ejb3-persistence.jar"/>
-        <include name="hibernate-annotations.jar"/>
-        <include name="jboss-auth.jar"/>
-        <include name="jboss-annotations-ejb3.jar"/>
-        <include name="jboss-common*.jar"/>
-        <include name="jboss-ejb3-ext-api.jar"/>
-        <include name="jboss-logging*.jar"/>
-        <include name="jboss-deployment.jar"/>
-        <include name="jboss-javaee.jar"/>
-        <include name="jboss-integration.jar"/>
-        <include name="jboss-j2se.jar"/>
-        <include name="jboss-remoting.jar"/>
-        <include name="jboss-security-spi.jar"/>
-        <include name="jboss-serialization.jar"/>
-        <include name="jbossmqha.jar"/>
-        <include name="jmx-connector-client-factory.jar"/>
-        <include name="namespace.jar"/>
-        <include name="xmlsec.jar"/>
-        <include name="jboss-messaging.jar"/>
-        <include name="jboss-mdr.jar"/>
-        <include name="jboss-deployers-core.jar"/>
-        <include name="jboss-deployers-core-spi.jar"/>
-        <include name="jboss-deployers-client.jar"/>
-        <include name="jboss-deployers-client-spi.jar"/>
-        <!-- client excludes -->
-        <exclude name="jbossws-client.jar"/>
-      </srcfiles>
-   </uptodate>
-
-  </target>
-
-  <target name="jboss-all-client"
-          depends="bypass-jboss-all-client"
-          unless="bypass-jboss-all-client.on">
-
-    <!--Create a jbossall-client.jar containing everything a client app needs-->
-    <mkdir dir="build"/>
-    <delete file="${install.client}/jbossall-client.jar"/>
-    <unjar dest="build">
-      <fileset dir="${install.client}">
-        <include name="*-client.jar"/>
-        <include name="asm.jar"/>
-        <include name="cglib-2.1.1.jar"/>
-        <include name="commons-logging.jar"/>
-        <include name="concurrent.jar"/>
-        <include name="ejb3-persistence.jar"/>
-        <include name="hibernate-annotations.jar"/>
-        <include name="jboss-annotations-ejb3.jar"/>
-        <include name="jboss-auth.jar"/>
-        <include name="jboss-common*.jar"/>
-        <include name="jboss-ejb3-ext-api.jar"/>
-        <include name="jboss-logging*.jar"/>
-        <include name="jboss-deployment.jar"/>
-        <include name="jboss-javaee.jar"/>
-        <include name="jboss-integration.jar"/>
-        <include name="jboss-j2se.jar"/>
-        <include name="jboss-remoting.jar"/>
-        <include name="jboss-security-spi.jar"/>
-        <include name="jboss-serialization.jar"/>
-        <!-- Do not include, otherwise jbossws cannot be a drop in replacement.
-        <include name="jboss-xml-binding.jar"/> 
-        <include name="jboss-jaxrpc.jar"/> 
-        <include name="jboss-jaxws.jar"/> 
-        <include name="jboss-saaj.jar"/> 
-        <include name="wsdl4j.jar"/>
-        -->
-        <include name="jbossmqha.jar"/>
-        <include name="jmx-connector-client-factory.jar"/>
-        <include name="namespace.jar"/>
-        <include name="xmlsec.jar"/>
-        <include name="jboss-messaging.jar"/>
-        <include name="jboss-mdr.jar"/>
-        <include name="jboss-deployers-core.jar"/>
-        <include name="jboss-deployers-core-spi.jar"/>
-        <include name="jboss-deployers-client.jar"/>
-        <include name="jboss-deployers-client-spi.jar"/>
-        <!-- client excludes -->
-        <exclude name="jbossws-client.jar"/>
-      </fileset>
-    </unjar>
-    <jar destfile="${install.client}/jbossall-client.jar" basedir="build" />
-
-    <delete dir="build" />
-
-  </target>
-
-  <!-- ================================================================== -->
-  <!-- Cleaning                                                           -->
-  <!-- ================================================================== -->
-
-  <!-- Clean up all build output -->
-  <target name="clean" depends="createthirdparty, _buildmagic:clean, modules-clean"
-	  description="Cleans up most generated files.">
-  </target>
-
-  <!-- Clean up all generated files -->
-  <target name="clobber" depends="_buildmagic:clobber, clean, modules-clobber"
-	  description="Cleans up all generated files.">
-    <delete file="${module.root}/*_run.log"/>
-  </target>
-
-
-  <!-- ================================================================== -->
-  <!-- Misc.                                                              -->
-  <!-- ================================================================== -->
-
-  <target name="main" depends="most"
-	  description="Executes the default target (most)."/>
-
-  <target name="all" depends="createthirdparty, modules-all, install"
-	  description="Executes all modules and builds everything."/>
-
-  <target name="most" depends="createthirdparty, modules-most, install"
-	  description="Executes all modules and builds most everything."/>
-
-  <target name="release" depends="most" />
-
-  <target name="help" depends="_buildmagic:help:build"
-          description="Show this help message."/>
-
-   <!-- create the thirdparty folder from items in the repository -->
-   <!-- then generate a new libraries.ent file and include it in  -->
-   <!-- the build                                                 -->
-   <target name="createthirdparty" unless="inhibit.downloads"
-      depends="check.inhibit.downloads, set.proxy">
-      <ant antfile="build-thirdparty.xml" target="generate-lib-file"/>
-      <ant dir="../testsuite" antfile="build-thirdparty.xml" target="generate-lib-file"/>
-   </target>
-
-   <!-- check if thirdparty libraries are to be downloaded -->
-   <target name="check.inhibit.downloads">
-      <condition property="inhibit.downloads">
-         <or>
-            <uptodate property="dependencies.current"
-               targetfile="../thirdparty/libraries.ent">
-              <srcfiles dir= "." includes="build-thirdparty.xml"/>
-              <srcfiles dir= "../testsuite" includes="build-thirdparty.xml"/>
-            </uptodate>
-            <istrue value="${nodownload}"/>
-         </or>
-      </condition>
-  </target>
-
-  <!-- check if the the user has specied proxy settings -->
-  <target name="check.proxy">
-    <condition property="hasproxy">
-        <and>
-            <isset property="proxy.host"/>
-            <isset property="proxy.port"/>
-            <not>
-                <equals arg1="" arg2="${proxy.host}" trim="true"/>
-            </not>
-            <not>
-                <equals arg1="" arg2="${proxy.port}" trim="true"/>
-            </not>
-        </and>
-    </condition>
-  </target>
-
-  <!-- set proxy settings -->
-  <condition property="hasproxyauth">
-        <and>
-            <isset property="hasproxy"/>
-            <isset property="proxy.username"/>
-            <isset property="proxy.password"/>
-            <not>
-                <equals arg1="" arg2="${proxy.username}" trim="true"/>
-            </not>
-            <not>
-                <equals arg1="" arg2="${proxy.password}" trim="true"/>
-            </not>
-        </and>
-    </condition>
-  <target name="set.proxy" depends="set.proxy.withoutauth, set.proxy.auth"/>
-
-  <!-- set proxy settings without auth -->
-  <target name="set.proxy.withoutauth" if="hasproxy" unless="hasproxyauth" depends="check.proxy">
-    <echo>Proxy is set to ${proxy.host}:${proxy.port}</echo>
-    <setproxy proxyhost="${proxy.host}" proxyport="${proxy.port}"/>
-  </target>
-
-  <!-- set proxy settings using auth -->
-  <target name="set.proxy.auth" if="hasproxyauth" depends="check.proxy">
-    <echo>Auth Proxy is set to ${proxy.host}:${proxy.port} username=[${proxy.username}]</echo>
-    <setproxy proxyhost="${proxy.host}" proxyport="${proxy.port}" proxyuser="${proxy.username}" proxypassword="${proxy.password}"/>
-  </target>
-
-</project>

Deleted: trunk/build/build-thirdparty-old.xml
===================================================================
--- trunk/build/build-thirdparty-old.xml	2008-10-21 07:51:50 UTC (rev 79794)
+++ trunk/build/build-thirdparty-old.xml	2008-10-21 08:23:15 UTC (rev 79795)
@@ -1,171 +0,0 @@
-<?xml version="1.0"?>
-<!-- $Id: build-thirdparty.xml 70700 2008-03-10 21:00:47Z anil.saldhana at jboss.com $ -->
-<project name="main.build" default="synchronize" basedir=".">
-
-  <!-- Property File definitions -->
-  <property file="local.properties"/>
-  <property file="synchronize.properties"/>
-  <property environment="env"/>
-
-  <!-- Property Definitions -->
-  <property name="generatedLibrariesFiles" value="../thirdparty/libraries.ent"/>
-
-  <!-- Allow jbossbuild.repository to be set from (in order or priority)
-   | Command line -Djbossbuild.repository=...
-   | synchronize.properties jbossbuild.repository setting
-   | JBOSS_REPOSITORY environment variable
-   | (e.g. JBOSS_REPOSITORY=file:///d:/projects/repository.jboss.com/)
-  -->
-
-  <condition property="jbossbuild.repository" value="${env.JBOSS_REPOSITORY}">
-    <isset property="env.JBOSS_REPOSITORY"/>
-  </condition>
-
-  <!-- Fall back to default -->
-  <property name="jbossbuild.repository" value="http://repository.jboss.com"/>
-
-  <!-- File Imports -->
-  <import file="../tools/etc/jbossbuild/tasks.xml"/>
-
-  <!-- Main Definition of dependencies -->
-  <build
-    id="jbossas-thirdparty"
-    impltitle="JBossAS"
-    implversion="jboss-head"
-    implvendor="JBoss Inc."
-    implurl="http://www.jboss.org"
-    description="JBoss Application Server"
-    cvsroot="${cvs.prefix}@cvs.forge.jboss.com:/cvsroot/jboss"
-    thirdpartypath="../thirdparty/"
-    location="${jbossbuild.repository}"
-    targetdefs="targets">
-
-    <!--
-    The repository is in CVS under the module repository.jboss.com whose contents
-    are pushed to the http://repository.jboss.com site.
-    -->
-
-    <componentref name="antlr" version="2.7.6-brew"/>
-    <componentref name="apache-avalon" version="4.1.5"/>
-    <componentref name="apache-avalon-logkit" version="1.2"/>
-    <componentref name="apache-bcel" version="5.1"/>
-    <componentref name="apache-beanutils" version="1.7.0"/>
-    <componentref name="apache-bsf" version="2.3.0"/>
-    <componentref name="apache-codec" version="1.3.0"/>
-    <componentref name="apache-collections" version="3.1"/>
-    <componentref name="apache-digester" version="1.7-brew"/>
-    <componentref name="apache-discovery" version="0.4-brew"/>
-    <componentref name="apache-fileupload" version="1.1.1"/>
-    <componentref name="apache-httpclient" version="3.0.1"/>
-    <componentref name="apache-jaxme" version="0.2-cvs"/>
-    <componentref name="apache-log4j" version="1.2.14"/>
-    <componentref name="apache-logging" version="1.1.0.jboss"/>
-    <componentref name="apache-myfaces" version="1.1.3"/>
-    <componentref name="apache-scout" version="0.7rc2"/>
-    <componentref name="apache-slide" version="2.1-brew"/>
-    <componentref name="apache-velocity" version="1.4jboss"/>
-    <componentref name="apache-xalan" version="2.7.0.patch01-brew"/>
-    <componentref name="apache-xerces" version="2.9.1"/>
-    <componentref name="apache-xmlsec" version="1.3.0"/>
-    <componentref name="beanshell" version="1.3.0"/>
-    <componentref name="cglib" version="2.1.3"/>
-    <componentref name="commons-el" version="1.0"/>
-    <componentref name="dom4j" version="1.6.1"/>
-    <componentref name="easymock" version="1.1"/>
-    <componentref name="gnu-getopt" version="1.0.12-brew"/>
-    <componentref name="hibernate" version="3.2.6.GA"/>
-    <componentref name="hibernate-annotations" version="3.3.1.GA"/>
-    <componentref name="hibernate-commons-annotations" version="3.0.0.GA"/>
-    <componentref name="hibernate-entitymanager" version="3.3.2.GA"/>
-    <componentref name="hibernate-validator" version="3.0.0.GA"/>
-    <componentref name="hsqldb" version="1.8.0.8-brew"/>
-    <componentref name="jacorb" version="2.3.0jboss.patch5-brew"/>
-    <componentref name="javassist" version="3.7.1.GA"/>
-    <componentref name="jaxen" version="1.1-brew"/>
-    <componentref name="jboss/aop" version="2.0.0.CR8"/>
-    <componentref name="jboss/cache/jbosscache-core" version="2.1.0.CR4"/>
-    <componentref name="jboss/cache/jbosscache-pojo" version="2.1.0.CR4"/>
-    <componentref name="jboss/common-core" version="2.2.4.GA"/>
-    <componentref name="jboss/common-logging-jdk" version="2.0.2.GA"/>
-    <componentref name="jboss/common-logging-log4j" version="2.0.2.GA"/>
-    <componentref name="jboss/common-logging-spi" version="2.0.2.GA"/>
-    <componentref name="jboss/integration" version="5.0.0.Beta4"/>
-    <componentref name="jboss/jaxr" version="1.2.0.GA"/>
-    <componentref name="jboss/jboss-ejb3-cache" version="0.11.1"/>
-    <componentref name="jboss/jboss-ejb3-ext-api" version="0.3"/>
-    <componentref name="jboss/jboss-ejb3-ext-api-impl" version="0.3"/>
-    <componentref name="jboss/jboss-ejb3-interceptors" version="0.12.0"/>
-    <componentref name="jboss/jboss-ejb3-metadata" version="0.12.0"/>
-    <componentref name="jboss/jboss-ejb3-core" version="0.1.0-SNAPSHOT"/>
-    <componentref name="jboss/jboss-ha-client" version="1.0.0.GA"/>
-    <componentref name="jboss/jboss-ha-server-api" version="1.0.0.GA"/>
-    <componentref name="jboss/jboss-jaspi-api" version="1.0-BETA1"/>
-    <componentref name="jboss/jboss-javaee" version="5.0.0-SNAPSHOT"/>
-    <componentref name="jboss/jboss-security-spi" version="2.0.2.Beta5"/>
-    <componentref name="jboss/jbosssx" version="2.0.2-SNAPSHOT"/>
-    <componentref name="jboss/jbosssx-client" version="2.0.2.Beta5"/>
-    <componentref name="jboss/jbossts" version="4.3.0.GA"/>
-    <componentref name="jboss/jboss-vfs" version="2.0.0.Beta10"/>
-    <componentref name="jboss/jbossws" version="3.0.1-native-2.0.4.GA"/>
-    <componentref name="jboss/jbossxb" version="2.0.0.CR7"/>
-    <componentref name="jboss/jms-integration-tests" version="1.0.1.GA"/>
-    <componentref name="jboss/jnp-client" version="5.0.0.Beta4"/>
-    <componentref name="jboss/jnpserver" version="5.0.0.Beta4"/>
-    <componentref name="jboss/messaging" version="1.4.1.Beta1"/>
-    <componentref name="jboss/metadata" version="1.0.0.Beta7"/>
-    <componentref name="jboss/jboss-cl" version="2.0.0.Beta11"/>
-    <componentref name="jboss/jboss-deployers" version="2.0.0.Beta11"/>
-    <componentref name="jboss/jboss-man" version="2.0.0.Beta12"/>
-    <componentref name="jboss/jboss-mdr" version="2.0.0.Beta12"/>
-    <componentref name="jboss/microcontainer" version="2.0.0.Beta11"/>
-    <componentref name="jboss/jboss-reflect" version="2.0.0.Beta12"/>
-    <componentref name="jboss/profiler/jvmti" version="1.0.0.CR5"/>
-    <componentref name="jboss/remoting" version="2.4.0.CR1"/>
-    <componentref name="jboss/serialization" version="1.0.3.GA"/>
-    <componentref name="jboss/test" version="1.0.5.GA"/>
-    <componentref name="jboss/web" version="2.1.0.GA"/>
-    <componentref name="jfreechart" version="1.0.2"/>
-    <componentref name="jgroups" version="2.6.2"/>
-    <componentref name="joesnmp" version="0.3.4"/>
-    <componentref name="juddi" version="0.9RC4"/>
-    <componentref name="junit" version="3.8.2-brew"/>
-    <componentref name="nekohtml" version="0.9.1"/>
-    <componentref name="objectweb-joramtests" version="1.5"/>
-    <componentref name="odmg" version="3.0"/>
-    <componentref name="opensaml" version="1.1b"/>
-    <componentref name="osgi" version="4.0"/>
-    <componentref name="oswego-concurrent" version="1.3.4-jboss-update1"/>
-    <componentref name="qdox" version="1.6.1"/>
-    <componentref name="quartz" version="1.5.2"/>
-    <componentref name="sleepycat" version="3.0.12"/>
-    <componentref name="snmptrapappender" version="1.2.8-brew"/>
-    <componentref name="spring" version="2.0"/>
-    <componentref name="sun-jaf" version="1.1"/>
-    <componentref name="sun-javacc" version="3.2"/>
-    <componentref name="sun-javamail" version="1.4"/>
-    <componentref name="sun-jsf" version="1.2_09"/>
-    <componentref name="sun-jstl" version="1.2"/>
-    <componentref name="sun-opends" version="0.1.0.build016"/>
-    <componentref name="sun-servlet" version="2.5"/>
-    <componentref name="sun-xacml" version="2.0"/>
-    <componentref name="trove" version="1.0.2"/>
-    <componentref name="woodstox" version="3.1.1"/>
-    <componentref name="xdoclet" version="1.2.3"/>
-    <componentref name="xmlunit-xmlunit" version="1.0"/>
-
-  </build>
-
-  <synchronizeinfo/>
-
-  <!-- Generate the targets -->
-  <generate generate="jbossas-thirdparty"/>
-
-  <target
-    name="generate-lib-file"
-    description="generate libraries.ent and thirdparty license info"
-    depends="synchronize">
-    <gen-lib-file filename="${generatedLibrariesFiles}" />
-    <visit-componentref-graph componentVisitor="org.jboss.ant.util.graph.ComponentRefGraphLicenseVisitor"/>
-  </target>
-
-</project>




More information about the jboss-cvs-commits mailing list