[jboss-cvs] repository.jboss.com/jboss/ejb3/1.0.0.CR8-jboss4-JBINSTALL-57/install ...

Alex Pinkin alex.pinkin at jboss.com
Thu Jul 20 12:16:23 EDT 2006


  User: apinkin 
  Date: 06/07/20 12:16:23

  Added:       jboss/ejb3/1.0.0.CR8-jboss4-JBINSTALL-57/install    
                        build.xml antActionsSpec.xml component-install.xml
                        userInputSpec.xml
  Log:
  JBINSTALL-57: adding installer artifacts to repository components
  TBD: components builds need to be updated
  
  Revision  Changes    Path
  1.1      date: 2006/07/20 16:16:23;  author: apinkin;  state: Exp;repository.jboss.com/jboss/ejb3/1.0.0.CR8-jboss4-JBINSTALL-57/install/build.xml
  
  Index: build.xml
  ===================================================================
  <project name="JEMS Installer - EJB3" default="unzip-thirdparty">
  
     <!-- Unzip/arrange the thirdpary content into a structure usable with
     the installer packs
     -->  
     <target name="unzip-thirdparty" unless="unzip-bypass.on">
        <mkdir dir="${ejb3.dist}/client" />
        <mkdir dir="${ejb3.dist}/deploy" />
        <unzip dest="${ejb3.dist}/deploy"
           src="${jboss.thirdparty}/jboss/ejb3/bin/ejb3.deployer" />
        <copy todir="${ejb3.dist}/client">
           <fileset dir="${jboss.thirdparty}/jboss/ejb3/lib">
              <include name="hibernate-client.jar" />  
              <include name="jboss-ejb3-client.jar" />  
           </fileset>
        </copy>
        <copy todir="${ejb3.dist}/deploy">
           <fileset dir="${jboss.thirdparty}/jboss/ejb3/resources">
              <include name="*.xml" />
           </fileset>
        </copy>
  
     	<!-- Prepare installer descriptors and resources -->
     	<copy todir="${ejb3.dist}/install">
     	   <fileset dir="${jboss.thirdparty}/jboss/ejb3/install"/>
     	</copy>
    	
     </target>
    
  </project>
  
  
  
  1.1      date: 2006/07/20 16:16:23;  author: apinkin;  state: Exp;repository.jboss.com/jboss/ejb3/1.0.0.CR8-jboss4-JBINSTALL-57/install/antActionsSpec.xml
  
  Index: antActionsSpec.xml
  ===================================================================
  <antactions>
  </antactions>
  
  
  
  1.1      date: 2006/07/20 16:16:23;  author: apinkin;  state: Exp;repository.jboss.com/jboss/ejb3/1.0.0.CR8-jboss4-JBINSTALL-57/install/component-install.xml
  
  Index: component-install.xml
  ===================================================================
  <installation version="1.0">
  
    <packs>
  
      <!-- ejb3-deployer.xml -->
      <pack name="ejb3-deployer"
            installGroups="ejb3,portal"
            group="J2EE/Deployers"
            required="no">
        <description>The EJB3.0 Container/Deployer. Note: this requires a JDK5
          to run the jboss server.
        </description>
        <fileset dir="@{ejb3.dist}/deploy"
                 targetdir="$INSTALL_PATH/server/$SERVER_CONFIG/deploy">
          <!-- include all from ejb3.deployer -->
          <include name="ejb3.deployer/**"/>
          <include name="ejb3-interceptors-aop.xml"/>
        </fileset>
        <!-- Client jars -->
        <fileset dir="@{ejb3.dist}/client"
                 targetdir="$INSTALL_PATH/client">
          <include name="jboss-ejb3-client.jar"/>
          <include name="hibernate-client.jar"/>
        </fileset>
        <fileset dir="@{ejb3.dist}/deploy/ejb3.deployer"
                 targetdir="$INSTALL_PATH/client">
          <include name="jboss-annotations-ejb3.jar"/>
          <include name="jboss-ejb3x.jar"/>
        </fileset>
        <fileset dir="@{ejb3.dist}/deploy/ejb3.deployer"
                 targetdir="$INSTALL_PATH/client">
          <include name="jboss-annotations-ejb3.jar"/>
          <include name="jboss-ejb3x.jar"/>
        </fileset>
        <fileset dir="@{jboss.thirdparty}/trove/lib"
                 targetdir="$INSTALL_PATH/client">
          <include name="trove.jar"/>
        </fileset>
        <!-- Server lib jars -->
        <fileset dir="@{jboss.thirdparty}/hibernate-annotations/lib"
                 targetdir="$INSTALL_PATH/client">
          <include name="hibernate-annotations.jar"/>
        </fileset>
        <fileset dir="@{jboss.thirdparty}/hibernate-entitymanager/lib"
                 targetdir="$INSTALL_PATH/client">
          <include name="ejb3-persistence.jar"/>
        </fileset>
        <fileset dir="@{javaee5.dist}/aop/client"
                 targetdir="$INSTALL_PATH/client">
          <include name="jboss-aop-jdk50-client.jar"/>
          <include name="jboss-aspect-jdk50-client.jar"/>
        </fileset>
  
        <depends packname="hibernate"/>
        <depends packname="minimal"/>
        <depends packname="naming"/>
        <depends packname="security"/>
        <depends packname="jca-service"/>
        <depends packname="jboss-aop-jdk50-deployer"/>
        <depends packname="jboss-remoting"/>
        <depends packname="jbossws5"/>
        <depends packname="ejb-timer-service"/>
      </pack>
  
      <pack name="ejb3-clustering"
            installGroups="ejb3-clustered"
            group="Clustering"
            required="no">
        <description>The EJB3.0 Container Clustering</description>
        <fileset dir="@{ejb3.dist}"
                 targetdir="$INSTALL_PATH/server/$SERVER_CONFIG">
          <include name="deploy/ejb3-clustered-sfsbcache-service.xml"/>
          <include name="deploy/ejb3-entity-cache-service.xml"/>
        </fileset>
        <depends packname="clustering"/>
        <depends packname="ejb3-deployer"/>
      </pack>
  
      <!-- jboss-aop-jdk50.deployer -->
      <pack name="jboss-aop-jdk50-deployer"
            installGroups="ejb3,ejb3-clustered,portal"
            group="Deployers"
            required="no">
        <description>JBossAOP JDK5 version of the aspect manager and deployer
          services</description>
        <fileset dir="@{javaee5.dist}/aop/deploy"
                 targetdir="$INSTALL_PATH/server/$SERVER_CONFIG/deploy">
          <include name="jboss-aop-jdk50.deployer/**"/>
          <additionaldata key="service"
                          value="jboss-aop-jdk50.deployer/META-INF/jboss-service.xml"/>
        </fileset>
        <fileset dir="@{javaee5.dist}/aop/client"
                 targetdir="$INSTALL_PATH/client">
          <include name="jboss-aspect-jdk50-client.jar"/>
        </fileset>
        <fileset dir="@{jboss.dist}/server/lib"
                 targetdir="$INSTALL_PATH/server/$SERVER_CONFIG/lib">
          <include name="javassist.jar"/>
        </fileset>
        <depends packname="minimal"/>
      </pack>
  
      <!--
      <pack name="ejb3-documentation"
            installGroups="ejb3,ejb3-clustered"
            group="docs"
            required="no">
        <description>The EJB3.0 Documentation</description>
        <fileset dir="@{ejb3.dist}"
                 targetdir="$INSTALL_PATH/docs/ejb3">
          <include name="README.html"/>
          <include name="Migrating.html"/>
          <include name="RELEASE_NOTES.html"/>
        </fileset>
        <depends packname="ejb3-deployer"/>
      </pack>
      -->
  
    </packs>
  
  </installation>
  
  
  
  
  1.1      date: 2006/07/20 16:16:23;  author: apinkin;  state: Exp;repository.jboss.com/jboss/ejb3/1.0.0.CR8-jboss4-JBINSTALL-57/install/userInputSpec.xml
  
  Index: userInputSpec.xml
  ===================================================================
  <userInput>
  </userInput>
  
  
  



More information about the jboss-cvs-commits mailing list