werner      2005/08/15 06:51:28

  Modified:    .        build.xml
  Log:
  Add a new target "reqjardist" that builds a ZIP file containing
  the ./lib/*.jar and ./endorsed/*.jar files.
  
  This may simplify WSS4J deployment because no need to get
  the required jar from somewhere else. For the licenses please
  have a look into the ./legal directory.
  
  Revision  Changes    Path
  1.34      +9 -1      ws-wss4j/build.xml
  
  Index: build.xml
  ===================================================================
  RCS file: /home/cvs/ws-wss4j/build.xml,v
  retrieving revision 1.33
  retrieving revision 1.34
  diff -u -r1.33 -r1.34
  --- build.xml 31 Jul 2005 11:10:44 -0000      1.33
  +++ build.xml 15 Aug 2005 13:51:28 -0000      1.34
  @@ -570,7 +570,15 @@
          <delete file="${dir.dist}/${jar.library}" />
       </target>
   
  -    <target name="srcdist" depends="init" description="Build source zip file 
for distro">
  +    <target name="reqjardist" depends="init" description="Build zip for 
required jars">
  +          <mkdir dir="${dir.dist}"/>
  +          <zip 
destfile="${dir.dist}/${product.shortname}-otherjar-${product.version}.zip">
  +              <zipfileset prefix="wss4j" dir="."
  +                  includes="lib/*.jar, endorsed/*.jar"/>
  +          </zip>
  +      </target>      
  +     
  +     <target name="srcdist" depends="init" description="Build source zip 
file for distro">
           <mkdir dir="${dir.dist}"/>
           <zip 
destfile="${dir.dist}/${product.shortname}-src-${product.version}.zip">
               <zipfileset prefix="wss4j" dir="."
  
  
  

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to