Author: thomas.diesler(a)jboss.com
Date: 2007-03-02 07:39:00 -0500 (Fri, 02 Mar 2007)
New Revision: 2506
Modified:
tags/jbossws-1.2.0.GA/build/ant-import/build-hudson.xml
tags/jbossws-1.2.0.GA/build/ant-import/build-setup.xml
tags/jbossws-1.2.0.GA/integration-tomcat/build.xml
Log:
Add tomcat thirdparty to bin-dist
Modified: tags/jbossws-1.2.0.GA/build/ant-import/build-hudson.xml
===================================================================
--- tags/jbossws-1.2.0.GA/build/ant-import/build-hudson.xml 2007-03-02 12:20:31 UTC (rev
2505)
+++ tags/jbossws-1.2.0.GA/build/ant-import/build-hudson.xml 2007-03-02 12:39:00 UTC (rev
2506)
@@ -63,6 +63,14 @@
<target name="hudson-setup"
depends="init-hudson,hudson-tomcat-setup"
description="Setup the Hudson QA environment">
+ <!-- get the svn url -->
+ <exec dir="${build.dir}/.." executable="svn"
failonerror="true" output="${build.output.dir}/svn-info.xml">
+ <arg line="info"/>
+ <arg line="--xml"/>
+ </exec>
+ <xmlproperty file="${build.output.dir}/svn-info.xml"/>
+ <property name="svn.url" value="${info.entry.url}"/>
+
<exec executable="basename" outputproperty="svn.basename">
<arg value="${svn.url}"/>
</exec>
Modified: tags/jbossws-1.2.0.GA/build/ant-import/build-setup.xml
===================================================================
--- tags/jbossws-1.2.0.GA/build/ant-import/build-setup.xml 2007-03-02 12:20:31 UTC (rev
2505)
+++ tags/jbossws-1.2.0.GA/build/ant-import/build-setup.xml 2007-03-02 12:39:00 UTC (rev
2506)
@@ -83,14 +83,7 @@
<target name="prepare">
- <!-- get the svn url -->
<mkdir dir="${build.output.dir}"/>
- <exec dir="${build.dir}/.." executable="svn"
failonerror="true" output="${build.output.dir}/svn-info.xml">
- <arg line="info"/>
- <arg line="--xml"/>
- </exec>
- <xmlproperty file="${build.output.dir}/svn-info.xml"/>
- <property name="svn.url" value="${info.entry.url}"/>
<echo message="jboss50.home = ${jboss50.home}"/>
<echo message="jboss42.home = ${jboss42.home}"/>
Modified: tags/jbossws-1.2.0.GA/integration-tomcat/build.xml
===================================================================
--- tags/jbossws-1.2.0.GA/integration-tomcat/build.xml 2007-03-02 12:20:31 UTC (rev 2505)
+++ tags/jbossws-1.2.0.GA/integration-tomcat/build.xml 2007-03-02 12:39:00 UTC (rev 2506)
@@ -67,7 +67,7 @@
<!--
| Build all jar files.
-->
- <target name="tomcat-jars"
depends="tomcat-compile,tomcat-module-jars" description="Builds all jar
files.">
+ <target name="tomcat-jars"
depends="tomcat-compile,tomcat-module-jars,tomcat-thirdparty-jar"
description="Builds all jar files.">
</target>
<!--