Author: thomas.diesler(a)jboss.com
Date: 2007-01-24 16:49:27 -0500 (Wed, 24 Jan 2007)
New Revision: 2093
Removed:
branches/jbossws-1.2.0/build/hudson/hudson-home/hudson.scm.CVSSCM.xml
branches/jbossws-1.2.0/build/hudson/hudson-home/hudson.scm.SubversionSCM.xml
branches/jbossws-1.2.0/build/hudson/hudson-home/hudson.tasks.Ant.xml
branches/jbossws-1.2.0/build/hudson/hudson-home/hudson.tasks.Maven.xml
branches/jbossws-1.2.0/build/hudson/hudson-home/hudson.tasks.Shell.xml
branches/jbossws-1.2.0/build/hudson/hudson-home/hudson.triggers.SCMTrigger.xml
Modified:
branches/jbossws-1.2.0/build/ant-import/build-hudson.xml
branches/jbossws-1.2.0/build/ant.properties.example
branches/jbossws-1.2.0/build/hudson/apache-tomcat/conf/server.xml
branches/jbossws-1.2.0/build/hudson/hudson-home/config.xml
branches/jbossws-1.2.0/build/hudson/hudson-home/hudson.tasks.Mailer.xml
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/AS-4.0-jdk14/config.xml
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/AS-4.0/config.xml
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/AS-4.2/config.xml
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/AS-5.0/config.xml
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBAS-Tests-AS-4.0-jdk14/config.xml
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBAS-Tests-AS-4.0/config.xml
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBAS-Tests-AS-4.2/config.xml
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBAS-Tests-AS-5.0/config.xml
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBWS-Samples-AS-4.0-jdk14/config.xml
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBWS-Samples-AS-4.0/config.xml
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBWS-Samples-AS-4.2/config.xml
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBWS-Samples-AS-5.0/config.xml
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBWS-Samples-TC-5.5/config.xml
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBWS-Tests-AS-4.0-jdk14/config.xml
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBWS-Tests-AS-4.0/config.xml
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBWS-Tests-AS-4.2/config.xml
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBWS-Tests-AS-5.0/config.xml
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBWS-Tests-TC-5.5/config.xml
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/TC-5.5/config.xml
Log:
Use explicit svn revision
Modified: branches/jbossws-1.2.0/build/ant-import/build-hudson.xml
===================================================================
--- branches/jbossws-1.2.0/build/ant-import/build-hudson.xml 2007-01-24 20:48:56 UTC (rev
2092)
+++ branches/jbossws-1.2.0/build/ant-import/build-hudson.xml 2007-01-24 21:49:27 UTC (rev
2093)
@@ -25,13 +25,15 @@
<echo message="hudson.home = ${hudson.home}"/>
<echo/>
+ <available file="${hudson.root}"
property="hudson.root.available"/>
<available file="${hudson.tomcat}"
property="hudson.tomcat.available"/>
+ <fail message="Hudson root not available"
unless="hudson.root.available"/>
</target>
<!--
Setup the Hudson Tomcat instance
-->
- <target name="hudson-init-tomcat" depends="init-hudson"
unless="hudson.tomcat.available">
+ <target name="hudson-tomcat-setup" depends="init-hudson"
unless="hudson.tomcat.available">
<get
src="${jboss.repository}/apache-tomcat/${apache-tomcat}/lib/apache-tomcat.zip"
dest="${thirdparty.dir}/apache-tomcat.zip" usetimestamp="true"
verbose="true"/>
<get src="${jboss.repository}/sun-hudson/${sun-hudson}/lib/hudson.war"
dest="${thirdparty.dir}/hudson.war" usetimestamp="true"
verbose="true"/>
@@ -50,6 +52,7 @@
</fileset>
<filterset>
<filter token="hudson.home" value="${hudson.home}"/>
+ <filter token="hudson.port" value="${hudson.port}"/>
</filterset>
</copy>
</target>
@@ -57,7 +60,7 @@
<!--
Setup the Hudson QA environment
-->
- <target name="hudson-setup"
depends="init-hudson,hudson-init-tomcat"
+ <target name="hudson-setup"
depends="init-hudson,hudson-tomcat-setup"
description="Setup the Hudson QA environment">
<exec executable="basename" outputproperty="svn.basename">
@@ -71,11 +74,9 @@
</fileset>
<filterset>
<filter token="version.id" value="${version.id}"/>
- <filter token="hudson.home" value="${hudson.home}"/>
- <filter token="hudson.mail" value="${hudson.mail}"/>
- <filter token="hudson.jdk14" value="${hudson.jdk14}"/>
<filter token="svn.basename" value="${svn.basename}"/>
<filter token="svn.url" value="${svn.url}"/>
+ <filtersfile file="${build.dir}/ant.properties"/>
</filterset>
</copy>
@@ -113,7 +114,7 @@
<echo/>
<echo message="*************************************"/>
<echo message="* Hudson started sucessfuly *"/>
- <echo message="*
http://localhost:8180/hudson *"/>
+ <echo message="*
http://localhost:${hudson.port}/hudson *"/>
<echo message="*************************************"/>
<echo/>
Modified: branches/jbossws-1.2.0/build/ant.properties.example
===================================================================
--- branches/jbossws-1.2.0/build/ant.properties.example 2007-01-24 20:48:56 UTC (rev
2092)
+++ branches/jbossws-1.2.0/build/ant.properties.example 2007-01-24 21:49:27 UTC (rev
2093)
@@ -3,11 +3,6 @@
#
# $Id$
-# JBossWS Hudson
-#hudson.root=/home/tdiesler/workspace
-hudson.jdk14=/usr/java/jdk1.4
-hudson.mail=jbossws-dev(a)lists.jboss.com
-
# Optional JBoss Home
#jboss50.home=/home/tdiesler/svn/jbossas/trunk/build/output/jboss-5.0.0.Beta2
#jboss42.home=/home/tdiesler/svn/jbossas/branches/Branch_4_2/build/output/jboss-4.2.0.CR1-ejb3
@@ -24,6 +19,24 @@
tomcat.manager.username=manager
tomcat.manager.password=manager
+# Hudson QA Environment
+hudson.root=/home/tdiesler/workspac
+hudson.port=8180
+
+hudson.jdk15=/usr/java/jdk1.5
+hudson.jdk14=/usr/java/jdk1.4
+
+hudson.jboss50.build=jboss-5.0.0.Beta2
+hudson.jboss42.build=jboss-4.2.0.CR1
+hudson.jboss40.build=jboss-4.0.5.SP1
+
+hudson.jboss50.rev=HEAD
+hudson.jboss42.rev=HEAD
+hudson.jboss40.rev=HEAD
+
+hudson.mail.recipients=thomas.diesler(a)jboss.com
+hudson.smtp.host=pobox-2.corp.redhat.com
+
# JBoss Repository
#jboss.repository=file:/home/tdiesler/cvs/jboss.local.repository
jboss.repository=http://repository.jboss.com
Modified: branches/jbossws-1.2.0/build/hudson/apache-tomcat/conf/server.xml
===================================================================
--- branches/jbossws-1.2.0/build/hudson/apache-tomcat/conf/server.xml 2007-01-24 20:48:56
UTC (rev 2092)
+++ branches/jbossws-1.2.0/build/hudson/apache-tomcat/conf/server.xml 2007-01-24 21:49:27
UTC (rev 2093)
@@ -25,10 +25,11 @@
<Service name="Catalina">
<!-- Define a non-SSL HTTP/1.1 Connector on port 8080 -->
- <Connector port="8180" maxHttpHeaderSize="8192"
maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
enableLookups="false" redirectPort="8443" acceptCount="100"
+ <Connector port="@hudson.port(a)" maxHttpHeaderSize="8192"
maxThreads="150"
+ minSpareThreads="25" maxSpareThreads="75"
+ enableLookups="false" redirectPort="8443"
acceptCount="100"
connectionTimeout="20000" disableUploadTimeout="true"/>
-
<!-- Define the top level container in our container hierarchy -->
<Engine name="Catalina" defaultHost="localhost">
Modified: branches/jbossws-1.2.0/build/hudson/hudson-home/config.xml
===================================================================
--- branches/jbossws-1.2.0/build/hudson/hudson-home/config.xml 2007-01-24 20:48:56 UTC
(rev 2092)
+++ branches/jbossws-1.2.0/build/hudson/hudson-home/config.xml 2007-01-24 21:49:27 UTC
(rev 2093)
@@ -1,6 +1,6 @@
<?xml version='1.0' encoding='UTF-8'?>
<hudson>
- <numExecutors>2</numExecutors>
+ <numExecutors>1</numExecutors>
<useSecurity>false</useSecurity>
<systemMessage><!--a
href="http://labs.jboss.com/portal/jbossws">&...;
<img
src="http://labs.jboss.com/file-access/default/theme/images/spot...
border=0/>
Deleted: branches/jbossws-1.2.0/build/hudson/hudson-home/hudson.scm.CVSSCM.xml
===================================================================
--- branches/jbossws-1.2.0/build/hudson/hudson-home/hudson.scm.CVSSCM.xml 2007-01-24
20:48:56 UTC (rev 2092)
+++ branches/jbossws-1.2.0/build/hudson/hudson-home/hudson.scm.CVSSCM.xml 2007-01-24
21:49:27 UTC (rev 2093)
@@ -1,5 +0,0 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<hudson.scm.CVSSCM-DescriptorImpl>
- <cvsPassFile></cvsPassFile>
- <browsers/>
-</hudson.scm.CVSSCM-DescriptorImpl>
\ No newline at end of file
Deleted: branches/jbossws-1.2.0/build/hudson/hudson-home/hudson.scm.SubversionSCM.xml
===================================================================
---
branches/jbossws-1.2.0/build/hudson/hudson-home/hudson.scm.SubversionSCM.xml 2007-01-24
20:48:56 UTC (rev 2092)
+++
branches/jbossws-1.2.0/build/hudson/hudson-home/hudson.scm.SubversionSCM.xml 2007-01-24
21:49:27 UTC (rev 2093)
@@ -1,4 +0,0 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<hudson.scm.SubversionSCM-DescriptorImpl>
- <svnExe>svn</svnExe>
-</hudson.scm.SubversionSCM-DescriptorImpl>
\ No newline at end of file
Deleted: branches/jbossws-1.2.0/build/hudson/hudson-home/hudson.tasks.Ant.xml
===================================================================
--- branches/jbossws-1.2.0/build/hudson/hudson-home/hudson.tasks.Ant.xml 2007-01-24
20:48:56 UTC (rev 2092)
+++ branches/jbossws-1.2.0/build/hudson/hudson-home/hudson.tasks.Ant.xml 2007-01-24
21:49:27 UTC (rev 2093)
@@ -1,4 +0,0 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<hudson.tasks.Ant-DescriptorImpl>
- <installations/>
-</hudson.tasks.Ant-DescriptorImpl>
\ No newline at end of file
Modified: branches/jbossws-1.2.0/build/hudson/hudson-home/hudson.tasks.Mailer.xml
===================================================================
--- branches/jbossws-1.2.0/build/hudson/hudson-home/hudson.tasks.Mailer.xml 2007-01-24
20:48:56 UTC (rev 2092)
+++ branches/jbossws-1.2.0/build/hudson/hudson-home/hudson.tasks.Mailer.xml 2007-01-24
21:49:27 UTC (rev 2093)
@@ -1,7 +1,7 @@
<?xml version='1.0' encoding='UTF-8'?>
<hudson.tasks.Mailer-DescriptorImpl>
- <defaultSuffix>openj.net</defaultSuffix>
- <hudsonUrl>http://localhost:8180/hudson/</hudsonUrl>
- <adminAddress>heiko(a)openj.net</adminAddress>
- <smtpHost>openj.net</smtpHost>
+ <defaultSuffix>jboss.com</defaultSuffix>
+ <hudsonUrl>http://localhost:@hudson.port@/hudson/</hudsonUrl>
+ <adminAddress>thomas.diesler(a)jboss.com</adminAddress>
+ <smtpHost>@hudson.smtp.host(a)</smtpHost>
</hudson.tasks.Mailer-DescriptorImpl>
\ No newline at end of file
Deleted: branches/jbossws-1.2.0/build/hudson/hudson-home/hudson.tasks.Maven.xml
===================================================================
--- branches/jbossws-1.2.0/build/hudson/hudson-home/hudson.tasks.Maven.xml 2007-01-24
20:48:56 UTC (rev 2092)
+++ branches/jbossws-1.2.0/build/hudson/hudson-home/hudson.tasks.Maven.xml 2007-01-24
21:49:27 UTC (rev 2093)
@@ -1,4 +0,0 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<hudson.tasks.Maven-DescriptorImpl>
- <installations/>
-</hudson.tasks.Maven-DescriptorImpl>
\ No newline at end of file
Deleted: branches/jbossws-1.2.0/build/hudson/hudson-home/hudson.tasks.Shell.xml
===================================================================
--- branches/jbossws-1.2.0/build/hudson/hudson-home/hudson.tasks.Shell.xml 2007-01-24
20:48:56 UTC (rev 2092)
+++ branches/jbossws-1.2.0/build/hudson/hudson-home/hudson.tasks.Shell.xml 2007-01-24
21:49:27 UTC (rev 2093)
@@ -1,4 +0,0 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<hudson.tasks.Shell-DescriptorImpl>
- <shell>/bin/sh</shell>
-</hudson.tasks.Shell-DescriptorImpl>
\ No newline at end of file
Deleted: branches/jbossws-1.2.0/build/hudson/hudson-home/hudson.triggers.SCMTrigger.xml
===================================================================
---
branches/jbossws-1.2.0/build/hudson/hudson-home/hudson.triggers.SCMTrigger.xml 2007-01-24
20:48:56 UTC (rev 2092)
+++
branches/jbossws-1.2.0/build/hudson/hudson-home/hudson.triggers.SCMTrigger.xml 2007-01-24
21:49:27 UTC (rev 2093)
@@ -1,4 +0,0 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<hudson.triggers.SCMTrigger-DescriptorImpl>
- <maximumThreads>0</maximumThreads>
-</hudson.triggers.SCMTrigger-DescriptorImpl>
\ No newline at end of file
Modified: branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/AS-4.0/config.xml
===================================================================
--- branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/AS-4.0/config.xml 2007-01-24
20:48:56 UTC (rev 2092)
+++ branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/AS-4.0/config.xml 2007-01-24
21:49:27 UTC (rev 2093)
@@ -7,9 +7,15 @@
# Module settings
#
MODULE=AS-4.0
-HUDSON_HOME=(a)hudson.home@
+SVNBASE=Branch_4_0
-cd Branch_4_0
+if [ -f "$SVNBASE" ]; then
+ svn up -r(a)hudson.jboss40.rev@
https://svn.jboss.org/repos/jbossas/branches/$SVNBASE
+else
+ svn co -r(a)hudson.jboss40.rev@
https://svn.jboss.org/repos/jbossas/branches/$SVNBASE
+fi
+
+cd $SVNBASE
rm -f thirdparty/libraries.ent
./build/build.sh clean main
</command>
@@ -17,16 +23,13 @@
</builders>
<publishers class="vector">
<hudson.tasks.Mailer>
- <recipients>@hudson.mail(a)</recipients>
+ <recipients>@hudson.mail.recipients(a)</recipients>
<dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
<sendToIndividuals>false</sendToIndividuals>
</hudson.tasks.Mailer>
</publishers>
<buildWrappers class="vector"/>
- <scm class="hudson.scm.SubversionSCM">
-
<
modules>https://svn.jboss.org/repos/jbossas/branches/Branch_4_0</mo...
- <useUpdate>true</useUpdate>
- </scm>
+ <scm class="hudson.scm.NullSCM"/>
<canRoam>true</canRoam>
<disabled>false</disabled>
<enableRemoteTrigger>false</enableRemoteTrigger>
Modified: branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/AS-4.0-jdk14/config.xml
===================================================================
---
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/AS-4.0-jdk14/config.xml 2007-01-24
20:48:56 UTC (rev 2092)
+++
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/AS-4.0-jdk14/config.xml 2007-01-24
21:49:27 UTC (rev 2093)
@@ -7,27 +7,31 @@
# Module settings
#
MODULE=AS-4.0-jdk14
+SVNBASE=Branch_4_0
-export JAVA_HOME=(a)hudson.jdk14@
+if [ -f "$SVNBASE" ]; then
+ svn up -r(a)hudson.jboss40.rev@
https://svn.jboss.org/repos/jbossas/branches/$SVNBASE
+else
+ svn co -r(a)hudson.jboss40.rev@
https://svn.jboss.org/repos/jbossas/branches/$SVNBASE
+fi
-cd Branch_4_0
+cd $SVNBASE
rm -f thirdparty/libraries.ent
+
+export JAVA_HOME=(a)hudson.jdk14@
./build/build.sh clean main
</command>
</hudson.tasks.Shell>
</builders>
<publishers class="vector">
<hudson.tasks.Mailer>
- <recipients>@hudson.mail(a)</recipients>
+ <recipients>@hudson.mail.recipients(a)</recipients>
<dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
<sendToIndividuals>false</sendToIndividuals>
</hudson.tasks.Mailer>
</publishers>
<buildWrappers class="vector"/>
- <scm class="hudson.scm.SubversionSCM">
-
<
modules>https://svn.jboss.org/repos/jbossas/branches/Branch_4_0</mo...
- <useUpdate>true</useUpdate>
- </scm>
+ <scm class="hudson.scm.NullSCM"/>
<canRoam>true</canRoam>
<disabled>false</disabled>
<enableRemoteTrigger>false</enableRemoteTrigger>
Modified: branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/AS-4.2/config.xml
===================================================================
--- branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/AS-4.2/config.xml 2007-01-24
20:48:56 UTC (rev 2092)
+++ branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/AS-4.2/config.xml 2007-01-24
21:49:27 UTC (rev 2093)
@@ -7,9 +7,15 @@
# Module settings
#
MODULE=AS-4.2
-HUDSON_HOME=(a)hudson.home@
+SVNBASE=Branch_4_2
-cd Branch_4_2
+if [ -f "$SVNBASE" ]; then
+ svn up -r(a)hudson.jboss42.rev@
https://svn.jboss.org/repos/jbossas/branches/$SVNBASE
+else
+ svn co -r(a)hudson.jboss42.rev@
https://svn.jboss.org/repos/jbossas/branches/$SVNBASE
+fi
+
+cd $SVNBASE
rm -f thirdparty/libraries.ent
./build/build.sh clean main
</command>
@@ -17,16 +23,13 @@
</builders>
<publishers class="vector">
<hudson.tasks.Mailer>
- <recipients>@hudson.mail(a)</recipients>
+ <recipients>@hudson.mail.recipients(a)</recipients>
<dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
<sendToIndividuals>false</sendToIndividuals>
</hudson.tasks.Mailer>
</publishers>
<buildWrappers class="vector"/>
- <scm class="hudson.scm.SubversionSCM">
-
<
modules>https://svn.jboss.org/repos/jbossas/branches/Branch_4_2</mo...
- <useUpdate>true</useUpdate>
- </scm>
+ <scm class="hudson.scm.NullSCM"/>
<canRoam>true</canRoam>
<disabled>false</disabled>
<enableRemoteTrigger>false</enableRemoteTrigger>
Modified: branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/AS-5.0/config.xml
===================================================================
--- branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/AS-5.0/config.xml 2007-01-24
20:48:56 UTC (rev 2092)
+++ branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/AS-5.0/config.xml 2007-01-24
21:49:27 UTC (rev 2093)
@@ -7,9 +7,15 @@
# Module settings
#
MODULE=AS-5.0
-HUDSON_HOME=(a)hudson.home@
-
-cd trunk
+SVNBASE=trunk
+
+if [ -f "$SVNBASE" ]; then
+ svn up -r(a)hudson.jboss50.rev@
https://svn.jboss.org/repos/jbossas/$SVNBASE
+else
+ svn co -r(a)hudson.jboss50.rev@
https://svn.jboss.org/repos/jbossas/$SVNBASE
+fi
+
+cd $SVNBASE
rm -f thirdparty/libraries.ent
./build/build.sh clean main
</command>
@@ -17,16 +23,13 @@
</builders>
<publishers class="vector">
<hudson.tasks.Mailer>
- <recipients>@hudson.mail(a)</recipients>
+ <recipients>@hudson.mail.recipients(a)</recipients>
<dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
<sendToIndividuals>false</sendToIndividuals>
</hudson.tasks.Mailer>
</publishers>
<buildWrappers class="vector"/>
- <scm class="hudson.scm.SubversionSCM">
- <
modules>https://svn.jboss.org/repos/jbossas/trunk</modules>
- <useUpdate>true</useUpdate>
- </scm>
+ <scm class="hudson.scm.NullSCM"/>
<canRoam>true</canRoam>
<disabled>false</disabled>
<enableRemoteTrigger>false</enableRemoteTrigger>
Modified:
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBAS-Tests-AS-4.0/config.xml
===================================================================
---
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBAS-Tests-AS-4.0/config.xml 2007-01-24
20:48:56 UTC (rev 2092)
+++
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBAS-Tests-AS-4.0/config.xml 2007-01-24
21:49:27 UTC (rev 2093)
@@ -50,7 +50,7 @@
<testResults>../../AS-4.0/workspace/trunk/teestsuite/output/reports/*.xml</testResults>
</hudson.tasks.junit.JUnitResultArchiver>
<hudson.tasks.Mailer>
- <recipients>@hudson.mail(a)</recipients>
+ <recipients>@hudson.mail.recipients(a)</recipients>
<dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
<sendToIndividuals>false</sendToIndividuals>
</hudson.tasks.Mailer>
Modified:
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBAS-Tests-AS-4.0-jdk14/config.xml
===================================================================
---
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBAS-Tests-AS-4.0-jdk14/config.xml 2007-01-24
20:48:56 UTC (rev 2092)
+++
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBAS-Tests-AS-4.0-jdk14/config.xml 2007-01-24
21:49:27 UTC (rev 2093)
@@ -51,7 +51,7 @@
<testResults>../../AS-4.0/workspace/trunk/teestsuite/output/reports/*.xml</testResults>
</hudson.tasks.junit.JUnitResultArchiver>
<hudson.tasks.Mailer>
- <recipients>@hudson.mail(a)</recipients>
+ <recipients>@hudson.mail.recipients(a)</recipients>
<dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
<sendToIndividuals>false</sendToIndividuals>
</hudson.tasks.Mailer>
Modified:
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBAS-Tests-AS-4.2/config.xml
===================================================================
---
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBAS-Tests-AS-4.2/config.xml 2007-01-24
20:48:56 UTC (rev 2092)
+++
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBAS-Tests-AS-4.2/config.xml 2007-01-24
21:49:27 UTC (rev 2093)
@@ -50,7 +50,7 @@
<testResults>../../AS-4.2/workspace/trunk/teestsuite/output/reports/*.xml</testResults>
</hudson.tasks.junit.JUnitResultArchiver>
<hudson.tasks.Mailer>
- <recipients>@hudson.mail(a)</recipients>
+ <recipients>@hudson.mail.recipients(a)</recipients>
<dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
<sendToIndividuals>false</sendToIndividuals>
</hudson.tasks.Mailer>
Modified:
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBAS-Tests-AS-5.0/config.xml
===================================================================
---
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBAS-Tests-AS-5.0/config.xml 2007-01-24
20:48:56 UTC (rev 2092)
+++
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBAS-Tests-AS-5.0/config.xml 2007-01-24
21:49:27 UTC (rev 2093)
@@ -50,7 +50,7 @@
<testResults>../../AS-5.0/workspace/trunk/teestsuite/output/reports/*.xml</testResults>
</hudson.tasks.junit.JUnitResultArchiver>
<hudson.tasks.Mailer>
- <recipients>@hudson.mail(a)</recipients>
+ <recipients>@hudson.mail.recipients(a)</recipients>
<dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
<sendToIndividuals>false</sendToIndividuals>
</hudson.tasks.Mailer>
Modified:
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBWS-Samples-AS-4.0/config.xml
===================================================================
---
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBWS-Samples-AS-4.0/config.xml 2007-01-24
20:48:56 UTC (rev 2092)
+++
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBWS-Samples-AS-4.0/config.xml 2007-01-24
21:49:27 UTC (rev 2093)
@@ -55,7 +55,7 @@
<testResults>@svn.basename(a)/jbossws-tests/output/reports/*.xml</testResults>
</hudson.tasks.junit.JUnitResultArchiver>
<hudson.tasks.Mailer>
- <recipients>@hudson.mail(a)</recipients>
+ <recipients>@hudson.mail.recipients(a)</recipients>
<dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
<sendToIndividuals>false</sendToIndividuals>
</hudson.tasks.Mailer>
Modified:
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBWS-Samples-AS-4.0-jdk14/config.xml
===================================================================
---
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBWS-Samples-AS-4.0-jdk14/config.xml 2007-01-24
20:48:56 UTC (rev 2092)
+++
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBWS-Samples-AS-4.0-jdk14/config.xml 2007-01-24
21:49:27 UTC (rev 2093)
@@ -56,7 +56,7 @@
<testResults>@svn.basename(a)/jbossws-tests/output/reports/*.xml</testResults>
</hudson.tasks.junit.JUnitResultArchiver>
<hudson.tasks.Mailer>
- <recipients>@hudson.mail(a)</recipients>
+ <recipients>@hudson.mail.recipients(a)</recipients>
<dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
<sendToIndividuals>false</sendToIndividuals>
</hudson.tasks.Mailer>
Modified:
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBWS-Samples-AS-4.2/config.xml
===================================================================
---
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBWS-Samples-AS-4.2/config.xml 2007-01-24
20:48:56 UTC (rev 2092)
+++
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBWS-Samples-AS-4.2/config.xml 2007-01-24
21:49:27 UTC (rev 2093)
@@ -55,7 +55,7 @@
<testResults>@svn.basename(a)/jbossws-tests/output/reports/*.xml</testResults>
</hudson.tasks.junit.JUnitResultArchiver>
<hudson.tasks.Mailer>
- <recipients>@hudson.mail(a)</recipients>
+ <recipients>@hudson.mail.recipients(a)</recipients>
<dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
<sendToIndividuals>false</sendToIndividuals>
</hudson.tasks.Mailer>
Modified:
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBWS-Samples-AS-5.0/config.xml
===================================================================
---
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBWS-Samples-AS-5.0/config.xml 2007-01-24
20:48:56 UTC (rev 2092)
+++
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBWS-Samples-AS-5.0/config.xml 2007-01-24
21:49:27 UTC (rev 2093)
@@ -55,7 +55,7 @@
<testResults>@svn.basename(a)/jbossws-tests/output/reports/*.xml</testResults>
</hudson.tasks.junit.JUnitResultArchiver>
<hudson.tasks.Mailer>
- <recipients>@hudson.mail(a)</recipients>
+ <recipients>@hudson.mail.recipients(a)</recipients>
<dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
<sendToIndividuals>false</sendToIndividuals>
</hudson.tasks.Mailer>
Modified:
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBWS-Samples-TC-5.5/config.xml
===================================================================
---
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBWS-Samples-TC-5.5/config.xml 2007-01-24
20:48:56 UTC (rev 2092)
+++
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBWS-Samples-TC-5.5/config.xml 2007-01-24
21:49:27 UTC (rev 2093)
@@ -53,7 +53,7 @@
<testResults>@svn.basename(a)/jbossws-tests/output/reports/*.xml</testResults>
</hudson.tasks.junit.JUnitResultArchiver>
<hudson.tasks.Mailer>
- <recipients>@hudson.mail(a)</recipients>
+ <recipients>@hudson.mail.recipients(a)</recipients>
<dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
<sendToIndividuals>false</sendToIndividuals>
</hudson.tasks.Mailer>
Modified:
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBWS-Tests-AS-4.0/config.xml
===================================================================
---
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBWS-Tests-AS-4.0/config.xml 2007-01-24
20:48:56 UTC (rev 2092)
+++
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBWS-Tests-AS-4.0/config.xml 2007-01-24
21:49:27 UTC (rev 2093)
@@ -55,7 +55,7 @@
<testResults>@svn.basename(a)/jbossws-tests/output/reports/*.xml</testResults>
</hudson.tasks.junit.JUnitResultArchiver>
<hudson.tasks.Mailer>
- <recipients>@hudson.mail(a)</recipients>
+ <recipients>@hudson.mail.recipients(a)</recipients>
<dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
<sendToIndividuals>false</sendToIndividuals>
</hudson.tasks.Mailer>
Modified:
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBWS-Tests-AS-4.0-jdk14/config.xml
===================================================================
---
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBWS-Tests-AS-4.0-jdk14/config.xml 2007-01-24
20:48:56 UTC (rev 2092)
+++
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBWS-Tests-AS-4.0-jdk14/config.xml 2007-01-24
21:49:27 UTC (rev 2093)
@@ -56,7 +56,7 @@
<testResults>@svn.basename(a)/jbossws-tests/output/reports/*.xml</testResults>
</hudson.tasks.junit.JUnitResultArchiver>
<hudson.tasks.Mailer>
- <recipients>@hudson.mail(a)</recipients>
+ <recipients>@hudson.mail.recipients(a)</recipients>
<dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
<sendToIndividuals>false</sendToIndividuals>
</hudson.tasks.Mailer>
Modified:
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBWS-Tests-AS-4.2/config.xml
===================================================================
---
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBWS-Tests-AS-4.2/config.xml 2007-01-24
20:48:56 UTC (rev 2092)
+++
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBWS-Tests-AS-4.2/config.xml 2007-01-24
21:49:27 UTC (rev 2093)
@@ -55,7 +55,7 @@
<testResults>@svn.basename(a)/jbossws-tests/output/reports/*.xml</testResults>
</hudson.tasks.junit.JUnitResultArchiver>
<hudson.tasks.Mailer>
- <recipients>@hudson.mail(a)</recipients>
+ <recipients>@hudson.mail.recipients(a)</recipients>
<dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
<sendToIndividuals>false</sendToIndividuals>
</hudson.tasks.Mailer>
Modified:
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBWS-Tests-AS-5.0/config.xml
===================================================================
---
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBWS-Tests-AS-5.0/config.xml 2007-01-24
20:48:56 UTC (rev 2092)
+++
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBWS-Tests-AS-5.0/config.xml 2007-01-24
21:49:27 UTC (rev 2093)
@@ -55,7 +55,7 @@
<testResults>@svn.basename(a)/jbossws-tests/output/reports/*.xml</testResults>
</hudson.tasks.junit.JUnitResultArchiver>
<hudson.tasks.Mailer>
- <recipients>@hudson.mail(a)</recipients>
+ <recipients>@hudson.mail.recipients(a)</recipients>
<dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
<sendToIndividuals>false</sendToIndividuals>
</hudson.tasks.Mailer>
Modified:
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBWS-Tests-TC-5.5/config.xml
===================================================================
---
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBWS-Tests-TC-5.5/config.xml 2007-01-24
20:48:56 UTC (rev 2092)
+++
branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/JBWS-Tests-TC-5.5/config.xml 2007-01-24
21:49:27 UTC (rev 2093)
@@ -53,7 +53,7 @@
<testResults>@svn.basename(a)/jbossws-tests/output/reports/*.xml</testResults>
</hudson.tasks.junit.JUnitResultArchiver>
<hudson.tasks.Mailer>
- <recipients>@hudson.mail(a)</recipients>
+ <recipients>@hudson.mail.recipients(a)</recipients>
<dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
<sendToIndividuals>false</sendToIndividuals>
</hudson.tasks.Mailer>
Modified: branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/TC-5.5/config.xml
===================================================================
--- branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/TC-5.5/config.xml 2007-01-24
20:48:56 UTC (rev 2092)
+++ branches/jbossws-1.2.0/build/hudson/hudson-home/jobs/TC-5.5/config.xml 2007-01-24
21:49:27 UTC (rev 2093)
@@ -22,7 +22,7 @@
</builders>
<publishers class="vector">
<hudson.tasks.Mailer>
- <recipients>@hudson.mail(a)</recipients>
+ <recipients>@hudson.mail.recipients(a)</recipients>
<dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
<sendToIndividuals>false</sendToIndividuals>
</hudson.tasks.Mailer>