JBossWS SVN: r3247 - in trunk: integration/sunri/ant-import and 2 other directories.
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2007-05-25 04:37:22 -0400 (Fri, 25 May 2007)
New Revision: 3247
Modified:
trunk/integration/native/ant-import/build-deploy.xml
trunk/integration/native/ant-import/macros-deploy-native.xml
trunk/integration/sunri/ant-import/build-deploy.xml
trunk/integration/sunri/ant-import/macros-deploy-sunri.xml
trunk/integration/xfire/ant-import/build-deploy.xml
trunk/integration/xfire/ant-import/macros-deploy-xfire.xml
trunk/jbossws-core/ant-import/build-deploy.xml
Log:
Properly undeploy everything
Modified: trunk/integration/native/ant-import/build-deploy.xml
===================================================================
--- trunk/integration/native/ant-import/build-deploy.xml 2007-05-25 08:13:24 UTC (rev 3246)
+++ trunk/integration/native/ant-import/build-deploy.xml 2007-05-25 08:37:22 UTC (rev 3247)
@@ -24,6 +24,7 @@
<ant antfile="${int.jboss50.dir}/build.xml" target="jars" inheritall="false"/>
<ant antfile="${int.sunri.dir}/build.xml" target="undeploy-jboss50" inheritall="false"/>
<ant antfile="${int.xfire.dir}/build.xml" target="undeploy-jboss50" inheritall="false"/>
+ <macro-undeploy-native50/>
<macro-deploy-native50
spilibs="${spi.dir}/output/lib"
jbosslibs="${int.jboss50.dir}/output/lib"
@@ -40,6 +41,7 @@
<!-- Deploy jbossws to jboss42 -->
<target name="deploy-jboss42" depends="jars-native42" description="Deploy jbossws to jboss42">
<ant antfile="${int.jboss42.dir}/build.xml" target="jars" inheritall="false"/>
+ <macro-undeploy-native42/>
<macro-deploy-native42
spilibs="${spi.dir}/output/lib"
jbosslibs="${int.jboss42.dir}/output/lib"
Modified: trunk/integration/native/ant-import/macros-deploy-native.xml
===================================================================
--- trunk/integration/native/ant-import/macros-deploy-native.xml 2007-05-25 08:13:24 UTC (rev 3246)
+++ trunk/integration/native/ant-import/macros-deploy-native.xml 2007-05-25 08:37:22 UTC (rev 3247)
@@ -76,6 +76,35 @@
</sequential>
</macrodef>
+ <macrodef name="macro-undeploy-native50">
+ <sequential>
+ <fail message="Not available: ${jboss50.available.file}" unless="jboss50.available"/>
+ <delete>
+ <fileset dir="${jboss50.home}/client">
+ <include name="jbossws-spi.jar"/>
+ <include name="jbossws-jboss50.jar"/>
+ <include name="jboss-jaxrpc.jar"/>
+ <include name="jboss-jaxws.jar"/>
+ <include name="jboss-saaj.jar"/>
+ <include name="jbossws-client.jar"/>
+ <include name="jbossws-wsconsume-impl.jar"/>
+ </fileset>
+ <fileset dir="${jboss50.home}/server/${jboss.server.instance}/lib">
+ <include name="jbossws-spi.jar"/>
+ <include name="jbossws-jboss50.jar"/>
+ <include name="jboss-jaxrpc.jar"/>
+ <include name="jboss-jaxws.jar"/>
+ <include name="jboss-saaj.jar"/>
+ </fileset>
+ </delete>
+ <delete dir="${jboss50.home}/server/${jboss.server.instance}/deployers/jbossws.deployer"/>
+ <delete dir="${jboss50.home}/server/${jboss.server.instance}/deploy/jbossws.sar"/>
+ <delete file="${jboss50.home}/server/${jboss.server.instance}/deploy/jbossws-context.war"/>
+ <!-- Undeploy juddi-service.sar -->
+ <delete dir="${jboss50.home}/server/${jboss.server.instance}/deploy/juddi-service.sar"/>
+ </sequential>
+ </macrodef>
+
<macrodef name="macro-deploy-native42">
<attribute name="spilibs"/>
<attribute name="jbosslibs"/>
@@ -128,36 +157,13 @@
</sequential>
</macrodef>
- <macrodef name="macro-undeploy-native50">
- <sequential>
- <fail message="Not available: ${jboss50.available.file}" unless="jboss50.available"/>
- <delete>
- <fileset dir="${jboss50.home}/client">
- <include name="jboss-jaxrpc.jar"/>
- <include name="jboss-jaxws.jar"/>
- <include name="jboss-saaj.jar"/>
- <include name="jbossws-client.jar"/>
- <include name="jbossws-wsconsume-impl.jar"/>
- </fileset>
- <fileset dir="${jboss50.home}/server/${jboss.server.instance}/lib">
- <include name="jboss-jaxrpc.jar"/>
- <include name="jboss-jaxws.jar"/>
- <include name="jboss-saaj.jar"/>
- </fileset>
- </delete>
- <delete dir="${jboss50.home}/server/${jboss.server.instance}/deployers/jbossws.deployer"/>
- <delete dir="${jboss50.home}/server/${jboss.server.instance}/deploy/jbossws.sar"/>
- <delete file="${jboss50.home}/server/${jboss.server.instance}/deploy/jbossws-context.war"/>
- <!-- Undeploy juddi-service.sar -->
- <delete dir="${jboss50.home}/server/${jboss.server.instance}/deploy/juddi-service.sar"/>
- </sequential>
- </macrodef>
-
<macrodef name="macro-undeploy-native42">
<sequential>
<fail message="Not available: ${jboss42.available.file}" unless="jboss42.available"/>
<delete>
<fileset dir="${jboss42.home}/client">
+ <include name="jbossws-spi.jar"/>
+ <include name="jbossws-jboss42.jar"/>
<include name="jboss-jaxrpc.jar"/>
<include name="jboss-jaxws.jar"/>
<include name="jboss-saaj.jar"/>
@@ -168,6 +174,8 @@
<include name="jbossws-integration.jar"/> <!-- The old integration jar-->
</fileset>
<fileset dir="${jboss42.home}/server/${jboss.server.instance}/lib">
+ <include name="jbossws-spi.jar"/>
+ <include name="jbossws-jboss42.jar"/>
<include name="jboss-jaxrpc.jar"/>
<include name="jboss-jaxws.jar"/>
<include name="jboss-saaj.jar"/>
Modified: trunk/integration/sunri/ant-import/build-deploy.xml
===================================================================
--- trunk/integration/sunri/ant-import/build-deploy.xml 2007-05-25 08:13:24 UTC (rev 3246)
+++ trunk/integration/sunri/ant-import/build-deploy.xml 2007-05-25 08:37:22 UTC (rev 3247)
@@ -24,6 +24,7 @@
<ant antfile="${int.jboss50.dir}/build.xml" target="jars" inheritall="false"/>
<ant antfile="${int.native.dir}/build.xml" target="undeploy-jboss50" inheritall="false"/>
<ant antfile="${int.xfire.dir}/build.xml" target="undeploy-jboss50" inheritall="false"/>
+ <macro-undeploy-sunri50/>
<macro-deploy-sunri50
spilibs="${spi.dir}/output/lib"
jbosslibs="${int.jboss50.dir}/output/lib"
Modified: trunk/integration/sunri/ant-import/macros-deploy-sunri.xml
===================================================================
--- trunk/integration/sunri/ant-import/macros-deploy-sunri.xml 2007-05-25 08:13:24 UTC (rev 3246)
+++ trunk/integration/sunri/ant-import/macros-deploy-sunri.xml 2007-05-25 08:37:22 UTC (rev 3247)
@@ -62,6 +62,16 @@
<!-- Remove jbossws/sunri from jboss50 -->
<macrodef name="macro-undeploy-sunri50">
<sequential>
+ <delete>
+ <fileset dir="${jboss50.home}/client">
+ <include name="jbossws-spi.jar"/>
+ <include name="jbossws-jboss50.jar"/>
+ </fileset>
+ <fileset dir="${jboss50.home}/server/${jboss.server.instance}/lib">
+ <include name="jbossws-spi.jar"/>
+ <include name="jbossws-jboss50.jar"/>
+ </fileset>
+ </delete>
<delete dir="${jboss50.home}/server/${jboss.server.instance}/deploy/jbossws-sunri.sar"/>
</sequential>
</macrodef>
Modified: trunk/integration/xfire/ant-import/build-deploy.xml
===================================================================
--- trunk/integration/xfire/ant-import/build-deploy.xml 2007-05-25 08:13:24 UTC (rev 3246)
+++ trunk/integration/xfire/ant-import/build-deploy.xml 2007-05-25 08:37:22 UTC (rev 3247)
@@ -24,6 +24,7 @@
<ant antfile="${int.jboss50.dir}/build.xml" target="jars" inheritall="false"/>
<ant antfile="${int.native.dir}/build.xml" target="undeploy-jboss50" inheritall="false"/>
<ant antfile="${int.sunri.dir}/build.xml" target="undeploy-jboss50" inheritall="false"/>
+ <macro-undeploy-xfire50/>
<macro-deploy-xfire50
spilibs="${spi.dir}/output/lib"
jbosslibs="${int.jboss50.dir}/output/lib"
Modified: trunk/integration/xfire/ant-import/macros-deploy-xfire.xml
===================================================================
--- trunk/integration/xfire/ant-import/macros-deploy-xfire.xml 2007-05-25 08:13:24 UTC (rev 3246)
+++ trunk/integration/xfire/ant-import/macros-deploy-xfire.xml 2007-05-25 08:37:22 UTC (rev 3247)
@@ -62,6 +62,16 @@
<!-- Remove jbossws/xfire from jboss50 -->
<macrodef name="macro-undeploy-xfire50">
<sequential>
+ <delete>
+ <fileset dir="${jboss50.home}/client">
+ <include name="jbossws-spi.jar"/>
+ <include name="jbossws-jboss50.jar"/>
+ </fileset>
+ <fileset dir="${jboss50.home}/server/${jboss.server.instance}/lib">
+ <include name="jbossws-spi.jar"/>
+ <include name="jbossws-jboss50.jar"/>
+ </fileset>
+ </delete>
<delete dir="${jboss50.home}/server/${jboss.server.instance}/deploy/jbossws-xfire.sar"/>
</sequential>
</macrodef>
Modified: trunk/jbossws-core/ant-import/build-deploy.xml
===================================================================
--- trunk/jbossws-core/ant-import/build-deploy.xml 2007-05-25 08:13:24 UTC (rev 3246)
+++ trunk/jbossws-core/ant-import/build-deploy.xml 2007-05-25 08:37:22 UTC (rev 3247)
@@ -18,9 +18,19 @@
<ant antfile="${int.native.dir}/build.xml" target="deploy-jboss50" inheritall="false"/>
</target>
+ <!-- Undeploy jbossws to jboss50 -->
+ <target name="undeploy-jboss50" depends="prepare" description="Undeploy jbossws">
+ <ant antfile="${int.native.dir}/build.xml" target="undeploy-jboss50" inheritall="false"/>
+ </target>
+
<!-- Deploy jbossws to jboss42 -->
<target name="deploy-jboss42" depends="prepare" description="Deploy jbossws">
<ant antfile="${int.native.dir}/build.xml" target="deploy-jboss42" inheritall="false"/>
</target>
+ <!-- Undeploy jbossws to jboss42 -->
+ <target name="undeploy-jboss42" depends="prepare" description="Undeploy jbossws">
+ <ant antfile="${int.native.dir}/build.xml" target="undeploy-jboss42" inheritall="false"/>
+ </target>
+
</project>
17 years, 8 months
JBossWS SVN: r3246 - in trunk/integration: native/ant-import and 2 other directories.
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2007-05-25 04:13:24 -0400 (Fri, 25 May 2007)
New Revision: 3246
Modified:
trunk/integration/native/ant-import/build-deploy.xml
trunk/integration/native/build.xml
trunk/integration/sunri/ant-import/build-deploy.xml
trunk/integration/sunri/ant-import/build-distro.xml
trunk/integration/xfire/ant-import/build-deploy.xml
trunk/integration/xfire/ant-import/build-distro.xml
Log:
Fix dependency on jboss42
Modified: trunk/integration/native/ant-import/build-deploy.xml
===================================================================
--- trunk/integration/native/ant-import/build-deploy.xml 2007-05-24 23:54:05 UTC (rev 3245)
+++ trunk/integration/native/ant-import/build-deploy.xml 2007-05-25 08:13:24 UTC (rev 3246)
@@ -21,6 +21,7 @@
<!-- Deploy jbossws to jboss50 -->
<target name="deploy-jboss50" depends="jars-native50" description="Deploy jbossws to jboss50">
+ <ant antfile="${int.jboss50.dir}/build.xml" target="jars" inheritall="false"/>
<ant antfile="${int.sunri.dir}/build.xml" target="undeploy-jboss50" inheritall="false"/>
<ant antfile="${int.xfire.dir}/build.xml" target="undeploy-jboss50" inheritall="false"/>
<macro-deploy-native50
@@ -38,6 +39,7 @@
<!-- Deploy jbossws to jboss42 -->
<target name="deploy-jboss42" depends="jars-native42" description="Deploy jbossws to jboss42">
+ <ant antfile="${int.jboss42.dir}/build.xml" target="jars" inheritall="false"/>
<macro-deploy-native42
spilibs="${spi.dir}/output/lib"
jbosslibs="${int.jboss42.dir}/output/lib"
Modified: trunk/integration/native/build.xml
===================================================================
--- trunk/integration/native/build.xml 2007-05-24 23:54:05 UTC (rev 3245)
+++ trunk/integration/native/build.xml 2007-05-25 08:13:24 UTC (rev 3246)
@@ -41,8 +41,6 @@
<target name="init" depends="prepare,thirdparty">
<ant antfile="${core.dir}/build.xml" target="main" inheritall="false"/>
- <ant antfile="${int.jboss50.dir}/build.xml" target="jars" inheritall="false"/>
- <ant antfile="${int.jboss42.dir}/build.xml" target="jars" inheritall="false"/>
</target>
<!-- ================================================================== -->
Modified: trunk/integration/sunri/ant-import/build-deploy.xml
===================================================================
--- trunk/integration/sunri/ant-import/build-deploy.xml 2007-05-24 23:54:05 UTC (rev 3245)
+++ trunk/integration/sunri/ant-import/build-deploy.xml 2007-05-25 08:13:24 UTC (rev 3246)
@@ -21,6 +21,7 @@
<!-- Deploy jbossws/sunri to jboss50 -->
<target name="deploy-jboss50" depends="jars-jboss50,undeploy-jboss50" description="Deploy jbossws/sunri to jboss50">
+ <ant antfile="${int.jboss50.dir}/build.xml" target="jars" inheritall="false"/>
<ant antfile="${int.native.dir}/build.xml" target="undeploy-jboss50" inheritall="false"/>
<ant antfile="${int.xfire.dir}/build.xml" target="undeploy-jboss50" inheritall="false"/>
<macro-deploy-sunri50
Modified: trunk/integration/sunri/ant-import/build-distro.xml
===================================================================
--- trunk/integration/sunri/ant-import/build-distro.xml 2007-05-24 23:54:05 UTC (rev 3245)
+++ trunk/integration/sunri/ant-import/build-distro.xml 2007-05-25 08:13:24 UTC (rev 3246)
@@ -19,6 +19,9 @@
<target name="binary-dist" depends="jars" description="Build the binary distribution">
+ <ant antfile="${int.jboss50.dir}/build.xml" target="jars" inheritall="false"/>
+ <ant antfile="${int.jboss42.dir}/build.xml" target="jars" inheritall="false"/>
+
<property name="bindist.dir" value="${sunri.output.dir}/jbossws-sunri-${version.id}"/>
<property name="bindist.build.dir" value="${bindist.dir}/build"/>
<property name="bindist.lib.dir" value="${bindist.dir}/lib"/>
Modified: trunk/integration/xfire/ant-import/build-deploy.xml
===================================================================
--- trunk/integration/xfire/ant-import/build-deploy.xml 2007-05-24 23:54:05 UTC (rev 3245)
+++ trunk/integration/xfire/ant-import/build-deploy.xml 2007-05-25 08:13:24 UTC (rev 3246)
@@ -21,6 +21,7 @@
<!-- Deploy jbossws/xfire to jboss50 -->
<target name="deploy-jboss50" depends="jars-jboss50,undeploy-jboss50" description="Deploy jbossws/xfire to jboss50">
+ <ant antfile="${int.jboss50.dir}/build.xml" target="jars" inheritall="false"/>
<ant antfile="${int.native.dir}/build.xml" target="undeploy-jboss50" inheritall="false"/>
<ant antfile="${int.sunri.dir}/build.xml" target="undeploy-jboss50" inheritall="false"/>
<macro-deploy-xfire50
Modified: trunk/integration/xfire/ant-import/build-distro.xml
===================================================================
--- trunk/integration/xfire/ant-import/build-distro.xml 2007-05-24 23:54:05 UTC (rev 3245)
+++ trunk/integration/xfire/ant-import/build-distro.xml 2007-05-25 08:13:24 UTC (rev 3246)
@@ -19,6 +19,9 @@
<target name="binary-dist" depends="jars" description="Build the binary distribution">
+ <ant antfile="${int.jboss50.dir}/build.xml" target="jars" inheritall="false"/>
+ <ant antfile="${int.jboss42.dir}/build.xml" target="jars" inheritall="false"/>
+
<property name="bindist.dir" value="${xfire.output.dir}/jbossws-xfire-${version.id}"/>
<property name="bindist.build.dir" value="${bindist.dir}/build"/>
<property name="bindist.lib.dir" value="${bindist.dir}/lib"/>
17 years, 8 months
JBossWS SVN: r3245 - in trunk/integration: sunri and 1 other directories.
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2007-05-24 19:54:05 -0400 (Thu, 24 May 2007)
New Revision: 3245
Modified:
trunk/integration/native/build.xml
trunk/integration/sunri/build.xml
trunk/integration/xfire/build.xml
Log:
require jboss42/50 builds for all integration builds
Modified: trunk/integration/native/build.xml
===================================================================
--- trunk/integration/native/build.xml 2007-05-24 17:07:19 UTC (rev 3244)
+++ trunk/integration/native/build.xml 2007-05-24 23:54:05 UTC (rev 3245)
@@ -41,6 +41,8 @@
<target name="init" depends="prepare,thirdparty">
<ant antfile="${core.dir}/build.xml" target="main" inheritall="false"/>
+ <ant antfile="${int.jboss50.dir}/build.xml" target="jars" inheritall="false"/>
+ <ant antfile="${int.jboss42.dir}/build.xml" target="jars" inheritall="false"/>
</target>
<!-- ================================================================== -->
Modified: trunk/integration/sunri/build.xml
===================================================================
--- trunk/integration/sunri/build.xml 2007-05-24 17:07:19 UTC (rev 3244)
+++ trunk/integration/sunri/build.xml 2007-05-24 23:54:05 UTC (rev 3245)
@@ -40,8 +40,8 @@
<!-- ================================================================== -->
<target name="init" depends="prepare,thirdparty">
- <fail message="Not available: ${jboss50.available.file}" unless="jboss50.available"/>
- <ant antfile="${int.jboss50.dir}/build.xml" target="main" inheritall="false"/>
+ <ant antfile="${int.jboss50.dir}/build.xml" target="jars" inheritall="false"/>
+ <ant antfile="${int.jboss42.dir}/build.xml" target="jars" inheritall="false"/>
</target>
<!-- ================================================================== -->
Modified: trunk/integration/xfire/build.xml
===================================================================
--- trunk/integration/xfire/build.xml 2007-05-24 17:07:19 UTC (rev 3244)
+++ trunk/integration/xfire/build.xml 2007-05-24 23:54:05 UTC (rev 3245)
@@ -40,8 +40,8 @@
<!-- ================================================================== -->
<target name="init" depends="prepare,thirdparty">
- <fail message="Not available: ${jboss50.available.file}" unless="jboss50.available"/>
- <ant antfile="${int.jboss50.dir}/build.xml" target="main" inheritall="false"/>
+ <ant antfile="${int.jboss50.dir}/build.xml" target="jars" inheritall="false"/>
+ <ant antfile="${int.jboss42.dir}/build.xml" target="jars" inheritall="false"/>
</target>
<!-- ================================================================== -->
17 years, 8 months
JBossWS SVN: r3244 - trunk/build/hudson/hudson-home/jobs/Release-Matrix-Step2.
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2007-05-24 13:07:19 -0400 (Thu, 24 May 2007)
New Revision: 3244
Modified:
trunk/build/hudson/hudson-home/jobs/Release-Matrix-Step2/config.xml
Log:
Fix downstream projects
Modified: trunk/build/hudson/hudson-home/jobs/Release-Matrix-Step2/config.xml
===================================================================
--- trunk/build/hudson/hudson-home/jobs/Release-Matrix-Step2/config.xml 2007-05-24 17:03:35 UTC (rev 3243)
+++ trunk/build/hudson/hudson-home/jobs/Release-Matrix-Step2/config.xml 2007-05-24 17:07:19 UTC (rev 3244)
@@ -3,7 +3,7 @@
<builders class="vector"/>
<publishers class="vector">
<hudson.tasks.BuildTrigger>
- <childProjects>AS-Tests-AS-5.0, AS-Tests-AS-4.2, Core-Tests-AS-5.0, Core-Tests-AS-4.2, Distro-Native-AS-5.0, Distro-Native-AS-4.2, Distro-SunRI-AS-5.0, Distro-XFire-AS-5.0, Distro-Native-AS-5.0, Distro-Native-AS-4.2, Distro-SunRI-AS-5.0, Distro-XFire-AS-5.0</childProjects>
+ <childProjects>AS-Tests-AS-5.0, AS-Tests-AS-4.2, Core-Tests-AS-5.0, Core-Tests-AS-4.2, Integration-Native-AS-5.0, Integration-Native-AS-4.2, Integration-SunRI-AS-5.0, Integration-XFire-AS-5.0, Distro-Native-AS-5.0, Distro-Native-AS-4.2, Distro-SunRI-AS-5.0, Distro-XFire-AS-5.0</childProjects>
</hudson.tasks.BuildTrigger>
</publishers>
<buildWrappers class="vector"/>
17 years, 8 months
JBossWS SVN: r3243 - in trunk/build/hudson/hudson-home: jobs and 5 other directories.
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2007-05-24 13:03:35 -0400 (Thu, 24 May 2007)
New Revision: 3243
Added:
trunk/build/hudson/hudson-home/jobs/Distro-Native-AS-4.2/
trunk/build/hudson/hudson-home/jobs/Distro-Native-AS-4.2/config.xml
trunk/build/hudson/hudson-home/jobs/Distro-SunRI-AS-5.0/
trunk/build/hudson/hudson-home/jobs/Distro-SunRI-AS-5.0/config.xml
trunk/build/hudson/hudson-home/jobs/Distro-XFire-AS-5.0/
trunk/build/hudson/hudson-home/jobs/Distro-XFire-AS-5.0/config.xml
Modified:
trunk/build/hudson/hudson-home/config.xml
trunk/build/hudson/hudson-home/jobs/Distro-Native-AS-5.0/config.xml
trunk/build/hudson/hudson-home/jobs/Release-Matrix-Step2/config.xml
Log:
Add hudson for all distros
Modified: trunk/build/hudson/hudson-home/config.xml
===================================================================
--- trunk/build/hudson/hudson-home/config.xml 2007-05-24 17:02:54 UTC (rev 3242)
+++ trunk/build/hudson/hudson-home/config.xml 2007-05-24 17:03:35 UTC (rev 3243)
@@ -61,6 +61,26 @@
</description>
</view>
+ <!-- Distribution Tests-->
+ <view>
+ <owner reference="../../.."/>
+ <jobNames class="tree-set">
+ <no-comparator/>
+ <string>Distro-Native-AS-5.0</string>
+ <string>Distro-Native-AS-4.2</string>
+ <string>Distro-SunRI-AS-5.0</string>
+ <string>Distro-XFire-AS-5.0</string>
+ </jobNames>
+ <name>Distribution Tests</name>
+ <description>
+<![CDATA[
+ Run the integration testsuite from a distribution.
+ <p/>
+ Make sure you have sucessfuly build the <a href="/hudson/view/Target%20Container">Target Container</a>
+]]>
+ </description>
+ </view>
+
<!-- Integration Tests-->
<view>
<owner reference="../../.."/>
Added: trunk/build/hudson/hudson-home/jobs/Distro-Native-AS-4.2/config.xml
===================================================================
--- trunk/build/hudson/hudson-home/jobs/Distro-Native-AS-4.2/config.xml (rev 0)
+++ trunk/build/hudson/hudson-home/jobs/Distro-Native-AS-4.2/config.xml 2007-05-24 17:03:35 UTC (rev 3243)
@@ -0,0 +1,93 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<project>
+ <builders class="vector">
+ <hudson.tasks.Shell>
+ <command>
+#
+# Module settings
+#
+MODULE=Distro-Native-AS-4.2
+
+WORKSPACE=`pwd`
+JBWSDIR=$WORKSPACE/jbossws
+JBOSS50_INSTANCE=@hudson.home@/jobs/AS-5.0/workspace/trunk/build/output/(a)hudson.jboss50.build@
+JBOSS42_INSTANCE=@hudson.home@/jobs/AS-4.2/workspace/Branch_4_2/build/output/(a)hudson.jboss42.build@
+JBOSS_INSTANCE=$JBOSS42_INSTANCE
+ENVIRONMENT="-Djbossws.integration.target=jboss42 -Djboss50.home=$JBOSS50_INSTANCE -Djboss42.home=$JBOSS42_INSTANCE"
+
+#
+# copy ant.properties
+#
+cd $JBWSDIR/build
+cp ant.properties.example ant.properties
+ant clobber
+
+#
+# stop jbossas
+#
+$JBWSDIR/build/hudson/jboss/bin/jboss.sh $JBOSS_INSTANCE stop
+
+#
+# Build distro
+#
+cd $JBWSDIR/integration/native
+ant $ENVIRONMENT binary-dist
+
+#
+# Deploy distro
+#
+cd output/jbossws-native-(a)version.id@
+ant $ENVIRONMENT deploy-jboss42
+
+#
+# start jbossas
+#
+$JBWSDIR/build/hudson/jboss/bin/jboss.sh $JBOSS_INSTANCE start
+sleep 60
+
+#
+# execute tests
+#
+ant $ENVIRONMENT tests 2>&1 | tee $WORKSPACE/tests.out
+cat $WORKSPACE/tests.out | egrep FIXME\|FAILED | sort -u
+
+#
+# stop jbossas
+#
+$JBWSDIR/build/hudson/jboss/bin/jboss.sh $JBOSS_INSTANCE stop
+</command>
+ </hudson.tasks.Shell>
+ </builders>
+ <publishers class="vector">
+ <hudson.tasks.junit.JUnitResultArchiver>
+ <testResults>jbossws/integration/native/output/jbossws-native-@version.id(a)/tests/output/reports/*.xml</testResults>
+ </hudson.tasks.junit.JUnitResultArchiver>
+ <hudson.tasks.Mailer>
+ <recipients>@hudson.mail.recipients@</recipients>
+ <dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
+ <sendToIndividuals>true</sendToIndividuals>
+ </hudson.tasks.Mailer>
+ </publishers>
+ <buildWrappers class="vector"/>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM-ModuleLocation>
+ <remote>@svn.url@</remote>
+ <local>jbossws</local>
+ </hudson.scm.SubversionSCM-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <browser class="hudson.scm.browsers.FishEyeSVN">
+ <url>http://fisheye.jboss.com/browse/JBossWS/</url>
+ <rootModule></rootModule>
+ </browser>
+ </scm>
+ <canRoam>true</canRoam>
+ <disabled>false</disabled>
+ <enableRemoteTrigger>false</enableRemoteTrigger>
+ <triggers class="vector"/>
+ <description>Build and test jbossws-native-(a)version.id@ against AS-4.2</description>
+ <keepDependencies>false</keepDependencies>
+ <properties/>
+ <actions class="vector"/>
+</project>
\ No newline at end of file
Property changes on: trunk/build/hudson/hudson-home/jobs/Distro-Native-AS-4.2/config.xml
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Modified: trunk/build/hudson/hudson-home/jobs/Distro-Native-AS-5.0/config.xml
===================================================================
--- trunk/build/hudson/hudson-home/jobs/Distro-Native-AS-5.0/config.xml 2007-05-24 17:02:54 UTC (rev 3242)
+++ trunk/build/hudson/hudson-home/jobs/Distro-Native-AS-5.0/config.xml 2007-05-24 17:03:35 UTC (rev 3243)
@@ -10,8 +10,10 @@
WORKSPACE=`pwd`
JBWSDIR=$WORKSPACE/jbossws
-JBOSS_INSTANCE=@hudson.home@/jobs/AS-5.0/workspace/trunk/build/output/(a)hudson.jboss50.build@
-ENVIRONMENT="-Djbossws.integration.target=jboss50 -Djboss50.home=$JBOSS_INSTANCE"
+JBOSS50_INSTANCE=@hudson.home@/jobs/AS-5.0/workspace/trunk/build/output/(a)hudson.jboss50.build@
+JBOSS42_INSTANCE=@hudson.home@/jobs/AS-4.2/workspace/Branch_4_2/build/output/(a)hudson.jboss42.build@
+JBOSS_INSTANCE=$JBOSS50_INSTANCE
+ENVIRONMENT="-Djbossws.integration.target=jboss50 -Djboss50.home=$JBOSS50_INSTANCE -Djboss42.home=$JBOSS42_INSTANCE"
#
# copy ant.properties
@@ -84,7 +86,7 @@
<disabled>false</disabled>
<enableRemoteTrigger>false</enableRemoteTrigger>
<triggers class="vector"/>
- <description>Build and test jbossws-(a)version.id@ against AS-5.0</description>
+ <description>Build and test jbossws-native-(a)version.id@ against AS-5.0</description>
<keepDependencies>false</keepDependencies>
<properties/>
<actions class="vector"/>
Added: trunk/build/hudson/hudson-home/jobs/Distro-SunRI-AS-5.0/config.xml
===================================================================
--- trunk/build/hudson/hudson-home/jobs/Distro-SunRI-AS-5.0/config.xml (rev 0)
+++ trunk/build/hudson/hudson-home/jobs/Distro-SunRI-AS-5.0/config.xml 2007-05-24 17:03:35 UTC (rev 3243)
@@ -0,0 +1,93 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<project>
+ <builders class="vector">
+ <hudson.tasks.Shell>
+ <command>
+#
+# Module settings
+#
+MODULE=Distro-SunRI-AS-5.0
+
+WORKSPACE=`pwd`
+JBWSDIR=$WORKSPACE/jbossws
+JBOSS50_INSTANCE=@hudson.home@/jobs/AS-5.0/workspace/trunk/build/output/(a)hudson.jboss50.build@
+JBOSS42_INSTANCE=@hudson.home@/jobs/AS-4.2/workspace/Branch_4_2/build/output/(a)hudson.jboss42.build@
+JBOSS_INSTANCE=$JBOSS50_INSTANCE
+ENVIRONMENT="-Djbossws.integration.target=jboss50 -Djboss50.home=$JBOSS50_INSTANCE -Djboss42.home=$JBOSS42_INSTANCE"
+
+#
+# copy ant.properties
+#
+cd $JBWSDIR/build
+cp ant.properties.example ant.properties
+ant clobber
+
+#
+# stop jbossas
+#
+$JBWSDIR/build/hudson/jboss/bin/jboss.sh $JBOSS_INSTANCE stop
+
+#
+# Build distro
+#
+cd $JBWSDIR/integration/sunri
+ant $ENVIRONMENT binary-dist
+
+#
+# Deploy distro
+#
+cd output/jbossws-sunri-(a)version.id@
+ant $ENVIRONMENT deploy-jboss50
+
+#
+# start jbossas
+#
+$JBWSDIR/build/hudson/jboss/bin/jboss.sh $JBOSS_INSTANCE start
+sleep 60
+
+#
+# execute tests
+#
+ant $ENVIRONMENT tests 2>&1 | tee $WORKSPACE/tests.out
+cat $WORKSPACE/tests.out | egrep FIXME\|FAILED | sort -u
+
+#
+# stop jbossas
+#
+$JBWSDIR/build/hudson/jboss/bin/jboss.sh $JBOSS_INSTANCE stop
+</command>
+ </hudson.tasks.Shell>
+ </builders>
+ <publishers class="vector">
+ <hudson.tasks.junit.JUnitResultArchiver>
+ <testResults>jbossws/integration/sunri/output/jbossws-sunri-@version.id(a)/tests/output/reports/*.xml</testResults>
+ </hudson.tasks.junit.JUnitResultArchiver>
+ <hudson.tasks.Mailer>
+ <recipients>@hudson.mail.recipients@</recipients>
+ <dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
+ <sendToIndividuals>true</sendToIndividuals>
+ </hudson.tasks.Mailer>
+ </publishers>
+ <buildWrappers class="vector"/>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM-ModuleLocation>
+ <remote>@svn.url@</remote>
+ <local>jbossws</local>
+ </hudson.scm.SubversionSCM-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <browser class="hudson.scm.browsers.FishEyeSVN">
+ <url>http://fisheye.jboss.com/browse/JBossWS/</url>
+ <rootModule></rootModule>
+ </browser>
+ </scm>
+ <canRoam>true</canRoam>
+ <disabled>false</disabled>
+ <enableRemoteTrigger>false</enableRemoteTrigger>
+ <triggers class="vector"/>
+ <description>Build and test jbossws-sunri-(a)version.id@ against AS-5.0</description>
+ <keepDependencies>false</keepDependencies>
+ <properties/>
+ <actions class="vector"/>
+</project>
\ No newline at end of file
Property changes on: trunk/build/hudson/hudson-home/jobs/Distro-SunRI-AS-5.0/config.xml
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: trunk/build/hudson/hudson-home/jobs/Distro-XFire-AS-5.0/config.xml
===================================================================
--- trunk/build/hudson/hudson-home/jobs/Distro-XFire-AS-5.0/config.xml (rev 0)
+++ trunk/build/hudson/hudson-home/jobs/Distro-XFire-AS-5.0/config.xml 2007-05-24 17:03:35 UTC (rev 3243)
@@ -0,0 +1,93 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<project>
+ <builders class="vector">
+ <hudson.tasks.Shell>
+ <command>
+#
+# Module settings
+#
+MODULE=Distro-XFire-AS-5.0
+
+WORKSPACE=`pwd`
+JBWSDIR=$WORKSPACE/jbossws
+JBOSS50_INSTANCE=@hudson.home@/jobs/AS-5.0/workspace/trunk/build/output/(a)hudson.jboss50.build@
+JBOSS42_INSTANCE=@hudson.home@/jobs/AS-4.2/workspace/Branch_4_2/build/output/(a)hudson.jboss42.build@
+JBOSS_INSTANCE=$JBOSS50_INSTANCE
+ENVIRONMENT="-Djbossws.integration.target=jboss50 -Djboss50.home=$JBOSS50_INSTANCE -Djboss42.home=$JBOSS42_INSTANCE"
+
+#
+# copy ant.properties
+#
+cd $JBWSDIR/build
+cp ant.properties.example ant.properties
+ant clobber
+
+#
+# stop jbossas
+#
+$JBWSDIR/build/hudson/jboss/bin/jboss.sh $JBOSS_INSTANCE stop
+
+#
+# Build distro
+#
+cd $JBWSDIR/integration/xfire
+ant $ENVIRONMENT binary-dist
+
+#
+# Deploy distro
+#
+cd output/jbossws-xfire-(a)version.id@
+ant $ENVIRONMENT deploy-jboss50
+
+#
+# start jbossas
+#
+$JBWSDIR/build/hudson/jboss/bin/jboss.sh $JBOSS_INSTANCE start
+sleep 60
+
+#
+# execute tests
+#
+ant $ENVIRONMENT tests 2>&1 | tee $WORKSPACE/tests.out
+cat $WORKSPACE/tests.out | egrep FIXME\|FAILED | sort -u
+
+#
+# stop jbossas
+#
+$JBWSDIR/build/hudson/jboss/bin/jboss.sh $JBOSS_INSTANCE stop
+</command>
+ </hudson.tasks.Shell>
+ </builders>
+ <publishers class="vector">
+ <hudson.tasks.junit.JUnitResultArchiver>
+ <testResults>jbossws/integration/xfire/output/jbossws-xfire-@version.id(a)/tests/output/reports/*.xml</testResults>
+ </hudson.tasks.junit.JUnitResultArchiver>
+ <hudson.tasks.Mailer>
+ <recipients>@hudson.mail.recipients@</recipients>
+ <dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
+ <sendToIndividuals>true</sendToIndividuals>
+ </hudson.tasks.Mailer>
+ </publishers>
+ <buildWrappers class="vector"/>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM-ModuleLocation>
+ <remote>@svn.url@</remote>
+ <local>jbossws</local>
+ </hudson.scm.SubversionSCM-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <browser class="hudson.scm.browsers.FishEyeSVN">
+ <url>http://fisheye.jboss.com/browse/JBossWS/</url>
+ <rootModule></rootModule>
+ </browser>
+ </scm>
+ <canRoam>true</canRoam>
+ <disabled>false</disabled>
+ <enableRemoteTrigger>false</enableRemoteTrigger>
+ <triggers class="vector"/>
+ <description>Build and test jbossws-xfire-(a)version.id@ against AS-5.0</description>
+ <keepDependencies>false</keepDependencies>
+ <properties/>
+ <actions class="vector"/>
+</project>
\ No newline at end of file
Property changes on: trunk/build/hudson/hudson-home/jobs/Distro-XFire-AS-5.0/config.xml
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Modified: trunk/build/hudson/hudson-home/jobs/Release-Matrix-Step2/config.xml
===================================================================
--- trunk/build/hudson/hudson-home/jobs/Release-Matrix-Step2/config.xml 2007-05-24 17:02:54 UTC (rev 3242)
+++ trunk/build/hudson/hudson-home/jobs/Release-Matrix-Step2/config.xml 2007-05-24 17:03:35 UTC (rev 3243)
@@ -3,7 +3,7 @@
<builders class="vector"/>
<publishers class="vector">
<hudson.tasks.BuildTrigger>
- <childProjects>AS-Tests-AS-5.0, AS-Tests-AS-4.2, Core-Tests-AS-5.0, Core-Tests-AS-4.2, Integration-Native-AS-5.0, Integration-Native-AS-4.2, Integration-SunRI-AS-5.0, Integration-XFire-AS-5.0</childProjects>
+ <childProjects>AS-Tests-AS-5.0, AS-Tests-AS-4.2, Core-Tests-AS-5.0, Core-Tests-AS-4.2, Distro-Native-AS-5.0, Distro-Native-AS-4.2, Distro-SunRI-AS-5.0, Distro-XFire-AS-5.0, Distro-Native-AS-5.0, Distro-Native-AS-4.2, Distro-SunRI-AS-5.0, Distro-XFire-AS-5.0</childProjects>
</hudson.tasks.BuildTrigger>
</publishers>
<buildWrappers class="vector"/>
17 years, 8 months
JBossWS SVN: r3242 - trunk/jbossws-core/src/test/etc.
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2007-05-24 13:02:54 -0400 (Thu, 24 May 2007)
New Revision: 3242
Added:
trunk/jbossws-core/src/test/etc/jndi.properties
trunk/jbossws-core/src/test/etc/log4j.xml
trunk/jbossws-core/src/test/etc/tst.policy
Log:
Duplicate tests/etc
Added: trunk/jbossws-core/src/test/etc/jndi.properties
===================================================================
--- trunk/jbossws-core/src/test/etc/jndi.properties (rev 0)
+++ trunk/jbossws-core/src/test/etc/jndi.properties 2007-05-24 17:02:54 UTC (rev 3242)
@@ -0,0 +1,3 @@
+java.naming.factory.initial=org.jnp.interfaces.NamingContextFactory
+java.naming.factory.url.pkgs=org.jboss.naming:org.jnp.interfaces
+java.naming.provider.url=jnp://localhost:1099
\ No newline at end of file
Added: trunk/jbossws-core/src/test/etc/log4j.xml
===================================================================
--- trunk/jbossws-core/src/test/etc/log4j.xml (rev 0)
+++ trunk/jbossws-core/src/test/etc/log4j.xml 2007-05-24 17:02:54 UTC (rev 3242)
@@ -0,0 +1,89 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!DOCTYPE log4j:configuration SYSTEM "log4j.dtd">
+
+<!-- ===================================================================== -->
+<!-- -->
+<!-- Log4j Configuration -->
+<!-- -->
+<!-- ===================================================================== -->
+
+<!-- $Id$ -->
+
+<!--
+| For more configuration infromation and examples see the Jakarta Log4j
+| owebsite: http://jakarta.apache.org/log4j
+-->
+
+<log4j:configuration xmlns:log4j="http://jakarta.apache.org/log4j/" debug="false">
+
+ <!-- ================================= -->
+ <!-- Preserve messages in a local file -->
+ <!-- ================================= -->
+
+ <!-- A time/date based rolling appender -->
+ <appender name="FILE" class="org.jboss.logging.appender.DailyRollingFileAppender">
+ <param name="File" value="${build.testlog}/test.log"/>
+ <param name="Append" value="false"/>
+
+ <!-- Rollover at midnight each day -->
+ <param name="DatePattern" value="'.'yyyy-MM-dd"/>
+
+ <layout class="org.apache.log4j.PatternLayout">
+ <!-- The default pattern: Date Priority [Category] Message\n -->
+ <param name="ConversionPattern" value="%d %-5p [%c:%L] %m%n"/>
+ </layout>
+ </appender>
+
+ <!-- ============================== -->
+ <!-- Append messages to the console -->
+ <!-- ============================== -->
+
+ <appender name="CONSOLE" class="org.apache.log4j.ConsoleAppender">
+ <param name="Threshold" value="INFO"/>
+ <param name="Target" value="System.out"/>
+
+ <layout class="org.apache.log4j.PatternLayout">
+ <!-- The default pattern: Date Priority [Category] Message\n -->
+ <param name="ConversionPattern" value="%d{ABSOLUTE} %-5p [%c{1}] %m%n"/>
+ </layout>
+ </appender>
+
+ <!-- ================ -->
+ <!-- Limit categories -->
+ <!-- ================ -->
+
+ <category name="org.jboss.ws">
+ <priority value="DEBUG"/>
+ </category>
+
+ <category name="org.jboss.ws.core.MessageTrace">
+ <priority value="TRACE" class="org.jboss.logging.XLevel"/>
+ </category>
+
+ <category name="org.jboss.remoting">
+ <priority value="INFO"/>
+ </category>
+
+ <!-- Apache security is verbose -->
+ <category name="org.apache.xml.security">
+ <priority value="INFO"/>
+ </category>
+
+ <!--
+ <category name="org.jboss.xb">
+ <priority value="TRACE" class="org.jboss.logging.XLevel"/>
+ </category>
+ -->
+
+ <!-- ======================= -->
+ <!-- Setup the Root category -->
+ <!-- ======================= -->
+
+ <root>
+<!--
+ <appender-ref ref="CONSOLE"/>
+-->
+ <appender-ref ref="FILE"/>
+ </root>
+
+</log4j:configuration>
Property changes on: trunk/jbossws-core/src/test/etc/log4j.xml
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Added: trunk/jbossws-core/src/test/etc/tst.policy
===================================================================
--- trunk/jbossws-core/src/test/etc/tst.policy (rev 0)
+++ trunk/jbossws-core/src/test/etc/tst.policy 2007-05-24 17:02:54 UTC (rev 3242)
@@ -0,0 +1,4 @@
+grant {
+ permission java.security.AllPermission;
+};
+
17 years, 8 months
JBossWS SVN: r3241 - in trunk/build: hudson/hudson-home/jobs and 1 other directories.
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2007-05-24 12:29:29 -0400 (Thu, 24 May 2007)
New Revision: 3241
Added:
trunk/build/hudson/hudson-home/jobs/Distro-Native-AS-5.0/
trunk/build/hudson/hudson-home/jobs/Distro-Native-AS-5.0/config.xml
Modified:
trunk/build/version.properties
Log:
Add hudson for native distro
Added: trunk/build/hudson/hudson-home/jobs/Distro-Native-AS-5.0/config.xml
===================================================================
--- trunk/build/hudson/hudson-home/jobs/Distro-Native-AS-5.0/config.xml (rev 0)
+++ trunk/build/hudson/hudson-home/jobs/Distro-Native-AS-5.0/config.xml 2007-05-24 16:29:29 UTC (rev 3241)
@@ -0,0 +1,91 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<project>
+ <builders class="vector">
+ <hudson.tasks.Shell>
+ <command>
+#
+# Module settings
+#
+MODULE=Distro-Native-AS-5.0
+
+WORKSPACE=`pwd`
+JBWSDIR=$WORKSPACE/jbossws
+JBOSS_INSTANCE=@hudson.home@/jobs/AS-5.0/workspace/trunk/build/output/(a)hudson.jboss50.build@
+ENVIRONMENT="-Djbossws.integration.target=jboss50 -Djboss50.home=$JBOSS_INSTANCE"
+
+#
+# copy ant.properties
+#
+cd $JBWSDIR/build
+cp ant.properties.example ant.properties
+ant clobber
+
+#
+# stop jbossas
+#
+$JBWSDIR/build/hudson/jboss/bin/jboss.sh $JBOSS_INSTANCE stop
+
+#
+# Build distro
+#
+cd $JBWSDIR/integration/native
+ant $ENVIRONMENT binary-dist
+
+#
+# Deploy distro
+#
+cd output/jbossws-native-(a)version.id@
+ant $ENVIRONMENT deploy-jboss50
+
+#
+# start jbossas
+#
+$JBWSDIR/build/hudson/jboss/bin/jboss.sh $JBOSS_INSTANCE start
+sleep 60
+
+#
+# execute tests
+#
+ant $ENVIRONMENT tests 2>&1 | tee $WORKSPACE/tests.out
+cat $WORKSPACE/tests.out | egrep FIXME\|FAILED | sort -u
+
+#
+# stop jbossas
+#
+$JBWSDIR/build/hudson/jboss/bin/jboss.sh $JBOSS_INSTANCE stop
+</command>
+ </hudson.tasks.Shell>
+ </builders>
+ <publishers class="vector">
+ <hudson.tasks.junit.JUnitResultArchiver>
+ <testResults>jbossws/integration/native/output/jbossws-native-@version.id(a)/tests/output/reports/*.xml</testResults>
+ </hudson.tasks.junit.JUnitResultArchiver>
+ <hudson.tasks.Mailer>
+ <recipients>@hudson.mail.recipients@</recipients>
+ <dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
+ <sendToIndividuals>true</sendToIndividuals>
+ </hudson.tasks.Mailer>
+ </publishers>
+ <buildWrappers class="vector"/>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM-ModuleLocation>
+ <remote>@svn.url@</remote>
+ <local>jbossws</local>
+ </hudson.scm.SubversionSCM-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <browser class="hudson.scm.browsers.FishEyeSVN">
+ <url>http://fisheye.jboss.com/browse/JBossWS/</url>
+ <rootModule></rootModule>
+ </browser>
+ </scm>
+ <canRoam>true</canRoam>
+ <disabled>false</disabled>
+ <enableRemoteTrigger>false</enableRemoteTrigger>
+ <triggers class="vector"/>
+ <description>Build and test jbossws-(a)version.id@ against AS-5.0</description>
+ <keepDependencies>false</keepDependencies>
+ <properties/>
+ <actions class="vector"/>
+</project>
\ No newline at end of file
Property changes on: trunk/build/hudson/hudson-home/jobs/Distro-Native-AS-5.0/config.xml
___________________________________________________________________
Name: svn:keywords
+ Id Revision
Name: svn:eol-style
+ LF
Modified: trunk/build/version.properties
===================================================================
--- trunk/build/version.properties 2007-05-24 16:16:14 UTC (rev 3240)
+++ trunk/build/version.properties 2007-05-24 16:29:29 UTC (rev 3241)
@@ -28,3 +28,7 @@
sun-jaxws=2.1.1
sun-servlet=2.5
woodstox=3.1.1
+
+# Hudson setup
+apache-tomcat=5.5.20
+sun-hudson=1.93
17 years, 8 months
JBossWS SVN: r3240 - in trunk: build/hudson/hudson-home/jobs/Integration-Native-AS-5.0 and 3 other directories.
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2007-05-24 12:16:14 -0400 (Thu, 24 May 2007)
New Revision: 3240
Modified:
trunk/build/hudson/hudson-home/jobs/Integration-Native-AS-4.2/config.xml
trunk/build/hudson/hudson-home/jobs/Integration-Native-AS-5.0/config.xml
trunk/build/hudson/hudson-home/jobs/Integration-SunRI-AS-5.0/config.xml
trunk/build/hudson/hudson-home/jobs/Integration-XFire-AS-5.0/config.xml
trunk/jbossws-core/.classpath
Log:
Move jbws to native
Modified: trunk/build/hudson/hudson-home/jobs/Integration-Native-AS-4.2/config.xml
===================================================================
--- trunk/build/hudson/hudson-home/jobs/Integration-Native-AS-4.2/config.xml 2007-05-24 16:10:26 UTC (rev 3239)
+++ trunk/build/hudson/hudson-home/jobs/Integration-Native-AS-4.2/config.xml 2007-05-24 16:16:14 UTC (rev 3240)
@@ -6,7 +6,7 @@
#
# Module settings
#
-MODULE=JBWS-Native-Integration-AS-4.2
+MODULE=Integration-Native-AS-4.2
WORKSPACE=`pwd`
JBWSDIR=$WORKSPACE/jbossws
@@ -28,7 +28,7 @@
#
# Build jbws-jboss42
#
-cd $JBWSDIR/integration/jbws
+cd $JBWSDIR/integration/native
ant $ENVIRONMENT deploy-jboss42
#
Modified: trunk/build/hudson/hudson-home/jobs/Integration-Native-AS-5.0/config.xml
===================================================================
--- trunk/build/hudson/hudson-home/jobs/Integration-Native-AS-5.0/config.xml 2007-05-24 16:10:26 UTC (rev 3239)
+++ trunk/build/hudson/hudson-home/jobs/Integration-Native-AS-5.0/config.xml 2007-05-24 16:16:14 UTC (rev 3240)
@@ -6,7 +6,7 @@
#
# Module settings
#
-MODULE=JBWS-Native-Integration-AS-5.0
+MODULE=Integration-Native-AS-5.0
WORKSPACE=`pwd`
JBWSDIR=$WORKSPACE/jbossws
@@ -28,7 +28,7 @@
#
# Build deploy-jboss50
#
-cd $JBWSDIR/integration/jbws
+cd $JBWSDIR/integration/native
ant $ENVIRONMENT deploy-jboss50
#
Modified: trunk/build/hudson/hudson-home/jobs/Integration-SunRI-AS-5.0/config.xml
===================================================================
--- trunk/build/hudson/hudson-home/jobs/Integration-SunRI-AS-5.0/config.xml 2007-05-24 16:10:26 UTC (rev 3239)
+++ trunk/build/hudson/hudson-home/jobs/Integration-SunRI-AS-5.0/config.xml 2007-05-24 16:16:14 UTC (rev 3240)
@@ -6,7 +6,7 @@
#
# Module settings
#
-MODULE=JBWS-SunRI-AS-5.0
+MODULE=Integration-SunRI-AS-5.0
WORKSPACE=`pwd`
JBWSDIR=$WORKSPACE/jbossws
Modified: trunk/build/hudson/hudson-home/jobs/Integration-XFire-AS-5.0/config.xml
===================================================================
--- trunk/build/hudson/hudson-home/jobs/Integration-XFire-AS-5.0/config.xml 2007-05-24 16:10:26 UTC (rev 3239)
+++ trunk/build/hudson/hudson-home/jobs/Integration-XFire-AS-5.0/config.xml 2007-05-24 16:16:14 UTC (rev 3240)
@@ -6,7 +6,7 @@
#
# Module settings
#
-MODULE=JBWS-XFire-AS-5.0
+MODULE=Integration-XFire-AS-5.0
WORKSPACE=`pwd`
JBWSDIR=$WORKSPACE/jbossws
Modified: trunk/jbossws-core/.classpath
===================================================================
--- trunk/jbossws-core/.classpath 2007-05-24 16:10:26 UTC (rev 3239)
+++ trunk/jbossws-core/.classpath 2007-05-24 16:16:14 UTC (rev 3240)
@@ -28,11 +28,11 @@
<classpathentry kind="lib" path="thirdparty/xmlsec.jar"/>
<classpathentry kind="lib" path="thirdparty/ant.jar"/>
<classpathentry kind="lib" path="thirdparty/qdox.jar"/>
- <classpathentry kind="lib" path="thirdparty/xmlunit1.0.jar"/>
<classpathentry kind="lib" path="thirdparty/policy.jar"/>
<classpathentry kind="con" path="org.eclipse.jdt.USER_LIBRARY/jboss-5.0.x"/>
<classpathentry combineaccessrules="false" kind="src" path="/integration-spi"/>
<classpathentry kind="lib" path="/integration-spi/thirdparty/junit.jar"/>
<classpathentry kind="lib" path="thirdparty/dom4j.jar"/>
+ <classpathentry kind="lib" path="thirdparty/xmlunit.jar"/>
<classpathentry kind="output" path="output-eclipse"/>
</classpath>
17 years, 8 months
JBossWS SVN: r3239 - in trunk: integration/native and 1 other directory.
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2007-05-24 12:10:26 -0400 (Thu, 24 May 2007)
New Revision: 3239
Modified:
trunk/build/ant-import/build-setup.xml
trunk/integration/native/.project
Log:
Move jbws to native
Modified: trunk/build/ant-import/build-setup.xml
===================================================================
--- trunk/build/ant-import/build-setup.xml 2007-05-24 16:04:43 UTC (rev 3238)
+++ trunk/build/ant-import/build-setup.xml 2007-05-24 16:10:26 UTC (rev 3239)
@@ -23,7 +23,7 @@
<property name="testsuite.dir" value="${basedir}/testsuite"/>
<property name="int.jboss50.dir" value="${basedir}/integration/jboss50"/>
<property name="int.jboss42.dir" value="${basedir}/integration/jboss42"/>
- <property name="int.native.dir" value="${basedir}/integration/jbws"/>
+ <property name="int.native.dir" value="${basedir}/integration/native"/>
<property name="int.sunri.dir" value="${basedir}/integration/sunri"/>
<property name="int.xfire.dir" value="${basedir}/integration/xfire"/>
Modified: trunk/integration/native/.project
===================================================================
--- trunk/integration/native/.project 2007-05-24 16:04:43 UTC (rev 3238)
+++ trunk/integration/native/.project 2007-05-24 16:10:26 UTC (rev 3239)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
- <name>integration-jbws</name>
+ <name>integration-native</name>
<comment></comment>
<projects>
</projects>
17 years, 8 months
JBossWS SVN: r3238 - trunk/integration.
by jbossws-commits@lists.jboss.org
Author: thomas.diesler(a)jboss.com
Date: 2007-05-24 12:04:43 -0400 (Thu, 24 May 2007)
New Revision: 3238
Added:
trunk/integration/native/
Removed:
trunk/integration/jbws/
Log:
Move jbw to native
Copied: trunk/integration/native (from rev 3237, trunk/integration/jbws)
17 years, 8 months