|
From: <jbo...@li...> - 2006-07-07 08:09:58
|
Author: tho...@jb...
Date: 2006-07-07 04:09:52 -0400 (Fri, 07 Jul 2006)
New Revision: 573
Modified:
tags/jbossws-1.0.1.GA/build.xml
Log:
JBWS-1000: jbossws-thirdparty.jar seems to be missing
Modified: tags/jbossws-1.0.1.GA/build.xml
===================================================================
--- tags/jbossws-1.0.1.GA/build.xml 2006-07-06 11:38:57 UTC (rev 572)
+++ tags/jbossws-1.0.1.GA/build.xml 2006-07-07 08:09:52 UTC (rev 573)
@@ -450,7 +450,7 @@
</antcall>
</target>
- <!-- Deploy to jboss -->
+ <!-- Deploy to jboss -->
<target name="deploy-to-server">
<copy todir="${jboss.deploy.home}/client" file="${build.lib.dir}/${jbossws}-client.jar" overwrite="true"/>
<delete dir="${jboss.deploy.home}/server/${jboss.server.instance}/deploy/${jbossws}.sar"/>
@@ -458,13 +458,13 @@
<unjar dest="${jboss.deploy.home}/server/${jboss.server.instance}/deploy/${jbossws}.sar" src="${build.lib.dir}/${jbossws}.sar"/>
</target>
- <!-- Deploy to jboss/thirdparty -->
+ <!-- Deploy to jboss/thirdparty -->
<target name="deploy-to-thirdparty" if="jboss.source.dist.available">
<copy todir="${jboss.deploy.home}/../../../thirdparty/jboss/${jbossws}/lib" file="${build.lib.dir}/${jbossws}-client.jar" overwrite="true"/>
<copy todir="${jboss.deploy.home}/../../../thirdparty/jboss/${jbossws}/lib" file="${build.lib.dir}/${jbossws}.sar" overwrite="true"/>
</target>
- <!-- Deploy to Tomcat -->
+ <!-- Deploy to Tomcat -->
<target name="deploy-tomcat" depends="main,jbossws-thirdparty-jar" description="Deploy JBossWS to Tomcat">
<copy todir="${tomcat.common.dir}/endorsed" file="${thirdparty.dir}/serializer.jar"/>
<copy todir="${tomcat.common.dir}/endorsed" file="${thirdparty.dir}/xalan.jar"/>
@@ -500,7 +500,7 @@
</jar>
<delete dir="${build.lib.dir}/build"/>
</target>
-
+
<!-- ================================================================== -->
<!-- Release -->
<!-- ================================================================== -->
@@ -552,7 +552,7 @@
<target name="most" description="Builds almost everything." depends="jars"/>
- <target name="all" description="Create a distribution zip file" depends="main,module-jars14,build-samples,build-docs">
+ <target name="all" description="Create a distribution zip file" depends="main,module-jars14,jbossws-thirdparty-jar,build-samples,build-docs">
<mkdir dir="${build.dist.dir}"/>
<mkdir dir="${build.dist.dir}/bin"/>
@@ -592,12 +592,12 @@
<copy todir="${build.dist.dir}/lib/jboss-jdk1.5" overwrite="true">
<fileset dir="${build.lib.dir}" includes="jbossws-client.jar,jbossws.sar"/>
</copy>
-
+
<!-- lib/jdk1.4 -->
<copy todir="${build.dist.dir}/lib/jboss-jdk1.4" overwrite="true">
<fileset dir="${build.lib.dir}" includes="jbossws14-client.jar,jbossws14.sar"/>
</copy>
-
+
<!-- lib/tomcat -->
<copy todir="${build.dist.dir}/lib/tomcat/common/endorsed" overwrite="true">
<fileset dir="${thirdparty.dir}">
|