[jboss-cvs] repository.jboss.com/jboss/jbossws/1.0.0.GA-JBINSTALL-57/install ...

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


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

  Added:       jboss/jbossws/1.0.0.GA-JBINSTALL-57/install     
                        userInputSpec.xml component-install.xml
                        antActionsSpec.xml resources.zip build.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:24;  author: apinkin;  state: Exp;repository.jboss.com/jboss/jbossws/1.0.0.GA-JBINSTALL-57/install/userInputSpec.xml
  
  Index: userInputSpec.xml
  ===================================================================
  <userInput>
  </userInput>
  
  
  
  1.1      date: 2006/07/20 16:16:24;  author: apinkin;  state: Exp;repository.jboss.com/jboss/jbossws/1.0.0.GA-JBINSTALL-57/install/component-install.xml
  
  Index: component-install.xml
  ===================================================================
  <installation version="1.0">
  
    <packs>
  
      <!-- jbossws.sar for jdk5 -->
      <pack name="jbossws5"
            installGroups="ejb3,ejb3-clustered,portal"
            group="J2EE/Deployers"
            required="no">
        <description>JAXWS/J2SE5 webservice support</description>
        <fileset dir="@{jboss.dist}/server"
                 targetdir="$INSTALL_PATH/server/$SERVER_CONFIG">
          <include name="lib/jboss-j2ee.jar"/>
          <include name="lib/jboss-saaj.jar"/>
          <include name="lib/jboss-jaxrpc.jar"/>
        </fileset>
        <fileset dir="@{jbossws.dist}/deploy"
                 targetdir="$INSTALL_PATH/server/$SERVER_CONFIG/deploy">
          <include name="jbossws.sar/**"/>
        </fileset>
        <fileset dir="@{jbossws.dist}/client"
                 targetdir="$INSTALL_PATH/client" />
        <fileset dir="@{jbossws.dist}/install/scripts" targetdir="$INSTALL_PATH/scripts/ws">
          <include name="jbossws.xml"/>
        </fileset>
        <depends packname="ejb-deployer"/>
        <depends packname="war-deployer"/>
        <depends packname="client-deployer-service"/>
        <depends packname="javamail" />
      </pack>
  
      <!-- jbossws.sar for j2se1.4 -->
      <pack name="jbossws14"
            installGroups="default,all"
            group="J2EE/Deployers"
            required="no">
        <description>J2EE1.4/J2SE1.4 webservice support</description>
        <fileset dir="@{jboss.dist}/server"
                 targetdir="$INSTALL_PATH/server/$SERVER_CONFIG">
          <include name="lib/jboss-j2ee.jar"/>
          <include name="lib/jboss-saaj.jar"/>
          <include name="lib/jboss-jaxrpc.jar"/>
        </fileset>
        <fileset dir="@{jboss.dist}/server/deploy"
                 targetdir="$INSTALL_PATH/server/$SERVER_CONFIG/deploy">
          <include name="jbossws14.sar/**"/>
        </fileset>
        <fileset dir="@{jboss.dist}/client"
                 targetdir="$INSTALL_PATH/client">
          <include name="jbossws14-client.jar"/>
        </fileset>
        <fileset dir="@{jbossws.dist}/install/scripts" targetdir="$INSTALL_PATH/scripts/ws">
          <include name="jbossws14.xml"/>
        </fileset>
        <depends packname="ejb-deployer"/>
        <depends packname="war-deployer"/>
        <depends packname="client-deployer-service"/>
        <depends packname="jbossretro" />
        <depends packname="javamail" />
      </pack>
  
    </packs>
  
  </installation>
  
  
  
  1.1      date: 2006/07/20 16:16:24;  author: apinkin;  state: Exp;repository.jboss.com/jboss/jbossws/1.0.0.GA-JBINSTALL-57/install/antActionsSpec.xml
  
  Index: antActionsSpec.xml
  ===================================================================
  <antactions>
  
    <!-- Unpack the wstools into bin -->
    <pack name="jbossws5">
      <antcall order="afterpacks" buildfile="${INSTALL_PATH}/scripts/ws/jbossws.xml">
               verbose="false">
         <property name="INSTALL_PATH" value="${INSTALL_PATH}"/>
         <target name="jbossws-post-install"/>
      </antcall>
    </pack>
  
    <!-- Unpack the wstools into bin -->
    <pack name="jbossws14">
      <antcall order="afterpacks" buildfile="${INSTALL_PATH}/scripts/ws/jbossws14.xml">
               verbose="false">
         <property name="INSTALL_PATH" value="${INSTALL_PATH}"/>
         <target name="jbossws14-post-install"/>
      </antcall>
    </pack>
  
  </antactions>
  
  
  
  1.1      date: 2006/07/20 16:16:24;  author: apinkin;  state: Exp;repository.jboss.com/jboss/jbossws/1.0.0.GA-JBINSTALL-57/install/resources.zip
  
  	<<Binary file>>
  
  
  1.1      date: 2006/07/20 16:16:24;  author: apinkin;  state: Exp;repository.jboss.com/jboss/jbossws/1.0.0.GA-JBINSTALL-57/install/build.xml
  
  Index: build.xml
  ===================================================================
  <project name="JEMS Installer - WS" 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="${jbossws.dist}/client" />
        <mkdir dir="${jbossws.dist}/deploy" />
        <unzip dest="${jbossws.dist}/deploy/jbossws.sar"
           src="${jboss.thirdparty}/jboss/jbossws/lib/jbossws.sar" />
        <copy todir="${jbossws.dist}/client"
           file="${jboss.thirdparty}/jboss/jbossws/lib/jbossws-client.jar" />
  
        <!-- Prepare installer descriptors and resources -->
        <copy todir="${jbossws.dist}/install">
           <fileset dir="${jboss.thirdparty}/jboss/jbossws/install"/>
        </copy>
        <unzip dest="${jbossws.dist}/install" src="${jboss.thirdparty}/jboss/jbossws/install/resources.zip" />
     	
     </target>
    
  </project>
  
  
  



More information about the jboss-cvs-commits mailing list