JBoss Tools SVN: r30134 - in trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui: widget/editor and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: akazakov
Date: 2011-03-29 21:02:56 -0400 (Tue, 29 Mar 2011)
New Revision: 30134
Modified:
trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/preferences/SeamPreferencePage.java
trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/widget/editor/SeamRuntimeListFieldEditor.java
Log:
https://issues.jboss.org/browse/JBIDE-8626
Modified: trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/preferences/SeamPreferencePage.java
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/preferences/SeamPreferencePage.java 2011-03-30 00:41:39 UTC (rev 30133)
+++ trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/preferences/SeamPreferencePage.java 2011-03-30 01:02:56 UTC (rev 30134)
@@ -14,7 +14,6 @@
import java.util.ArrayList;
import java.util.Arrays;
import java.util.List;
-import java.util.Map;
import org.eclipse.jface.preference.PreferencePage;
import org.eclipse.swt.SWT;
@@ -67,7 +66,6 @@
GridLayout gl = new GridLayout(COLUMNS, false);
root.setLayout(gl);
seamRuntimes.doFillIntoGrid(root);
-
return root;
}
@@ -86,14 +84,6 @@
*/
@Override
protected void performApply() {
- for (SeamRuntime rt : seamRuntimes.getAddedSeamRuntimes()) {
- SeamRuntimeManager.getInstance().addRuntime(rt);
- }
- seamRuntimes.getAddedSeamRuntimes().clear();
- for (SeamRuntime rt : seamRuntimes.getRemoved()) {
- SeamRuntimeManager.getInstance().removeRuntime(rt);
- }
- seamRuntimes.getRemoved().clear();
List<SeamRuntime> defaultRuntimes = seamRuntimes.getDefaultSeamRuntimes();
// reset all default runtimes
for (SeamRuntime seamRuntime : SeamRuntimeManager.getInstance().getRuntimes()) {
@@ -104,19 +94,6 @@
seamRuntime.setDefault(true);
}
seamRuntimes.getDefaultSeamRuntimes().clear();
- Map<SeamRuntime, SeamRuntime> changed = seamRuntimes.getChangedSeamRuntimes();
- for (SeamRuntime c : changed.keySet()) {
- SeamRuntime o = changed.get(c);
- o.setHomeDir(c.getHomeDir());
- o.setVersion(c.getVersion());
- String oldName = o.getName();
- String newName = c.getName();
- if (!oldName.equals(newName)) {
- SeamRuntimeManager.getInstance().changeRuntimeName(oldName, newName);
- }
- }
- seamRuntimes.getChangedSeamRuntimes().clear();
-
SeamRuntimeManager.getInstance().save();
}
Modified: trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/widget/editor/SeamRuntimeListFieldEditor.java
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/widget/editor/SeamRuntimeListFieldEditor.java 2011-03-30 00:41:39 UTC (rev 30133)
+++ trunk/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/widget/editor/SeamRuntimeListFieldEditor.java 2011-03-30 01:02:56 UTC (rev 30134)
@@ -66,6 +66,7 @@
import org.jboss.tools.seam.core.SeamCorePlugin;
import org.jboss.tools.seam.core.SeamUtil;
import org.jboss.tools.seam.core.project.facet.SeamRuntime;
+import org.jboss.tools.seam.core.project.facet.SeamRuntimeManager;
import org.jboss.tools.seam.core.project.facet.SeamVersion;
import org.jboss.tools.seam.internal.core.project.facet.ISeamFacetDataModelProperties;
import org.jboss.tools.seam.ui.SeamUIMessages;
@@ -172,6 +173,31 @@
return removed;
}
+ public void performApply() {
+ for (SeamRuntime rt : getAddedSeamRuntimes()) {
+ SeamRuntimeManager.getInstance().addRuntime(rt);
+ }
+ getAddedSeamRuntimes().clear();
+ for (SeamRuntime rt : getRemoved()) {
+ SeamRuntimeManager.getInstance().removeRuntime(rt);
+ }
+ getRemoved().clear();
+ Map<SeamRuntime, SeamRuntime> changed = getChangedSeamRuntimes();
+ for (SeamRuntime c : changed.keySet()) {
+ SeamRuntime o = changed.get(c);
+ o.setHomeDir(c.getHomeDir());
+ o.setVersion(c.getVersion());
+ String oldName = o.getName();
+ String newName = c.getName();
+ if (!oldName.equals(newName)) {
+ SeamRuntimeManager.getInstance().changeRuntimeName(oldName, newName);
+ }
+ }
+ getChangedSeamRuntimes().clear();
+
+ SeamRuntimeManager.getInstance().save();
+ }
+
/**
* TBD
*
@@ -1031,6 +1057,7 @@
dialog.open();
tableView.refresh();
setDefaultRuntimes();
+ performApply();
}
public void run(String name, String version) {
@@ -1046,6 +1073,7 @@
dialog.open();
tableView.refresh();
setDefaultRuntimes();
+ performApply();
}
}
@@ -1096,6 +1124,7 @@
tableView.setSelection(new StructuredSelection(c));
}
}
+ performApply();
}
private SeamRuntime findChangedRuntime(SeamRuntime source) {
@@ -1140,6 +1169,7 @@
}
tableView.refresh();
setDefaultRuntimes();
+ performApply();
}
private void removeRuntime(SeamRuntime r) {
14 years, 9 months
JBoss Tools SVN: r30133 - in trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevStudio_Trunk/job: devstudio-5.0_trunk.target-platform and 45 other directories.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-03-29 20:41:39 -0400 (Tue, 29 Mar 2011)
New Revision: 30133
Added:
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
Removed:
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
Log:
push updated config.*.xml files to Hudson and track here
Added: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (rev 0)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:41:39 UTC (rev 30133)
@@ -0,0 +1,106 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <actions/>
+ <description>Denis' new JBDS installer build
+
+<p>View <a href="./ws/jbds-build/workspace/.metadata/.log/*view*/">workspace log</a> or <a href="./lastBuild/console">console log</a>
+
+<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2></description>
+ <logRotator>
+ <daysToKeep>-1</daysToKeep>
+ <numToKeep>10</numToKeep>
+ <artifactDaysToKeep>-1</artifactDaysToKeep>
+ <artifactNumToKeep>-1</artifactNumToKeep>
+ </logRotator>
+ <keepDependencies>false</keepDependencies>
+ <properties>
+ <hudson.model.ParametersDefinitionProperty>
+ <parameterDefinitions>
+ <hudson.model.ChoiceParameterDefinition>
+ <name>PATHSUFFIX</name>
+ <description>If building from trunk, use "trunk". <br/>
+If building from a branch, use "branch".</description>
+ <choices class="java.util.Arrays$ArrayList">
+ <a class="string-array">
+ <string>trunk</string>
+ <string>branch</string>
+ </a>
+ </choices>
+ </hudson.model.ChoiceParameterDefinition>
+ <hudson.model.ChoiceParameterDefinition>
+ <name>BUILDTYPE</name>
+ <description>Nightly or Release?</description>
+ <choices class="java.util.Arrays$ArrayList">
+ <a class="string-array">
+ <string>N</string>
+ <string>R</string>
+ </a>
+ </choices>
+ </hudson.model.ChoiceParameterDefinition>
+ </parameterDefinitions>
+ </hudson.model.ParametersDefinitionProperty>
+ <hudson.plugins.descriptionsetter.JobByDescription/>
+ <hudson.plugins.disk__usage.DiskUsageProperty/>
+ <hudson.plugins.jira.JiraProjectProperty>
+ <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
+ </hudson.plugins.jira.JiraProjectProperty>
+ </properties>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>https://svn.jboss.org/repos/devstudio/trunk/releng/org.jboss.ide.eclipse....</remote>
+ <local>org.jboss.ide.eclipse.releng</local>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>https://svn.jboss.org/repos/devstudio/trunk/devstudio-installer</remote>
+ <local>devstudio-trunk/devstudio-installer</local>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <doRevert>false</doRevert>
+ <browser class="hudson.scm.browsers.FishEyeSVN">
+ <url>http://fisheye.jboss.com/browse/JBossTools/</url>
+ <rootModule/>
+ </browser>
+ <excludedRegions/>
+ <includedRegions/>
+ <excludedUsers/>
+ <excludedRevprop/>
+ <excludedCommitMessages/>
+ </scm>
+ <assignedNode>RHEL5_any</assignedNode>
+ <canRoam>false</canRoam>
+ <disabled>false</disabled>
+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
+ <jdk>java16</jdk>
+ <triggers class="vector">
+ <hudson.triggers.SCMTrigger>
+ <spec>0 */6 * * * </spec>
+ </hudson.triggers.SCMTrigger>
+ </triggers>
+ <concurrentBuild>false</concurrentBuild>
+ <builders>
+ <hudson.tasks.Shell>
+ <command># This script is run here: http://hudson.qa.jboss.com/hudson/view/DevStudio/job/devstudio-nightly/co...
+# And archived here: https://svn.jboss.org/repos/devstudio/trunk/releng/org.jboss.ide.eclipse....
+export ANT_OPTS="$ANT_OPTS -DskipSources=true"
+export DESTINATION=/qa/services/http/binaries/RHDS/builds/staging/${JOB_NAME}
+mkdir -p /qa/services/http/binaries/RHDS/builds/staging/devstudio-4.0_trunk.product/builds/nightly/trunk/
+mkdir -p /qa/services/http/binaries/RHDS/builds/staging/devstudio-4.0_trunk.product/updates/nightly/trunk/
+CONFIG=jbds-all-package . ${WORKSPACE}/org.jboss.ide.eclipse.releng/hudson/devstudio-nightly.sh
+
+
+</command>
+ </hudson.tasks.Shell>
+ </builders>
+ <publishers/>
+ <buildWrappers>
+ <hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <timeoutMinutes>480</timeoutMinutes>
+ <failBuild>false</failBuild>
+ </hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <hudson.plugins.xvnc.Xvnc>
+ <takeScreenshot>false</takeScreenshot>
+ </hudson.plugins.xvnc.Xvnc>
+ </buildWrappers>
+</project>
\ No newline at end of file
Deleted: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:31:46 UTC (rev 30132)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:41:39 UTC (rev 30133)
@@ -1,114 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project>
- <actions/>
- <description>p2 mirror an update site consisting of the contents of the target platform, monitoring SVN for changes.
-
-<p>Repo is created outside of Hudson workspace for reuse between multiple builds.
-
-<ul>
-<li>/home/hudson/static_build_env/jbds/tools/sources/JBDS-REPO_3.3.indigo/ (sync'd to: /home/hudson/static_build_env/jbds/jbds-target-platform_3.3.indigo)
-<li><a href="http://reports.qa.atl.jboss.com/binaries/RHDS/updates/jbds-target-platfor...">http://reports.qa.atl.jboss.com/binaries/RHDS/updates/jbds-target-platform_3.3.indigo/latest/</a> (/qa/services/http/binaries/RHDS/updates/jbds-target-platform_3.3.indigo/latest/)
-<li><a href="http://reports.qa.atl.jboss.com/binaries/RHDS/updates/jbds-target-platfor...">http://reports.qa.atl.jboss.com/binaries/RHDS/updates/jbds-target-platform_3.3.indigo/jbds500-e37M5-wtp33M5.target.zip</a> (/qa/services/http/binaries/RHDS/updates/jbds-target-platform_3.3.indigo/jbds500-e37M5-wtp33M5.target.zip)
-</ul>
-
-<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2></description>
- <logRotator>
- <daysToKeep>5</daysToKeep>
- <numToKeep>5</numToKeep>
- <artifactDaysToKeep>-1</artifactDaysToKeep>
- <artifactNumToKeep>-1</artifactNumToKeep>
- </logRotator>
- <keepDependencies>false</keepDependencies>
- <properties>
- <hudson.model.ParametersDefinitionProperty>
- <parameterDefinitions>
- <hudson.model.StringParameterDefinition>
- <name>targetFile</name>
- <description/>
- <defaultValue>jbds.target</defaultValue>
- </hudson.model.StringParameterDefinition>
- <hudson.model.StringParameterDefinition>
- <name>repoDir</name>
- <description>path to stage the update site</description>
- <defaultValue>/home/hudson/static_build_env/jbds/tools/sources/JBDS-REPO_3.3.indigo</defaultValue>
- </hudson.model.StringParameterDefinition>
- <hudson.model.ChoiceParameterDefinition>
- <name>CLEAN</name>
- <description>Should we purge the existing repo and start from a clean one (true),
-or build on top of an existing one (false)?</description>
- <choices class="java.util.Arrays$ArrayList">
- <a class="string-array">
- <string>false</string>
- <string>true</string>
- </a>
- </choices>
- </hudson.model.ChoiceParameterDefinition>
- </parameterDefinitions>
- </hudson.model.ParametersDefinitionProperty>
- <hudson.plugins.descriptionsetter.JobByDescription/>
- <hudson.plugins.disk__usage.DiskUsageProperty/>
- <hudson.plugins.jira.JiraProjectProperty>
- <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
- </hudson.plugins.jira.JiraProjectProperty>
- </properties>
- <scm class="hudson.scm.SubversionSCM">
- <locations>
- <hudson.scm.SubversionSCM_-ModuleLocation>
- <remote>https://svn.jboss.org/repos/jbosstools/trunk/build</remote>
- <local>sources</local>
- </hudson.scm.SubversionSCM_-ModuleLocation>
- </locations>
- <useUpdate>true</useUpdate>
- <doRevert>false</doRevert>
- <browser class="hudson.scm.browsers.FishEyeSVN">
- <url>http://fisheye.jboss.com/browse/JBossTools/</url>
- <rootModule/>
- </browser>
- <excludedRegions/>
- <includedRegions/>
- <excludedUsers/>
- <excludedRevprop/>
- <excludedCommitMessages/>
- </scm>
- <assignedNode>RHEL_any</assignedNode>
- <canRoam>false</canRoam>
- <disabled>false</disabled>
- <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
- <jdk>java16_default</jdk>
- <triggers class="vector"/>
- <concurrentBuild>false</concurrentBuild>
- <builders>
- <hudson.tasks.Shell>
- <command># clean up pre-existing locally before starting fresh
-repoDir=/home/hudson/static_build_env/jbds/tools/sources/JBDS-REPO_3.3.indigo
-destinationPath=/home/hudson/static_build_env/jbds/jbds-target-platform_3.3.indigo
-if [[ $CLEAN == "true" ]]; then rm -fr ${repoDir} ${destinationPath}; fi
-</command>
- </hudson.tasks.Shell>
- <hudson.tasks.Ant>
- <targets>build.local.target.platform.repo</targets>
- <antName>ant-1.7.x</antName>
- <buildFile>${WORKSPACE}/sources/target-platform/build.xml</buildFile>
- <properties>useLatest=false</properties>
- </hudson.tasks.Ant>
- <hudson.tasks.Shell>
- <command># script here: http://anonsvn.jboss.org/repos/jbosstools/trunk/build/target-platform/pub...
-. ${WORKSPACE}/sources/target-platform/publish.sh -jbds_3.3.indigo</command>
- </hudson.tasks.Shell>
- </builders>
- <publishers>
- <hudson.plugins.textfinder.TextFinderPublisher>
- <regexp>ERROR|AILURE|\[exec\] Caused by:|No such file or directory|: Exception in |: Error in |\[exec\] Result: </regexp>
- <succeedIfFound>false</succeedIfFound>
- <unstableIfFound>false</unstableIfFound>
- <alsoCheckConsoleOutput>true</alsoCheckConsoleOutput>
- </hudson.plugins.textfinder.TextFinderPublisher>
- <hudson.plugins.ws__cleanup.WsCleanup/>
- </publishers>
- <buildWrappers>
- <hudson.plugins.build__timeout.BuildTimeoutWrapper>
- <timeoutMinutes>240</timeoutMinutes>
- <failBuild>false</failBuild>
- </hudson.plugins.build__timeout.BuildTimeoutWrapper>
- </buildWrappers>
-</project>
\ No newline at end of file
Copied: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (from rev 30132, trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...)
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (rev 0)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:41:39 UTC (rev 30133)
@@ -0,0 +1,114 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <actions/>
+ <description>p2 mirror an update site consisting of the contents of the target platform, monitoring SVN for changes.
+
+<p>Repo is created outside of Hudson workspace for reuse between multiple builds.
+
+<ul>
+<li>/home/hudson/static_build_env/jbds/tools/sources/JBDS-REPO_3.3.indigo/ (sync'd to: /home/hudson/static_build_env/jbds/jbds-target-platform_3.3.indigo)
+<li><a href="http://reports.qa.atl.jboss.com/binaries/RHDS/updates/jbds-target-platfor...">http://reports.qa.atl.jboss.com/binaries/RHDS/updates/jbds-target-platform_3.3.indigo/latest/</a> (/qa/services/http/binaries/RHDS/updates/jbds-target-platform_3.3.indigo/latest/)
+<li><a href="http://reports.qa.atl.jboss.com/binaries/RHDS/updates/jbds-target-platfor...">http://reports.qa.atl.jboss.com/binaries/RHDS/updates/jbds-target-platform_3.3.indigo/jbds500-e37M5-wtp33M5.target.zip</a> (/qa/services/http/binaries/RHDS/updates/jbds-target-platform_3.3.indigo/jbds500-e37M5-wtp33M5.target.zip)
+</ul>
+
+<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2></description>
+ <logRotator>
+ <daysToKeep>5</daysToKeep>
+ <numToKeep>5</numToKeep>
+ <artifactDaysToKeep>-1</artifactDaysToKeep>
+ <artifactNumToKeep>-1</artifactNumToKeep>
+ </logRotator>
+ <keepDependencies>false</keepDependencies>
+ <properties>
+ <hudson.model.ParametersDefinitionProperty>
+ <parameterDefinitions>
+ <hudson.model.StringParameterDefinition>
+ <name>targetFile</name>
+ <description/>
+ <defaultValue>jbds.target</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ <hudson.model.StringParameterDefinition>
+ <name>repoDir</name>
+ <description>path to stage the update site</description>
+ <defaultValue>/home/hudson/static_build_env/jbds/tools/sources/JBDS-REPO_3.3.indigo</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ <hudson.model.ChoiceParameterDefinition>
+ <name>CLEAN</name>
+ <description>Should we purge the existing repo and start from a clean one (true),
+or build on top of an existing one (false)?</description>
+ <choices class="java.util.Arrays$ArrayList">
+ <a class="string-array">
+ <string>false</string>
+ <string>true</string>
+ </a>
+ </choices>
+ </hudson.model.ChoiceParameterDefinition>
+ </parameterDefinitions>
+ </hudson.model.ParametersDefinitionProperty>
+ <hudson.plugins.descriptionsetter.JobByDescription/>
+ <hudson.plugins.disk__usage.DiskUsageProperty/>
+ <hudson.plugins.jira.JiraProjectProperty>
+ <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
+ </hudson.plugins.jira.JiraProjectProperty>
+ </properties>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>https://svn.jboss.org/repos/jbosstools/trunk/build</remote>
+ <local>sources</local>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <doRevert>false</doRevert>
+ <browser class="hudson.scm.browsers.FishEyeSVN">
+ <url>http://fisheye.jboss.com/browse/JBossTools/</url>
+ <rootModule/>
+ </browser>
+ <excludedRegions/>
+ <includedRegions/>
+ <excludedUsers/>
+ <excludedRevprop/>
+ <excludedCommitMessages/>
+ </scm>
+ <assignedNode>RHEL_any</assignedNode>
+ <canRoam>false</canRoam>
+ <disabled>false</disabled>
+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
+ <jdk>java16_default</jdk>
+ <triggers class="vector"/>
+ <concurrentBuild>false</concurrentBuild>
+ <builders>
+ <hudson.tasks.Shell>
+ <command># clean up pre-existing locally before starting fresh
+repoDir=/home/hudson/static_build_env/jbds/tools/sources/JBDS-REPO_3.3.indigo
+destinationPath=/home/hudson/static_build_env/jbds/jbds-target-platform_3.3.indigo
+if [[ $CLEAN == "true" ]]; then rm -fr ${repoDir} ${destinationPath}; fi
+</command>
+ </hudson.tasks.Shell>
+ <hudson.tasks.Ant>
+ <targets>build.local.target.platform.repo</targets>
+ <antName>ant-1.7.x</antName>
+ <buildFile>${WORKSPACE}/sources/target-platform/build.xml</buildFile>
+ <properties>useLatest=false</properties>
+ </hudson.tasks.Ant>
+ <hudson.tasks.Shell>
+ <command># script here: http://anonsvn.jboss.org/repos/jbosstools/trunk/build/target-platform/pub...
+. ${WORKSPACE}/sources/target-platform/publish.sh -jbds_3.3.indigo</command>
+ </hudson.tasks.Shell>
+ </builders>
+ <publishers>
+ <hudson.plugins.textfinder.TextFinderPublisher>
+ <regexp>ERROR|AILURE|\[exec\] Caused by:|No such file or directory|: Exception in |: Error in |\[exec\] Result: </regexp>
+ <succeedIfFound>false</succeedIfFound>
+ <unstableIfFound>false</unstableIfFound>
+ <alsoCheckConsoleOutput>true</alsoCheckConsoleOutput>
+ </hudson.plugins.textfinder.TextFinderPublisher>
+ <hudson.plugins.ws__cleanup.WsCleanup/>
+ </publishers>
+ <buildWrappers>
+ <hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <timeoutMinutes>240</timeoutMinutes>
+ <failBuild>false</failBuild>
+ </hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ </buildWrappers>
+</project>
\ No newline at end of file
Added: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (rev 0)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:41:39 UTC (rev 30133)
@@ -0,0 +1,174 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <actions/>
+ <description>Tycho-based build of JBDS update site, monitoring SVN for changes.
+
+<p><i>Build should take &lt; 30min.</i>
+
+<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2></description>
+ <logRotator>
+ <daysToKeep>-1</daysToKeep>
+ <numToKeep>10</numToKeep>
+ <artifactDaysToKeep>-1</artifactDaysToKeep>
+ <artifactNumToKeep>-1</artifactNumToKeep>
+ </logRotator>
+ <keepDependencies>false</keepDependencies>
+ <properties>
+ <hudson.model.ParametersDefinitionProperty>
+ <parameterDefinitions>
+ <hudson.model.StringParameterDefinition>
+ <name>MAVEN_FLAGS</name>
+ <description>Pass in lifecycle phase and extra flags to Maven, such as:
+<pre>
+clean :: clean before building *
+integration-test :: build and test *
+install :: build, test, and install into m2 repo *
+osgi-test:test :: just (re-)run test(s)
+
+-P hudson :: enable hudson build ID in feature/plugin qualifiers
+-P coverage :: enable coverage reporting
+-P helios :: use .target file to provision target
+-P helios-no-target :: don't use .target file to provision target; instead generate on the fly from MANIFEST.MF and feature.xml files
+-P helios-local-target :: use /home/hudson/static_build_env/jbds/target-platform/e36-wtp322.target as target against which to resolve deps
+-P hudson :: add hudson job # to generated plugin/feature qualifiers
+-P coverage :: support emma
+
+
+-Dmaven.test.skip :: skip compiling and running tests
+-Dmaven.repo.local=${WORKSPACE}/m2-repository :: path to local m2 repo
+
+-fae :: fail at end
+-fn :: fail never
+
+-o :: offline
+-B :: batch (non-interactive) mode
+-U :: check for updates
+-e :: if error occurs, dump stack into console
+
+-q :: quieter output
+
+-Dtarget.platform.site=file:///home/hudson/static_build_env/jbds/jbds-target-platform/jbds400-e361-wtp322.target/ (generated)
+or
+-Dtarget.platform.site=file:///qa/services/http/binaries/RHDS/requirements/helios/JBDS-4.0.0-target-p2repo/ (one-off created by hand)
+(see https://jira.jboss.org/browse/JBDS-1435, https://jira.jboss.org/browse/JBIDE-7778)
+</pre>
+
+</description>
+ <defaultValue>clean install -B -U -fae -e -P hudson -Dmaven.repo.local=${WORKSPACE}/m2-repository -Dtarget.platform.site=file:///qa/services/http/binaries/RHDS/requirements/helios/JBDS-4.0.0-target-p2repo/ -X</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ <hudson.model.ChoiceParameterDefinition>
+ <name>RELEASE</name>
+ <description>If a release, name zip w/ timestamp and build ID; otherwise call it "SNAPSHOT"</description>
+ <choices class="java.util.Arrays$ArrayList">
+ <a class="string-array">
+ <string>No</string>
+ <string>Yes</string>
+ </a>
+ </choices>
+ </hudson.model.ChoiceParameterDefinition>
+ <hudson.model.ChoiceParameterDefinition>
+ <name>update.site.description</name>
+ <description/>
+ <choices class="java.util.Arrays$ArrayList">
+ <a class="string-array">
+ <string>Nightly Build</string>
+ <string>Development Milestone</string>
+ <string>Stable Release</string>
+ </a>
+ </choices>
+ </hudson.model.ChoiceParameterDefinition>
+ </parameterDefinitions>
+ </hudson.model.ParametersDefinitionProperty>
+ <hudson.plugins.descriptionsetter.JobByDescription/>
+ <hudson.plugins.disk__usage.DiskUsageProperty/>
+ <hudson.plugins.jira.JiraProjectProperty>
+ <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
+ </hudson.plugins.jira.JiraProjectProperty>
+ </properties>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>https://svn.jboss.org/repos/devstudio/trunk/product</remote>
+ <local>sources</local>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>https://svn.jboss.org/repos/devstudio/trunk/transforms</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>https://svn.jboss.org/repos/jbosstools/trunk/build</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <doRevert>false</doRevert>
+ <browser class="hudson.scm.browsers.FishEyeSVN">
+ <url>http://fisheye.jboss.com/browse/JBossTools/</url>
+ <rootModule/>
+ </browser>
+ <excludedRegions/>
+ <includedRegions/>
+ <excludedUsers/>
+ <excludedRevprop/>
+ <excludedCommitMessages/>
+ </scm>
+ <assignedNode>RHEL5_any</assignedNode>
+ <canRoam>false</canRoam>
+ <disabled>false</disabled>
+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
+ <jdk>java16_default</jdk>
+ <triggers class="vector">
+ <hudson.triggers.SCMTrigger>
+ <spec>45 0-23/4 * * *</spec>
+ </hudson.triggers.SCMTrigger>
+ </triggers>
+ <concurrentBuild>false</concurrentBuild>
+ <builders>
+ <hudson.tasks.Shell>
+ <command>rm -rf ${WORKSPACE}/m2-repository</command>
+ </hudson.tasks.Shell>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <pom>${WORKSPACE}/build/parent/pom.xml</pom>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS} -DJOB_NAME=${JOB_NAME} -DBUILD_ID=${BUILD_ID} -DBUILD_NUMBER=${BUILD_NUMBER}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/sources/pom.xml</pom>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Shell>
+ <command># script here: http://anonsvn.jboss.org/repos/jbosstools/trunk/build/publish.sh
+DESTINATION=/qa/services/http/binaries/RHDS . ${WORKSPACE}/build/publish.sh</command>
+ </hudson.tasks.Shell>
+ </builders>
+ <publishers>
+ <hudson.tasks.BuildTrigger>
+ <childProjects>devstudio-5.0_trunk.product</childProjects>
+ <threshold>
+ <name>UNSTABLE</name>
+ <ordinal>1</ordinal>
+ <color>YELLOW</color>
+ </threshold>
+ </hudson.tasks.BuildTrigger>
+ <hudson.plugins.descriptionsetter.DescriptionSetterPublisher>
+ <regexp>(ERRORS FOUND: \d+|FAILURES FOUND: \d+)</regexp>
+ <regexpForFailed/>
+ <setForMatrix>false</setForMatrix>
+ </hudson.plugins.descriptionsetter.DescriptionSetterPublisher>
+ <hudson.plugins.textfinder.TextFinderPublisher>
+ <fileSet>results/*/logs/ERRORLOG.txt, results/*/logs/FAIL_LOG.txt</fileSet>
+ <regexp>(ERROR|FAILURE)</regexp>
+ <succeedIfFound>false</succeedIfFound>
+ <unstableIfFound>false</unstableIfFound>
+ <alsoCheckConsoleOutput>false</alsoCheckConsoleOutput>
+ </hudson.plugins.textfinder.TextFinderPublisher>
+ </publishers>
+ <buildWrappers>
+ <hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <timeoutMinutes>120</timeoutMinutes>
+ <failBuild>false</failBuild>
+ </hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ </buildWrappers>
+</project>
\ No newline at end of file
Added: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (rev 0)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:41:39 UTC (rev 30133)
@@ -0,0 +1,144 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <actions/>
+ <description>Tycho-based build, monitoring SVN for changes.
+
+<p><i>Build should take ~60min.</i>
+
+<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2></description>
+ <logRotator>
+ <daysToKeep>5</daysToKeep>
+ <numToKeep>5</numToKeep>
+ <artifactDaysToKeep>-1</artifactDaysToKeep>
+ <artifactNumToKeep>-1</artifactNumToKeep>
+ </logRotator>
+ <keepDependencies>false</keepDependencies>
+ <properties>
+ <hudson.model.ParametersDefinitionProperty>
+ <parameterDefinitions>
+ <hudson.model.StringParameterDefinition>
+ <name>MAVEN_FLAGS</name>
+ <description>Pass in lifecycle phase and extra flags to Maven, such as:
+<pre>
+clean :: clean before building *
+integration-test :: build and test *
+install :: build, test, and install into m2 repo *
+osgi-test:test :: just (re-)run test(s)
+
+-P hudson :: enable hudson build ID in feature/plugin qualifiers
+-P coverage :: enable coverage reporting
+
+-Dmaven.test.skip :: skip compiling and running tests
+-P helios :: use .target file to provision target
+-P helios-no-target :: don't use .target file to provision target; instead generate on the fly from MANIFEST.MF and feature.xml files
+-P helios-local-target :: use /home/hudson/static_build_env/jbds/target-platform/e36-wtp322.target as target against which to resolve deps
+-P hudson :: add hudson job # to generated plugin/feature qualifiers
+
+-Dmaven.repo.local=${WORKSPACE}/m2-repository :: path to local m2 repo
+
+-fae :: fail at end
+-fn :: fail never
+
+-o :: offline
+-B :: batch (non-interactive) mode
+-U :: check for updates
+-e :: if error occurs, dump stack into console
+
+-q :: quieter output</pre>
+</description>
+ <defaultValue>clean install -B -U -fae -P helios-local-target,hudson -Dmaven.repo.local=${WORKSPACE}/m2-repository</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ <hudson.model.ChoiceParameterDefinition>
+ <name>RELEASE</name>
+ <description>If a release, name zip w/ timestamp and build ID; otherwise call it "SNAPSHOT"</description>
+ <choices class="java.util.Arrays$ArrayList">
+ <a class="string-array">
+ <string>No</string>
+ <string>Yes</string>
+ </a>
+ </choices>
+ </hudson.model.ChoiceParameterDefinition>
+ <hudson.model.ChoiceParameterDefinition>
+ <name>update.site.description</name>
+ <description/>
+ <choices class="java.util.Arrays$ArrayList">
+ <a class="string-array">
+ <string>Nightly Build</string>
+ <string>Development Milestone</string>
+ <string>Stable Release</string>
+ </a>
+ </choices>
+ </hudson.model.ChoiceParameterDefinition>
+ </parameterDefinitions>
+ </hudson.model.ParametersDefinitionProperty>
+ <hudson.plugins.descriptionsetter.JobByDescription/>
+ <hudson.plugins.disk__usage.DiskUsageProperty/>
+ <hudson.plugins.jira.JiraProjectProperty>
+ <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
+ </hudson.plugins.jira.JiraProjectProperty>
+ </properties>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/build</remote>
+ <local>sources</local>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <doRevert>false</doRevert>
+ <browser class="hudson.scm.browsers.FishEyeSVN">
+ <url>http://fisheye.jboss.com/browse/JBossTools/</url>
+ <rootModule/>
+ </browser>
+ <excludedRegions/>
+ <includedRegions/>
+ <excludedUsers/>
+ <excludedRevprop/>
+ <excludedCommitMessages/>
+ </scm>
+ <assignedNode>RHEL_any</assignedNode>
+ <canRoam>false</canRoam>
+ <disabled>false</disabled>
+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
+ <jdk>java16_default</jdk>
+ <triggers class="vector"/>
+ <concurrentBuild>false</concurrentBuild>
+ <builders>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS} -DJOB_NAME=${JOB_NAME} -DBUILD_ID=${BUILD_ID} -DBUILD_NUMBER=${BUILD_NUMBER}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>parent/pom.xml</pom>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS} -DJOB_NAME=${JOB_NAME} -DBUILD_ID=${BUILD_ID} -DBUILD_NUMBER=${BUILD_NUMBER}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>aggregate/pom.xml</pom>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Shell>
+ <command># script here: http://anonsvn.jboss.org/repos/jbosstools/trunk/build/publish.sh
+# use "trunk" parameter to force results into /updates/nightly/trunk/ instead of /updates/nightly/jbosstools-3.2.0.*/
+. ${WORKSPACE}/sources/publish.sh trunk</command>
+ </hudson.tasks.Shell>
+ </builders>
+ <publishers>
+ <hudson.tasks.BuildTrigger>
+ <childProjects>devstudio-5.0_trunk.updatesite</childProjects>
+ <threshold>
+ <name>SUCCESS</name>
+ <ordinal>0</ordinal>
+ <color>BLUE</color>
+ </threshold>
+ </hudson.tasks.BuildTrigger>
+ <hudson.plugins.emotional__hudson.EmotionalHudsonPublisher/>
+ </publishers>
+ <buildWrappers>
+ <hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <timeoutMinutes>240</timeoutMinutes>
+ <failBuild>false</failBuild>
+ </hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ </buildWrappers>
+</project>
\ No newline at end of file
Added: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (rev 0)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:41:39 UTC (rev 30133)
@@ -0,0 +1,143 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <actions/>
+ <description>Nightly build using Tycho, monitoring SVN every 6 hrs for changes.
+
+<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2>
+</description>
+ <logRotator>
+ <daysToKeep>5</daysToKeep>
+ <numToKeep>5</numToKeep>
+ <artifactDaysToKeep>-1</artifactDaysToKeep>
+ <artifactNumToKeep>-1</artifactNumToKeep>
+ </logRotator>
+ <keepDependencies>false</keepDependencies>
+ <properties>
+ <hudson.model.ParametersDefinitionProperty>
+ <parameterDefinitions>
+ <hudson.model.StringParameterDefinition>
+ <name>MAVEN_FLAGS</name>
+ <description>Pass in lifecycle phase and extra flags to Maven, such as:
+<pre>
+clean :: clean before building *
+integration-test :: build and test *
+install :: build, test, and install into m2 repo *
+osgi-test:test :: just (re-)run test(s)
+
+-P hudson :: enable hudson build ID in feature/plugin qualifiers
+-P coverage :: enable coverage reporting
+
+-Dmaven.test.skip :: skip compiling and running tests
+-Dmaven.repo.local=${WORKSPACE}/m2-repository :: path to local m2 repo
+
+-fae :: fail at end
+-fn :: fail never
+
+-o :: offline
+-B :: batch (non-interactive) mode
+-U :: check for updates
+-e :: if error occurs, dump stack into console
+
+-q :: quieter output</pre>
+</description>
+ <defaultValue>clean install -B -U -fae -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ </parameterDefinitions>
+ </hudson.model.ParametersDefinitionProperty>
+ <hudson.plugins.descriptionsetter.JobByDescription/>
+ <hudson.plugins.disk__usage.DiskUsageProperty/>
+ <hudson.plugins.jira.JiraProjectProperty>
+ <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
+ </hudson.plugins.jira.JiraProjectProperty>
+ </properties>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/FIXME</remote>
+ <local>sources</local>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/build</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <doRevert>false</doRevert>
+ <browser class="hudson.scm.browsers.FishEyeSVN">
+ <url>http://fisheye.jboss.com/browse/JBossTools/</url>
+ <rootModule/>
+ </browser>
+ <excludedRegions/>
+ <includedRegions/>
+ <excludedUsers/>
+ <excludedRevprop/>
+ <excludedCommitMessages/>
+ </scm>
+ <assignedNode>RHEL_any</assignedNode>
+ <canRoam>false</canRoam>
+ <disabled>true</disabled>
+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
+ <jdk>java16_default</jdk>
+ <triggers class="vector">
+ <hudson.triggers.SCMTrigger>
+ <spec>20 3,9,15,21 * * * </spec>
+ </hudson.triggers.SCMTrigger>
+ </triggers>
+ <concurrentBuild>false</concurrentBuild>
+ <builders>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/build/parent/pom.xml</pom>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS} -DJOB_NAME=${JOB_NAME} -DBUILD_ID=${BUILD_ID} -DBUILD_NUMBER=${BUILD_NUMBER}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/sources/pom.xml</pom>
+ <usePrivateRepository>true</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Shell>
+ <command># script here: http://anonsvn.jboss.org/repos/jbosstools/trunk/build/publish.sh
+. ${WORKSPACE}/build/publish.sh</command>
+ </hudson.tasks.Shell>
+ </builders>
+ <publishers>
+ <hudson.tasks.junit.JUnitResultArchiver>
+ <testResults>**/TEST-*.xml</testResults>
+ <keepLongStdio>false</keepLongStdio>
+ <testDataPublishers/>
+ </hudson.tasks.junit.JUnitResultArchiver>
+ <hudson.tasks.ArtifactArchiver>
+ <artifacts>**/*Update*.zip</artifacts>
+ <excludes>**/target/**</excludes>
+ <latestOnly>true</latestOnly>
+ <zip>false</zip>
+ </hudson.tasks.ArtifactArchiver>
+ <hudson.plugins.textfinder.TextFinderPublisher>
+ <fileSet>results/*/logs/ERRORLOG.txt,results/*/logs/FAIL_LOG.txt</fileSet>
+ <regexp>ERROR|AILURE</regexp>
+ <succeedIfFound>false</succeedIfFound>
+ <unstableIfFound>true</unstableIfFound>
+ <alsoCheckConsoleOutput>false</alsoCheckConsoleOutput>
+ </hudson.plugins.textfinder.TextFinderPublisher>
+ <hudson.tasks.Mailer>
+ <recipients/>
+ <notifyEveryBuild>false</notifyEveryBuild>
+ <dontNotifyOnModules>false</dontNotifyOnModules>
+ <dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
+ <sendToIndividuals>true</sendToIndividuals>
+ </hudson.tasks.Mailer>
+ <hudson.plugins.emotional__hudson.EmotionalHudsonPublisher/>
+ </publishers>
+ <buildWrappers>
+ <hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <timeoutMinutes>120</timeoutMinutes>
+ <failBuild>false</failBuild>
+ </hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <hudson.plugins.xvnc.Xvnc>
+ <takeScreenshot>false</takeScreenshot>
+ </hudson.plugins.xvnc.Xvnc>
+ </buildWrappers>
+</project>
\ No newline at end of file
Added: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (rev 0)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:41:39 UTC (rev 30133)
@@ -0,0 +1,143 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <actions/>
+ <description>Nightly build using Tycho, monitoring SVN every 6 hrs for changes.
+
+<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2></description>
+ <logRotator>
+ <daysToKeep>5</daysToKeep>
+ <numToKeep>5</numToKeep>
+ <artifactDaysToKeep>-1</artifactDaysToKeep>
+ <artifactNumToKeep>-1</artifactNumToKeep>
+ </logRotator>
+ <keepDependencies>false</keepDependencies>
+ <properties>
+ <hudson.model.ParametersDefinitionProperty>
+ <parameterDefinitions>
+ <hudson.model.StringParameterDefinition>
+ <name>MAVEN_FLAGS</name>
+ <description>Pass in lifecycle phase and extra flags to Maven, such as:
+<pre>
+clean :: clean before building *
+integration-test :: build and test *
+install :: build, test, and install into m2 repo *
+osgi-test:test :: just (re-)run test(s)
+
+-P hudson :: enable hudson build ID in feature/plugin qualifiers
+-P coverage :: enable coverage reporting
+
+-Dmaven.test.skip :: skip compiling and running tests
+-Dmaven.repo.local=${WORKSPACE}/m2-repository :: path to local m2 repo
+
+-fae :: fail at end
+-fn :: fail never
+
+-o :: offline
+-B :: batch (non-interactive) mode
+-U :: check for updates
+-e :: if error occurs, dump stack into console
+
+-q :: quieter output</pre>
+</description>
+ <defaultValue>clean install -B -U -fae -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ </parameterDefinitions>
+ </hudson.model.ParametersDefinitionProperty>
+ <hudson.plugins.descriptionsetter.JobByDescription/>
+ <hudson.plugins.disk__usage.DiskUsageProperty/>
+ <hudson.plugins.jira.JiraProjectProperty>
+ <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
+ </hudson.plugins.jira.JiraProjectProperty>
+ </properties>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/archives</remote>
+ <local>sources</local>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/build</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <doRevert>false</doRevert>
+ <browser class="hudson.scm.browsers.FishEyeSVN">
+ <url>http://fisheye.jboss.com/browse/JBossTools/</url>
+ <rootModule/>
+ </browser>
+ <excludedRegions/>
+ <includedRegions/>
+ <excludedUsers/>
+ <excludedRevprop/>
+ <excludedCommitMessages/>
+ </scm>
+ <assignedNode>RHEL_any</assignedNode>
+ <canRoam>false</canRoam>
+ <disabled>false</disabled>
+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
+ <jdk>java16_default</jdk>
+ <triggers class="vector">
+ <hudson.triggers.SCMTrigger>
+ <spec>35 2,8,14,20 * * * </spec>
+ </hudson.triggers.SCMTrigger>
+ </triggers>
+ <concurrentBuild>false</concurrentBuild>
+ <builders>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/build/parent/pom.xml</pom>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS} -DJOB_NAME=${JOB_NAME} -DBUILD_ID=${BUILD_ID} -DBUILD_NUMBER=${BUILD_NUMBER}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/sources/pom.xml</pom>
+ <usePrivateRepository>true</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Shell>
+ <command># script here: http://anonsvn.jboss.org/repos/jbosstools/trunk/build/publish.sh
+. ${WORKSPACE}/build/publish.sh</command>
+ </hudson.tasks.Shell>
+ </builders>
+ <publishers>
+ <hudson.tasks.junit.JUnitResultArchiver>
+ <testResults>**/TEST-*.xml</testResults>
+ <keepLongStdio>false</keepLongStdio>
+ <testDataPublishers/>
+ </hudson.tasks.junit.JUnitResultArchiver>
+ <hudson.tasks.ArtifactArchiver>
+ <artifacts>**/*Update*.zip</artifacts>
+ <excludes>**/target/**</excludes>
+ <latestOnly>true</latestOnly>
+ <zip>false</zip>
+ </hudson.tasks.ArtifactArchiver>
+ <hudson.tasks.Mailer>
+ <recipients/>
+ <notifyEveryBuild>false</notifyEveryBuild>
+ <dontNotifyOnModules>false</dontNotifyOnModules>
+ <dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
+ <sendToIndividuals>true</sendToIndividuals>
+ </hudson.tasks.Mailer>
+ <hudson.plugins.emotional__hudson.EmotionalHudsonPublisher/>
+ <hudson.tasks.BuildTrigger>
+ <childProjects>jbosstools-3.3_trunk.component--as</childProjects>
+ <threshold>
+ <name>UNSTABLE</name>
+ <ordinal>1</ordinal>
+ <color>YELLOW</color>
+ </threshold>
+ </hudson.tasks.BuildTrigger>
+ </publishers>
+ <buildWrappers>
+ <hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <timeoutMinutes>120</timeoutMinutes>
+ <failBuild>false</failBuild>
+ </hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <hudson.plugins.xvnc.Xvnc>
+ <takeScreenshot>false</takeScreenshot>
+ </hudson.plugins.xvnc.Xvnc>
+ </buildWrappers>
+</project>
\ No newline at end of file
Added: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (rev 0)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:41:39 UTC (rev 30133)
@@ -0,0 +1,158 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <actions/>
+ <description>Nightly build using Tycho, monitoring SVN every 6 hrs for changes.
+
+<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2></description>
+ <logRotator>
+ <daysToKeep>5</daysToKeep>
+ <numToKeep>5</numToKeep>
+ <artifactDaysToKeep>-1</artifactDaysToKeep>
+ <artifactNumToKeep>-1</artifactNumToKeep>
+ </logRotator>
+ <keepDependencies>false</keepDependencies>
+ <properties>
+ <hudson.model.ParametersDefinitionProperty>
+ <parameterDefinitions>
+ <hudson.model.StringParameterDefinition>
+ <name>MAVEN_FLAGS</name>
+ <description>Pass in lifecycle phase and extra flags to Maven, such as:
+<pre>
+clean :: clean before building *
+integration-test :: build and test *
+install :: build, test, and install into m2 repo *
+osgi-test:test :: just (re-)run test(s)
+
+-P hudson :: enable hudson build ID in feature/plugin qualifiers
+-P coverage :: enable coverage reporting
+
+-Dmaven.test.skip :: skip compiling and running tests
+-Dmaven.repo.local=${WORKSPACE}/m2-repository :: path to local m2 repo
+
+-fae :: fail at end
+-fn :: fail never
+
+-o :: offline
+-B :: batch (non-interactive) mode
+-U :: check for updates
+-e :: if error occurs, dump stack into console
+
+-q :: quieter output</pre>
+</description>
+ <defaultValue>clean install -B -U -fn -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ </parameterDefinitions>
+ </hudson.model.ParametersDefinitionProperty>
+ <hudson.plugins.descriptionsetter.JobByDescription/>
+ <hudson.plugins.disk__usage.DiskUsageProperty/>
+ <hudson.plugins.jira.JiraProjectProperty>
+ <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
+ </hudson.plugins.jira.JiraProjectProperty>
+ </properties>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/as</remote>
+ <local>sources</local>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/build</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/requirements</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <doRevert>false</doRevert>
+ <browser class="hudson.scm.browsers.FishEyeSVN">
+ <url>http://fisheye.jboss.com/browse/JBossTools/</url>
+ <rootModule/>
+ </browser>
+ <excludedRegions/>
+ <includedRegions/>
+ <excludedUsers/>
+ <excludedRevprop/>
+ <excludedCommitMessages/>
+ </scm>
+ <assignedNode>RHEL5_any</assignedNode>
+ <canRoam>false</canRoam>
+ <disabled>false</disabled>
+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
+ <jdk>java16_default</jdk>
+ <triggers class="vector">
+ <hudson.triggers.SCMTrigger>
+ <spec>43 2,8,14,20 * * * </spec>
+ </hudson.triggers.SCMTrigger>
+ </triggers>
+ <concurrentBuild>false</concurrentBuild>
+ <builders>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/build/parent/pom.xml</pom>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS} -DJOB_NAME=${JOB_NAME} -DBUILD_ID=${BUILD_ID} -DBUILD_NUMBER=${BUILD_NUMBER}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/sources/pom.xml</pom>
+ <usePrivateRepository>true</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Shell>
+ <command># script here: http://anonsvn.jboss.org/repos/jbosstools/trunk/build/publish.sh
+. ${WORKSPACE}/build/publish.sh</command>
+ </hudson.tasks.Shell>
+ <hudson.tasks.Ant>
+ <targets>collect.test.results.for.hudson</targets>
+ <antName>ant-1.7.x</antName>
+ <buildFile>${WORKSPACE}/build/build.xml</buildFile>
+ </hudson.tasks.Ant>
+ </builders>
+ <publishers>
+ <hudson.tasks.junit.JUnitResultArchiver>
+ <testResults>**/TEST-*.xml</testResults>
+ <keepLongStdio>false</keepLongStdio>
+ <testDataPublishers/>
+ </hudson.tasks.junit.JUnitResultArchiver>
+ <hudson.tasks.ArtifactArchiver>
+ <artifacts>**/*Update*.zip</artifacts>
+ <excludes>**/target/**</excludes>
+ <latestOnly>true</latestOnly>
+ <zip>false</zip>
+ </hudson.tasks.ArtifactArchiver>
+ <hudson.tasks.BuildTrigger>
+ <childProjects>jbosstools-3.3_trunk.component--ws, jbosstools-3.3_trunk.component--deltacloud, jbosstools-3.3_trunk.component--seam</childProjects>
+ <threshold>
+ <name>UNSTABLE</name>
+ <ordinal>1</ordinal>
+ <color>YELLOW</color>
+ </threshold>
+ </hudson.tasks.BuildTrigger>
+ <hudson.plugins.textfinder.TextFinderPublisher>
+ <fileSet>results/*/logs/ERRORLOG.txt,results/*/logs/FAIL_LOG.txt</fileSet>
+ <regexp>ERROR|AILURE</regexp>
+ <succeedIfFound>false</succeedIfFound>
+ <unstableIfFound>true</unstableIfFound>
+ <alsoCheckConsoleOutput>false</alsoCheckConsoleOutput>
+ </hudson.plugins.textfinder.TextFinderPublisher>
+ <hudson.tasks.Mailer>
+ <recipients/>
+ <notifyEveryBuild>false</notifyEveryBuild>
+ <dontNotifyOnModules>false</dontNotifyOnModules>
+ <dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
+ <sendToIndividuals>true</sendToIndividuals>
+ </hudson.tasks.Mailer>
+ <hudson.plugins.emotional__hudson.EmotionalHudsonPublisher/>
+ </publishers>
+ <buildWrappers>
+ <hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <timeoutMinutes>120</timeoutMinutes>
+ <failBuild>false</failBuild>
+ </hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <hudson.plugins.xvnc.Xvnc>
+ <takeScreenshot>false</takeScreenshot>
+ </hudson.plugins.xvnc.Xvnc>
+ </buildWrappers>
+</project>
\ No newline at end of file
Added: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (rev 0)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:41:39 UTC (rev 30133)
@@ -0,0 +1,146 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <actions/>
+ <description>Nightly build using Tycho, monitoring SVN every 6 hrs for changes.
+
+<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2></description>
+ <logRotator>
+ <daysToKeep>5</daysToKeep>
+ <numToKeep>5</numToKeep>
+ <artifactDaysToKeep>-1</artifactDaysToKeep>
+ <artifactNumToKeep>-1</artifactNumToKeep>
+ </logRotator>
+ <keepDependencies>false</keepDependencies>
+ <properties>
+ <hudson.model.ParametersDefinitionProperty>
+ <parameterDefinitions>
+ <hudson.model.StringParameterDefinition>
+ <name>MAVEN_FLAGS</name>
+ <description>Pass in lifecycle phase and extra flags to Maven, such as:
+<pre>
+clean :: clean before building *
+integration-test :: build and test *
+install :: build, test, and install into m2 repo *
+osgi-test:test :: just (re-)run test(s)
+
+-P hudson :: enable hudson build ID in feature/plugin qualifiers
+-P coverage :: enable coverage reporting
+
+-Dmaven.test.skip :: skip compiling and running tests
+-Dmaven.repo.local=${WORKSPACE}/m2-repository :: path to local m2 repo
+
+-fae :: fail at end
+-fn :: fail never
+
+-o :: offline
+-B :: batch (non-interactive) mode
+-U :: check for updates
+-e :: if error occurs, dump stack into console
+
+-q :: quieter output</pre>
+</description>
+ <defaultValue>clean install -B -U -fae -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ </parameterDefinitions>
+ </hudson.model.ParametersDefinitionProperty>
+ <hudson.plugins.descriptionsetter.JobByDescription/>
+ <hudson.plugins.disk__usage.DiskUsageProperty/>
+ <hudson.plugins.jira.JiraProjectProperty>
+ <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
+ </hudson.plugins.jira.JiraProjectProperty>
+ </properties>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/birt</remote>
+ <local>sources</local>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/build</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/requirements</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <doRevert>false</doRevert>
+ <browser class="hudson.scm.browsers.FishEyeSVN">
+ <url>http://fisheye.jboss.com/browse/JBossTools/</url>
+ <rootModule/>
+ </browser>
+ <excludedRegions/>
+ <includedRegions/>
+ <excludedUsers/>
+ <excludedRevprop/>
+ <excludedCommitMessages/>
+ </scm>
+ <assignedNode>RHEL_any</assignedNode>
+ <canRoam>false</canRoam>
+ <disabled>false</disabled>
+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
+ <jdk>java16_default</jdk>
+ <triggers class="vector">
+ <hudson.triggers.SCMTrigger>
+ <spec>55 2,8,14,20 * * * </spec>
+ </hudson.triggers.SCMTrigger>
+ </triggers>
+ <concurrentBuild>false</concurrentBuild>
+ <builders>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/build/parent/pom.xml</pom>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS} -DJOB_NAME=${JOB_NAME} -DBUILD_ID=${BUILD_ID} -DBUILD_NUMBER=${BUILD_NUMBER}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/sources/pom.xml</pom>
+ <usePrivateRepository>true</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Shell>
+ <command># script here: http://anonsvn.jboss.org/repos/jbosstools/trunk/build/publish.sh
+. ${WORKSPACE}/build/publish.sh</command>
+ </hudson.tasks.Shell>
+ </builders>
+ <publishers>
+ <hudson.tasks.junit.JUnitResultArchiver>
+ <testResults>**/TEST-*.xml</testResults>
+ <keepLongStdio>false</keepLongStdio>
+ <testDataPublishers/>
+ </hudson.tasks.junit.JUnitResultArchiver>
+ <hudson.tasks.ArtifactArchiver>
+ <artifacts>**/*Update*.zip</artifacts>
+ <excludes>**/target/**</excludes>
+ <latestOnly>true</latestOnly>
+ <zip>false</zip>
+ </hudson.tasks.ArtifactArchiver>
+ <hudson.tasks.BuildTrigger>
+ <childProjects>jbosstools-3.3_trunk.aggregate</childProjects>
+ <threshold>
+ <name>UNSTABLE</name>
+ <ordinal>1</ordinal>
+ <color>YELLOW</color>
+ </threshold>
+ </hudson.tasks.BuildTrigger>
+ <hudson.tasks.Mailer>
+ <recipients/>
+ <notifyEveryBuild>false</notifyEveryBuild>
+ <dontNotifyOnModules>false</dontNotifyOnModules>
+ <dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
+ <sendToIndividuals>true</sendToIndividuals>
+ </hudson.tasks.Mailer>
+ <hudson.plugins.emotional__hudson.EmotionalHudsonPublisher/>
+ </publishers>
+ <buildWrappers>
+ <hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <timeoutMinutes>120</timeoutMinutes>
+ <failBuild>false</failBuild>
+ </hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <hudson.plugins.xvnc.Xvnc>
+ <takeScreenshot>false</takeScreenshot>
+ </hudson.plugins.xvnc.Xvnc>
+ </buildWrappers>
+</project>
\ No newline at end of file
Added: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (rev 0)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:41:39 UTC (rev 30133)
@@ -0,0 +1,150 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <actions/>
+ <description>Nightly build using Tycho, monitoring SVN every 6 hrs for changes.
+
+<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2>
+</description>
+ <logRotator>
+ <daysToKeep>5</daysToKeep>
+ <numToKeep>5</numToKeep>
+ <artifactDaysToKeep>-1</artifactDaysToKeep>
+ <artifactNumToKeep>-1</artifactNumToKeep>
+ </logRotator>
+ <keepDependencies>false</keepDependencies>
+ <properties>
+ <hudson.model.ParametersDefinitionProperty>
+ <parameterDefinitions>
+ <hudson.model.StringParameterDefinition>
+ <name>MAVEN_FLAGS</name>
+ <description>Pass in lifecycle phase and extra flags to Maven, such as:
+<pre>
+clean :: clean before building *
+integration-test :: build and test *
+install :: build, test, and install into m2 repo *
+osgi-test:test :: just (re-)run test(s)
+
+-P hudson :: enable hudson build ID in feature/plugin qualifiers
+-P coverage :: enable coverage reporting
+
+-Dmaven.test.skip :: skip compiling and running tests
+-Dmaven.repo.local=${WORKSPACE}/m2-repository :: path to local m2 repo
+
+-fae :: fail at end
+-fn :: fail never
+
+-o :: offline
+-B :: batch (non-interactive) mode
+-U :: check for updates
+-e :: if error occurs, dump stack into console
+
+-q :: quieter output</pre>
+</description>
+ <defaultValue>clean install -B -U -fn -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ </parameterDefinitions>
+ </hudson.model.ParametersDefinitionProperty>
+ <hudson.plugins.descriptionsetter.JobByDescription/>
+ <hudson.plugins.disk__usage.DiskUsageProperty/>
+ <hudson.plugins.jira.JiraProjectProperty>
+ <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
+ </hudson.plugins.jira.JiraProjectProperty>
+ </properties>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/bpel</remote>
+ <local>sources</local>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/build</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <doRevert>false</doRevert>
+ <browser class="hudson.scm.browsers.FishEyeSVN">
+ <url>http://fisheye.jboss.com/browse/JBossTools/</url>
+ <rootModule/>
+ </browser>
+ <excludedRegions/>
+ <includedRegions/>
+ <excludedUsers/>
+ <excludedRevprop/>
+ <excludedCommitMessages/>
+ </scm>
+ <assignedNode>RHEL_any</assignedNode>
+ <canRoam>false</canRoam>
+ <disabled>false</disabled>
+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
+ <jdk>java16_default</jdk>
+ <triggers class="vector">
+ <hudson.triggers.SCMTrigger>
+ <spec>20 3,9,15,21 * * * </spec>
+ </hudson.triggers.SCMTrigger>
+ </triggers>
+ <concurrentBuild>false</concurrentBuild>
+ <builders>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/build/parent/pom.xml</pom>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS} -DJOB_NAME=${JOB_NAME} -DBUILD_ID=${BUILD_ID} -DBUILD_NUMBER=${BUILD_NUMBER}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <usePrivateRepository>true</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Shell>
+ <command># script here: http://anonsvn.jboss.org/repos/jbosstools/trunk/build/publish.sh
+. ${WORKSPACE}/build/publish.sh</command>
+ </hudson.tasks.Shell>
+ </builders>
+ <publishers>
+ <hudson.tasks.junit.JUnitResultArchiver>
+ <testResults>**/TEST-*.xml</testResults>
+ <keepLongStdio>false</keepLongStdio>
+ <testDataPublishers/>
+ </hudson.tasks.junit.JUnitResultArchiver>
+ <hudson.tasks.ArtifactArchiver>
+ <artifacts>**/*Update*.zip</artifacts>
+ <excludes>**/target/**</excludes>
+ <latestOnly>true</latestOnly>
+ <zip>false</zip>
+ </hudson.tasks.ArtifactArchiver>
+ <hudson.tasks.BuildTrigger>
+ <childProjects>jbosstools-3.3_trunk.aggregate</childProjects>
+ <threshold>
+ <name>UNSTABLE</name>
+ <ordinal>1</ordinal>
+ <color>YELLOW</color>
+ </threshold>
+ </hudson.tasks.BuildTrigger>
+ <hudson.plugins.textfinder.TextFinderPublisher>
+ <fileSet>results/*/logs/ERRORLOG.txt,results/*/logs/FAIL_LOG.txt</fileSet>
+ <regexp>ERROR|AILURE</regexp>
+ <succeedIfFound>false</succeedIfFound>
+ <unstableIfFound>true</unstableIfFound>
+ <alsoCheckConsoleOutput>false</alsoCheckConsoleOutput>
+ </hudson.plugins.textfinder.TextFinderPublisher>
+ <hudson.tasks.Mailer>
+ <recipients/>
+ <notifyEveryBuild>false</notifyEveryBuild>
+ <dontNotifyOnModules>false</dontNotifyOnModules>
+ <dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
+ <sendToIndividuals>true</sendToIndividuals>
+ </hudson.tasks.Mailer>
+ <hudson.plugins.emotional__hudson.EmotionalHudsonPublisher/>
+ </publishers>
+ <buildWrappers>
+ <hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <timeoutMinutes>120</timeoutMinutes>
+ <failBuild>false</failBuild>
+ </hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <hudson.plugins.xvnc.Xvnc>
+ <takeScreenshot>false</takeScreenshot>
+ </hudson.plugins.xvnc.Xvnc>
+ </buildWrappers>
+</project>
\ No newline at end of file
Added: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (rev 0)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:41:39 UTC (rev 30133)
@@ -0,0 +1,150 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <actions/>
+ <description>Nightly build using Tycho, monitoring SVN every 6 hrs for changes.
+
+<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2></description>
+ <logRotator>
+ <daysToKeep>5</daysToKeep>
+ <numToKeep>5</numToKeep>
+ <artifactDaysToKeep>-1</artifactDaysToKeep>
+ <artifactNumToKeep>-1</artifactNumToKeep>
+ </logRotator>
+ <keepDependencies>false</keepDependencies>
+ <properties>
+ <hudson.model.ParametersDefinitionProperty>
+ <parameterDefinitions>
+ <hudson.model.StringParameterDefinition>
+ <name>MAVEN_FLAGS</name>
+ <description>Pass in lifecycle phase and extra flags to Maven, such as:
+<pre>
+clean :: clean before building *
+integration-test :: build and test *
+install :: build, test, and install into m2 repo *
+osgi-test:test :: just (re-)run test(s)
+
+-P hudson :: enable hudson build ID in feature/plugin qualifiers
+-P coverage :: enable coverage reporting
+
+-Dmaven.test.skip :: skip compiling and running tests
+-Dmaven.repo.local=${WORKSPACE}/m2-repository :: path to local m2 repo
+
+-fae :: fail at end
+-fn :: fail never
+
+-o :: offline
+-B :: batch (non-interactive) mode
+-U :: check for updates
+-e :: if error occurs, dump stack into console
+
+-q :: quieter output</pre>
+</description>
+ <defaultValue>clean install -B -U -fn -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ </parameterDefinitions>
+ </hudson.model.ParametersDefinitionProperty>
+ <hudson.plugins.descriptionsetter.JobByDescription/>
+ <hudson.plugins.disk__usage.DiskUsageProperty/>
+ <hudson.plugins.jira.JiraProjectProperty>
+ <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
+ </hudson.plugins.jira.JiraProjectProperty>
+ </properties>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/cdi</remote>
+ <local>sources</local>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/build</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <doRevert>false</doRevert>
+ <browser class="hudson.scm.browsers.FishEyeSVN">
+ <url>http://fisheye.jboss.com/browse/JBossTools/</url>
+ <rootModule/>
+ </browser>
+ <excludedRegions/>
+ <includedRegions/>
+ <excludedUsers/>
+ <excludedRevprop/>
+ <excludedCommitMessages/>
+ </scm>
+ <assignedNode>RHEL5_x86</assignedNode>
+ <canRoam>false</canRoam>
+ <disabled>false</disabled>
+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
+ <jdk>java16_default</jdk>
+ <triggers class="vector">
+ <hudson.triggers.SCMTrigger>
+ <spec>35 2,8,14,20 * * * </spec>
+ </hudson.triggers.SCMTrigger>
+ </triggers>
+ <concurrentBuild>false</concurrentBuild>
+ <builders>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/build/parent/pom.xml</pom>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS} -DJOB_NAME=${JOB_NAME} -DBUILD_ID=${BUILD_ID} -DBUILD_NUMBER=${BUILD_NUMBER}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/sources/pom.xml</pom>
+ <usePrivateRepository>true</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Shell>
+ <command># script here: http://anonsvn.jboss.org/repos/jbosstools/trunk/build/publish.sh
+. ${WORKSPACE}/build/publish.sh</command>
+ </hudson.tasks.Shell>
+ </builders>
+ <publishers>
+ <hudson.tasks.junit.JUnitResultArchiver>
+ <testResults>**/TEST-*.xml</testResults>
+ <keepLongStdio>false</keepLongStdio>
+ <testDataPublishers/>
+ </hudson.tasks.junit.JUnitResultArchiver>
+ <hudson.tasks.ArtifactArchiver>
+ <artifacts>**/*Update*.zip</artifacts>
+ <excludes>**/target/**</excludes>
+ <latestOnly>true</latestOnly>
+ <zip>false</zip>
+ </hudson.tasks.ArtifactArchiver>
+ <hudson.tasks.BuildTrigger>
+ <childProjects>jbosstools-3.3_trunk.component--maven</childProjects>
+ <threshold>
+ <name>UNSTABLE</name>
+ <ordinal>1</ordinal>
+ <color>YELLOW</color>
+ </threshold>
+ </hudson.tasks.BuildTrigger>
+ <hudson.plugins.textfinder.TextFinderPublisher>
+ <fileSet>results/*/logs/ERRORLOG.txt,results/*/logs/FAIL_LOG.txt</fileSet>
+ <regexp>ERROR|AILURE</regexp>
+ <succeedIfFound>false</succeedIfFound>
+ <unstableIfFound>true</unstableIfFound>
+ <alsoCheckConsoleOutput>false</alsoCheckConsoleOutput>
+ </hudson.plugins.textfinder.TextFinderPublisher>
+ <hudson.tasks.Mailer>
+ <recipients/>
+ <notifyEveryBuild>false</notifyEveryBuild>
+ <dontNotifyOnModules>false</dontNotifyOnModules>
+ <dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
+ <sendToIndividuals>true</sendToIndividuals>
+ </hudson.tasks.Mailer>
+ <hudson.plugins.emotional__hudson.EmotionalHudsonPublisher/>
+ </publishers>
+ <buildWrappers>
+ <hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <timeoutMinutes>120</timeoutMinutes>
+ <failBuild>false</failBuild>
+ </hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <hudson.plugins.xvnc.Xvnc>
+ <takeScreenshot>false</takeScreenshot>
+ </hudson.plugins.xvnc.Xvnc>
+ </buildWrappers>
+</project>
\ No newline at end of file
Added: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (rev 0)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:41:39 UTC (rev 30133)
@@ -0,0 +1,151 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <actions/>
+ <description>Nightly build using Tycho, monitoring SVN every 6 hrs for changes.
+
+<h3>REQUIRES JDK6</h3>
+
+<p>Results:
+<ul>
+<li>Aggregate update sites: <a href="http://download.jboss.org/jbosstools/updates/nightly/">http://download.jboss.org/jbosstools/updates/nightly/</a> :: <a href="http://download.jboss.org/jbosstools/updates/nightly/trunk/">latest from trunk</a>
+<li>Aggregate builds: <a href="http://download.jboss.org/jbosstools/builds/nightly/">http://download.jboss.org/jbosstools/builds/nightly/</a> :: <a href="http://download.jboss.org/jbosstools/builds/nightly/latestBuild.html">latest from trunk</a>
+<ul><li>Component builds: <a href="http://download.jboss.org/jbosstools/builds/staging/">http://download.jboss.org/jbosstools/builds/staging/</a></ul>
+</ul>
+
+</description>
+ <logRotator>
+ <daysToKeep>5</daysToKeep>
+ <numToKeep>5</numToKeep>
+ <artifactDaysToKeep>-1</artifactDaysToKeep>
+ <artifactNumToKeep>-1</artifactNumToKeep>
+ </logRotator>
+ <keepDependencies>false</keepDependencies>
+ <properties>
+ <hudson.model.ParametersDefinitionProperty>
+ <parameterDefinitions>
+ <hudson.model.StringParameterDefinition>
+ <name>MAVEN_FLAGS</name>
+ <description>Pass in lifecycle phase and extra flags to Maven, such as:
+<pre>
+clean :: clean before building *
+integration-test :: build and test *
+install :: build, test, and install into m2 repo *
+osgi-test:test :: just (re-)run test(s)
+
+-P hudson :: enable hudson build ID in feature/plugin qualifiers
+-P coverage :: enable coverage reporting
+
+-Dmaven.test.skip :: skip compiling and running tests
+-Dmaven.repo.local=${WORKSPACE}/m2-repository :: path to local m2 repo
+
+-fae :: fail at end
+-fn :: fail never
+
+-o :: offline
+-B :: batch (non-interactive) mode
+-U :: check for updates
+-e :: if error occurs, dump stack into console
+
+-q :: quieter output</pre>
+</description>
+ <defaultValue>clean install -B -U -fae -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ </parameterDefinitions>
+ </hudson.model.ParametersDefinitionProperty>
+ <hudson.plugins.descriptionsetter.JobByDescription/>
+ <hudson.plugins.disk__usage.DiskUsageProperty/>
+ <hudson.plugins.jira.JiraProjectProperty>
+ <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
+ </hudson.plugins.jira.JiraProjectProperty>
+ </properties>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/common</remote>
+ <local>sources</local>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/build</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <doRevert>false</doRevert>
+ <browser class="hudson.scm.browsers.FishEyeSVN">
+ <url>http://fisheye.jboss.com/browse/JBossTools/</url>
+ <rootModule/>
+ </browser>
+ <excludedRegions/>
+ <includedRegions/>
+ <excludedUsers/>
+ <excludedRevprop/>
+ <excludedCommitMessages/>
+ </scm>
+ <assignedNode>RHEL_any</assignedNode>
+ <canRoam>false</canRoam>
+ <disabled>false</disabled>
+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
+ <jdk>java16_default</jdk>
+ <triggers class="vector">
+ <hudson.triggers.SCMTrigger>
+ <spec>30 3,9,15,21 * * * </spec>
+ </hudson.triggers.SCMTrigger>
+ </triggers>
+ <concurrentBuild>false</concurrentBuild>
+ <builders>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/build/parent/pom.xml</pom>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS} -DJOB_NAME=${JOB_NAME} -DBUILD_ID=${BUILD_ID} -DBUILD_NUMBER=${BUILD_NUMBER}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Shell>
+ <command># script here: http://anonsvn.jboss.org/repos/jbosstools/trunk/build/publish.sh
+. ${WORKSPACE}/build/publish.sh</command>
+ </hudson.tasks.Shell>
+ </builders>
+ <publishers>
+ <hudson.tasks.junit.JUnitResultArchiver>
+ <testResults>**/TEST-*.xml</testResults>
+ <keepLongStdio>false</keepLongStdio>
+ <testDataPublishers/>
+ </hudson.tasks.junit.JUnitResultArchiver>
+ <hudson.tasks.ArtifactArchiver>
+ <artifacts>**/*Update*.zip</artifacts>
+ <excludes>**/target/**</excludes>
+ <latestOnly>true</latestOnly>
+ <zip>false</zip>
+ </hudson.tasks.ArtifactArchiver>
+ <hudson.tasks.BuildTrigger>
+ <childProjects>jbosstools-3.3_trunk.component--esb, jbosstools-3.3_trunk.component--jst</childProjects>
+ <threshold>
+ <name>UNSTABLE</name>
+ <ordinal>1</ordinal>
+ <color>YELLOW</color>
+ </threshold>
+ </hudson.tasks.BuildTrigger>
+ <hudson.tasks.Mailer>
+ <recipients/>
+ <notifyEveryBuild>false</notifyEveryBuild>
+ <dontNotifyOnModules>false</dontNotifyOnModules>
+ <dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
+ <sendToIndividuals>true</sendToIndividuals>
+ </hudson.tasks.Mailer>
+ <hudson.plugins.emotional__hudson.EmotionalHudsonPublisher/>
+ </publishers>
+ <buildWrappers>
+ <hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <timeoutMinutes>120</timeoutMinutes>
+ <failBuild>false</failBuild>
+ </hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <hudson.plugins.xvnc.Xvnc>
+ <takeScreenshot>false</takeScreenshot>
+ </hudson.plugins.xvnc.Xvnc>
+ </buildWrappers>
+</project>
\ No newline at end of file
Added: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (rev 0)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:41:39 UTC (rev 30133)
@@ -0,0 +1,147 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <actions/>
+ <description>Nightly build using Tycho, monitoring SVN every 6 hrs for changes.
+
+<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2></description>
+ <logRotator>
+ <daysToKeep>5</daysToKeep>
+ <numToKeep>5</numToKeep>
+ <artifactDaysToKeep>-1</artifactDaysToKeep>
+ <artifactNumToKeep>-1</artifactNumToKeep>
+ </logRotator>
+ <keepDependencies>false</keepDependencies>
+ <properties>
+ <hudson.model.ParametersDefinitionProperty>
+ <parameterDefinitions>
+ <hudson.model.StringParameterDefinition>
+ <name>MAVEN_FLAGS</name>
+ <description>Pass in lifecycle phase and extra flags to Maven, such as:
+<pre>
+clean :: clean before building *
+integration-test :: build and test *
+install :: build, test, and install into m2 repo *
+osgi-test:test :: just (re-)run test(s)
+
+-P hudson :: enable hudson build ID in feature/plugin qualifiers
+-P coverage :: enable coverage reporting
+
+-Dmaven.test.skip :: skip compiling and running tests
+-Dmaven.repo.local=${WORKSPACE}/m2-repository :: path to local m2 repo
+
+-fae :: fail at end
+-fn :: fail never
+
+-o :: offline
+-B :: batch (non-interactive) mode
+-U :: check for updates
+-e :: if error occurs, dump stack into console
+
+-q :: quieter output</pre>
+</description>
+ <defaultValue>clean install -B -U -fae -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ </parameterDefinitions>
+ </hudson.model.ParametersDefinitionProperty>
+ <hudson.plugins.descriptionsetter.JobByDescription/>
+ <hudson.plugins.disk__usage.DiskUsageProperty/>
+ <hudson.plugins.jira.JiraProjectProperty>
+ <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
+ </hudson.plugins.jira.JiraProjectProperty>
+ </properties>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/deltacloud</remote>
+ <local>sources</local>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/build</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <doRevert>false</doRevert>
+ <browser class="hudson.scm.browsers.FishEyeSVN">
+ <url>http://fisheye.jboss.com/browse/JBossTools/</url>
+ <rootModule/>
+ </browser>
+ <excludedRegions/>
+ <includedRegions/>
+ <excludedUsers/>
+ <excludedRevprop/>
+ <excludedCommitMessages/>
+ </scm>
+ <assignedNode>RHEL_any</assignedNode>
+ <canRoam>false</canRoam>
+ <disabled>false</disabled>
+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
+ <jdk>java16_default</jdk>
+ <triggers class="vector">
+ <hudson.triggers.SCMTrigger>
+ <spec>12 2,8,14,20 * * * </spec>
+ </hudson.triggers.SCMTrigger>
+ </triggers>
+ <concurrentBuild>false</concurrentBuild>
+ <builders>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/build/parent/pom.xml</pom>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS} -DJOB_NAME=${JOB_NAME} -DBUILD_ID=${BUILD_ID} -DBUILD_NUMBER=${BUILD_NUMBER}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <usePrivateRepository>true</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Ant>
+ <targets>collect.test.results.for.hudson</targets>
+ <antName>ant-1.7.x</antName>
+ <buildFile>${WORKSPACE}/build/build.xml</buildFile>
+ </hudson.tasks.Ant>
+ <hudson.tasks.Shell>
+ <command># script here: http://anonsvn.jboss.org/repos/jbosstools/trunk/build/publish.sh
+. ${WORKSPACE}/build/publish.sh</command>
+ </hudson.tasks.Shell>
+ </builders>
+ <publishers>
+ <hudson.tasks.junit.JUnitResultArchiver>
+ <testResults>**/TEST-*.xml</testResults>
+ <keepLongStdio>false</keepLongStdio>
+ <testDataPublishers/>
+ </hudson.tasks.junit.JUnitResultArchiver>
+ <hudson.tasks.ArtifactArchiver>
+ <artifacts>**/*Update*.zip</artifacts>
+ <excludes>**/target/**</excludes>
+ <latestOnly>true</latestOnly>
+ <zip>false</zip>
+ </hudson.tasks.ArtifactArchiver>
+ <hudson.tasks.BuildTrigger>
+ <childProjects>jbosstools-3.3_trunk.aggregate</childProjects>
+ <threshold>
+ <name>UNSTABLE</name>
+ <ordinal>1</ordinal>
+ <color>YELLOW</color>
+ </threshold>
+ </hudson.tasks.BuildTrigger>
+ <hudson.tasks.Mailer>
+ <recipients/>
+ <notifyEveryBuild>false</notifyEveryBuild>
+ <dontNotifyOnModules>false</dontNotifyOnModules>
+ <dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
+ <sendToIndividuals>true</sendToIndividuals>
+ </hudson.tasks.Mailer>
+ <hudson.plugins.emotional__hudson.EmotionalHudsonPublisher/>
+ </publishers>
+ <buildWrappers>
+ <hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <timeoutMinutes>120</timeoutMinutes>
+ <failBuild>false</failBuild>
+ </hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <hudson.plugins.xvnc.Xvnc>
+ <takeScreenshot>false</takeScreenshot>
+ </hudson.plugins.xvnc.Xvnc>
+ </buildWrappers>
+</project>
\ No newline at end of file
Added: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (rev 0)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:41:39 UTC (rev 30133)
@@ -0,0 +1,152 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <actions/>
+ <description>Nightly build using Tycho, monitoring SVN every 6 hrs for changes.
+
+<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2></description>
+ <logRotator>
+ <daysToKeep>5</daysToKeep>
+ <numToKeep>5</numToKeep>
+ <artifactDaysToKeep>-1</artifactDaysToKeep>
+ <artifactNumToKeep>-1</artifactNumToKeep>
+ </logRotator>
+ <keepDependencies>false</keepDependencies>
+ <properties>
+ <hudson.model.ParametersDefinitionProperty>
+ <parameterDefinitions>
+ <hudson.model.StringParameterDefinition>
+ <name>MAVEN_FLAGS</name>
+ <description>Pass in lifecycle phase and extra flags to Maven, such as:
+<pre>
+clean :: clean before building *
+integration-test :: build and test *
+install :: build, test, and install into m2 repo *
+osgi-test:test :: just (re-)run test(s)
+
+-P hudson :: enable hudson build ID in feature/plugin qualifiers
+-P coverage :: enable coverage reporting
+
+-Dmaven.test.skip :: skip compiling and running tests
+-Dmaven.repo.local=${WORKSPACE}/m2-repository :: path to local m2 repo
+
+-fae :: fail at end
+-fn :: fail never
+
+-o :: offline
+-B :: batch (non-interactive) mode
+-U :: check for updates
+-e :: if error occurs, dump stack into console
+
+-q :: quieter output</pre>
+</description>
+ <defaultValue>clean install -B -U -fn -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ </parameterDefinitions>
+ </hudson.model.ParametersDefinitionProperty>
+ <hudson.plugins.descriptionsetter.JobByDescription/>
+ <hudson.plugins.disk__usage.DiskUsageProperty/>
+ <hudson.plugins.jira.JiraProjectProperty>
+ <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
+ </hudson.plugins.jira.JiraProjectProperty>
+ </properties>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/esb</remote>
+ <local>sources</local>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/build</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/requirements</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <doRevert>false</doRevert>
+ <browser class="hudson.scm.browsers.FishEyeSVN">
+ <url>http://fisheye.jboss.com/browse/JBossTools/</url>
+ <rootModule/>
+ </browser>
+ <excludedRegions/>
+ <includedRegions/>
+ <excludedUsers/>
+ <excludedRevprop/>
+ <excludedCommitMessages/>
+ </scm>
+ <assignedNode>RHEL5_any</assignedNode>
+ <canRoam>false</canRoam>
+ <disabled>false</disabled>
+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
+ <jdk>java16_default</jdk>
+ <triggers class="vector">
+ <hudson.triggers.SCMTrigger>
+ <spec>40 4,10,16,22 * * * </spec>
+ </hudson.triggers.SCMTrigger>
+ </triggers>
+ <concurrentBuild>false</concurrentBuild>
+ <builders>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/build/parent/pom.xml</pom>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS} -DJOB_NAME=${JOB_NAME} -DBUILD_ID=${BUILD_ID} -DBUILD_NUMBER=${BUILD_NUMBER}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <usePrivateRepository>true</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Shell>
+ <command># script here: http://anonsvn.jboss.org/repos/jbosstools/trunk/build/publish.sh
+. ${WORKSPACE}/build/publish.sh</command>
+ </hudson.tasks.Shell>
+ </builders>
+ <publishers>
+ <hudson.tasks.junit.JUnitResultArchiver>
+ <testResults>**/TEST-*.xml</testResults>
+ <keepLongStdio>false</keepLongStdio>
+ <testDataPublishers/>
+ </hudson.tasks.junit.JUnitResultArchiver>
+ <hudson.tasks.ArtifactArchiver>
+ <artifacts>**/*Update*.zip</artifacts>
+ <excludes>**/target/**</excludes>
+ <latestOnly>true</latestOnly>
+ <zip>false</zip>
+ </hudson.tasks.ArtifactArchiver>
+ <hudson.tasks.BuildTrigger>
+ <childProjects>jbosstools-3.3_trunk.aggregate</childProjects>
+ <threshold>
+ <name>UNSTABLE</name>
+ <ordinal>1</ordinal>
+ <color>YELLOW</color>
+ </threshold>
+ </hudson.tasks.BuildTrigger>
+ <hudson.plugins.textfinder.TextFinderPublisher>
+ <fileSet>results/*/logs/ERRORLOG.txt,results/*/logs/FAIL_LOG.txt</fileSet>
+ <regexp>ERROR|AILURE</regexp>
+ <succeedIfFound>false</succeedIfFound>
+ <unstableIfFound>true</unstableIfFound>
+ <alsoCheckConsoleOutput>false</alsoCheckConsoleOutput>
+ </hudson.plugins.textfinder.TextFinderPublisher>
+ <hudson.tasks.Mailer>
+ <recipients/>
+ <notifyEveryBuild>false</notifyEveryBuild>
+ <dontNotifyOnModules>false</dontNotifyOnModules>
+ <dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
+ <sendToIndividuals>true</sendToIndividuals>
+ </hudson.tasks.Mailer>
+ <hudson.plugins.emotional__hudson.EmotionalHudsonPublisher/>
+ </publishers>
+ <buildWrappers>
+ <hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <timeoutMinutes>120</timeoutMinutes>
+ <failBuild>false</failBuild>
+ </hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <hudson.plugins.xvnc.Xvnc>
+ <takeScreenshot>false</takeScreenshot>
+ </hudson.plugins.xvnc.Xvnc>
+ </buildWrappers>
+</project>
\ No newline at end of file
Added: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (rev 0)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:41:39 UTC (rev 30133)
@@ -0,0 +1,145 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <actions/>
+ <description>Nightly build using Tycho, monitoring SVN every 6 hrs for changes.
+
+<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2></description>
+ <logRotator>
+ <daysToKeep>5</daysToKeep>
+ <numToKeep>5</numToKeep>
+ <artifactDaysToKeep>-1</artifactDaysToKeep>
+ <artifactNumToKeep>-1</artifactNumToKeep>
+ </logRotator>
+ <keepDependencies>false</keepDependencies>
+ <properties>
+ <hudson.model.ParametersDefinitionProperty>
+ <parameterDefinitions>
+ <hudson.model.StringParameterDefinition>
+ <name>MAVEN_FLAGS</name>
+ <description>Pass in lifecycle phase and extra flags to Maven, such as:
+<pre>
+clean :: clean before building *
+integration-test :: build and test *
+install :: build, test, and install into m2 repo *
+osgi-test:test :: just (re-)run test(s)
+
+-P hudson :: enable hudson build ID in feature/plugin qualifiers
+-P coverage :: enable coverage reporting
+
+-Dmaven.test.skip :: skip compiling and running tests
+-Dmaven.repo.local=${WORKSPACE}/m2-repository :: path to local m2 repo
+
+-fae :: fail at end
+-fn :: fail never
+
+-o :: offline
+-B :: batch (non-interactive) mode
+-U :: check for updates
+-e :: if error occurs, dump stack into console
+
+-q :: quieter output</pre>
+</description>
+ <defaultValue>clean install -B -U -fae -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ </parameterDefinitions>
+ </hudson.model.ParametersDefinitionProperty>
+ <hudson.plugins.descriptionsetter.JobByDescription/>
+ <hudson.plugins.disk__usage.DiskUsageProperty/>
+ <hudson.plugins.jira.JiraProjectProperty>
+ <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
+ </hudson.plugins.jira.JiraProjectProperty>
+ </properties>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/examples</remote>
+ <local>sources</local>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/build</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/requirements</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <doRevert>false</doRevert>
+ <browser class="hudson.scm.browsers.FishEyeSVN">
+ <url>http://fisheye.jboss.com/browse/JBossTools/</url>
+ <rootModule/>
+ </browser>
+ <excludedRegions/>
+ <includedRegions/>
+ <excludedUsers/>
+ <excludedRevprop/>
+ <excludedCommitMessages/>
+ </scm>
+ <assignedNode>RHEL5_x86</assignedNode>
+ <canRoam>false</canRoam>
+ <disabled>false</disabled>
+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
+ <jdk>java16_default</jdk>
+ <triggers class="vector">
+ <hudson.triggers.SCMTrigger>
+ <spec>18 4,10,16,22 * * * </spec>
+ </hudson.triggers.SCMTrigger>
+ </triggers>
+ <concurrentBuild>false</concurrentBuild>
+ <builders>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/build/parent/pom.xml</pom>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS} -DJOB_NAME=${JOB_NAME} -DBUILD_ID=${BUILD_ID} -DBUILD_NUMBER=${BUILD_NUMBER}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <usePrivateRepository>true</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Shell>
+ <command># script here: http://anonsvn.jboss.org/repos/jbosstools/trunk/build/publish.sh
+. ${WORKSPACE}/build/publish.sh</command>
+ </hudson.tasks.Shell>
+ </builders>
+ <publishers>
+ <hudson.tasks.junit.JUnitResultArchiver>
+ <testResults>**/TEST-*.xml</testResults>
+ <keepLongStdio>false</keepLongStdio>
+ <testDataPublishers/>
+ </hudson.tasks.junit.JUnitResultArchiver>
+ <hudson.tasks.ArtifactArchiver>
+ <artifacts>**/*Update*.zip</artifacts>
+ <excludes>**/target/**</excludes>
+ <latestOnly>true</latestOnly>
+ <zip>false</zip>
+ </hudson.tasks.ArtifactArchiver>
+ <hudson.tasks.BuildTrigger>
+ <childProjects>jbosstools-3.3_trunk.aggregate</childProjects>
+ <threshold>
+ <name>UNSTABLE</name>
+ <ordinal>1</ordinal>
+ <color>YELLOW</color>
+ </threshold>
+ </hudson.tasks.BuildTrigger>
+ <hudson.tasks.Mailer>
+ <recipients/>
+ <notifyEveryBuild>false</notifyEveryBuild>
+ <dontNotifyOnModules>false</dontNotifyOnModules>
+ <dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
+ <sendToIndividuals>true</sendToIndividuals>
+ </hudson.tasks.Mailer>
+ <hudson.plugins.emotional__hudson.EmotionalHudsonPublisher/>
+ </publishers>
+ <buildWrappers>
+ <hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <timeoutMinutes>120</timeoutMinutes>
+ <failBuild>false</failBuild>
+ </hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <hudson.plugins.xvnc.Xvnc>
+ <takeScreenshot>false</takeScreenshot>
+ </hudson.plugins.xvnc.Xvnc>
+ </buildWrappers>
+</project>
\ No newline at end of file
Added: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (rev 0)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:41:39 UTC (rev 30133)
@@ -0,0 +1,138 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <actions/>
+ <description>Nightly build using Tycho, monitoring SVN every 6 hrs for changes.
+
+<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2>
+</description>
+ <logRotator>
+ <daysToKeep>5</daysToKeep>
+ <numToKeep>5</numToKeep>
+ <artifactDaysToKeep>-1</artifactDaysToKeep>
+ <artifactNumToKeep>-1</artifactNumToKeep>
+ </logRotator>
+ <keepDependencies>false</keepDependencies>
+ <properties>
+ <hudson.model.ParametersDefinitionProperty>
+ <parameterDefinitions>
+ <hudson.model.StringParameterDefinition>
+ <name>MAVEN_FLAGS</name>
+ <description>Pass in lifecycle phase and extra flags to Maven, such as:
+<pre>
+clean :: clean before building *
+integration-test :: build and test *
+install :: build, test, and install into m2 repo *
+osgi-test:test :: just (re-)run test(s)
+
+-P hudson :: enable hudson build ID in feature/plugin qualifiers
+-P coverage :: enable coverage reporting
+
+-Dmaven.test.skip :: skip compiling and running tests
+-Dmaven.repo.local=${WORKSPACE}/m2-repository :: path to local m2 repo
+
+-fae :: fail at end
+-fn :: fail never
+
+-o :: offline
+-B :: batch (non-interactive) mode
+-U :: check for updates
+-e :: if error occurs, dump stack into console
+
+-q :: quieter output</pre>
+</description>
+ <defaultValue>clean install -B -U -fae -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ </parameterDefinitions>
+ </hudson.model.ParametersDefinitionProperty>
+ <hudson.plugins.descriptionsetter.JobByDescription/>
+ <hudson.plugins.disk__usage.DiskUsageProperty/>
+ <hudson.plugins.jira.JiraProjectProperty>
+ <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
+ </hudson.plugins.jira.JiraProjectProperty>
+ </properties>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/flow</remote>
+ <local>sources</local>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/build</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <doRevert>false</doRevert>
+ <browser class="hudson.scm.browsers.FishEyeSVN">
+ <url>http://fisheye.jboss.com/browse/JBossTools/</url>
+ <rootModule/>
+ </browser>
+ <excludedRegions/>
+ <includedRegions/>
+ <excludedUsers/>
+ <excludedRevprop/>
+ <excludedCommitMessages/>
+ </scm>
+ <assignedNode>RHEL_any</assignedNode>
+ <canRoam>false</canRoam>
+ <disabled>false</disabled>
+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
+ <jdk>java16_default</jdk>
+ <triggers class="vector">
+ <hudson.triggers.SCMTrigger>
+ <spec>20 3,9,15,21 * * * </spec>
+ </hudson.triggers.SCMTrigger>
+ </triggers>
+ <concurrentBuild>false</concurrentBuild>
+ <builders>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/build/parent/pom.xml</pom>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS} -DJOB_NAME=${JOB_NAME} -DBUILD_ID=${BUILD_ID} -DBUILD_NUMBER=${BUILD_NUMBER}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <usePrivateRepository>true</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Shell>
+ <command># script here: http://anonsvn.jboss.org/repos/jbosstools/trunk/build/publish.sh
+. ${WORKSPACE}/build/publish.sh</command>
+ </hudson.tasks.Shell>
+ </builders>
+ <publishers>
+ <hudson.tasks.ArtifactArchiver>
+ <artifacts>**/*Update*.zip</artifacts>
+ <excludes>**/target/**</excludes>
+ <latestOnly>true</latestOnly>
+ <zip>false</zip>
+ </hudson.tasks.ArtifactArchiver>
+ <hudson.tasks.BuildTrigger>
+ <childProjects>jbosstools-3.3_trunk.component--jbpm</childProjects>
+ <threshold>
+ <name>UNSTABLE</name>
+ <ordinal>1</ordinal>
+ <color>YELLOW</color>
+ </threshold>
+ </hudson.tasks.BuildTrigger>
+ <hudson.tasks.Mailer>
+ <recipients/>
+ <notifyEveryBuild>false</notifyEveryBuild>
+ <dontNotifyOnModules>false</dontNotifyOnModules>
+ <dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
+ <sendToIndividuals>true</sendToIndividuals>
+ </hudson.tasks.Mailer>
+ <hudson.plugins.emotional__hudson.EmotionalHudsonPublisher/>
+ </publishers>
+ <buildWrappers>
+ <hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <timeoutMinutes>120</timeoutMinutes>
+ <failBuild>false</failBuild>
+ </hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <hudson.plugins.xvnc.Xvnc>
+ <takeScreenshot>false</takeScreenshot>
+ </hudson.plugins.xvnc.Xvnc>
+ </buildWrappers>
+</project>
\ No newline at end of file
Added: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (rev 0)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:41:39 UTC (rev 30133)
@@ -0,0 +1,159 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <actions/>
+ <description>Nightly build using Tycho, monitoring SVN every 6 hrs for changes.
+
+<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2>
+</description>
+ <logRotator>
+ <daysToKeep>5</daysToKeep>
+ <numToKeep>5</numToKeep>
+ <artifactDaysToKeep>-1</artifactDaysToKeep>
+ <artifactNumToKeep>-1</artifactNumToKeep>
+ </logRotator>
+ <keepDependencies>false</keepDependencies>
+ <properties>
+ <hudson.model.ParametersDefinitionProperty>
+ <parameterDefinitions>
+ <hudson.model.StringParameterDefinition>
+ <name>MAVEN_FLAGS</name>
+ <description>Pass in lifecycle phase and extra flags to Maven, such as:
+<pre>
+clean :: clean before building *
+integration-test :: build and test *
+install :: build, test, and install into m2 repo *
+osgi-test:test :: just (re-)run test(s)
+
+-P hudson :: enable hudson build ID in feature/plugin qualifiers
+-P coverage :: enable coverage reporting
+
+-Dmaven.test.skip :: skip compiling and running tests
+-Dmaven.repo.local=${WORKSPACE}/m2-repository :: path to local m2 repo
+
+-fae :: fail at end
+-fn :: fail never
+
+-o :: offline
+-B :: batch (non-interactive) mode
+-U :: check for updates
+-e :: if error occurs, dump stack into console
+
+-q :: quieter output</pre>
+</description>
+ <defaultValue>clean install -B -U -fn -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ </parameterDefinitions>
+ </hudson.model.ParametersDefinitionProperty>
+ <hudson.plugins.descriptionsetter.JobByDescription/>
+ <hudson.plugins.disk__usage.DiskUsageProperty/>
+ <hudson.plugins.jira.JiraProjectProperty>
+ <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
+ </hudson.plugins.jira.JiraProjectProperty>
+ </properties>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/forge</remote>
+ <local>sources</local>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/build</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/requirements</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <doRevert>false</doRevert>
+ <browser class="hudson.scm.browsers.FishEyeSVN">
+ <url>http://fisheye.jboss.com/browse/JBossTools/</url>
+ <rootModule/>
+ </browser>
+ <excludedRegions/>
+ <includedRegions/>
+ <excludedUsers/>
+ <excludedRevprop/>
+ <excludedCommitMessages/>
+ </scm>
+ <assignedNode>RHEL5_any</assignedNode>
+ <canRoam>false</canRoam>
+ <disabled>false</disabled>
+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
+ <jdk>java16_default</jdk>
+ <triggers class="vector">
+ <hudson.triggers.SCMTrigger>
+ <spec>55 1,7,13,19 * * * </spec>
+ </hudson.triggers.SCMTrigger>
+ </triggers>
+ <concurrentBuild>false</concurrentBuild>
+ <builders>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/build/parent/pom.xml</pom>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS} -DJOB_NAME=${JOB_NAME} -DBUILD_ID=${BUILD_ID} -DBUILD_NUMBER=${BUILD_NUMBER}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/sources/pom.xml</pom>
+ <usePrivateRepository>true</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Ant>
+ <targets>collect.test.results.for.hudson</targets>
+ <antName>ant-1.7.x</antName>
+ <buildFile>${WORKSPACE}/build/build.xml</buildFile>
+ </hudson.tasks.Ant>
+ <hudson.tasks.Shell>
+ <command># script here: http://anonsvn.jboss.org/repos/jbosstools/trunk/build/publish.sh
+. ${WORKSPACE}/build/publish.sh</command>
+ </hudson.tasks.Shell>
+ </builders>
+ <publishers>
+ <hudson.tasks.junit.JUnitResultArchiver>
+ <testResults>**/TEST-*.xml</testResults>
+ <keepLongStdio>false</keepLongStdio>
+ <testDataPublishers/>
+ </hudson.tasks.junit.JUnitResultArchiver>
+ <hudson.tasks.ArtifactArchiver>
+ <artifacts>**/*Update*.zip</artifacts>
+ <excludes>**/target/**</excludes>
+ <latestOnly>true</latestOnly>
+ <zip>false</zip>
+ </hudson.tasks.ArtifactArchiver>
+ <hudson.tasks.BuildTrigger>
+ <childProjects>jbosstools-3.3_trunk.aggregate</childProjects>
+ <threshold>
+ <name>UNSTABLE</name>
+ <ordinal>1</ordinal>
+ <color>YELLOW</color>
+ </threshold>
+ </hudson.tasks.BuildTrigger>
+ <hudson.plugins.textfinder.TextFinderPublisher>
+ <fileSet>results/*/logs/ERRORLOG.txt,results/*/logs/FAIL_LOG.txt</fileSet>
+ <regexp>ERROR|AILURE</regexp>
+ <succeedIfFound>false</succeedIfFound>
+ <unstableIfFound>true</unstableIfFound>
+ <alsoCheckConsoleOutput>false</alsoCheckConsoleOutput>
+ </hudson.plugins.textfinder.TextFinderPublisher>
+ <hudson.tasks.Mailer>
+ <recipients/>
+ <notifyEveryBuild>false</notifyEveryBuild>
+ <dontNotifyOnModules>false</dontNotifyOnModules>
+ <dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
+ <sendToIndividuals>true</sendToIndividuals>
+ </hudson.tasks.Mailer>
+ <hudson.plugins.emotional__hudson.EmotionalHudsonPublisher/>
+ </publishers>
+ <buildWrappers>
+ <hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <timeoutMinutes>120</timeoutMinutes>
+ <failBuild>false</failBuild>
+ </hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <hudson.plugins.xvnc.Xvnc>
+ <takeScreenshot>false</takeScreenshot>
+ </hudson.plugins.xvnc.Xvnc>
+ </buildWrappers>
+</project>
\ No newline at end of file
Added: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (rev 0)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:41:39 UTC (rev 30133)
@@ -0,0 +1,144 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <actions/>
+ <description>Nightly build using Tycho, monitoring SVN every 6 hrs for changes.
+
+<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2>
+</description>
+ <logRotator>
+ <daysToKeep>5</daysToKeep>
+ <numToKeep>5</numToKeep>
+ <artifactDaysToKeep>-1</artifactDaysToKeep>
+ <artifactNumToKeep>-1</artifactNumToKeep>
+ </logRotator>
+ <keepDependencies>false</keepDependencies>
+ <properties>
+ <hudson.model.ParametersDefinitionProperty>
+ <parameterDefinitions>
+ <hudson.model.StringParameterDefinition>
+ <name>MAVEN_FLAGS</name>
+ <description>Pass in lifecycle phase and extra flags to Maven, such as:
+<pre>
+clean :: clean before building *
+integration-test :: build and test *
+install :: build, test, and install into m2 repo *
+osgi-test:test :: just (re-)run test(s)
+
+-P hudson :: enable hudson build ID in feature/plugin qualifiers
+-P coverage :: enable coverage reporting
+
+-Dmaven.test.skip :: skip compiling and running tests
+-Dmaven.repo.local=${WORKSPACE}/m2-repository :: path to local m2 repo
+
+-fae :: fail at end
+-fn :: fail never
+
+-o :: offline
+-B :: batch (non-interactive) mode
+-U :: check for updates
+-e :: if error occurs, dump stack into console
+
+-q :: quieter output</pre>
+</description>
+ <defaultValue>clean install -B -U -fae -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ </parameterDefinitions>
+ </hudson.model.ParametersDefinitionProperty>
+ <hudson.plugins.descriptionsetter.JobByDescription/>
+ <hudson.plugins.disk__usage.DiskUsageProperty/>
+ <hudson.plugins.jira.JiraProjectProperty>
+ <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
+ </hudson.plugins.jira.JiraProjectProperty>
+ </properties>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/freemarker</remote>
+ <local>sources</local>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/build</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <doRevert>false</doRevert>
+ <browser class="hudson.scm.browsers.FishEyeSVN">
+ <url>http://fisheye.jboss.com/browse/JBossTools/</url>
+ <rootModule/>
+ </browser>
+ <excludedRegions/>
+ <includedRegions/>
+ <excludedUsers/>
+ <excludedRevprop/>
+ <excludedCommitMessages/>
+ </scm>
+ <assignedNode>RHEL_any</assignedNode>
+ <canRoam>false</canRoam>
+ <disabled>false</disabled>
+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
+ <jdk>java16_default</jdk>
+ <triggers class="vector">
+ <hudson.triggers.SCMTrigger>
+ <spec>25 1,7,13,19 * * * </spec>
+ </hudson.triggers.SCMTrigger>
+ </triggers>
+ <concurrentBuild>false</concurrentBuild>
+ <builders>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/build/parent/pom.xml</pom>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS} -DJOB_NAME=${JOB_NAME} -DBUILD_ID=${BUILD_ID} -DBUILD_NUMBER=${BUILD_NUMBER}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/sources/pom.xml</pom>
+ <usePrivateRepository>true</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Shell>
+ <command># script here: http://anonsvn.jboss.org/repos/jbosstools/trunk/build/publish.sh
+. ${WORKSPACE}/build/publish.sh</command>
+ </hudson.tasks.Shell>
+ </builders>
+ <publishers>
+ <hudson.tasks.junit.JUnitResultArchiver>
+ <testResults>**/TEST-*.xml</testResults>
+ <keepLongStdio>false</keepLongStdio>
+ <testDataPublishers/>
+ </hudson.tasks.junit.JUnitResultArchiver>
+ <hudson.tasks.ArtifactArchiver>
+ <artifacts>**/*Update*.zip</artifacts>
+ <excludes>**/target/**</excludes>
+ <latestOnly>true</latestOnly>
+ <zip>false</zip>
+ </hudson.tasks.ArtifactArchiver>
+ <hudson.tasks.Mailer>
+ <recipients/>
+ <notifyEveryBuild>false</notifyEveryBuild>
+ <dontNotifyOnModules>false</dontNotifyOnModules>
+ <dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
+ <sendToIndividuals>true</sendToIndividuals>
+ </hudson.tasks.Mailer>
+ <hudson.plugins.emotional__hudson.EmotionalHudsonPublisher/>
+ <hudson.tasks.BuildTrigger>
+ <childProjects>jbosstools-3.3_trunk.component--hibernatetools</childProjects>
+ <threshold>
+ <name>SUCCESS</name>
+ <ordinal>0</ordinal>
+ <color>BLUE</color>
+ </threshold>
+ </hudson.tasks.BuildTrigger>
+ </publishers>
+ <buildWrappers>
+ <hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <timeoutMinutes>120</timeoutMinutes>
+ <failBuild>false</failBuild>
+ </hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <hudson.plugins.xvnc.Xvnc>
+ <takeScreenshot>false</takeScreenshot>
+ </hudson.plugins.xvnc.Xvnc>
+ </buildWrappers>
+</project>
\ No newline at end of file
Added: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (rev 0)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:41:39 UTC (rev 30133)
@@ -0,0 +1,142 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <actions/>
+ <description>Nightly build using Tycho, monitoring SVN every 6 hrs for changes.
+
+<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2></description>
+ <logRotator>
+ <daysToKeep>5</daysToKeep>
+ <numToKeep>5</numToKeep>
+ <artifactDaysToKeep>-1</artifactDaysToKeep>
+ <artifactNumToKeep>-1</artifactNumToKeep>
+ </logRotator>
+ <keepDependencies>false</keepDependencies>
+ <properties>
+ <hudson.model.ParametersDefinitionProperty>
+ <parameterDefinitions>
+ <hudson.model.StringParameterDefinition>
+ <name>MAVEN_FLAGS</name>
+ <description>Pass in lifecycle phase and extra flags to Maven, such as:
+<pre>
+clean :: clean before building *
+integration-test :: build and test *
+install :: build, test, and install into m2 repo *
+osgi-test:test :: just (re-)run test(s)
+
+-P hudson :: enable hudson build ID in feature/plugin qualifiers
+-P coverage :: enable coverage reporting
+
+-Dmaven.test.skip :: skip compiling and running tests
+-Dmaven.repo.local=${WORKSPACE}/m2-repository :: path to local m2 repo
+
+-fae :: fail at end
+-fn :: fail never
+
+-o :: offline
+-B :: batch (non-interactive) mode
+-U :: check for updates
+-e :: if error occurs, dump stack into console
+
+-q :: quieter output</pre>
+</description>
+ <defaultValue>clean install -B -U -fae -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ </parameterDefinitions>
+ </hudson.model.ParametersDefinitionProperty>
+ <hudson.plugins.descriptionsetter.JobByDescription/>
+ <hudson.plugins.disk__usage.DiskUsageProperty/>
+ <hudson.plugins.jira.JiraProjectProperty>
+ <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
+ </hudson.plugins.jira.JiraProjectProperty>
+ </properties>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/gwt</remote>
+ <local>sources</local>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/build</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <doRevert>false</doRevert>
+ <browser class="hudson.scm.browsers.FishEyeSVN">
+ <url>http://fisheye.jboss.com/browse/JBossTools/</url>
+ <rootModule/>
+ </browser>
+ <excludedRegions/>
+ <includedRegions/>
+ <excludedUsers/>
+ <excludedRevprop/>
+ <excludedCommitMessages/>
+ </scm>
+ <assignedNode>RHEL_any</assignedNode>
+ <canRoam>false</canRoam>
+ <disabled>false</disabled>
+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
+ <jdk>java16_default</jdk>
+ <triggers class="vector">
+ <hudson.triggers.SCMTrigger>
+ <spec>27 2,8,14,20 * * * </spec>
+ </hudson.triggers.SCMTrigger>
+ </triggers>
+ <concurrentBuild>false</concurrentBuild>
+ <builders>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/build/parent/pom.xml</pom>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS} -DJOB_NAME=${JOB_NAME} -DBUILD_ID=${BUILD_ID} -DBUILD_NUMBER=${BUILD_NUMBER}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <usePrivateRepository>true</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Ant>
+ <targets>collect.test.results.for.hudson</targets>
+ <antName>ant-1.7.x</antName>
+ <buildFile>${WORKSPACE}/build/build.xml</buildFile>
+ </hudson.tasks.Ant>
+ <hudson.tasks.Shell>
+ <command># script here: http://anonsvn.jboss.org/repos/jbosstools/trunk/build/publish.sh
+. ${WORKSPACE}/build/publish.sh</command>
+ </hudson.tasks.Shell>
+ </builders>
+ <publishers>
+ <hudson.tasks.ArtifactArchiver>
+ <artifacts>**/*Update*.zip</artifacts>
+ <excludes>**/target/**</excludes>
+ <latestOnly>true</latestOnly>
+ <zip>false</zip>
+ </hudson.tasks.ArtifactArchiver>
+ <hudson.tasks.BuildTrigger>
+ <childProjects>jbosstools-3.3_trunk.aggregate</childProjects>
+ <threshold>
+ <name>UNSTABLE</name>
+ <ordinal>1</ordinal>
+ <color>YELLOW</color>
+ </threshold>
+ </hudson.tasks.BuildTrigger>
+ <hudson.tasks.Mailer>
+ <recipients/>
+ <notifyEveryBuild>false</notifyEveryBuild>
+ <dontNotifyOnModules>false</dontNotifyOnModules>
+ <dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
+ <sendToIndividuals>true</sendToIndividuals>
+ </hudson.tasks.Mailer>
+ <hudson.plugins.emotional__hudson.EmotionalHudsonPublisher/>
+ </publishers>
+ <buildWrappers>
+ <hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <timeoutMinutes>120</timeoutMinutes>
+ <failBuild>false</failBuild>
+ </hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <hudson.plugins.xvnc.Xvnc>
+ <takeScreenshot>false</takeScreenshot>
+ </hudson.plugins.xvnc.Xvnc>
+ </buildWrappers>
+</project>
\ No newline at end of file
Added: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (rev 0)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:41:39 UTC (rev 30133)
@@ -0,0 +1,152 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <actions/>
+ <description>Nightly build using Tycho, monitoring SVN every 6 hrs for changes.
+
+<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2>
+</description>
+ <logRotator>
+ <daysToKeep>5</daysToKeep>
+ <numToKeep>5</numToKeep>
+ <artifactDaysToKeep>-1</artifactDaysToKeep>
+ <artifactNumToKeep>-1</artifactNumToKeep>
+ </logRotator>
+ <keepDependencies>false</keepDependencies>
+ <properties>
+ <hudson.model.ParametersDefinitionProperty>
+ <parameterDefinitions>
+ <hudson.model.StringParameterDefinition>
+ <name>MAVEN_FLAGS</name>
+ <description>Pass in lifecycle phase and extra flags to Maven, such as:
+<pre>
+clean :: clean before building *
+integration-test :: build and test *
+install :: build, test, and install into m2 repo *
+osgi-test:test :: just (re-)run test(s)
+
+-P hudson :: enable hudson build ID in feature/plugin qualifiers
+-P coverage :: enable coverage reporting
+
+-Dmaven.test.skip :: skip compiling and running tests
+-Dmaven.repo.local=${WORKSPACE}/m2-repository :: path to local m2 repo
+
+-fae :: fail at end
+-fn :: fail never
+
+-o :: offline
+-B :: batch (non-interactive) mode
+-U :: check for updates
+-e :: if error occurs, dump stack into console
+
+-q :: quieter output</pre>
+</description>
+ <defaultValue>clean install -B -U -fae -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ </parameterDefinitions>
+ </hudson.model.ParametersDefinitionProperty>
+ <hudson.plugins.descriptionsetter.JobByDescription/>
+ <hudson.plugins.disk__usage.DiskUsageProperty/>
+ <hudson.plugins.jira.JiraProjectProperty>
+ <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
+ </hudson.plugins.jira.JiraProjectProperty>
+ </properties>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/hibernatetools</remote>
+ <local>sources</local>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/build</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/requirements</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <doRevert>false</doRevert>
+ <browser class="hudson.scm.browsers.FishEyeSVN">
+ <url>http://fisheye.jboss.com/browse/JBossTools/</url>
+ <rootModule/>
+ </browser>
+ <excludedRegions/>
+ <includedRegions/>
+ <excludedUsers/>
+ <excludedRevprop/>
+ <excludedCommitMessages/>
+ </scm>
+ <assignedNode>RHEL5_any</assignedNode>
+ <canRoam>false</canRoam>
+ <disabled>false</disabled>
+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
+ <jdk>java16_default</jdk>
+ <triggers class="vector">
+ <hudson.triggers.SCMTrigger>
+ <spec>05 1,7,13,19 * * * </spec>
+ </hudson.triggers.SCMTrigger>
+ </triggers>
+ <concurrentBuild>false</concurrentBuild>
+ <builders>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/build/parent/pom.xml</pom>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS} -DJOB_NAME=${JOB_NAME} -DBUILD_ID=${BUILD_ID} -DBUILD_NUMBER=${BUILD_NUMBER}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/sources/pom.xml</pom>
+ <usePrivateRepository>true</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Ant>
+ <targets>collect.test.results.for.hudson</targets>
+ <antName>ant-1.7.x</antName>
+ <buildFile>${WORKSPACE}/build/build.xml</buildFile>
+ </hudson.tasks.Ant>
+ <hudson.tasks.Shell>
+ <command># script here: http://anonsvn.jboss.org/repos/jbosstools/trunk/build/publish.sh
+. ${WORKSPACE}/build/publish.sh</command>
+ </hudson.tasks.Shell>
+ </builders>
+ <publishers>
+ <hudson.tasks.junit.JUnitResultArchiver>
+ <testResults>**/TEST-*.xml</testResults>
+ <keepLongStdio>false</keepLongStdio>
+ <testDataPublishers/>
+ </hudson.tasks.junit.JUnitResultArchiver>
+ <hudson.tasks.ArtifactArchiver>
+ <artifacts>**/*Update*.zip</artifacts>
+ <excludes>**/target/**</excludes>
+ <latestOnly>true</latestOnly>
+ <zip>false</zip>
+ </hudson.tasks.ArtifactArchiver>
+ <hudson.tasks.BuildTrigger>
+ <childProjects>jbosstools-3.3_trunk.component--seam</childProjects>
+ <threshold>
+ <name>SUCCESS</name>
+ <ordinal>0</ordinal>
+ <color>BLUE</color>
+ </threshold>
+ </hudson.tasks.BuildTrigger>
+ <hudson.tasks.Mailer>
+ <recipients/>
+ <notifyEveryBuild>false</notifyEveryBuild>
+ <dontNotifyOnModules>false</dontNotifyOnModules>
+ <dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
+ <sendToIndividuals>true</sendToIndividuals>
+ </hudson.tasks.Mailer>
+ <hudson.plugins.emotional__hudson.EmotionalHudsonPublisher/>
+ </publishers>
+ <buildWrappers>
+ <hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <timeoutMinutes>120</timeoutMinutes>
+ <failBuild>false</failBuild>
+ </hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <hudson.plugins.xvnc.Xvnc>
+ <takeScreenshot>false</takeScreenshot>
+ </hudson.plugins.xvnc.Xvnc>
+ </buildWrappers>
+</project>
\ No newline at end of file
Added: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (rev 0)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:41:39 UTC (rev 30133)
@@ -0,0 +1,143 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <actions/>
+ <description>Nightly build using Tycho, monitoring SVN every 6 hrs for changes.
+
+<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2>
+</description>
+ <logRotator>
+ <daysToKeep>5</daysToKeep>
+ <numToKeep>5</numToKeep>
+ <artifactDaysToKeep>-1</artifactDaysToKeep>
+ <artifactNumToKeep>-1</artifactNumToKeep>
+ </logRotator>
+ <keepDependencies>false</keepDependencies>
+ <properties>
+ <hudson.model.ParametersDefinitionProperty>
+ <parameterDefinitions>
+ <hudson.model.StringParameterDefinition>
+ <name>MAVEN_FLAGS</name>
+ <description>Pass in lifecycle phase and extra flags to Maven, such as:
+<pre>
+clean :: clean before building *
+integration-test :: build and test *
+install :: build, test, and install into m2 repo *
+osgi-test:test :: just (re-)run test(s)
+
+-P hudson :: enable hudson build ID in feature/plugin qualifiers
+-P coverage :: enable coverage reporting
+
+-Dmaven.test.skip :: skip compiling and running tests
+-Dmaven.repo.local=${WORKSPACE}/m2-repository :: path to local m2 repo
+
+-fae :: fail at end
+-fn :: fail never
+
+-o :: offline
+-B :: batch (non-interactive) mode
+-U :: check for updates
+-e :: if error occurs, dump stack into console
+
+-q :: quieter output</pre>
+</description>
+ <defaultValue>clean install -B -U -fae -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ </parameterDefinitions>
+ </hudson.model.ParametersDefinitionProperty>
+ <hudson.plugins.descriptionsetter.JobByDescription/>
+ <hudson.plugins.disk__usage.DiskUsageProperty/>
+ <hudson.plugins.jira.JiraProjectProperty>
+ <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
+ </hudson.plugins.jira.JiraProjectProperty>
+ </properties>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/jbpm</remote>
+ <local>sources</local>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/build</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <doRevert>false</doRevert>
+ <browser class="hudson.scm.browsers.FishEyeSVN">
+ <url>http://fisheye.jboss.com/browse/JBossTools/</url>
+ <rootModule/>
+ </browser>
+ <excludedRegions/>
+ <includedRegions/>
+ <excludedUsers/>
+ <excludedRevprop/>
+ <excludedCommitMessages/>
+ </scm>
+ <assignedNode>RHEL_any</assignedNode>
+ <canRoam>false</canRoam>
+ <disabled>false</disabled>
+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
+ <jdk>java16_default</jdk>
+ <triggers class="vector">
+ <hudson.triggers.SCMTrigger>
+ <spec>20 3,9,15,21 * * * </spec>
+ </hudson.triggers.SCMTrigger>
+ </triggers>
+ <concurrentBuild>false</concurrentBuild>
+ <builders>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/build/parent/pom.xml</pom>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS} -DJOB_NAME=${JOB_NAME} -DBUILD_ID=${BUILD_ID} -DBUILD_NUMBER=${BUILD_NUMBER}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <usePrivateRepository>true</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Shell>
+ <command># script here: http://anonsvn.jboss.org/repos/jbosstools/trunk/build/publish.sh
+. ${WORKSPACE}/build/publish.sh</command>
+ </hudson.tasks.Shell>
+ </builders>
+ <publishers>
+ <hudson.tasks.junit.JUnitResultArchiver>
+ <testResults>**/TEST-*.xml</testResults>
+ <keepLongStdio>false</keepLongStdio>
+ <testDataPublishers/>
+ </hudson.tasks.junit.JUnitResultArchiver>
+ <hudson.tasks.ArtifactArchiver>
+ <artifacts>**/*Update*.zip</artifacts>
+ <excludes>**/target/**</excludes>
+ <latestOnly>true</latestOnly>
+ <zip>false</zip>
+ </hudson.tasks.ArtifactArchiver>
+ <hudson.tasks.BuildTrigger>
+ <childProjects>jbosstools-3.3_trunk.aggregate</childProjects>
+ <threshold>
+ <name>UNSTABLE</name>
+ <ordinal>1</ordinal>
+ <color>YELLOW</color>
+ </threshold>
+ </hudson.tasks.BuildTrigger>
+ <hudson.tasks.Mailer>
+ <recipients/>
+ <notifyEveryBuild>false</notifyEveryBuild>
+ <dontNotifyOnModules>false</dontNotifyOnModules>
+ <dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
+ <sendToIndividuals>true</sendToIndividuals>
+ </hudson.tasks.Mailer>
+ <hudson.plugins.emotional__hudson.EmotionalHudsonPublisher/>
+ </publishers>
+ <buildWrappers>
+ <hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <timeoutMinutes>120</timeoutMinutes>
+ <failBuild>false</failBuild>
+ </hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <hudson.plugins.xvnc.Xvnc>
+ <takeScreenshot>false</takeScreenshot>
+ </hudson.plugins.xvnc.Xvnc>
+ </buildWrappers>
+</project>
\ No newline at end of file
Added: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (rev 0)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:41:39 UTC (rev 30133)
@@ -0,0 +1,142 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <actions/>
+ <description>Nightly build using Tycho, monitoring SVN every 6 hrs for changes.
+
+<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2></description>
+ <logRotator>
+ <daysToKeep>5</daysToKeep>
+ <numToKeep>5</numToKeep>
+ <artifactDaysToKeep>-1</artifactDaysToKeep>
+ <artifactNumToKeep>-1</artifactNumToKeep>
+ </logRotator>
+ <keepDependencies>false</keepDependencies>
+ <properties>
+ <hudson.model.ParametersDefinitionProperty>
+ <parameterDefinitions>
+ <hudson.model.StringParameterDefinition>
+ <name>MAVEN_FLAGS</name>
+ <description>Pass in lifecycle phase and extra flags to Maven, such as:
+<pre>
+clean :: clean before building *
+integration-test :: build and test *
+install :: build, test, and install into m2 repo *
+osgi-test:test :: just (re-)run test(s)
+
+-P hudson :: enable hudson build ID in feature/plugin qualifiers
+-P coverage :: enable coverage reporting
+
+-Dmaven.test.skip :: skip compiling and running tests
+-Dmaven.repo.local=${WORKSPACE}/m2-repository :: path to local m2 repo
+
+-fae :: fail at end
+-fn :: fail never
+
+-o :: offline
+-B :: batch (non-interactive) mode
+-U :: check for updates
+-e :: if error occurs, dump stack into console
+
+-q :: quieter output</pre>
+</description>
+ <defaultValue>clean install -B -U -fae -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ </parameterDefinitions>
+ </hudson.model.ParametersDefinitionProperty>
+ <hudson.plugins.descriptionsetter.JobByDescription/>
+ <hudson.plugins.disk__usage.DiskUsageProperty/>
+ <hudson.plugins.jira.JiraProjectProperty>
+ <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
+ </hudson.plugins.jira.JiraProjectProperty>
+ </properties>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/jmx</remote>
+ <local>sources</local>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/build</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <doRevert>false</doRevert>
+ <browser class="hudson.scm.browsers.FishEyeSVN">
+ <url>http://fisheye.jboss.com/browse/JBossTools/</url>
+ <rootModule/>
+ </browser>
+ <excludedRegions/>
+ <includedRegions/>
+ <excludedUsers/>
+ <excludedRevprop/>
+ <excludedCommitMessages/>
+ </scm>
+ <assignedNode>RHEL_any</assignedNode>
+ <canRoam>false</canRoam>
+ <disabled>false</disabled>
+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
+ <jdk>java16_default</jdk>
+ <triggers class="vector">
+ <hudson.triggers.SCMTrigger>
+ <spec>20 3,9,15,21 * * * </spec>
+ </hudson.triggers.SCMTrigger>
+ </triggers>
+ <concurrentBuild>false</concurrentBuild>
+ <builders>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/build/parent/pom.xml</pom>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS} -DJOB_NAME=${JOB_NAME} -DBUILD_ID=${BUILD_ID} -DBUILD_NUMBER=${BUILD_NUMBER}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <usePrivateRepository>true</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Shell>
+ <command># script here: http://anonsvn.jboss.org/repos/jbosstools/trunk/build/publish.sh
+. ${WORKSPACE}/build/publish.sh</command>
+ </hudson.tasks.Shell>
+ </builders>
+ <publishers>
+ <hudson.tasks.junit.JUnitResultArchiver>
+ <testResults>**/TEST-*.xml</testResults>
+ <keepLongStdio>false</keepLongStdio>
+ <testDataPublishers/>
+ </hudson.tasks.junit.JUnitResultArchiver>
+ <hudson.tasks.ArtifactArchiver>
+ <artifacts>**/*Update*.zip</artifacts>
+ <excludes>**/target/**</excludes>
+ <latestOnly>true</latestOnly>
+ <zip>false</zip>
+ </hudson.tasks.ArtifactArchiver>
+ <hudson.tasks.Mailer>
+ <recipients/>
+ <notifyEveryBuild>false</notifyEveryBuild>
+ <dontNotifyOnModules>false</dontNotifyOnModules>
+ <dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
+ <sendToIndividuals>true</sendToIndividuals>
+ </hudson.tasks.Mailer>
+ <hudson.plugins.emotional__hudson.EmotionalHudsonPublisher/>
+ <hudson.tasks.BuildTrigger>
+ <childProjects>jbosstools-3.3_trunk.component--as</childProjects>
+ <threshold>
+ <name>UNSTABLE</name>
+ <ordinal>1</ordinal>
+ <color>YELLOW</color>
+ </threshold>
+ </hudson.tasks.BuildTrigger>
+ </publishers>
+ <buildWrappers>
+ <hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <timeoutMinutes>120</timeoutMinutes>
+ <failBuild>false</failBuild>
+ </hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <hudson.plugins.xvnc.Xvnc>
+ <takeScreenshot>false</takeScreenshot>
+ </hudson.plugins.xvnc.Xvnc>
+ </buildWrappers>
+</project>
\ No newline at end of file
Added: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (rev 0)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:41:39 UTC (rev 30133)
@@ -0,0 +1,162 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <actions/>
+ <description>Nightly build using Tycho, monitoring SVN every 6 hrs for changes.
+
+<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2>
+</description>
+ <logRotator>
+ <daysToKeep>5</daysToKeep>
+ <numToKeep>5</numToKeep>
+ <artifactDaysToKeep>-1</artifactDaysToKeep>
+ <artifactNumToKeep>-1</artifactNumToKeep>
+ </logRotator>
+ <keepDependencies>false</keepDependencies>
+ <properties>
+ <hudson.model.ParametersDefinitionProperty>
+ <parameterDefinitions>
+ <hudson.model.StringParameterDefinition>
+ <name>MAVEN_FLAGS</name>
+ <description>Pass in lifecycle phase and extra flags to Maven, such as:
+<pre>
+clean :: clean before building *
+integration-test :: build and test *
+install :: build, test, and install into m2 repo *
+osgi-test:test :: just (re-)run test(s)
+
+-P hudson :: enable hudson build ID in feature/plugin qualifiers
+-P coverage :: enable coverage reporting
+
+-Dmaven.test.skip :: skip compiling and running tests
+-Dmaven.repo.local=${WORKSPACE}/m2-repository :: path to local m2 repo
+
+-fae :: fail at end
+-fn :: fail never
+
+-o :: offline
+-B :: batch (non-interactive) mode
+-U :: check for updates
+-e :: if error occurs, dump stack into console
+
+-q :: quieter output</pre>
+</description>
+ <defaultValue>clean install -B -U -fn -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ </parameterDefinitions>
+ </hudson.model.ParametersDefinitionProperty>
+ <hudson.plugins.descriptionsetter.JobByDescription/>
+ <hudson.plugins.disk__usage.DiskUsageProperty/>
+ <hudson.plugins.jira.JiraProjectProperty>
+ <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
+ </hudson.plugins.jira.JiraProjectProperty>
+ </properties>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/jsf</remote>
+ <local>sources</local>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/build</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/requirements</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <doRevert>false</doRevert>
+ <browser class="hudson.scm.browsers.FishEyeSVN">
+ <url>http://fisheye.jboss.com/browse/JBossTools/</url>
+ <rootModule/>
+ </browser>
+ <excludedRegions/>
+ <includedRegions/>
+ <excludedUsers/>
+ <excludedRevprop/>
+ <excludedCommitMessages/>
+ </scm>
+ <assignedNode>RHEL5_any</assignedNode>
+ <canRoam>false</canRoam>
+ <disabled>false</disabled>
+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
+ <jdk>java16_default</jdk>
+ <triggers class="vector">
+ <hudson.triggers.SCMTrigger>
+ <spec>35 1,7,13,19 * * * </spec>
+ </hudson.triggers.SCMTrigger>
+ </triggers>
+ <concurrentBuild>false</concurrentBuild>
+ <builders>
+ <hudson.tasks.Shell>
+ <command>rm -rf ${WORKSPACE}/m2-repository/p2</command>
+ </hudson.tasks.Shell>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/build/parent/pom.xml</pom>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS} -DJOB_NAME=${JOB_NAME} -DBUILD_ID=${BUILD_ID} -DBUILD_NUMBER=${BUILD_NUMBER}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/sources/pom.xml</pom>
+ <usePrivateRepository>true</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Ant>
+ <targets>collect.test.results.for.hudson</targets>
+ <antName>ant-1.7.x</antName>
+ <buildFile>${WORKSPACE}/build/build.xml</buildFile>
+ </hudson.tasks.Ant>
+ <hudson.tasks.Shell>
+ <command># script here: http://anonsvn.jboss.org/repos/jbosstools/trunk/build/publish.sh
+. ${WORKSPACE}/build/publish.sh</command>
+ </hudson.tasks.Shell>
+ </builders>
+ <publishers>
+ <hudson.tasks.junit.JUnitResultArchiver>
+ <testResults>**/TEST-*.xml</testResults>
+ <keepLongStdio>false</keepLongStdio>
+ <testDataPublishers/>
+ </hudson.tasks.junit.JUnitResultArchiver>
+ <hudson.tasks.ArtifactArchiver>
+ <artifacts>**/*Update*.zip</artifacts>
+ <excludes>**/target/**</excludes>
+ <latestOnly>true</latestOnly>
+ <zip>false</zip>
+ </hudson.tasks.ArtifactArchiver>
+ <hudson.plugins.textfinder.TextFinderPublisher>
+ <fileSet>results/*/logs/ERRORLOG.txt,results/*/logs/FAIL_LOG.txt</fileSet>
+ <regexp>ERROR|AILURE</regexp>
+ <succeedIfFound>false</succeedIfFound>
+ <unstableIfFound>true</unstableIfFound>
+ <alsoCheckConsoleOutput>false</alsoCheckConsoleOutput>
+ </hudson.plugins.textfinder.TextFinderPublisher>
+ <hudson.tasks.Mailer>
+ <recipients/>
+ <notifyEveryBuild>false</notifyEveryBuild>
+ <dontNotifyOnModules>false</dontNotifyOnModules>
+ <dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
+ <sendToIndividuals>true</sendToIndividuals>
+ </hudson.tasks.Mailer>
+ <hudson.plugins.emotional__hudson.EmotionalHudsonPublisher/>
+ <hudson.tasks.BuildTrigger>
+ <childProjects>jbosstools-3.3_trunk.component--seam</childProjects>
+ <threshold>
+ <name>SUCCESS</name>
+ <ordinal>0</ordinal>
+ <color>BLUE</color>
+ </threshold>
+ </hudson.tasks.BuildTrigger>
+ </publishers>
+ <buildWrappers>
+ <hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <timeoutMinutes>120</timeoutMinutes>
+ <failBuild>false</failBuild>
+ </hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <hudson.plugins.xvnc.Xvnc>
+ <takeScreenshot>false</takeScreenshot>
+ </hudson.plugins.xvnc.Xvnc>
+ </buildWrappers>
+</project>
\ No newline at end of file
Added: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (rev 0)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:41:39 UTC (rev 30133)
@@ -0,0 +1,144 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <actions/>
+ <description>Nightly build using Tycho, monitoring SVN every 6 hrs for changes.
+
+<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2>
+</description>
+ <logRotator>
+ <daysToKeep>5</daysToKeep>
+ <numToKeep>5</numToKeep>
+ <artifactDaysToKeep>-1</artifactDaysToKeep>
+ <artifactNumToKeep>-1</artifactNumToKeep>
+ </logRotator>
+ <keepDependencies>false</keepDependencies>
+ <properties>
+ <hudson.model.ParametersDefinitionProperty>
+ <parameterDefinitions>
+ <hudson.model.StringParameterDefinition>
+ <name>MAVEN_FLAGS</name>
+ <description>Pass in lifecycle phase and extra flags to Maven, such as:
+<pre>
+clean :: clean before building *
+integration-test :: build and test *
+install :: build, test, and install into m2 repo *
+osgi-test:test :: just (re-)run test(s)
+
+-P hudson :: enable hudson build ID in feature/plugin qualifiers
+-P coverage :: enable coverage reporting
+
+-Dmaven.test.skip :: skip compiling and running tests
+-Dmaven.repo.local=${WORKSPACE}/m2-repository :: path to local m2 repo
+
+-fae :: fail at end
+-fn :: fail never
+
+-o :: offline
+-B :: batch (non-interactive) mode
+-U :: check for updates
+-e :: if error occurs, dump stack into console
+
+-q :: quieter output</pre>
+</description>
+ <defaultValue>clean install -B -U -fae -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ </parameterDefinitions>
+ </hudson.model.ParametersDefinitionProperty>
+ <hudson.plugins.descriptionsetter.JobByDescription/>
+ <hudson.plugins.disk__usage.DiskUsageProperty/>
+ <hudson.plugins.jira.JiraProjectProperty>
+ <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
+ </hudson.plugins.jira.JiraProjectProperty>
+ </properties>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/jst</remote>
+ <local>sources</local>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/build</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <doRevert>false</doRevert>
+ <browser class="hudson.scm.browsers.FishEyeSVN">
+ <url>http://fisheye.jboss.com/browse/JBossTools/</url>
+ <rootModule/>
+ </browser>
+ <excludedRegions/>
+ <includedRegions/>
+ <excludedUsers/>
+ <excludedRevprop/>
+ <excludedCommitMessages/>
+ </scm>
+ <assignedNode>RHEL_any</assignedNode>
+ <canRoam>false</canRoam>
+ <disabled>false</disabled>
+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
+ <jdk>java16_default</jdk>
+ <triggers class="vector">
+ <hudson.triggers.SCMTrigger>
+ <spec>45 1,7,13,19 * * * </spec>
+ </hudson.triggers.SCMTrigger>
+ </triggers>
+ <concurrentBuild>false</concurrentBuild>
+ <builders>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/build/parent/pom.xml</pom>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS} -DJOB_NAME=${JOB_NAME} -DBUILD_ID=${BUILD_ID} -DBUILD_NUMBER=${BUILD_NUMBER}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/sources/pom.xml</pom>
+ <usePrivateRepository>true</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Shell>
+ <command># script here: http://anonsvn.jboss.org/repos/jbosstools/trunk/build/publish.sh
+. ${WORKSPACE}/build/publish.sh</command>
+ </hudson.tasks.Shell>
+ </builders>
+ <publishers>
+ <hudson.tasks.junit.JUnitResultArchiver>
+ <testResults>**/TEST-*.xml</testResults>
+ <keepLongStdio>false</keepLongStdio>
+ <testDataPublishers/>
+ </hudson.tasks.junit.JUnitResultArchiver>
+ <hudson.tasks.ArtifactArchiver>
+ <artifacts>**/*Update*.zip</artifacts>
+ <excludes>**/target/**</excludes>
+ <latestOnly>true</latestOnly>
+ <zip>false</zip>
+ </hudson.tasks.ArtifactArchiver>
+ <hudson.tasks.Mailer>
+ <recipients/>
+ <notifyEveryBuild>false</notifyEveryBuild>
+ <dontNotifyOnModules>false</dontNotifyOnModules>
+ <dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
+ <sendToIndividuals>true</sendToIndividuals>
+ </hudson.tasks.Mailer>
+ <hudson.plugins.emotional__hudson.EmotionalHudsonPublisher/>
+ <hudson.tasks.BuildTrigger>
+ <childProjects>jbosstools-3.3_trunk.component--vpe, jbosstools-3.3_trunk.component--cdi, jbosstools-3.3_trunk.component--seam</childProjects>
+ <threshold>
+ <name>SUCCESS</name>
+ <ordinal>0</ordinal>
+ <color>BLUE</color>
+ </threshold>
+ </hudson.tasks.BuildTrigger>
+ </publishers>
+ <buildWrappers>
+ <hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <timeoutMinutes>120</timeoutMinutes>
+ <failBuild>false</failBuild>
+ </hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <hudson.plugins.xvnc.Xvnc>
+ <takeScreenshot>false</takeScreenshot>
+ </hudson.plugins.xvnc.Xvnc>
+ </buildWrappers>
+</project>
\ No newline at end of file
Added: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (rev 0)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:41:39 UTC (rev 30133)
@@ -0,0 +1,159 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <actions/>
+ <description>Nightly build using Tycho, monitoring SVN every 6 hrs for changes.
+
+<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2>
+</description>
+ <logRotator>
+ <daysToKeep>5</daysToKeep>
+ <numToKeep>5</numToKeep>
+ <artifactDaysToKeep>-1</artifactDaysToKeep>
+ <artifactNumToKeep>-1</artifactNumToKeep>
+ </logRotator>
+ <keepDependencies>false</keepDependencies>
+ <properties>
+ <hudson.model.ParametersDefinitionProperty>
+ <parameterDefinitions>
+ <hudson.model.StringParameterDefinition>
+ <name>MAVEN_FLAGS</name>
+ <description>Pass in lifecycle phase and extra flags to Maven, such as:
+<pre>
+clean :: clean before building *
+integration-test :: build and test *
+install :: build, test, and install into m2 repo *
+osgi-test:test :: just (re-)run test(s)
+
+-P hudson :: enable hudson build ID in feature/plugin qualifiers
+-P coverage :: enable coverage reporting
+
+-Dmaven.test.skip :: skip compiling and running tests
+-Dmaven.repo.local=${WORKSPACE}/m2-repository :: path to local m2 repo
+
+-fae :: fail at end
+-fn :: fail never
+
+-o :: offline
+-B :: batch (non-interactive) mode
+-U :: check for updates
+-e :: if error occurs, dump stack into console
+
+-q :: quieter output</pre>
+</description>
+ <defaultValue>clean install -B -U -fn -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ </parameterDefinitions>
+ </hudson.model.ParametersDefinitionProperty>
+ <hudson.plugins.descriptionsetter.JobByDescription/>
+ <hudson.plugins.disk__usage.DiskUsageProperty/>
+ <hudson.plugins.jira.JiraProjectProperty>
+ <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
+ </hudson.plugins.jira.JiraProjectProperty>
+ </properties>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/maven</remote>
+ <local>sources</local>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/build</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/requirements</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <doRevert>false</doRevert>
+ <browser class="hudson.scm.browsers.FishEyeSVN">
+ <url>http://fisheye.jboss.com/browse/JBossTools/</url>
+ <rootModule/>
+ </browser>
+ <excludedRegions/>
+ <includedRegions/>
+ <excludedUsers/>
+ <excludedRevprop/>
+ <excludedCommitMessages/>
+ </scm>
+ <assignedNode>RHEL5_any</assignedNode>
+ <canRoam>false</canRoam>
+ <disabled>false</disabled>
+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
+ <jdk>java16_default</jdk>
+ <triggers class="vector">
+ <hudson.triggers.SCMTrigger>
+ <spec>55 1,7,13,19 * * * </spec>
+ </hudson.triggers.SCMTrigger>
+ </triggers>
+ <concurrentBuild>false</concurrentBuild>
+ <builders>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/build/parent/pom.xml</pom>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS} -DJOB_NAME=${JOB_NAME} -DBUILD_ID=${BUILD_ID} -DBUILD_NUMBER=${BUILD_NUMBER}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/sources/pom.xml</pom>
+ <usePrivateRepository>true</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Ant>
+ <targets>collect.test.results.for.hudson</targets>
+ <antName>ant-1.7.x</antName>
+ <buildFile>${WORKSPACE}/build/build.xml</buildFile>
+ </hudson.tasks.Ant>
+ <hudson.tasks.Shell>
+ <command># script here: http://anonsvn.jboss.org/repos/jbosstools/trunk/build/publish.sh
+. ${WORKSPACE}/build/publish.sh</command>
+ </hudson.tasks.Shell>
+ </builders>
+ <publishers>
+ <hudson.tasks.junit.JUnitResultArchiver>
+ <testResults>**/TEST-*.xml</testResults>
+ <keepLongStdio>false</keepLongStdio>
+ <testDataPublishers/>
+ </hudson.tasks.junit.JUnitResultArchiver>
+ <hudson.tasks.ArtifactArchiver>
+ <artifacts>**/*Update*.zip</artifacts>
+ <excludes>**/target/**</excludes>
+ <latestOnly>true</latestOnly>
+ <zip>false</zip>
+ </hudson.tasks.ArtifactArchiver>
+ <hudson.tasks.BuildTrigger>
+ <childProjects>jbosstools-3.3_trunk.aggregate</childProjects>
+ <threshold>
+ <name>UNSTABLE</name>
+ <ordinal>1</ordinal>
+ <color>YELLOW</color>
+ </threshold>
+ </hudson.tasks.BuildTrigger>
+ <hudson.plugins.textfinder.TextFinderPublisher>
+ <fileSet>results/*/logs/ERRORLOG.txt,results/*/logs/FAIL_LOG.txt</fileSet>
+ <regexp>ERROR|AILURE</regexp>
+ <succeedIfFound>false</succeedIfFound>
+ <unstableIfFound>true</unstableIfFound>
+ <alsoCheckConsoleOutput>false</alsoCheckConsoleOutput>
+ </hudson.plugins.textfinder.TextFinderPublisher>
+ <hudson.tasks.Mailer>
+ <recipients/>
+ <notifyEveryBuild>false</notifyEveryBuild>
+ <dontNotifyOnModules>false</dontNotifyOnModules>
+ <dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
+ <sendToIndividuals>true</sendToIndividuals>
+ </hudson.tasks.Mailer>
+ <hudson.plugins.emotional__hudson.EmotionalHudsonPublisher/>
+ </publishers>
+ <buildWrappers>
+ <hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <timeoutMinutes>120</timeoutMinutes>
+ <failBuild>false</failBuild>
+ </hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <hudson.plugins.xvnc.Xvnc>
+ <takeScreenshot>false</takeScreenshot>
+ </hudson.plugins.xvnc.Xvnc>
+ </buildWrappers>
+</project>
\ No newline at end of file
Added: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (rev 0)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:41:39 UTC (rev 30133)
@@ -0,0 +1,142 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <actions/>
+ <description>Nightly build using Tycho, monitoring SVN every 6 hrs for changes.
+
+<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2></description>
+ <logRotator>
+ <daysToKeep>5</daysToKeep>
+ <numToKeep>5</numToKeep>
+ <artifactDaysToKeep>-1</artifactDaysToKeep>
+ <artifactNumToKeep>-1</artifactNumToKeep>
+ </logRotator>
+ <keepDependencies>false</keepDependencies>
+ <properties>
+ <hudson.model.ParametersDefinitionProperty>
+ <parameterDefinitions>
+ <hudson.model.StringParameterDefinition>
+ <name>MAVEN_FLAGS</name>
+ <description>Pass in lifecycle phase and extra flags to Maven, such as:
+<pre>
+clean :: clean before building *
+integration-test :: build and test *
+install :: build, test, and install into m2 repo *
+osgi-test:test :: just (re-)run test(s)
+
+-P hudson :: enable hudson build ID in feature/plugin qualifiers
+-P coverage :: enable coverage reporting
+
+-Dmaven.test.skip :: skip compiling and running tests
+-Dmaven.repo.local=${WORKSPACE}/m2-repository :: path to local m2 repo
+
+-fae :: fail at end
+-fn :: fail never
+
+-o :: offline
+-B :: batch (non-interactive) mode
+-U :: check for updates
+-e :: if error occurs, dump stack into console
+
+-q :: quieter output</pre>
+</description>
+ <defaultValue>clean install -B -U -fae -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ </parameterDefinitions>
+ </hudson.model.ParametersDefinitionProperty>
+ <hudson.plugins.descriptionsetter.JobByDescription/>
+ <hudson.plugins.disk__usage.DiskUsageProperty/>
+ <hudson.plugins.jira.JiraProjectProperty>
+ <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
+ </hudson.plugins.jira.JiraProjectProperty>
+ </properties>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/modeshape</remote>
+ <local>sources</local>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/build</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <doRevert>false</doRevert>
+ <browser class="hudson.scm.browsers.FishEyeSVN">
+ <url>http://fisheye.jboss.com/browse/JBossTools/</url>
+ <rootModule/>
+ </browser>
+ <excludedRegions/>
+ <includedRegions/>
+ <excludedUsers/>
+ <excludedRevprop/>
+ <excludedCommitMessages/>
+ </scm>
+ <assignedNode>RHEL_any</assignedNode>
+ <canRoam>false</canRoam>
+ <disabled>false</disabled>
+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
+ <jdk>java16_default</jdk>
+ <triggers class="vector">
+ <hudson.triggers.SCMTrigger>
+ <spec>40 3,9,15,21 * * * </spec>
+ </hudson.triggers.SCMTrigger>
+ </triggers>
+ <concurrentBuild>false</concurrentBuild>
+ <builders>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/build/parent/pom.xml</pom>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS} -DJOB_NAME=${JOB_NAME} -DBUILD_ID=${BUILD_ID} -DBUILD_NUMBER=${BUILD_NUMBER}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <usePrivateRepository>true</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Shell>
+ <command># script here: http://anonsvn.jboss.org/repos/jbosstools/trunk/build/publish.sh
+. ${WORKSPACE}/build/publish.sh</command>
+ </hudson.tasks.Shell>
+ </builders>
+ <publishers>
+ <hudson.tasks.junit.JUnitResultArchiver>
+ <testResults>**/TEST-*.xml</testResults>
+ <keepLongStdio>false</keepLongStdio>
+ <testDataPublishers/>
+ </hudson.tasks.junit.JUnitResultArchiver>
+ <hudson.tasks.ArtifactArchiver>
+ <artifacts>**/*Update*.zip</artifacts>
+ <excludes>**/target/**</excludes>
+ <latestOnly>true</latestOnly>
+ <zip>false</zip>
+ </hudson.tasks.ArtifactArchiver>
+ <hudson.tasks.BuildTrigger>
+ <childProjects>jbosstools-3.3_trunk.aggregate</childProjects>
+ <threshold>
+ <name>UNSTABLE</name>
+ <ordinal>1</ordinal>
+ <color>YELLOW</color>
+ </threshold>
+ </hudson.tasks.BuildTrigger>
+ <hudson.tasks.Mailer>
+ <recipients/>
+ <notifyEveryBuild>false</notifyEveryBuild>
+ <dontNotifyOnModules>false</dontNotifyOnModules>
+ <dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
+ <sendToIndividuals>true</sendToIndividuals>
+ </hudson.tasks.Mailer>
+ <hudson.plugins.emotional__hudson.EmotionalHudsonPublisher/>
+ </publishers>
+ <buildWrappers>
+ <hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <timeoutMinutes>120</timeoutMinutes>
+ <failBuild>false</failBuild>
+ </hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <hudson.plugins.xvnc.Xvnc>
+ <takeScreenshot>false</takeScreenshot>
+ </hudson.plugins.xvnc.Xvnc>
+ </buildWrappers>
+</project>
\ No newline at end of file
Added: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (rev 0)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:41:39 UTC (rev 30133)
@@ -0,0 +1,147 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <actions/>
+ <description>Nightly build using Tycho, monitoring SVN every 6 hrs for changes.
+
+<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2>
+</description>
+ <logRotator>
+ <daysToKeep>5</daysToKeep>
+ <numToKeep>5</numToKeep>
+ <artifactDaysToKeep>-1</artifactDaysToKeep>
+ <artifactNumToKeep>-1</artifactNumToKeep>
+ </logRotator>
+ <keepDependencies>false</keepDependencies>
+ <properties>
+ <hudson.model.ParametersDefinitionProperty>
+ <parameterDefinitions>
+ <hudson.model.StringParameterDefinition>
+ <name>MAVEN_FLAGS</name>
+ <description>Pass in lifecycle phase and extra flags to Maven, such as:
+<pre>
+clean :: clean before building *
+integration-test :: build and test *
+install :: build, test, and install into m2 repo *
+osgi-test:test :: just (re-)run test(s)
+
+-P hudson :: enable hudson build ID in feature/plugin qualifiers
+-P coverage :: enable coverage reporting
+
+-Dmaven.test.skip :: skip compiling and running tests
+-Dmaven.repo.local=${WORKSPACE}/m2-repository :: path to local m2 repo
+
+-fae :: fail at end
+-fn :: fail never
+
+-o :: offline
+-B :: batch (non-interactive) mode
+-U :: check for updates
+-e :: if error occurs, dump stack into console
+
+-q :: quieter output</pre>
+</description>
+ <defaultValue>clean install -B -U -fae -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ </parameterDefinitions>
+ </hudson.model.ParametersDefinitionProperty>
+ <hudson.plugins.descriptionsetter.JobByDescription/>
+ <hudson.plugins.disk__usage.DiskUsageProperty/>
+ <hudson.plugins.jira.JiraProjectProperty>
+ <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
+ </hudson.plugins.jira.JiraProjectProperty>
+ </properties>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/portlet</remote>
+ <local>sources</local>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/build</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/requirements</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <doRevert>false</doRevert>
+ <browser class="hudson.scm.browsers.FishEyeSVN">
+ <url>http://fisheye.jboss.com/browse/JBossTools/</url>
+ <rootModule/>
+ </browser>
+ <excludedRegions/>
+ <includedRegions/>
+ <excludedUsers/>
+ <excludedRevprop/>
+ <excludedCommitMessages/>
+ </scm>
+ <assignedNode>RHEL_any</assignedNode>
+ <canRoam>false</canRoam>
+ <disabled>false</disabled>
+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
+ <jdk>java16_default</jdk>
+ <triggers class="vector">
+ <hudson.triggers.SCMTrigger>
+ <spec>05 0,6,12,18 * * * </spec>
+ </hudson.triggers.SCMTrigger>
+ </triggers>
+ <concurrentBuild>false</concurrentBuild>
+ <builders>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/build/parent/pom.xml</pom>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS} -DJOB_NAME=${JOB_NAME} -DBUILD_ID=${BUILD_ID} -DBUILD_NUMBER=${BUILD_NUMBER}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/sources/pom.xml</pom>
+ <usePrivateRepository>true</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Shell>
+ <command># script here: http://anonsvn.jboss.org/repos/jbosstools/trunk/build/publish.sh
+. ${WORKSPACE}/build/publish.sh</command>
+ </hudson.tasks.Shell>
+ </builders>
+ <publishers>
+ <hudson.tasks.junit.JUnitResultArchiver>
+ <testResults>**/TEST-*.xml</testResults>
+ <keepLongStdio>false</keepLongStdio>
+ <testDataPublishers/>
+ </hudson.tasks.junit.JUnitResultArchiver>
+ <hudson.tasks.ArtifactArchiver>
+ <artifacts>**/*Update*.zip</artifacts>
+ <excludes>**/target/**</excludes>
+ <latestOnly>true</latestOnly>
+ <zip>false</zip>
+ </hudson.tasks.ArtifactArchiver>
+ <hudson.tasks.BuildTrigger>
+ <childProjects>jbosstools-3.3_trunk.aggregate</childProjects>
+ <threshold>
+ <name>UNSTABLE</name>
+ <ordinal>1</ordinal>
+ <color>YELLOW</color>
+ </threshold>
+ </hudson.tasks.BuildTrigger>
+ <hudson.tasks.Mailer>
+ <recipients/>
+ <notifyEveryBuild>false</notifyEveryBuild>
+ <dontNotifyOnModules>false</dontNotifyOnModules>
+ <dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
+ <sendToIndividuals>true</sendToIndividuals>
+ </hudson.tasks.Mailer>
+ <hudson.plugins.emotional__hudson.EmotionalHudsonPublisher/>
+ </publishers>
+ <buildWrappers>
+ <hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <timeoutMinutes>120</timeoutMinutes>
+ <failBuild>false</failBuild>
+ </hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <hudson.plugins.xvnc.Xvnc>
+ <takeScreenshot>false</takeScreenshot>
+ </hudson.plugins.xvnc.Xvnc>
+ </buildWrappers>
+</project>
\ No newline at end of file
Added: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (rev 0)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:41:39 UTC (rev 30133)
@@ -0,0 +1,147 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <actions/>
+ <description>Nightly build using Tycho, monitoring SVN every 6 hrs for changes.
+
+<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2></description>
+ <logRotator>
+ <daysToKeep>5</daysToKeep>
+ <numToKeep>5</numToKeep>
+ <artifactDaysToKeep>-1</artifactDaysToKeep>
+ <artifactNumToKeep>-1</artifactNumToKeep>
+ </logRotator>
+ <keepDependencies>false</keepDependencies>
+ <properties>
+ <hudson.model.ParametersDefinitionProperty>
+ <parameterDefinitions>
+ <hudson.model.StringParameterDefinition>
+ <name>MAVEN_FLAGS</name>
+ <description>Pass in lifecycle phase and extra flags to Maven, such as:
+<pre>
+clean :: clean before building *
+integration-test :: build and test *
+install :: build, test, and install into m2 repo *
+osgi-test:test :: just (re-)run test(s)
+
+-P hudson :: enable hudson build ID in feature/plugin qualifiers
+-P coverage :: enable coverage reporting
+
+-Dmaven.test.skip :: skip compiling and running tests
+-Dmaven.repo.local=${WORKSPACE}/m2-repository :: path to local m2 repo
+
+-fae :: fail at end
+-fn :: fail never
+
+-o :: offline
+-B :: batch (non-interactive) mode
+-U :: check for updates
+-e :: if error occurs, dump stack into console
+
+-q :: quieter output</pre>
+</description>
+ <defaultValue>clean install -B -U -fae -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ </parameterDefinitions>
+ </hudson.model.ParametersDefinitionProperty>
+ <hudson.plugins.descriptionsetter.JobByDescription/>
+ <hudson.plugins.disk__usage.DiskUsageProperty/>
+ <hudson.plugins.jira.JiraProjectProperty>
+ <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
+ </hudson.plugins.jira.JiraProjectProperty>
+ </properties>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>https://svn.jboss.org/repos/jbosstools/trunk/profiler</remote>
+ <local>sources</local>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>https://svn.jboss.org/repos/jbosstools/trunk/build</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <doRevert>false</doRevert>
+ <browser class="hudson.scm.browsers.FishEyeSVN">
+ <url>http://fisheye.jboss.com/browse/JBossTools/</url>
+ <rootModule/>
+ </browser>
+ <excludedRegions/>
+ <includedRegions/>
+ <excludedUsers/>
+ <excludedRevprop/>
+ <excludedCommitMessages/>
+ </scm>
+ <assignedNode>RHEL_any</assignedNode>
+ <canRoam>false</canRoam>
+ <disabled>false</disabled>
+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
+ <jdk>java16_default</jdk>
+ <triggers class="vector">
+ <hudson.triggers.SCMTrigger>
+ <spec>12 2,8,14,20 * * * </spec>
+ </hudson.triggers.SCMTrigger>
+ </triggers>
+ <concurrentBuild>false</concurrentBuild>
+ <builders>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/build/parent/pom.xml</pom>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS} -DJOB_NAME=${JOB_NAME} -DBUILD_ID=${BUILD_ID} -DBUILD_NUMBER=${BUILD_NUMBER}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <usePrivateRepository>true</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Ant>
+ <targets>collect.test.results.for.hudson</targets>
+ <antName>ant-1.7.x</antName>
+ <buildFile>${WORKSPACE}/build/build.xml</buildFile>
+ </hudson.tasks.Ant>
+ <hudson.tasks.Shell>
+ <command># script here: http://anonsvn.jboss.org/repos/jbosstools/trunk/build/publish.sh
+. ${WORKSPACE}/build/publish.sh</command>
+ </hudson.tasks.Shell>
+ </builders>
+ <publishers>
+ <hudson.tasks.junit.JUnitResultArchiver>
+ <testResults>**/TEST-*.xml</testResults>
+ <keepLongStdio>false</keepLongStdio>
+ <testDataPublishers/>
+ </hudson.tasks.junit.JUnitResultArchiver>
+ <hudson.tasks.ArtifactArchiver>
+ <artifacts>**/*Update*.zip</artifacts>
+ <excludes>**/target/**</excludes>
+ <latestOnly>true</latestOnly>
+ <zip>false</zip>
+ </hudson.tasks.ArtifactArchiver>
+ <hudson.tasks.BuildTrigger>
+ <childProjects>jbosstools-3.3_trunk.aggregate</childProjects>
+ <threshold>
+ <name>UNSTABLE</name>
+ <ordinal>1</ordinal>
+ <color>YELLOW</color>
+ </threshold>
+ </hudson.tasks.BuildTrigger>
+ <hudson.tasks.Mailer>
+ <recipients/>
+ <notifyEveryBuild>false</notifyEveryBuild>
+ <dontNotifyOnModules>false</dontNotifyOnModules>
+ <dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
+ <sendToIndividuals>true</sendToIndividuals>
+ </hudson.tasks.Mailer>
+ <hudson.plugins.emotional__hudson.EmotionalHudsonPublisher/>
+ </publishers>
+ <buildWrappers>
+ <hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <timeoutMinutes>120</timeoutMinutes>
+ <failBuild>false</failBuild>
+ </hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <hudson.plugins.xvnc.Xvnc>
+ <takeScreenshot>false</takeScreenshot>
+ </hudson.plugins.xvnc.Xvnc>
+ </buildWrappers>
+</project>
\ No newline at end of file
Added: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (rev 0)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:41:39 UTC (rev 30133)
@@ -0,0 +1,152 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <actions/>
+ <description>Nightly build using Tycho, monitoring SVN every 6 hrs for changes.
+
+<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2>
+</description>
+ <logRotator>
+ <daysToKeep>5</daysToKeep>
+ <numToKeep>5</numToKeep>
+ <artifactDaysToKeep>-1</artifactDaysToKeep>
+ <artifactNumToKeep>-1</artifactNumToKeep>
+ </logRotator>
+ <keepDependencies>false</keepDependencies>
+ <properties>
+ <hudson.model.ParametersDefinitionProperty>
+ <parameterDefinitions>
+ <hudson.model.StringParameterDefinition>
+ <name>MAVEN_FLAGS</name>
+ <description>Pass in lifecycle phase and extra flags to Maven, such as:
+<pre>
+clean :: clean before building *
+integration-test :: build and test *
+install :: build, test, and install into m2 repo *
+osgi-test:test :: just (re-)run test(s)
+
+-P hudson :: enable hudson build ID in feature/plugin qualifiers
+-P coverage :: enable coverage reporting
+
+-Dmaven.test.skip :: skip compiling and running tests
+-Dmaven.repo.local=${WORKSPACE}/m2-repository :: path to local m2 repo
+
+-fae :: fail at end
+-fn :: fail never
+
+-o :: offline
+-B :: batch (non-interactive) mode
+-U :: check for updates
+-e :: if error occurs, dump stack into console
+
+-q :: quieter output</pre>
+</description>
+ <defaultValue>clean install -B -U -fae -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ </parameterDefinitions>
+ </hudson.model.ParametersDefinitionProperty>
+ <hudson.plugins.descriptionsetter.JobByDescription/>
+ <hudson.plugins.disk__usage.DiskUsageProperty/>
+ <hudson.plugins.jira.JiraProjectProperty>
+ <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
+ </hudson.plugins.jira.JiraProjectProperty>
+ </properties>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/runtime</remote>
+ <local>sources</local>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/build</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/requirements</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <doRevert>false</doRevert>
+ <browser class="hudson.scm.browsers.FishEyeSVN">
+ <url>http://fisheye.jboss.com/browse/JBossTools/</url>
+ <rootModule/>
+ </browser>
+ <excludedRegions/>
+ <includedRegions/>
+ <excludedUsers/>
+ <excludedRevprop/>
+ <excludedCommitMessages/>
+ </scm>
+ <assignedNode>RHEL_any</assignedNode>
+ <canRoam>false</canRoam>
+ <disabled>false</disabled>
+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
+ <jdk>java16_default</jdk>
+ <triggers class="vector">
+ <hudson.triggers.SCMTrigger>
+ <spec>10 0,6,12,18 * * * </spec>
+ </hudson.triggers.SCMTrigger>
+ </triggers>
+ <concurrentBuild>false</concurrentBuild>
+ <builders>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/build/parent/pom.xml</pom>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS} -DJOB_NAME=${JOB_NAME} -DBUILD_ID=${BUILD_ID} -DBUILD_NUMBER=${BUILD_NUMBER}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/sources/pom.xml</pom>
+ <usePrivateRepository>true</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Ant>
+ <targets>collect.test.results.for.hudson</targets>
+ <antName>ant-1.7.x</antName>
+ <buildFile>${WORKSPACE}/build/build.xml</buildFile>
+ </hudson.tasks.Ant>
+ <hudson.tasks.Shell>
+ <command># script here: http://anonsvn.jboss.org/repos/jbosstools/trunk/build/publish.sh
+. ${WORKSPACE}/build/publish.sh</command>
+ </hudson.tasks.Shell>
+ </builders>
+ <publishers>
+ <hudson.tasks.junit.JUnitResultArchiver>
+ <testResults>**/TEST-*.xml</testResults>
+ <keepLongStdio>false</keepLongStdio>
+ <testDataPublishers/>
+ </hudson.tasks.junit.JUnitResultArchiver>
+ <hudson.tasks.ArtifactArchiver>
+ <artifacts>**/*Update*.zip</artifacts>
+ <excludes>**/target/**</excludes>
+ <latestOnly>true</latestOnly>
+ <zip>false</zip>
+ </hudson.tasks.ArtifactArchiver>
+ <hudson.tasks.BuildTrigger>
+ <childProjects>jbosstools-3.3_trunk.aggregate</childProjects>
+ <threshold>
+ <name>UNSTABLE</name>
+ <ordinal>1</ordinal>
+ <color>YELLOW</color>
+ </threshold>
+ </hudson.tasks.BuildTrigger>
+ <hudson.tasks.Mailer>
+ <recipients/>
+ <notifyEveryBuild>false</notifyEveryBuild>
+ <dontNotifyOnModules>false</dontNotifyOnModules>
+ <dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
+ <sendToIndividuals>true</sendToIndividuals>
+ </hudson.tasks.Mailer>
+ <hudson.plugins.emotional__hudson.EmotionalHudsonPublisher/>
+ </publishers>
+ <buildWrappers>
+ <hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <timeoutMinutes>120</timeoutMinutes>
+ <failBuild>false</failBuild>
+ </hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <hudson.plugins.xvnc.Xvnc>
+ <takeScreenshot>false</takeScreenshot>
+ </hudson.plugins.xvnc.Xvnc>
+ </buildWrappers>
+</project>
\ No newline at end of file
Added: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (rev 0)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:41:39 UTC (rev 30133)
@@ -0,0 +1,159 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <actions/>
+ <description>Nightly build using Tycho, monitoring SVN every 6 hrs for changes.
+
+<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2>
+</description>
+ <logRotator>
+ <daysToKeep>5</daysToKeep>
+ <numToKeep>5</numToKeep>
+ <artifactDaysToKeep>-1</artifactDaysToKeep>
+ <artifactNumToKeep>-1</artifactNumToKeep>
+ </logRotator>
+ <keepDependencies>false</keepDependencies>
+ <properties>
+ <hudson.model.ParametersDefinitionProperty>
+ <parameterDefinitions>
+ <hudson.model.StringParameterDefinition>
+ <name>MAVEN_FLAGS</name>
+ <description>Pass in lifecycle phase and extra flags to Maven, such as:
+<pre>
+clean :: clean before building *
+integration-test :: build and test *
+install :: build, test, and install into m2 repo *
+osgi-test:test :: just (re-)run test(s)
+
+-P hudson :: enable hudson build ID in feature/plugin qualifiers
+-P coverage :: enable coverage reporting
+
+-Dmaven.test.skip :: skip compiling and running tests
+-Dmaven.repo.local=${WORKSPACE}/m2-repository :: path to local m2 repo
+
+-fae :: fail at end
+-fn :: fail never
+
+-o :: offline
+-B :: batch (non-interactive) mode
+-U :: check for updates
+-e :: if error occurs, dump stack into console
+
+-q :: quieter output</pre>
+</description>
+ <defaultValue>clean install -B -U -fn -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ </parameterDefinitions>
+ </hudson.model.ParametersDefinitionProperty>
+ <hudson.plugins.descriptionsetter.JobByDescription/>
+ <hudson.plugins.disk__usage.DiskUsageProperty/>
+ <hudson.plugins.jira.JiraProjectProperty>
+ <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
+ </hudson.plugins.jira.JiraProjectProperty>
+ </properties>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/seam</remote>
+ <local>sources</local>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/build</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/requirements</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <doRevert>false</doRevert>
+ <browser class="hudson.scm.browsers.FishEyeSVN">
+ <url>http://fisheye.jboss.com/browse/JBossTools/</url>
+ <rootModule/>
+ </browser>
+ <excludedRegions/>
+ <includedRegions/>
+ <excludedUsers/>
+ <excludedRevprop/>
+ <excludedCommitMessages/>
+ </scm>
+ <assignedNode>RHEL5_any</assignedNode>
+ <canRoam>false</canRoam>
+ <disabled>false</disabled>
+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
+ <jdk>java16_default</jdk>
+ <triggers class="vector">
+ <hudson.triggers.SCMTrigger>
+ <spec>15 0,6,12,18 * * * </spec>
+ </hudson.triggers.SCMTrigger>
+ </triggers>
+ <concurrentBuild>false</concurrentBuild>
+ <builders>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/build/parent/pom.xml</pom>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS} -DJOB_NAME=${JOB_NAME} -DBUILD_ID=${BUILD_ID} -DBUILD_NUMBER=${BUILD_NUMBER}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1536m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/sources/pom.xml</pom>
+ <usePrivateRepository>true</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Ant>
+ <targets>collect.test.results.for.hudson</targets>
+ <antName>ant-1.7.x</antName>
+ <buildFile>${WORKSPACE}/build/build.xml</buildFile>
+ </hudson.tasks.Ant>
+ <hudson.tasks.Shell>
+ <command># script here: http://anonsvn.jboss.org/repos/jbosstools/trunk/build/publish.sh
+. ${WORKSPACE}/build/publish.sh</command>
+ </hudson.tasks.Shell>
+ </builders>
+ <publishers>
+ <hudson.tasks.junit.JUnitResultArchiver>
+ <testResults>**/TEST-*.xml</testResults>
+ <keepLongStdio>false</keepLongStdio>
+ <testDataPublishers/>
+ </hudson.tasks.junit.JUnitResultArchiver>
+ <hudson.tasks.ArtifactArchiver>
+ <artifacts>**/*Update*.zip</artifacts>
+ <excludes>**/target/**</excludes>
+ <latestOnly>true</latestOnly>
+ <zip>false</zip>
+ </hudson.tasks.ArtifactArchiver>
+ <hudson.tasks.BuildTrigger>
+ <childProjects>jbosstools-3.3_trunk.component--maven</childProjects>
+ <threshold>
+ <name>UNSTABLE</name>
+ <ordinal>1</ordinal>
+ <color>YELLOW</color>
+ </threshold>
+ </hudson.tasks.BuildTrigger>
+ <hudson.plugins.textfinder.TextFinderPublisher>
+ <fileSet>results/*/logs/ERRORLOG.txt,results/*/logs/FAIL_LOG.txt</fileSet>
+ <regexp>ERROR|AILURE</regexp>
+ <succeedIfFound>false</succeedIfFound>
+ <unstableIfFound>true</unstableIfFound>
+ <alsoCheckConsoleOutput>false</alsoCheckConsoleOutput>
+ </hudson.plugins.textfinder.TextFinderPublisher>
+ <hudson.tasks.Mailer>
+ <recipients/>
+ <notifyEveryBuild>false</notifyEveryBuild>
+ <dontNotifyOnModules>false</dontNotifyOnModules>
+ <dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
+ <sendToIndividuals>true</sendToIndividuals>
+ </hudson.tasks.Mailer>
+ <hudson.plugins.emotional__hudson.EmotionalHudsonPublisher/>
+ </publishers>
+ <buildWrappers>
+ <hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <timeoutMinutes>240</timeoutMinutes>
+ <failBuild>false</failBuild>
+ </hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <hudson.plugins.xvnc.Xvnc>
+ <takeScreenshot>false</takeScreenshot>
+ </hudson.plugins.xvnc.Xvnc>
+ </buildWrappers>
+</project>
\ No newline at end of file
Added: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (rev 0)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:41:39 UTC (rev 30133)
@@ -0,0 +1,144 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <actions/>
+ <description>Nightly build using Tycho, monitoring SVN every 6 hrs for changes.
+
+<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2>
+</description>
+ <logRotator>
+ <daysToKeep>5</daysToKeep>
+ <numToKeep>5</numToKeep>
+ <artifactDaysToKeep>-1</artifactDaysToKeep>
+ <artifactNumToKeep>-1</artifactNumToKeep>
+ </logRotator>
+ <keepDependencies>false</keepDependencies>
+ <properties>
+ <hudson.model.ParametersDefinitionProperty>
+ <parameterDefinitions>
+ <hudson.model.StringParameterDefinition>
+ <name>MAVEN_FLAGS</name>
+ <description>Pass in lifecycle phase and extra flags to Maven, such as:
+<pre>
+clean :: clean before building *
+integration-test :: build and test *
+install :: build, test, and install into m2 repo *
+osgi-test:test :: just (re-)run test(s)
+
+-P hudson :: enable hudson build ID in feature/plugin qualifiers
+-P coverage :: enable coverage reporting
+
+-Dmaven.test.skip :: skip compiling and running tests
+-Dmaven.repo.local=${WORKSPACE}/m2-repository :: path to local m2 repo
+
+-fae :: fail at end
+-fn :: fail never
+
+-o :: offline
+-B :: batch (non-interactive) mode
+-U :: check for updates
+-e :: if error occurs, dump stack into console
+
+-q :: quieter output</pre>
+</description>
+ <defaultValue>clean install -B -U -fae -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ </parameterDefinitions>
+ </hudson.model.ParametersDefinitionProperty>
+ <hudson.plugins.descriptionsetter.JobByDescription/>
+ <hudson.plugins.disk__usage.DiskUsageProperty/>
+ <hudson.plugins.jira.JiraProjectProperty>
+ <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
+ </hudson.plugins.jira.JiraProjectProperty>
+ </properties>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/smooks</remote>
+ <local>sources</local>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/build</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <doRevert>false</doRevert>
+ <browser class="hudson.scm.browsers.FishEyeSVN">
+ <url>http://fisheye.jboss.com/browse/JBossTools/</url>
+ <rootModule/>
+ </browser>
+ <excludedRegions/>
+ <includedRegions/>
+ <excludedUsers/>
+ <excludedRevprop/>
+ <excludedCommitMessages/>
+ </scm>
+ <assignedNode>RHEL_any</assignedNode>
+ <canRoam>false</canRoam>
+ <disabled>false</disabled>
+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
+ <jdk>java16_default</jdk>
+ <triggers class="vector">
+ <hudson.triggers.SCMTrigger>
+ <spec>22 0,6,12,18 * * * </spec>
+ </hudson.triggers.SCMTrigger>
+ </triggers>
+ <concurrentBuild>false</concurrentBuild>
+ <builders>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/build/parent/pom.xml</pom>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS} -DJOB_NAME=${JOB_NAME} -DBUILD_ID=${BUILD_ID} -DBUILD_NUMBER=${BUILD_NUMBER}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/sources/pom.xml</pom>
+ <usePrivateRepository>true</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Shell>
+ <command># script here: http://anonsvn.jboss.org/repos/jbosstools/trunk/build/publish.sh
+. ${WORKSPACE}/build/publish.sh</command>
+ </hudson.tasks.Shell>
+ </builders>
+ <publishers>
+ <hudson.tasks.junit.JUnitResultArchiver>
+ <testResults>**/TEST-*.xml</testResults>
+ <keepLongStdio>false</keepLongStdio>
+ <testDataPublishers/>
+ </hudson.tasks.junit.JUnitResultArchiver>
+ <hudson.tasks.ArtifactArchiver>
+ <artifacts>**/*Update*.zip</artifacts>
+ <excludes>**/target/**</excludes>
+ <latestOnly>true</latestOnly>
+ <zip>false</zip>
+ </hudson.tasks.ArtifactArchiver>
+ <hudson.tasks.BuildTrigger>
+ <childProjects>jbosstools-3.3_trunk.aggregate</childProjects>
+ <threshold>
+ <name>UNSTABLE</name>
+ <ordinal>1</ordinal>
+ <color>YELLOW</color>
+ </threshold>
+ </hudson.tasks.BuildTrigger>
+ <hudson.tasks.Mailer>
+ <recipients/>
+ <notifyEveryBuild>false</notifyEveryBuild>
+ <dontNotifyOnModules>false</dontNotifyOnModules>
+ <dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
+ <sendToIndividuals>true</sendToIndividuals>
+ </hudson.tasks.Mailer>
+ <hudson.plugins.emotional__hudson.EmotionalHudsonPublisher/>
+ </publishers>
+ <buildWrappers>
+ <hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <timeoutMinutes>120</timeoutMinutes>
+ <failBuild>false</failBuild>
+ </hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <hudson.plugins.xvnc.Xvnc>
+ <takeScreenshot>false</takeScreenshot>
+ </hudson.plugins.xvnc.Xvnc>
+ </buildWrappers>
+</project>
\ No newline at end of file
Added: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (rev 0)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:41:39 UTC (rev 30133)
@@ -0,0 +1,159 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <actions/>
+ <description>Nightly build using Tycho, monitoring SVN every 6 hrs for changes.
+
+<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2>
+</description>
+ <logRotator>
+ <daysToKeep>5</daysToKeep>
+ <numToKeep>5</numToKeep>
+ <artifactDaysToKeep>-1</artifactDaysToKeep>
+ <artifactNumToKeep>-1</artifactNumToKeep>
+ </logRotator>
+ <keepDependencies>false</keepDependencies>
+ <properties>
+ <hudson.model.ParametersDefinitionProperty>
+ <parameterDefinitions>
+ <hudson.model.StringParameterDefinition>
+ <name>MAVEN_FLAGS</name>
+ <description>Pass in lifecycle phase and extra flags to Maven, such as:
+<pre>
+clean :: clean before building *
+integration-test :: build and test *
+install :: build, test, and install into m2 repo *
+osgi-test:test :: just (re-)run test(s)
+
+-P hudson :: enable hudson build ID in feature/plugin qualifiers
+-P coverage :: enable coverage reporting
+
+-Dmaven.test.skip :: skip compiling and running tests
+-Dmaven.repo.local=${WORKSPACE}/m2-repository :: path to local m2 repo
+
+-fae :: fail at end
+-fn :: fail never
+
+-o :: offline
+-B :: batch (non-interactive) mode
+-U :: check for updates
+-e :: if error occurs, dump stack into console
+
+-q :: quieter output</pre>
+</description>
+ <defaultValue>clean install -B -U -fn -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ </parameterDefinitions>
+ </hudson.model.ParametersDefinitionProperty>
+ <hudson.plugins.descriptionsetter.JobByDescription/>
+ <hudson.plugins.disk__usage.DiskUsageProperty/>
+ <hudson.plugins.jira.JiraProjectProperty>
+ <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
+ </hudson.plugins.jira.JiraProjectProperty>
+ </properties>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/struts</remote>
+ <local>sources</local>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/build</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/requirements</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <doRevert>false</doRevert>
+ <browser class="hudson.scm.browsers.FishEyeSVN">
+ <url>http://fisheye.jboss.com/browse/JBossTools/</url>
+ <rootModule/>
+ </browser>
+ <excludedRegions/>
+ <includedRegions/>
+ <excludedUsers/>
+ <excludedRevprop/>
+ <excludedCommitMessages/>
+ </scm>
+ <assignedNode>RHEL5_any</assignedNode>
+ <canRoam>false</canRoam>
+ <disabled>false</disabled>
+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
+ <jdk>java16_default</jdk>
+ <triggers class="vector">
+ <hudson.triggers.SCMTrigger>
+ <spec>24 0,6,12,18 * * * </spec>
+ </hudson.triggers.SCMTrigger>
+ </triggers>
+ <concurrentBuild>false</concurrentBuild>
+ <builders>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/build/parent/pom.xml</pom>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS} -DJOB_NAME=${JOB_NAME} -DBUILD_ID=${BUILD_ID} -DBUILD_NUMBER=${BUILD_NUMBER}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/sources/pom.xml</pom>
+ <usePrivateRepository>true</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Ant>
+ <targets>collect.test.results.for.hudson</targets>
+ <antName>ant-1.7.x</antName>
+ <buildFile>${WORKSPACE}/build/build.xml</buildFile>
+ </hudson.tasks.Ant>
+ <hudson.tasks.Shell>
+ <command># script here: http://anonsvn.jboss.org/repos/jbosstools/trunk/build/publish.sh
+. ${WORKSPACE}/build/publish.sh</command>
+ </hudson.tasks.Shell>
+ </builders>
+ <publishers>
+ <hudson.tasks.junit.JUnitResultArchiver>
+ <testResults>**/TEST-*.xml</testResults>
+ <keepLongStdio>false</keepLongStdio>
+ <testDataPublishers/>
+ </hudson.tasks.junit.JUnitResultArchiver>
+ <hudson.tasks.ArtifactArchiver>
+ <artifacts>**/*Update*.zip</artifacts>
+ <excludes>**/target/**</excludes>
+ <latestOnly>true</latestOnly>
+ <zip>false</zip>
+ </hudson.tasks.ArtifactArchiver>
+ <hudson.tasks.BuildTrigger>
+ <childProjects>jbosstools-3.3_trunk.aggregate</childProjects>
+ <threshold>
+ <name>UNSTABLE</name>
+ <ordinal>1</ordinal>
+ <color>YELLOW</color>
+ </threshold>
+ </hudson.tasks.BuildTrigger>
+ <hudson.plugins.textfinder.TextFinderPublisher>
+ <fileSet>results/*/logs/ERRORLOG.txt,results/*/logs/FAIL_LOG.txt</fileSet>
+ <regexp>ERROR|AILURE</regexp>
+ <succeedIfFound>false</succeedIfFound>
+ <unstableIfFound>true</unstableIfFound>
+ <alsoCheckConsoleOutput>false</alsoCheckConsoleOutput>
+ </hudson.plugins.textfinder.TextFinderPublisher>
+ <hudson.tasks.Mailer>
+ <recipients/>
+ <notifyEveryBuild>false</notifyEveryBuild>
+ <dontNotifyOnModules>false</dontNotifyOnModules>
+ <dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
+ <sendToIndividuals>true</sendToIndividuals>
+ </hudson.tasks.Mailer>
+ <hudson.plugins.emotional__hudson.EmotionalHudsonPublisher/>
+ </publishers>
+ <buildWrappers>
+ <hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <timeoutMinutes>240</timeoutMinutes>
+ <failBuild>false</failBuild>
+ </hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <hudson.plugins.xvnc.Xvnc>
+ <takeScreenshot>false</takeScreenshot>
+ </hudson.plugins.xvnc.Xvnc>
+ </buildWrappers>
+</project>
\ No newline at end of file
Added: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (rev 0)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:41:39 UTC (rev 30133)
@@ -0,0 +1,138 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <actions/>
+ <description>Nightly build using Tycho, monitoring SVN every 6 hrs for changes.
+
+<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2>
+</description>
+ <logRotator>
+ <daysToKeep>5</daysToKeep>
+ <numToKeep>5</numToKeep>
+ <artifactDaysToKeep>-1</artifactDaysToKeep>
+ <artifactNumToKeep>-1</artifactNumToKeep>
+ </logRotator>
+ <keepDependencies>false</keepDependencies>
+ <properties>
+ <hudson.model.ParametersDefinitionProperty>
+ <parameterDefinitions>
+ <hudson.model.StringParameterDefinition>
+ <name>MAVEN_FLAGS</name>
+ <description>Pass in lifecycle phase and extra flags to Maven, such as:
+<pre>
+clean :: clean before building *
+integration-test :: build and test *
+install :: build, test, and install into m2 repo *
+osgi-test:test :: just (re-)run test(s)
+
+-P hudson :: enable hudson build ID in feature/plugin qualifiers
+-P coverage :: enable coverage reporting
+
+-Dmaven.test.skip :: skip compiling and running tests
+-Dmaven.repo.local=${WORKSPACE}/m2-repository :: path to local m2 repo
+
+-fae :: fail at end
+-fn :: fail never
+
+-o :: offline
+-B :: batch (non-interactive) mode
+-U :: check for updates
+-e :: if error occurs, dump stack into console
+
+-q :: quieter output</pre>
+</description>
+ <defaultValue>clean install -B -U -fae -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ </parameterDefinitions>
+ </hudson.model.ParametersDefinitionProperty>
+ <hudson.plugins.descriptionsetter.JobByDescription/>
+ <hudson.plugins.disk__usage.DiskUsageProperty/>
+ <hudson.plugins.jira.JiraProjectProperty>
+ <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
+ </hudson.plugins.jira.JiraProjectProperty>
+ </properties>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/tests</remote>
+ <local>sources</local>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/build</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <doRevert>false</doRevert>
+ <browser class="hudson.scm.browsers.FishEyeSVN">
+ <url>http://fisheye.jboss.com/browse/JBossTools/</url>
+ <rootModule/>
+ </browser>
+ <excludedRegions/>
+ <includedRegions/>
+ <excludedUsers/>
+ <excludedRevprop/>
+ <excludedCommitMessages/>
+ </scm>
+ <assignedNode>RHEL_any</assignedNode>
+ <canRoam>false</canRoam>
+ <disabled>false</disabled>
+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
+ <jdk>java16_default</jdk>
+ <triggers class="vector">
+ <hudson.triggers.SCMTrigger>
+ <spec>20 3,9,15,21 * * * </spec>
+ </hudson.triggers.SCMTrigger>
+ </triggers>
+ <concurrentBuild>false</concurrentBuild>
+ <builders>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/build/parent/pom.xml</pom>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS} -DJOB_NAME=${JOB_NAME} -DBUILD_ID=${BUILD_ID} -DBUILD_NUMBER=${BUILD_NUMBER}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Shell>
+ <command># script here: http://anonsvn.jboss.org/repos/jbosstools/trunk/build/publish.sh
+. ${WORKSPACE}/build/publish.sh</command>
+ </hudson.tasks.Shell>
+ </builders>
+ <publishers>
+ <hudson.tasks.ArtifactArchiver>
+ <artifacts>**/*Update*.zip</artifacts>
+ <excludes>**/target/**</excludes>
+ <latestOnly>true</latestOnly>
+ <zip>false</zip>
+ </hudson.tasks.ArtifactArchiver>
+ <hudson.tasks.BuildTrigger>
+ <childProjects>jbosstools-3.3_trunk.component--freemarker, jbosstools-3.3_trunk.component--common, jbosstools-3.3_trunk.component--jmx, jbosstools-3.3_trunk.component--bpel, jbosstools-3.3_trunk.component--birt, jbosstools-3.3_trunk.component--examples, jbosstools-3.3_trunk.component--modeshape, jbosstools-3.3_trunk.component--portlet, jbosstools-3.3_trunk.component--profiler, jbosstools-3.3_trunk.component--smooks, jbosstools-3.3_trunk.component--tptp, jbosstools-3.3_trunk.component--flow, jbosstools-3.3_trunk.component--archives</childProjects>
+ <threshold>
+ <name>UNSTABLE</name>
+ <ordinal>1</ordinal>
+ <color>YELLOW</color>
+ </threshold>
+ </hudson.tasks.BuildTrigger>
+ <hudson.tasks.Mailer>
+ <recipients/>
+ <notifyEveryBuild>false</notifyEveryBuild>
+ <dontNotifyOnModules>false</dontNotifyOnModules>
+ <dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
+ <sendToIndividuals>true</sendToIndividuals>
+ </hudson.tasks.Mailer>
+ <hudson.plugins.emotional__hudson.EmotionalHudsonPublisher/>
+ </publishers>
+ <buildWrappers>
+ <hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <timeoutMinutes>120</timeoutMinutes>
+ <failBuild>false</failBuild>
+ </hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <hudson.plugins.xvnc.Xvnc>
+ <takeScreenshot>false</takeScreenshot>
+ </hudson.plugins.xvnc.Xvnc>
+ </buildWrappers>
+</project>
\ No newline at end of file
Added: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (rev 0)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:41:39 UTC (rev 30133)
@@ -0,0 +1,152 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <actions/>
+ <description>Nightly build using Tycho, monitoring SVN every 6 hrs for changes.
+
+<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2>
+</description>
+ <logRotator>
+ <daysToKeep>5</daysToKeep>
+ <numToKeep>5</numToKeep>
+ <artifactDaysToKeep>-1</artifactDaysToKeep>
+ <artifactNumToKeep>-1</artifactNumToKeep>
+ </logRotator>
+ <keepDependencies>false</keepDependencies>
+ <properties>
+ <hudson.model.ParametersDefinitionProperty>
+ <parameterDefinitions>
+ <hudson.model.StringParameterDefinition>
+ <name>MAVEN_FLAGS</name>
+ <description>Pass in lifecycle phase and extra flags to Maven, such as:
+<pre>
+clean :: clean before building *
+integration-test :: build and test *
+install :: build, test, and install into m2 repo *
+osgi-test:test :: just (re-)run test(s)
+
+-P hudson :: enable hudson build ID in feature/plugin qualifiers
+-P coverage :: enable coverage reporting
+
+-Dmaven.test.skip :: skip compiling and running tests
+-Dmaven.repo.local=${WORKSPACE}/m2-repository :: path to local m2 repo
+
+-fae :: fail at end
+-fn :: fail never
+
+-o :: offline
+-B :: batch (non-interactive) mode
+-U :: check for updates
+-e :: if error occurs, dump stack into console
+
+-q :: quieter output</pre>
+</description>
+ <defaultValue>clean install -B -U -fae -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ </parameterDefinitions>
+ </hudson.model.ParametersDefinitionProperty>
+ <hudson.plugins.descriptionsetter.JobByDescription/>
+ <hudson.plugins.disk__usage.DiskUsageProperty/>
+ <hudson.plugins.jira.JiraProjectProperty>
+ <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
+ </hudson.plugins.jira.JiraProjectProperty>
+ </properties>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/tptp</remote>
+ <local>sources</local>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/build</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/requirements</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <doRevert>false</doRevert>
+ <browser class="hudson.scm.browsers.FishEyeSVN">
+ <url>http://fisheye.jboss.com/browse/JBossTools/</url>
+ <rootModule/>
+ </browser>
+ <excludedRegions/>
+ <includedRegions/>
+ <excludedUsers/>
+ <excludedRevprop/>
+ <excludedCommitMessages/>
+ </scm>
+ <assignedNode>RHEL5_any</assignedNode>
+ <canRoam>false</canRoam>
+ <disabled>false</disabled>
+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
+ <jdk>java16_default</jdk>
+ <triggers class="vector">
+ <hudson.triggers.SCMTrigger>
+ <spec>33 0,6,12,18 * * * </spec>
+ </hudson.triggers.SCMTrigger>
+ </triggers>
+ <concurrentBuild>false</concurrentBuild>
+ <builders>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/build/parent/pom.xml</pom>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS} -DJOB_NAME=${JOB_NAME} -DBUILD_ID=${BUILD_ID} -DBUILD_NUMBER=${BUILD_NUMBER}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/sources/pom.xml</pom>
+ <usePrivateRepository>true</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Ant>
+ <targets>collect.test.results.for.hudson</targets>
+ <antName>ant-1.7.x</antName>
+ <buildFile>${WORKSPACE}/build/build.xml</buildFile>
+ </hudson.tasks.Ant>
+ <hudson.tasks.Shell>
+ <command># script here: http://anonsvn.jboss.org/repos/jbosstools/trunk/build/publish.sh
+. ${WORKSPACE}/build/publish.sh</command>
+ </hudson.tasks.Shell>
+ </builders>
+ <publishers>
+ <hudson.tasks.junit.JUnitResultArchiver>
+ <testResults>**/TEST-*.xml</testResults>
+ <keepLongStdio>false</keepLongStdio>
+ <testDataPublishers/>
+ </hudson.tasks.junit.JUnitResultArchiver>
+ <hudson.tasks.ArtifactArchiver>
+ <artifacts>**/*Update*.zip</artifacts>
+ <excludes>**/target/**</excludes>
+ <latestOnly>true</latestOnly>
+ <zip>false</zip>
+ </hudson.tasks.ArtifactArchiver>
+ <hudson.tasks.BuildTrigger>
+ <childProjects>jbosstools-3.3_trunk.aggregate</childProjects>
+ <threshold>
+ <name>UNSTABLE</name>
+ <ordinal>1</ordinal>
+ <color>YELLOW</color>
+ </threshold>
+ </hudson.tasks.BuildTrigger>
+ <hudson.tasks.Mailer>
+ <recipients/>
+ <notifyEveryBuild>false</notifyEveryBuild>
+ <dontNotifyOnModules>false</dontNotifyOnModules>
+ <dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
+ <sendToIndividuals>true</sendToIndividuals>
+ </hudson.tasks.Mailer>
+ <hudson.plugins.emotional__hudson.EmotionalHudsonPublisher/>
+ </publishers>
+ <buildWrappers>
+ <hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <timeoutMinutes>120</timeoutMinutes>
+ <failBuild>false</failBuild>
+ </hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <hudson.plugins.xvnc.Xvnc>
+ <takeScreenshot>false</takeScreenshot>
+ </hudson.plugins.xvnc.Xvnc>
+ </buildWrappers>
+</project>
\ No newline at end of file
Added: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (rev 0)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:41:39 UTC (rev 30133)
@@ -0,0 +1,142 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <actions/>
+ <description>Nightly build using Tycho, monitoring SVN every 6 hrs for changes.
+
+<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2></description>
+ <logRotator>
+ <daysToKeep>5</daysToKeep>
+ <numToKeep>5</numToKeep>
+ <artifactDaysToKeep>-1</artifactDaysToKeep>
+ <artifactNumToKeep>-1</artifactNumToKeep>
+ </logRotator>
+ <keepDependencies>false</keepDependencies>
+ <properties>
+ <hudson.model.ParametersDefinitionProperty>
+ <parameterDefinitions>
+ <hudson.model.StringParameterDefinition>
+ <name>MAVEN_FLAGS</name>
+ <description>Pass in lifecycle phase and extra flags to Maven, such as:
+<pre>
+clean :: clean before building *
+integration-test :: build and test *
+install :: build, test, and install into m2 repo *
+osgi-test:test :: just (re-)run test(s)
+
+-P hudson :: enable hudson build ID in feature/plugin qualifiers
+-P coverage :: enable coverage reporting
+
+-Dmaven.test.skip :: skip compiling and running tests
+-Dmaven.repo.local=${WORKSPACE}/m2-repository :: path to local m2 repo
+
+-fae :: fail at end
+-fn :: fail never
+
+-o :: offline
+-B :: batch (non-interactive) mode
+-U :: check for updates
+-e :: if error occurs, dump stack into console
+
+-q :: quieter output</pre>
+</description>
+ <defaultValue>clean install -B -U -fae -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ </parameterDefinitions>
+ </hudson.model.ParametersDefinitionProperty>
+ <hudson.plugins.descriptionsetter.JobByDescription/>
+ <hudson.plugins.disk__usage.DiskUsageProperty/>
+ <hudson.plugins.jira.JiraProjectProperty>
+ <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
+ </hudson.plugins.jira.JiraProjectProperty>
+ </properties>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/usage</remote>
+ <local>sources</local>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/build</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <doRevert>false</doRevert>
+ <browser class="hudson.scm.browsers.FishEyeSVN">
+ <url>http://fisheye.jboss.com/browse/JBossTools/</url>
+ <rootModule/>
+ </browser>
+ <excludedRegions/>
+ <includedRegions/>
+ <excludedUsers/>
+ <excludedRevprop/>
+ <excludedCommitMessages/>
+ </scm>
+ <assignedNode>RHEL_any</assignedNode>
+ <canRoam>false</canRoam>
+ <disabled>false</disabled>
+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
+ <jdk>java16_default</jdk>
+ <triggers class="vector">
+ <hudson.triggers.SCMTrigger>
+ <spec>10 4,10,16,22 * * * </spec>
+ </hudson.triggers.SCMTrigger>
+ </triggers>
+ <concurrentBuild>false</concurrentBuild>
+ <builders>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/build/parent/pom.xml</pom>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS} -DJOB_NAME=${JOB_NAME} -DBUILD_ID=${BUILD_ID} -DBUILD_NUMBER=${BUILD_NUMBER}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <usePrivateRepository>true</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Shell>
+ <command># script here: http://anonsvn.jboss.org/repos/jbosstools/trunk/build/publish.sh
+. ${WORKSPACE}/build/publish.sh</command>
+ </hudson.tasks.Shell>
+ </builders>
+ <publishers>
+ <hudson.tasks.junit.JUnitResultArchiver>
+ <testResults>**/TEST-*.xml</testResults>
+ <keepLongStdio>false</keepLongStdio>
+ <testDataPublishers/>
+ </hudson.tasks.junit.JUnitResultArchiver>
+ <hudson.tasks.ArtifactArchiver>
+ <artifacts>**/*Update*.zip</artifacts>
+ <excludes>**/target/**</excludes>
+ <latestOnly>true</latestOnly>
+ <zip>false</zip>
+ </hudson.tasks.ArtifactArchiver>
+ <hudson.tasks.BuildTrigger>
+ <childProjects>jbosstools-3.3_trunk.aggregate</childProjects>
+ <threshold>
+ <name>UNSTABLE</name>
+ <ordinal>1</ordinal>
+ <color>YELLOW</color>
+ </threshold>
+ </hudson.tasks.BuildTrigger>
+ <hudson.tasks.Mailer>
+ <recipients/>
+ <notifyEveryBuild>false</notifyEveryBuild>
+ <dontNotifyOnModules>false</dontNotifyOnModules>
+ <dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
+ <sendToIndividuals>true</sendToIndividuals>
+ </hudson.tasks.Mailer>
+ <hudson.plugins.emotional__hudson.EmotionalHudsonPublisher/>
+ </publishers>
+ <buildWrappers>
+ <hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <timeoutMinutes>120</timeoutMinutes>
+ <failBuild>false</failBuild>
+ </hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <hudson.plugins.xvnc.Xvnc>
+ <takeScreenshot>false</takeScreenshot>
+ </hudson.plugins.xvnc.Xvnc>
+ </buildWrappers>
+</project>
\ No newline at end of file
Added: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (rev 0)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:41:39 UTC (rev 30133)
@@ -0,0 +1,159 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <actions/>
+ <description>Nightly build using Tycho, monitoring SVN every 6 hrs for changes.
+
+<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2>
+</description>
+ <logRotator>
+ <daysToKeep>5</daysToKeep>
+ <numToKeep>5</numToKeep>
+ <artifactDaysToKeep>-1</artifactDaysToKeep>
+ <artifactNumToKeep>-1</artifactNumToKeep>
+ </logRotator>
+ <keepDependencies>false</keepDependencies>
+ <properties>
+ <hudson.model.ParametersDefinitionProperty>
+ <parameterDefinitions>
+ <hudson.model.StringParameterDefinition>
+ <name>MAVEN_FLAGS</name>
+ <description>Pass in lifecycle phase and extra flags to Maven, such as:
+<pre>
+clean :: clean before building *
+integration-test :: build and test *
+install :: build, test, and install into m2 repo *
+osgi-test:test :: just (re-)run test(s)
+
+-P hudson :: enable hudson build ID in feature/plugin qualifiers
+-P coverage :: enable coverage reporting
+
+-Dmaven.test.skip :: skip compiling and running tests
+-Dmaven.repo.local=${WORKSPACE}/m2-repository :: path to local m2 repo
+
+-fae :: fail at end
+-fn :: fail never
+
+-o :: offline
+-B :: batch (non-interactive) mode
+-U :: check for updates
+-e :: if error occurs, dump stack into console
+
+-q :: quieter output</pre>
+</description>
+ <defaultValue>clean install -B -U -fn -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ </parameterDefinitions>
+ </hudson.model.ParametersDefinitionProperty>
+ <hudson.plugins.descriptionsetter.JobByDescription/>
+ <hudson.plugins.disk__usage.DiskUsageProperty/>
+ <hudson.plugins.jira.JiraProjectProperty>
+ <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
+ </hudson.plugins.jira.JiraProjectProperty>
+ </properties>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/vpe</remote>
+ <local>sources</local>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/build</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/requirements</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <doRevert>false</doRevert>
+ <browser class="hudson.scm.browsers.FishEyeSVN">
+ <url>http://fisheye.jboss.com/browse/JBossTools/</url>
+ <rootModule/>
+ </browser>
+ <excludedRegions/>
+ <includedRegions/>
+ <excludedUsers/>
+ <excludedRevprop/>
+ <excludedCommitMessages/>
+ </scm>
+ <assignedNode>RHEL5_any</assignedNode>
+ <canRoam>false</canRoam>
+ <disabled>false</disabled>
+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
+ <jdk>java16_default</jdk>
+ <triggers class="vector">
+ <hudson.triggers.SCMTrigger>
+ <spec>45 0,6,12,18 * * * </spec>
+ </hudson.triggers.SCMTrigger>
+ </triggers>
+ <concurrentBuild>false</concurrentBuild>
+ <builders>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/build/parent/pom.xml</pom>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS} -DJOB_NAME=${JOB_NAME} -DBUILD_ID=${BUILD_ID} -DBUILD_NUMBER=${BUILD_NUMBER}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/sources/pom.xml</pom>
+ <usePrivateRepository>true</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Ant>
+ <targets>collect.test.results.for.hudson</targets>
+ <antName>ant-1.7.x</antName>
+ <buildFile>${WORKSPACE}/build/build.xml</buildFile>
+ </hudson.tasks.Ant>
+ <hudson.tasks.Shell>
+ <command># script here: http://anonsvn.jboss.org/repos/jbosstools/trunk/build/publish.sh
+. ${WORKSPACE}/build/publish.sh</command>
+ </hudson.tasks.Shell>
+ </builders>
+ <publishers>
+ <hudson.tasks.junit.JUnitResultArchiver>
+ <testResults>**/TEST-*.xml</testResults>
+ <keepLongStdio>false</keepLongStdio>
+ <testDataPublishers/>
+ </hudson.tasks.junit.JUnitResultArchiver>
+ <hudson.tasks.ArtifactArchiver>
+ <artifacts>**/*Update*.zip</artifacts>
+ <excludes>**/target/**</excludes>
+ <latestOnly>true</latestOnly>
+ <zip>false</zip>
+ </hudson.tasks.ArtifactArchiver>
+ <hudson.tasks.BuildTrigger>
+ <childProjects>jbosstools-3.3_trunk.component--jsf, jbosstools-3.3_trunk.component--struts</childProjects>
+ <threshold>
+ <name>SUCCESS</name>
+ <ordinal>0</ordinal>
+ <color>BLUE</color>
+ </threshold>
+ </hudson.tasks.BuildTrigger>
+ <hudson.plugins.textfinder.TextFinderPublisher>
+ <fileSet>results/*/logs/ERRORLOG.txt,results/*/logs/FAIL_LOG.txt</fileSet>
+ <regexp>ERROR|AILURE</regexp>
+ <succeedIfFound>false</succeedIfFound>
+ <unstableIfFound>true</unstableIfFound>
+ <alsoCheckConsoleOutput>false</alsoCheckConsoleOutput>
+ </hudson.plugins.textfinder.TextFinderPublisher>
+ <hudson.tasks.Mailer>
+ <recipients/>
+ <notifyEveryBuild>false</notifyEveryBuild>
+ <dontNotifyOnModules>false</dontNotifyOnModules>
+ <dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
+ <sendToIndividuals>true</sendToIndividuals>
+ </hudson.tasks.Mailer>
+ <hudson.plugins.emotional__hudson.EmotionalHudsonPublisher/>
+ </publishers>
+ <buildWrappers>
+ <hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <timeoutMinutes>120</timeoutMinutes>
+ <failBuild>false</failBuild>
+ </hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <hudson.plugins.xvnc.Xvnc>
+ <takeScreenshot>false</takeScreenshot>
+ </hudson.plugins.xvnc.Xvnc>
+ </buildWrappers>
+</project>
\ No newline at end of file
Added: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (rev 0)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:41:39 UTC (rev 30133)
@@ -0,0 +1,164 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <actions/>
+ <description>Nightly build using Tycho, monitoring SVN every 6 hrs for changes.
+
+<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2>
+</description>
+ <logRotator>
+ <daysToKeep>5</daysToKeep>
+ <numToKeep>5</numToKeep>
+ <artifactDaysToKeep>-1</artifactDaysToKeep>
+ <artifactNumToKeep>-1</artifactNumToKeep>
+ </logRotator>
+ <keepDependencies>false</keepDependencies>
+ <properties>
+ <hudson.model.ParametersDefinitionProperty>
+ <parameterDefinitions>
+ <hudson.model.StringParameterDefinition>
+ <name>MAVEN_FLAGS</name>
+ <description>Pass in lifecycle phase and extra flags to Maven, such as:
+<pre>
+clean :: clean before building *
+integration-test :: build and test *
+install :: build, test, and install into m2 repo *
+osgi-test:test :: just (re-)run test(s)
+
+-P hudson :: enable hudson build ID in feature/plugin qualifiers
+-P coverage :: enable coverage reporting
+
+-Dmaven.test.skip :: skip compiling and running tests
+-Dmaven.repo.local=${WORKSPACE}/m2-repository :: path to local m2 repo
+
+-fae :: fail at end
+-fn :: fail never
+
+-o :: offline
+-B :: batch (non-interactive) mode
+-U :: check for updates
+-e :: if error occurs, dump stack into console
+
+-q :: quieter output</pre>
+</description>
+ <defaultValue>clean install -B -U -fn -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ </parameterDefinitions>
+ </hudson.model.ParametersDefinitionProperty>
+ <hudson.plugins.descriptionsetter.JobByDescription/>
+ <hudson.plugins.disk__usage.DiskUsageProperty/>
+ <hudson.plugins.jira.JiraProjectProperty>
+ <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
+ </hudson.plugins.jira.JiraProjectProperty>
+ </properties>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/ws</remote>
+ <local>sources</local>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/build</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/requirements</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <doRevert>false</doRevert>
+ <browser class="hudson.scm.browsers.FishEyeSVN">
+ <url>http://fisheye.jboss.com/browse/JBossTools/</url>
+ <rootModule/>
+ </browser>
+ <excludedRegions/>
+ <includedRegions/>
+ <excludedUsers/>
+ <excludedRevprop/>
+ <excludedCommitMessages/>
+ </scm>
+ <assignedNode>RHEL5_x86</assignedNode>
+ <canRoam>false</canRoam>
+ <disabled>false</disabled>
+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
+ <jdk>java16_default</jdk>
+ <triggers class="vector">
+ <hudson.triggers.SCMTrigger>
+ <spec>50 3,9,15,21 * * * </spec>
+ </hudson.triggers.SCMTrigger>
+ </triggers>
+ <concurrentBuild>false</concurrentBuild>
+ <builders>
+ <hudson.tasks.Shell>
+ <command>echo "${NATIVE_TOOLS}${SEP}${JAVA15}"
+export PATH=${NATIVE_TOOLS}${SEP}${JAVA15}/bin:$PATH
+java -version</command>
+ </hudson.tasks.Shell>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/build/parent/pom.xml</pom>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS} -DJOB_NAME=${JOB_NAME} -DBUILD_ID=${BUILD_ID} -DBUILD_NUMBER=${BUILD_NUMBER}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m -Djbosstools.test.jre.5="${NATIVE_TOOLS}${SEP}${JAVA15}" -Djbosstools.test.jre.6="${NATIVE_TOOLS}${SEP}${JAVA16}"</jvmOptions>
+ <pom>${WORKSPACE}/sources/pom.xml</pom>
+ <usePrivateRepository>true</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Ant>
+ <targets>collect.test.results.for.hudson</targets>
+ <antName>ant-1.7.x</antName>
+ <buildFile>${WORKSPACE}/build/build.xml</buildFile>
+ </hudson.tasks.Ant>
+ <hudson.tasks.Shell>
+ <command># script here: http://anonsvn.jboss.org/repos/jbosstools/trunk/build/publish.sh
+. ${WORKSPACE}/build/publish.sh</command>
+ </hudson.tasks.Shell>
+ </builders>
+ <publishers>
+ <hudson.tasks.junit.JUnitResultArchiver>
+ <testResults>**/TEST-*.xml</testResults>
+ <keepLongStdio>false</keepLongStdio>
+ <testDataPublishers/>
+ </hudson.tasks.junit.JUnitResultArchiver>
+ <hudson.tasks.ArtifactArchiver>
+ <artifacts>**/*Update*.zip</artifacts>
+ <excludes>**/target/**</excludes>
+ <latestOnly>true</latestOnly>
+ <zip>false</zip>
+ </hudson.tasks.ArtifactArchiver>
+ <hudson.tasks.BuildTrigger>
+ <childProjects>jbosstools-3.3_trunk.aggregate</childProjects>
+ <threshold>
+ <name>UNSTABLE</name>
+ <ordinal>1</ordinal>
+ <color>YELLOW</color>
+ </threshold>
+ </hudson.tasks.BuildTrigger>
+ <hudson.plugins.textfinder.TextFinderPublisher>
+ <fileSet>results/*/logs/ERRORLOG.txt,results/*/logs/FAIL_LOG.txt</fileSet>
+ <regexp>ERROR|AILURE</regexp>
+ <succeedIfFound>false</succeedIfFound>
+ <unstableIfFound>true</unstableIfFound>
+ <alsoCheckConsoleOutput>false</alsoCheckConsoleOutput>
+ </hudson.plugins.textfinder.TextFinderPublisher>
+ <hudson.tasks.Mailer>
+ <recipients/>
+ <notifyEveryBuild>false</notifyEveryBuild>
+ <dontNotifyOnModules>false</dontNotifyOnModules>
+ <dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
+ <sendToIndividuals>true</sendToIndividuals>
+ </hudson.tasks.Mailer>
+ <hudson.plugins.emotional__hudson.EmotionalHudsonPublisher/>
+ </publishers>
+ <buildWrappers>
+ <hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <timeoutMinutes>120</timeoutMinutes>
+ <failBuild>false</failBuild>
+ </hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <hudson.plugins.xvnc.Xvnc>
+ <takeScreenshot>false</takeScreenshot>
+ </hudson.plugins.xvnc.Xvnc>
+ </buildWrappers>
+</project>
\ No newline at end of file
Added: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (rev 0)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:41:39 UTC (rev 30133)
@@ -0,0 +1,139 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <actions/>
+ <description>Tycho-based build, monitoring SVN for changes.
+
+<h2 style="color:red">Tests are disabled as this is simply a "will everything compile?" verification build.</h2>
+
+<p><i>Build should take ~30min if sources local; +30-90min for SVN checkout, and 4-6 hrs for tests.</i>
+
+<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2></description>
+ <logRotator>
+ <daysToKeep>-1</daysToKeep>
+ <numToKeep>10</numToKeep>
+ <artifactDaysToKeep>-1</artifactDaysToKeep>
+ <artifactNumToKeep>-1</artifactNumToKeep>
+ </logRotator>
+ <keepDependencies>false</keepDependencies>
+ <properties>
+ <hudson.model.ParametersDefinitionProperty>
+ <parameterDefinitions>
+ <hudson.model.StringParameterDefinition>
+ <name>MAVEN_FLAGS</name>
+ <description>Pass in lifecycle phase and extra flags to Maven, such as:
+<pre>
+clean :: clean before building *
+integration-test :: build and test *
+install :: build, test, and install into m2 repo *
+osgi-test:test :: just (re-)run test(s)
+
+-P hudson :: enable hudson build ID in feature/plugin qualifiers
+-P coverage :: enable coverage reporting
+-P local.site :: use local path as target against which to resolve deps
+-Dlocal.site=file://home/hudson/static_build_env/jbds/target-platform_3.3.indigo/e37M5-wtp33M5.target/ :: set local path
+-P hudson :: add hudson job # to generated plugin/feature qualifiers
+-P coverage :: support emma
+
+
+-Dmaven.test.skip :: skip compiling and running tests
+-Dmaven.repo.local=${WORKSPACE}/m2-repository :: path to local m2 repo
+
+-fae :: fail at end
+-fn :: fail never
+
+-o :: offline
+-B :: batch (non-interactive) mode
+-U :: check for updates
+-e :: if error occurs, dump stack into console
+
+-q :: quieter output</pre>
+</description>
+ <defaultValue>clean install -B -U -fae -e -P local.site,hudson -Dlocal.site=file://home/hudson/static_build_env/jbds/target-platform_3.3.indigo/e37M5-wtp33M5.target/ -Dmaven.repo.local=${WORKSPACE}/m2-repository -Dmaven.test.skip</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ <hudson.model.ChoiceParameterDefinition>
+ <name>RELEASE</name>
+ <description>If a release, name zip w/ timestamp and build ID; otherwise call it "SNAPSHOT"</description>
+ <choices class="java.util.Arrays$ArrayList">
+ <a class="string-array">
+ <string>No</string>
+ <string>Yes</string>
+ </a>
+ </choices>
+ </hudson.model.ChoiceParameterDefinition>
+ <hudson.model.ChoiceParameterDefinition>
+ <name>update.site.description</name>
+ <description/>
+ <choices class="java.util.Arrays$ArrayList">
+ <a class="string-array">
+ <string>Nightly Build</string>
+ <string>Development Milestone</string>
+ <string>Stable Release</string>
+ </a>
+ </choices>
+ </hudson.model.ChoiceParameterDefinition>
+ </parameterDefinitions>
+ </hudson.model.ParametersDefinitionProperty>
+ <hudson.plugins.descriptionsetter.JobByDescription/>
+ <hudson.plugins.disk__usage.DiskUsageProperty/>
+ <hudson.plugins.jira.JiraProjectProperty>
+ <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
+ </hudson.plugins.jira.JiraProjectProperty>
+ </properties>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>https://svn.jboss.org/repos/jbosstools/trunk</remote>
+ <local>sources</local>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <doRevert>false</doRevert>
+ <browser class="hudson.scm.browsers.FishEyeSVN">
+ <url>http://fisheye.jboss.com/browse/JBossTools/</url>
+ <rootModule/>
+ </browser>
+ <excludedRegions/>
+ <includedRegions/>
+ <excludedUsers/>
+ <excludedRevprop/>
+ <excludedCommitMessages/>
+ </scm>
+ <assignedNode>RHEL_any</assignedNode>
+ <canRoam>false</canRoam>
+ <disabled>false</disabled>
+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
+ <jdk>java16_default</jdk>
+ <triggers class="vector">
+ <hudson.triggers.SCMTrigger>
+ <spec>45 0-23 * * *</spec>
+ </hudson.triggers.SCMTrigger>
+ </triggers>
+ <concurrentBuild>false</concurrentBuild>
+ <builders>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>build/parent/pom.xml</pom>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS} -DJOB_NAME=${JOB_NAME} -DBUILD_ID=${BUILD_ID} -DBUILD_NUMBER=${BUILD_NUMBER}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>build/pom.xml</pom>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ </builders>
+ <publishers>
+ <hudson.tasks.Mailer>
+ <recipients/>
+ <notifyEveryBuild>false</notifyEveryBuild>
+ <dontNotifyOnModules>false</dontNotifyOnModules>
+ <dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
+ <sendToIndividuals>true</sendToIndividuals>
+ </hudson.tasks.Mailer>
+ <hudson.plugins.emotional__hudson.EmotionalHudsonPublisher/>
+ </publishers>
+ <buildWrappers/>
+</project>
\ No newline at end of file
Deleted: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:31:46 UTC (rev 30132)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:41:39 UTC (rev 30133)
@@ -1,141 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project>
- <actions/>
- <description>p2 mirror an update site consisting of the contents of the target platform, monitoring SVN for changes.
-
-<p>Repo is created outside of Hudson workspace for reuse between multiple builds.
-
-<ul>
-<li>/home/hudson/static_build_env/jbds/tools/sources/REPO_3.3.indigo/ (sync'd to: /home/hudson/static_build_env/jbds/target-platform_3.3.indigo/)
-<li><a href="http://download.jboss.org/jbosstools/updates/target-platform_3.3.indigo/l...">http://download.jboss.org/jbosstools/updates/target-platform_3.3.indigo/latest/</a> (sftp://tools@filemgmt.jboss.org/downloads_htdocs/tools/updates/target-platform_3.3.indigo/latest/)
-<li><a href="http://download.jboss.org/jbosstools/updates/target-platform_3.3.indigo/e...">http://download.jboss.org/jbosstools/updates/target-platform_3.3.indigo/e37M5-wtp33M5.target.zip</a> (sftp://tools@filemgmt.jboss.org/downloads_htdocs/tools/updates/target-platform_3.3.indigo/e37M5-wtp33M5.target.zip)
-</ul>
-
-<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2>
-
-</description>
- <logRotator>
- <daysToKeep>5</daysToKeep>
- <numToKeep>5</numToKeep>
- <artifactDaysToKeep>-1</artifactDaysToKeep>
- <artifactNumToKeep>-1</artifactNumToKeep>
- </logRotator>
- <keepDependencies>false</keepDependencies>
- <properties>
- <hudson.model.ParametersDefinitionProperty>
- <parameterDefinitions>
- <hudson.model.StringParameterDefinition>
- <name>targetFile</name>
- <description>target file to resolve</description>
- <defaultValue>multiple.target</defaultValue>
- </hudson.model.StringParameterDefinition>
- <hudson.model.StringParameterDefinition>
- <name>repoDir</name>
- <description>path to stage the update site</description>
- <defaultValue>/home/hudson/static_build_env/jbds/tools/sources/REPO_3.3.indigo</defaultValue>
- </hudson.model.StringParameterDefinition>
- <hudson.model.ChoiceParameterDefinition>
- <name>CLEAN</name>
- <description>Should we purge the existing repo and start from a clean one (true),
-or build on top of an existing one (false)?</description>
- <choices class="java.util.Arrays$ArrayList">
- <a class="string-array">
- <string>false</string>
- <string>true</string>
- </a>
- </choices>
- </hudson.model.ChoiceParameterDefinition>
- <hudson.model.StringParameterDefinition>
- <name>MAVEN_FLAGS</name>
- <description>add 'deploy' to push to nexus</description>
- <defaultValue>clean install -B -U -fae -e -Dmaven.repo.local=${WORKSPACE}/m2-repo</defaultValue>
- </hudson.model.StringParameterDefinition>
- </parameterDefinitions>
- </hudson.model.ParametersDefinitionProperty>
- <hudson.plugins.descriptionsetter.JobByDescription/>
- <hudson.plugins.disk__usage.DiskUsageProperty/>
- <hudson.plugins.jira.JiraProjectProperty>
- <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
- </hudson.plugins.jira.JiraProjectProperty>
- </properties>
- <scm class="hudson.scm.SubversionSCM">
- <locations>
- <hudson.scm.SubversionSCM_-ModuleLocation>
- <remote>https://svn.jboss.org/repos/jbosstools/trunk/build</remote>
- <local>sources</local>
- </hudson.scm.SubversionSCM_-ModuleLocation>
- </locations>
- <useUpdate>true</useUpdate>
- <doRevert>false</doRevert>
- <browser class="hudson.scm.browsers.FishEyeSVN">
- <url>http://fisheye.jboss.com/browse/JBossTools/</url>
- <rootModule/>
- </browser>
- <excludedRegions/>
- <includedRegions/>
- <excludedUsers/>
- <excludedRevprop/>
- <excludedCommitMessages/>
- </scm>
- <assignedNode>RHEL5_any</assignedNode>
- <canRoam>false</canRoam>
- <disabled>false</disabled>
- <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
- <jdk>java16_default</jdk>
- <triggers class="vector">
- <hudson.triggers.SCMTrigger>
- <spec># 4:15am every day
-15 4 * * *</spec>
- </hudson.triggers.SCMTrigger>
- </triggers>
- <concurrentBuild>false</concurrentBuild>
- <builders>
- <hudson.tasks.Shell>
- <command># clean up pre-existing locally before starting fresh
-repoDir=/home/hudson/static_build_env/jbds/tools/sources/REPO_3.3.indigo
-destinationPath=/home/hudson/static_build_env/jbds/target-platform_3.3.indigo
-if [[ $CLEAN == "true" ]]; then rm -fr ${repoDir} ${destinationPath}; fi
-</command>
- </hudson.tasks.Shell>
- <hudson.tasks.Ant>
- <targets>build.local.target.platform.repo</targets>
- <antName>ant-1.7.x</antName>
- <antOpts>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</antOpts>
- <buildFile>${WORKSPACE}/sources/target-platform/build.xml</buildFile>
- </hudson.tasks.Ant>
- <hudson.tasks.Maven>
- <targets>${MAVEN_FLAGS} -DJOB_NAME=${JOB_NAME} -DBUILD_ID=${BUILD_ID} -DBUILD_NUMBER=${BUILD_NUMBER}</targets>
- <mavenName>maven-3.0.1</mavenName>
- <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
- <pom>${WORKSPACE}/sources/parent/pom.xml</pom>
- <usePrivateRepository>true</usePrivateRepository>
- </hudson.tasks.Maven>
- <hudson.tasks.Shell>
- <command># script here: http://anonsvn.jboss.org/repos/jbosstools/trunk/build/target-platform/pub...
-. ${WORKSPACE}/sources/target-platform/publish.sh -jbt_3.3.indigo</command>
- </hudson.tasks.Shell>
- </builders>
- <publishers>
- <hudson.tasks.BuildTrigger>
- <childProjects>devstudio-5.0_trunk.target-platform, jbosstools-3.3_trunk.component--gwt, jbosstools-3.3_trunk.component--runtime, jbosstools-3.3_trunk.component--tests, jbosstools-3.3_trunk.component--usage, jbosstools-3.3_trunk.continuous, jbosstools-3.3_trunk.tests, jbosstools-drools-5.2_trunk, jbosstools-pi4soa-3.1_trunk, jbosstools-savara-1.1_trunk, jbosstools-teiid-designer-7.4_trunk</childProjects>
- <threshold>
- <name>UNSTABLE</name>
- <ordinal>1</ordinal>
- <color>YELLOW</color>
- </threshold>
- </hudson.tasks.BuildTrigger>
- <hudson.plugins.textfinder.TextFinderPublisher>
- <regexp>ERROR|AILURE|\[exec\] Caused by:|No such file or directory|: Exception in |: Error in |\[exec\] Result: </regexp>
- <succeedIfFound>false</succeedIfFound>
- <unstableIfFound>false</unstableIfFound>
- <alsoCheckConsoleOutput>true</alsoCheckConsoleOutput>
- </hudson.plugins.textfinder.TextFinderPublisher>
- <hudson.plugins.ws__cleanup.WsCleanup/>
- </publishers>
- <buildWrappers>
- <hudson.plugins.build__timeout.BuildTimeoutWrapper>
- <timeoutMinutes>240</timeoutMinutes>
- <failBuild>false</failBuild>
- </hudson.plugins.build__timeout.BuildTimeoutWrapper>
- </buildWrappers>
-</project>
\ No newline at end of file
Copied: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (from rev 30132, trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...)
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (rev 0)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:41:39 UTC (rev 30133)
@@ -0,0 +1,141 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <actions/>
+ <description>p2 mirror an update site consisting of the contents of the target platform, monitoring SVN for changes.
+
+<p>Repo is created outside of Hudson workspace for reuse between multiple builds.
+
+<ul>
+<li>/home/hudson/static_build_env/jbds/tools/sources/REPO_3.3.indigo/ (sync'd to: /home/hudson/static_build_env/jbds/target-platform_3.3.indigo/)
+<li><a href="http://download.jboss.org/jbosstools/updates/target-platform_3.3.indigo/l...">http://download.jboss.org/jbosstools/updates/target-platform_3.3.indigo/latest/</a> (sftp://tools@filemgmt.jboss.org/downloads_htdocs/tools/updates/target-platform_3.3.indigo/latest/)
+<li><a href="http://download.jboss.org/jbosstools/updates/target-platform_3.3.indigo/e...">http://download.jboss.org/jbosstools/updates/target-platform_3.3.indigo/e37M5-wtp33M5.target.zip</a> (sftp://tools@filemgmt.jboss.org/downloads_htdocs/tools/updates/target-platform_3.3.indigo/e37M5-wtp33M5.target.zip)
+</ul>
+
+<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2>
+
+</description>
+ <logRotator>
+ <daysToKeep>5</daysToKeep>
+ <numToKeep>5</numToKeep>
+ <artifactDaysToKeep>-1</artifactDaysToKeep>
+ <artifactNumToKeep>-1</artifactNumToKeep>
+ </logRotator>
+ <keepDependencies>false</keepDependencies>
+ <properties>
+ <hudson.model.ParametersDefinitionProperty>
+ <parameterDefinitions>
+ <hudson.model.StringParameterDefinition>
+ <name>targetFile</name>
+ <description>target file to resolve</description>
+ <defaultValue>multiple.target</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ <hudson.model.StringParameterDefinition>
+ <name>repoDir</name>
+ <description>path to stage the update site</description>
+ <defaultValue>/home/hudson/static_build_env/jbds/tools/sources/REPO_3.3.indigo</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ <hudson.model.ChoiceParameterDefinition>
+ <name>CLEAN</name>
+ <description>Should we purge the existing repo and start from a clean one (true),
+or build on top of an existing one (false)?</description>
+ <choices class="java.util.Arrays$ArrayList">
+ <a class="string-array">
+ <string>false</string>
+ <string>true</string>
+ </a>
+ </choices>
+ </hudson.model.ChoiceParameterDefinition>
+ <hudson.model.StringParameterDefinition>
+ <name>MAVEN_FLAGS</name>
+ <description>add 'deploy' to push to nexus</description>
+ <defaultValue>clean install -B -U -fae -e -Dmaven.repo.local=${WORKSPACE}/m2-repo</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ </parameterDefinitions>
+ </hudson.model.ParametersDefinitionProperty>
+ <hudson.plugins.descriptionsetter.JobByDescription/>
+ <hudson.plugins.disk__usage.DiskUsageProperty/>
+ <hudson.plugins.jira.JiraProjectProperty>
+ <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
+ </hudson.plugins.jira.JiraProjectProperty>
+ </properties>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>https://svn.jboss.org/repos/jbosstools/trunk/build</remote>
+ <local>sources</local>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <doRevert>false</doRevert>
+ <browser class="hudson.scm.browsers.FishEyeSVN">
+ <url>http://fisheye.jboss.com/browse/JBossTools/</url>
+ <rootModule/>
+ </browser>
+ <excludedRegions/>
+ <includedRegions/>
+ <excludedUsers/>
+ <excludedRevprop/>
+ <excludedCommitMessages/>
+ </scm>
+ <assignedNode>RHEL5_any</assignedNode>
+ <canRoam>false</canRoam>
+ <disabled>false</disabled>
+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
+ <jdk>java16_default</jdk>
+ <triggers class="vector">
+ <hudson.triggers.SCMTrigger>
+ <spec># 4:15am every day
+15 4 * * *</spec>
+ </hudson.triggers.SCMTrigger>
+ </triggers>
+ <concurrentBuild>false</concurrentBuild>
+ <builders>
+ <hudson.tasks.Shell>
+ <command># clean up pre-existing locally before starting fresh
+repoDir=/home/hudson/static_build_env/jbds/tools/sources/REPO_3.3.indigo
+destinationPath=/home/hudson/static_build_env/jbds/target-platform_3.3.indigo
+if [[ $CLEAN == "true" ]]; then rm -fr ${repoDir} ${destinationPath}; fi
+</command>
+ </hudson.tasks.Shell>
+ <hudson.tasks.Ant>
+ <targets>build.local.target.platform.repo</targets>
+ <antName>ant-1.7.x</antName>
+ <antOpts>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</antOpts>
+ <buildFile>${WORKSPACE}/sources/target-platform/build.xml</buildFile>
+ </hudson.tasks.Ant>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS} -DJOB_NAME=${JOB_NAME} -DBUILD_ID=${BUILD_ID} -DBUILD_NUMBER=${BUILD_NUMBER}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/sources/parent/pom.xml</pom>
+ <usePrivateRepository>true</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Shell>
+ <command># script here: http://anonsvn.jboss.org/repos/jbosstools/trunk/build/target-platform/pub...
+. ${WORKSPACE}/sources/target-platform/publish.sh -jbt_3.3.indigo</command>
+ </hudson.tasks.Shell>
+ </builders>
+ <publishers>
+ <hudson.tasks.BuildTrigger>
+ <childProjects>devstudio-5.0_trunk.target-platform, jbosstools-3.3_trunk.component--gwt, jbosstools-3.3_trunk.component--runtime, jbosstools-3.3_trunk.component--tests, jbosstools-3.3_trunk.component--usage, jbosstools-3.3_trunk.continuous, jbosstools-3.3_trunk.tests, jbosstools-drools-5.2_trunk, jbosstools-pi4soa-3.1_trunk, jbosstools-savara-1.1_trunk, jbosstools-teiid-designer-7.4_trunk</childProjects>
+ <threshold>
+ <name>UNSTABLE</name>
+ <ordinal>1</ordinal>
+ <color>YELLOW</color>
+ </threshold>
+ </hudson.tasks.BuildTrigger>
+ <hudson.plugins.textfinder.TextFinderPublisher>
+ <regexp>ERROR|AILURE|\[exec\] Caused by:|No such file or directory|: Exception in |: Error in |\[exec\] Result: </regexp>
+ <succeedIfFound>false</succeedIfFound>
+ <unstableIfFound>false</unstableIfFound>
+ <alsoCheckConsoleOutput>true</alsoCheckConsoleOutput>
+ </hudson.plugins.textfinder.TextFinderPublisher>
+ <hudson.plugins.ws__cleanup.WsCleanup/>
+ </publishers>
+ <buildWrappers>
+ <hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <timeoutMinutes>240</timeoutMinutes>
+ <failBuild>false</failBuild>
+ </hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ </buildWrappers>
+</project>
\ No newline at end of file
Added: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (rev 0)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:41:39 UTC (rev 30133)
@@ -0,0 +1,186 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <actions/>
+ <description>Tycho-based build, monitoring SVN for changes.
+
+<p><i>Build should take +4-8 hrs for tests.</i>
+
+<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2></description>
+ <logRotator>
+ <daysToKeep>5</daysToKeep>
+ <numToKeep>5</numToKeep>
+ <artifactDaysToKeep>-1</artifactDaysToKeep>
+ <artifactNumToKeep>-1</artifactNumToKeep>
+ </logRotator>
+ <keepDependencies>false</keepDependencies>
+ <properties>
+ <hudson.model.ParametersDefinitionProperty>
+ <parameterDefinitions>
+ <hudson.model.StringParameterDefinition>
+ <name>MAVEN_FLAGS</name>
+ <description>Pass in lifecycle phase and extra flags to Maven, such as:
+<pre>
+clean :: clean before building <a href="http://maven.apache.org/guides/introduction/introduction-to-the-lifecycle...">*</a>
+integration-test :: build and test <a href="http://maven.apache.org/guides/introduction/introduction-to-the-lifecycle...">*</a>
+install :: build, test, and install into m2 repo <a href="http://maven.apache.org/guides/introduction/introduction-to-the-lifecycle...">*</a>
+osgi-test:test :: just (re-)run test(s)
+
+-P hudson :: enable hudson build ID in feature/plugin qualifiers
+-P coverage :: enable coverage reporting
+-Dmaven.test.skip :: to compile but not run tests in conjunction with integration-test or install phase
+-Dmaven.repo.local=${WORKSPACE}/m2-repository :: path to local m2 repo
+-Dcoverage :: enable Emma test coverage reporting
+
+-P hudson :: add hudson job # to generated plugin/feature qualifiers
+-P coverage :: support emma
+
+-fae :: fail at end
+-fn :: fail never
+
+-o :: offline
+-B :: batch (non-interactive) mode
+-U :: check for updates
+-e :: if error occurs, dump stack into console
+
+-q :: quieter output</pre>
+</description>
+ <defaultValue>clean install -B -U -fn -e -P hudson,coverage -Dmaven.repo.local=${WORKSPACE}/m2-repo</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ <hudson.model.ChoiceParameterDefinition>
+ <name>RELEASE</name>
+ <description>If a release, name zip w/ timestamp and build ID; otherwise call it "SNAPSHOT"</description>
+ <choices class="java.util.Arrays$ArrayList">
+ <a class="string-array">
+ <string>No</string>
+ <string>Yes</string>
+ </a>
+ </choices>
+ </hudson.model.ChoiceParameterDefinition>
+ <hudson.model.ChoiceParameterDefinition>
+ <name>update.site.description</name>
+ <description/>
+ <choices class="java.util.Arrays$ArrayList">
+ <a class="string-array">
+ <string>Nightly Build</string>
+ <string>Development Milestone</string>
+ <string>Stable Release</string>
+ </a>
+ </choices>
+ </hudson.model.ChoiceParameterDefinition>
+ </parameterDefinitions>
+ </hudson.model.ParametersDefinitionProperty>
+ <hudson.plugins.descriptionsetter.JobByDescription/>
+ <hudson.plugins.disk__usage.DiskUsageProperty/>
+ <hudson.plugins.jira.JiraProjectProperty>
+ <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
+ </hudson.plugins.jira.JiraProjectProperty>
+ </properties>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk</remote>
+ <local>sources</local>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <doRevert>false</doRevert>
+ <browser class="hudson.scm.browsers.FishEyeSVN">
+ <url>http://fisheye.jboss.com/browse/JBossTools/</url>
+ <rootModule/>
+ </browser>
+ <excludedRegions/>
+ <includedRegions/>
+ <excludedUsers/>
+ <excludedRevprop/>
+ <excludedCommitMessages/>
+ </scm>
+ <assignedNode>RHEL5_any</assignedNode>
+ <canRoam>false</canRoam>
+ <disabled>false</disabled>
+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
+ <jdk>java16_default</jdk>
+ <triggers class="vector">
+ <hudson.triggers.SCMTrigger>
+ <spec>40 0,6,12,18 * * * </spec>
+ </hudson.triggers.SCMTrigger>
+ </triggers>
+ <concurrentBuild>false</concurrentBuild>
+ <builders>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>build/parent/pom.xml</pom>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS} -DJOB_NAME=${JOB_NAME} -DBUILD_ID=${BUILD_ID} -DBUILD_NUMBER=${BUILD_NUMBER}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>build/pom.xml</pom>
+ <usePrivateRepository>true</usePrivateRepository>
+ </hudson.tasks.Maven>
+ </builders>
+ <publishers>
+ <hudson.tasks.junit.JUnitResultArchiver>
+ <testResults>sources/*/tests/*/target/surefire-reports/*.xml</testResults>
+ <keepLongStdio>false</keepLongStdio>
+ <testDataPublishers/>
+ </hudson.tasks.junit.JUnitResultArchiver>
+ <hudson.tasks.ArtifactArchiver>
+ <artifacts>results/*/*Update*.zip,results/*/all/*Sources*.zip,results/*/all/*Update*.zip</artifacts>
+ <excludes>**/target/**</excludes>
+ <latestOnly>true</latestOnly>
+ <zip>false</zip>
+ </hudson.tasks.ArtifactArchiver>
+ <hudson.plugins.descriptionsetter.DescriptionSetterPublisher>
+ <regexp>(ERRORS FOUND: .+|FAILURES FOUND: .+)</regexp>
+ <regexpForFailed>(ERRORS FOUND: .+|FAILURES FOUND: .+)</regexpForFailed>
+ <setForMatrix>false</setForMatrix>
+ </hudson.plugins.descriptionsetter.DescriptionSetterPublisher>
+ <hudson.plugins.emma.EmmaPublisher>
+ <includes>sources/build/reports/emma-coverage/target/coverage.xml</includes>
+ <healthReports>
+ <minClass>0</minClass>
+ <maxClass>100</maxClass>
+ <minMethod>0</minMethod>
+ <maxMethod>70</maxMethod>
+ <minBlock>0</minBlock>
+ <maxBlock>80</maxBlock>
+ <minLine>0</minLine>
+ <maxLine>80</maxLine>
+ </healthReports>
+ </hudson.plugins.emma.EmmaPublisher>
+ <hudson.plugins.textfinder.TextFinderPublisher>
+ <fileSet>results/*/logs/ERRORLOG.txt,results/*/logs/FAIL_LOG.txt</fileSet>
+ <regexp>ERROR|AILURE</regexp>
+ <succeedIfFound>false</succeedIfFound>
+ <unstableIfFound>true</unstableIfFound>
+ <alsoCheckConsoleOutput>false</alsoCheckConsoleOutput>
+ </hudson.plugins.textfinder.TextFinderPublisher>
+ <hudson.tasks.Mailer>
+ <recipients/>
+ <notifyEveryBuild>false</notifyEveryBuild>
+ <dontNotifyOnModules>false</dontNotifyOnModules>
+ <dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
+ <sendToIndividuals>true</sendToIndividuals>
+ </hudson.tasks.Mailer>
+ <hudson.plugins.build__publisher.BuildPublisher>
+ <publishUnstableBuilds>true</publishUnstableBuilds>
+ <publishFailedBuilds>false</publishFailedBuilds>
+ <postActions class="vector"/>
+ <logRotator>
+ <daysToKeep>-1</daysToKeep>
+ <numToKeep>-1</numToKeep>
+ <artifactDaysToKeep>-1</artifactDaysToKeep>
+ <artifactNumToKeep>-1</artifactNumToKeep>
+ </logRotator>
+ </hudson.plugins.build__publisher.BuildPublisher>
+ <hudson.plugins.emotional__hudson.EmotionalHudsonPublisher/>
+ </publishers>
+ <buildWrappers>
+ <hudson.plugins.xvnc.Xvnc>
+ <takeScreenshot>false</takeScreenshot>
+ </hudson.plugins.xvnc.Xvnc>
+ </buildWrappers>
+</project>
\ No newline at end of file
Added: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (rev 0)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:41:39 UTC (rev 30133)
@@ -0,0 +1,191 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <actions/>
+ <description>Nightly build using Tycho, monitoring SVN every 6 hrs for changes. See <a href="https://hudson.qa.jboss.com/hudson/job/droolsjbpm-tools/">droolsjbpm-tools</a> for upstream build from git.
+
+<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2>
+
+<h2 style="color:red">DISABLED until new github builds are ready - see <a href="https://hudson.qa.jboss.com/hudson/job/droolsjbpm-tools/">droolsjbpm-tools</a></h2>
+
+
+
+</description>
+ <logRotator>
+ <daysToKeep>-1</daysToKeep>
+ <numToKeep>10</numToKeep>
+ <artifactDaysToKeep>-1</artifactDaysToKeep>
+ <artifactNumToKeep>-1</artifactNumToKeep>
+ </logRotator>
+ <keepDependencies>false</keepDependencies>
+ <properties>
+ <hudson.model.ParametersDefinitionProperty>
+ <parameterDefinitions>
+ <hudson.model.ChoiceParameterDefinition>
+ <name>RELEASE</name>
+ <description>If a release, name zip w/ timestamp and build ID; otherwise call it "SNAPSHOT"</description>
+ <choices class="java.util.Arrays$ArrayList">
+ <a class="string-array">
+ <string>No</string>
+ <string>Yes</string>
+ </a>
+ </choices>
+ </hudson.model.ChoiceParameterDefinition>
+ <hudson.model.ChoiceParameterDefinition>
+ <name>update.site.description</name>
+ <description/>
+ <choices class="java.util.Arrays$ArrayList">
+ <a class="string-array">
+ <string>Nightly Build</string>
+ <string>Development Milestone</string>
+ <string>Stable Release</string>
+ </a>
+ </choices>
+ </hudson.model.ChoiceParameterDefinition>
+ </parameterDefinitions>
+ </hudson.model.ParametersDefinitionProperty>
+ <hudson.plugins.descriptionsetter.JobByDescription/>
+ <hudson.plugins.disk__usage.DiskUsageProperty/>
+ <hudson.plugins.jira.JiraProjectProperty>
+ <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
+ </hudson.plugins.jira.JiraProjectProperty>
+ </properties>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>https://anonsvn.jboss.org/repos/labs/labs/jbossrules/trunk/drools-eclipse</remote>
+ <local>sources/drools</local>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/build</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <doRevert>false</doRevert>
+ <browser class="hudson.scm.browsers.FishEyeSVN">
+ <url>http://fisheye.jboss.com/browse/JBossTools/</url>
+ <rootModule/>
+ </browser>
+ <excludedRegions/>
+ <includedRegions/>
+ <excludedUsers/>
+ <excludedRevprop/>
+ <excludedCommitMessages/>
+ </scm>
+ <assignedNode>RHEL_any</assignedNode>
+ <canRoam>false</canRoam>
+ <disabled>true</disabled>
+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
+ <jdk>java16_default</jdk>
+ <triggers class="vector">
+ <hudson.triggers.SCMTrigger>
+ <spec>35 */6 * * *</spec>
+ </hudson.triggers.SCMTrigger>
+ </triggers>
+ <concurrentBuild>false</concurrentBuild>
+ <builders>
+ <hudson.tasks.Shell>
+ <command>mkdir -p ${WORKSPACE}/sources
+
+# create working dir (if not already present in Hudson)
+mkdir -p ${WORKSPACE}/sources; cd ${WORKSPACE}/sources
+
+# store JBT's drools pom.xml (for running JBT Drools tests)
+if [[ -f ${WORKSPACE}/sources/pom.xml ]]; then
+ mv ${WORKSPACE}/sources/pom.xml ${WORKSPACE}/sources/pom_drools.xml
+fi
+
+# fetch drools-eclipse sources into child folder, "sources/drools"
+if [[ ! -d ${WORKSPACE}/sources/drools ]]; then svn co https://anonsvn.jboss.org/repos/labs/labs/jbossrules/trunk/drools-eclipse drools; fi
+
+# JBIDE-1484: patch org.drools.eclipse/META-INF/MANIFEST.MF
+cd ${WORKSPACE}/sources/drools/org.drools.eclipse
+rm -fr ${WORKSPACE}/sources/drools/org.drools.eclipse/JBIDE-1484_MANIFEST.MF.patch
+wget -nc http://anonsvn.jboss.org/repos/jbosstools/trunk/drools/JBIDE-1484_MANIFES...
+rm -fr META-INF/MANIFEST.MF.rej; svn revert META-INF/MANIFEST.MF
+patch ${WORKSPACE}/sources/drools/org.drools.eclipse/META-INF/MANIFEST.MF JBIDE-1484_MANIFEST.MF.patch
+cd ${WORKSPACE}/sources
+
+# fetch Drools' parent pom into root folder, "sources"
+rm -fr ${WORKSPACE}/sources/pom.xml; wget https://anonsvn.jboss.org/repos/labs/labs/jbossrules/trunk/pom.xml
+
+</command>
+ </hudson.tasks.Shell>
+ <hudson.tasks.Maven>
+ <targets>-B -fn clean install -Dmaven.repo.local=${WORKSPACE}/m2-repository -q</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <pom>${WORKSPACE}/sources/drools/pom.xml</pom>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Shell>
+ <command># fetch JBT parent pom into root folder, "sources"
+rm -fr ${WORKSPACE}/sources/pom.xml; wget http://anonsvn.jboss.org/repos/jbosstools/trunk/build/pom.xml
+
+# add missing pom instructions into Drools' root pom
+mv ${WORKSPACE}/sources/drools/pom.xml ${WORKSPACE}/sources/drools/pom.xml_ORIG
+head -n -4 ${WORKSPACE}/sources/drools/pom.xml_ORIG > ${WORKSPACE}/sources/drools/pom.xml
+echo "
+ <!-- added by nboldt to fix packaging and artifact naming -->
+ <plugin>
+ <groupId>org.sonatype.tycho</groupId>
+ <artifactId>maven-osgi-packaging-plugin</artifactId>
+ <configuration>
+ <format>'v'yyyyMMdd-HHmm'-H${BUILD_NUMBER}'</format>
+ <archiveSite>true</archiveSite>
+ </configuration>
+ </plugin>
+
+ </plugins>
+ </build>
+</project>" >> ${WORKSPACE}/sources/drools/pom.xml
+</command>
+ </hudson.tasks.Shell>
+ <hudson.tasks.Maven>
+ <targets>-B -fae clean install -Dmaven.repo.local=${WORKSPACE}/m2-repository -q</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <pom>${WORKSPACE}/sources/drools/pom.xml</pom>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Shell>
+ <command>#revert inserted code
+mv -f ${WORKSPACE}/sources/drools/pom.xml_ORIG ${WORKSPACE}/sources/drools/pom.xml
+
+# restore from before (running JBT Drools tests)
+if [[ -f ${WORKSPACE}/sources/pom_drools.xml ]]; then
+ mv ${WORKSPACE}/sources/pom_drools.xml ${WORKSPACE}/sources/pom.xml
+fi
+
+# move generated update site in wrong place to place where publisher expects it
+mv ${WORKSPACE}/sources/drools/org.drools.updatesite ${WORKSPACE}/sources/site
+
+# publish script here: http://anonsvn.jboss.org/repos/jbosstools/trunk/build/publish.sh
+. ${WORKSPACE}/build/publish.sh
+
+# and move it back
+mv ${WORKSPACE}/sources/site ${WORKSPACE}/sources/drools/org.drools.updatesite
+
+</command>
+ </hudson.tasks.Shell>
+ </builders>
+ <publishers>
+ <hudson.tasks.BuildTrigger>
+ <childProjects>jbosstools-3.3_trunk.aggregate</childProjects>
+ <threshold>
+ <name>SUCCESS</name>
+ <ordinal>0</ordinal>
+ <color>BLUE</color>
+ </threshold>
+ </hudson.tasks.BuildTrigger>
+ <hudson.tasks.Mailer>
+ <recipients/>
+ <notifyEveryBuild>false</notifyEveryBuild>
+ <dontNotifyOnModules>false</dontNotifyOnModules>
+ <dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
+ <sendToIndividuals>true</sendToIndividuals>
+ </hudson.tasks.Mailer>
+ </publishers>
+ <buildWrappers>
+ <hudson.plugins.xvnc.Xvnc>
+ <takeScreenshot>false</takeScreenshot>
+ </hudson.plugins.xvnc.Xvnc>
+ </buildWrappers>
+</project>
\ No newline at end of file
Added: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (rev 0)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:41:39 UTC (rev 30133)
@@ -0,0 +1,143 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <actions/>
+ <description>Nightly build using Tycho, monitoring SVN every 6 hrs for changes.
+
+<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2></description>
+ <logRotator>
+ <daysToKeep>5</daysToKeep>
+ <numToKeep>5</numToKeep>
+ <artifactDaysToKeep>-1</artifactDaysToKeep>
+ <artifactNumToKeep>-1</artifactNumToKeep>
+ </logRotator>
+ <keepDependencies>false</keepDependencies>
+ <properties>
+ <hudson.model.ParametersDefinitionProperty>
+ <parameterDefinitions>
+ <hudson.model.StringParameterDefinition>
+ <name>MAVEN_FLAGS</name>
+ <description>Pass in lifecycle phase and extra flags to Maven, such as:
+<pre>
+clean :: clean before building *
+integration-test :: build and test *
+install :: build, test, and install into m2 repo *
+osgi-test:test :: just (re-)run test(s)
+
+-P hudson :: enable hudson build ID in feature/plugin qualifiers
+-P coverage :: enable coverage reporting
+
+-Dmaven.test.skip :: skip compiling and running tests
+-Dmaven.repo.local=${WORKSPACE}/m2-repository :: path to local m2 repo
+
+-fae :: fail at end
+-fn :: fail never
+
+-o :: offline
+-B :: batch (non-interactive) mode
+-U :: check for updates
+-e :: if error occurs, dump stack into console
+
+-q :: quieter output</pre>
+</description>
+ <defaultValue>clean install -B -U -fae -Dmaven.repo.local=${WORKSPACE}/m2-repository -P jbosstools-nightly-trunk,helios-local-target,hudson</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ <hudson.model.ChoiceParameterDefinition>
+ <name>RELEASE</name>
+ <description>If a release, name zip w/ timestamp and build ID; otherwise call it "SNAPSHOT"</description>
+ <choices class="java.util.Arrays$ArrayList">
+ <a class="string-array">
+ <string>No</string>
+ <string>Yes</string>
+ </a>
+ </choices>
+ </hudson.model.ChoiceParameterDefinition>
+ </parameterDefinitions>
+ </hudson.model.ParametersDefinitionProperty>
+ <hudson.plugins.disk__usage.DiskUsageProperty/>
+ <hudson.plugins.descriptionsetter.JobByDescription/>
+ <hudson.plugins.jira.JiraProjectProperty>
+ <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
+ </hudson.plugins.jira.JiraProjectProperty>
+ </properties>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>https://pi4soa.svn.sourceforge.net/svnroot/pi4soa/trunk</remote>
+ <local>sources</local>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/build</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <doRevert>false</doRevert>
+ <excludedRegions/>
+ <includedRegions/>
+ <excludedUsers/>
+ <excludedRevprop/>
+ <excludedCommitMessages/>
+ </scm>
+ <assignedNode>RHEL_any</assignedNode>
+ <canRoam>false</canRoam>
+ <disabled>false</disabled>
+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
+ <jdk>java16_default</jdk>
+ <triggers class="vector">
+ <hudson.triggers.SCMTrigger>
+ <spec>45 3,9,15,21 * * * </spec>
+ </hudson.triggers.SCMTrigger>
+ </triggers>
+ <concurrentBuild>false</concurrentBuild>
+ <builders>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <pom>${WORKSPACE}/build/parent/pom.xml</pom>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS} -DJOB_NAME=${JOB_NAME} -DBUILD_ID=${BUILD_ID} -DBUILD_NUMBER=${BUILD_NUMBER}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Shell>
+ <command># script here: http://anonsvn.jboss.org/repos/jbosstools/trunk/build/publish.sh
+. ${WORKSPACE}/build/publish.sh</command>
+ </hudson.tasks.Shell>
+ </builders>
+ <publishers>
+ <hudson.tasks.ArtifactArchiver>
+ <artifacts>**/*Update*.zip</artifacts>
+ <excludes>**/target/**</excludes>
+ <latestOnly>true</latestOnly>
+ <zip>false</zip>
+ </hudson.tasks.ArtifactArchiver>
+ <hudson.tasks.junit.JUnitResultArchiver>
+ <testResults>**/TEST-*.xml</testResults>
+ <keepLongStdio>false</keepLongStdio>
+ <testDataPublishers/>
+ </hudson.tasks.junit.JUnitResultArchiver>
+ <hudson.tasks.Mailer>
+ <recipients/>
+ <notifyEveryBuild>false</notifyEveryBuild>
+ <dontNotifyOnModules>false</dontNotifyOnModules>
+ <dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
+ <sendToIndividuals>true</sendToIndividuals>
+ </hudson.tasks.Mailer>
+ <hudson.plugins.emotional__hudson.EmotionalHudsonPublisher/>
+ <hudson.tasks.BuildTrigger>
+ <childProjects>jbosstools-savara-1.1_trunk,jbosstools-3.3_trunk.aggregate</childProjects>
+ <threshold>
+ <name>SUCCESS</name>
+ <ordinal>0</ordinal>
+ <color>BLUE</color>
+ </threshold>
+ </hudson.tasks.BuildTrigger>
+ </publishers>
+ <buildWrappers>
+ <hudson.plugins.xvnc.Xvnc>
+ <takeScreenshot>false</takeScreenshot>
+ </hudson.plugins.xvnc.Xvnc>
+ </buildWrappers>
+</project>
\ No newline at end of file
Added: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (rev 0)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:41:39 UTC (rev 30133)
@@ -0,0 +1,151 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <actions/>
+ <description>Nightly build using Tycho, monitoring SVN every 6 hrs for changes.
+
+<h3>REQUIRES JDK6</h3>
+
+<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2></description>
+ <logRotator>
+ <daysToKeep>5</daysToKeep>
+ <numToKeep>5</numToKeep>
+ <artifactDaysToKeep>-1</artifactDaysToKeep>
+ <artifactNumToKeep>-1</artifactNumToKeep>
+ </logRotator>
+ <keepDependencies>false</keepDependencies>
+ <properties>
+ <hudson.model.ParametersDefinitionProperty>
+ <parameterDefinitions>
+ <hudson.model.StringParameterDefinition>
+ <name>MAVEN_FLAGS</name>
+ <description>Pass in lifecycle phase and extra flags to Maven, such as:
+<pre>
+clean :: clean before building *
+integration-test :: build and test *
+install :: build, test, and install into m2 repo *
+osgi-test:test :: just (re-)run test(s)
+
+-P hudson :: enable hudson build ID in feature/plugin qualifiers
+-P coverage :: enable coverage reporting
+
+-Dmaven.test.skip :: skip compiling and running tests
+-Dmaven.repo.local=${WORKSPACE}/m2-repository :: path to local m2 repo
+
+-fae :: fail at end
+-fn :: fail never
+
+-o :: offline
+-B :: batch (non-interactive) mode
+-U :: check for updates
+-e :: if error occurs, dump stack into console
+
+-q :: quieter output</pre>
+</description>
+ <defaultValue>clean install -B -U -fae -Dmaven.repo.local=${WORKSPACE}/m2-repository -P jbosstools-nightly-trunk,helios-local-target,hudson</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ <hudson.model.ChoiceParameterDefinition>
+ <name>RELEASE</name>
+ <description>If a release, name zip w/ timestamp and build ID; otherwise call it "SNAPSHOT"</description>
+ <choices class="java.util.Arrays$ArrayList">
+ <a class="string-array">
+ <string>No</string>
+ <string>Yes</string>
+ </a>
+ </choices>
+ </hudson.model.ChoiceParameterDefinition>
+ </parameterDefinitions>
+ </hudson.model.ParametersDefinitionProperty>
+ <hudson.plugins.disk__usage.DiskUsageProperty/>
+ <hudson.plugins.descriptionsetter.JobByDescription/>
+ <hudson.plugins.jira.JiraProjectProperty>
+ <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
+ </hudson.plugins.jira.JiraProjectProperty>
+ <hudson.plugins.build__publisher.ExternalProjectProperty/>
+ </properties>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/savara/branches/1.1.x</remote>
+ <local>sources</local>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/build</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <doRevert>false</doRevert>
+ <excludedRegions/>
+ <includedRegions/>
+ <excludedUsers/>
+ <excludedRevprop/>
+ <excludedCommitMessages/>
+ </scm>
+ <assignedNode>RHEL_any</assignedNode>
+ <canRoam>false</canRoam>
+ <disabled>false</disabled>
+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
+ <jdk>java16_default</jdk>
+ <triggers class="vector">
+ <hudson.triggers.SCMTrigger>
+ <spec>45 3,9,15,21 * * * </spec>
+ </hudson.triggers.SCMTrigger>
+ </triggers>
+ <concurrentBuild>false</concurrentBuild>
+ <builders>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <pom>${WORKSPACE}/build/parent/pom.xml</pom>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS} -DJOB_NAME=${JOB_NAME} -DBUILD_ID=${BUILD_ID} -DBUILD_NUMBER=${BUILD_NUMBER}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Shell>
+ <command># script here: http://anonsvn.jboss.org/repos/jbosstools/trunk/build/publish.sh
+. ${WORKSPACE}/build/publish.sh</command>
+ </hudson.tasks.Shell>
+ </builders>
+ <publishers>
+ <hudson.tasks.ArtifactArchiver>
+ <artifacts>**/*Update*.zip, **/*Sources*.zip, **/savara-*.zip</artifacts>
+ <excludes>m2-repository, results, build, **/*-dist.zip</excludes>
+ <latestOnly>true</latestOnly>
+ <zip>false</zip>
+ </hudson.tasks.ArtifactArchiver>
+ <hudson.tasks.junit.JUnitResultArchiver>
+ <testResults>**/TEST-*.xml</testResults>
+ <keepLongStdio>false</keepLongStdio>
+ <testDataPublishers/>
+ </hudson.tasks.junit.JUnitResultArchiver>
+ <hudson.tasks.BuildTrigger>
+ <childProjects>jbosstools-3.3_trunk.aggregate</childProjects>
+ <threshold>
+ <name>SUCCESS</name>
+ <ordinal>0</ordinal>
+ <color>BLUE</color>
+ </threshold>
+ </hudson.tasks.BuildTrigger>
+ <hudson.tasks.Mailer>
+ <recipients>savara-commits(a)lists.jboss.org</recipients>
+ <notifyEveryBuild>false</notifyEveryBuild>
+ <dontNotifyOnModules>false</dontNotifyOnModules>
+ <dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
+ <sendToIndividuals>true</sendToIndividuals>
+ </hudson.tasks.Mailer>
+ <hudson.plugins.build__publisher.BuildPublisher>
+ <publishUnstableBuilds>true</publishUnstableBuilds>
+ <publishFailedBuilds>true</publishFailedBuilds>
+ <postActions class="vector"/>
+ </hudson.plugins.build__publisher.BuildPublisher>
+ <hudson.plugins.emotional__hudson.EmotionalHudsonPublisher/>
+ </publishers>
+ <buildWrappers>
+ <hudson.plugins.xvnc.Xvnc>
+ <takeScreenshot>false</takeScreenshot>
+ </hudson.plugins.xvnc.Xvnc>
+ </buildWrappers>
+</project>
\ No newline at end of file
Added: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (rev 0)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:41:39 UTC (rev 30133)
@@ -0,0 +1,148 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <actions/>
+ <description>Nightly build using Tycho, monitoring SVN every 6 hrs for changes.
+
+<h3>REQUIRES JDK6</h3>
+</description>
+ <logRotator>
+ <daysToKeep>5</daysToKeep>
+ <numToKeep>5</numToKeep>
+ <artifactDaysToKeep>-1</artifactDaysToKeep>
+ <artifactNumToKeep>-1</artifactNumToKeep>
+ </logRotator>
+ <keepDependencies>false</keepDependencies>
+ <properties>
+ <hudson.model.ParametersDefinitionProperty>
+ <parameterDefinitions>
+ <hudson.model.StringParameterDefinition>
+ <name>MAVEN_FLAGS</name>
+ <description>Pass in lifecycle phase and extra flags to Maven, such as:
+<pre>
+clean :: clean before building *
+integration-test :: build and test *
+install :: build, test, and install into m2 repo *
+osgi-test:test :: just (re-)run test(s)
+
+-P hudson :: enable hudson build ID in feature/plugin qualifiers
+-P coverage :: enable coverage reporting
+
+-Dmaven.test.skip :: skip compiling and running tests
+-Dmaven.repo.local=${WORKSPACE}/m2-repository :: path to local m2 repo
+
+-fae :: fail at end
+-fn :: fail never
+
+-o :: offline
+-B :: batch (non-interactive) mode
+-U :: check for updates
+-e :: if error occurs, dump stack into console
+
+-q :: quieter output</pre>
+</description>
+ <defaultValue>clean install -B -U -fae -Dmaven.repo.local=${WORKSPACE}/m2-repository -P jbosstools-nightly-trunk,helios-remote-target,!helios,hudson</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ <hudson.model.ChoiceParameterDefinition>
+ <name>RELEASE</name>
+ <description>If a release, name zip w/ timestamp and build ID; otherwise call it "SNAPSHOT"</description>
+ <choices class="java.util.Arrays$ArrayList">
+ <a class="string-array">
+ <string>No</string>
+ <string>Yes</string>
+ </a>
+ </choices>
+ </hudson.model.ChoiceParameterDefinition>
+ </parameterDefinitions>
+ </hudson.model.ParametersDefinitionProperty>
+ <hudson.plugins.disk__usage.DiskUsageProperty/>
+ <hudson.plugins.descriptionsetter.JobByDescription/>
+ <hudson.plugins.jira.JiraProjectProperty>
+ <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
+ </hudson.plugins.jira.JiraProjectProperty>
+ <hudson.plugins.build__publisher.ExternalProjectProperty/>
+ </properties>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/savara/trunk</remote>
+ <local>sources</local>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/build</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <doRevert>false</doRevert>
+ <excludedRegions/>
+ <includedRegions/>
+ <excludedUsers/>
+ <excludedRevprop/>
+ <excludedCommitMessages/>
+ </scm>
+ <assignedNode>RHEL_any</assignedNode>
+ <canRoam>false</canRoam>
+ <disabled>false</disabled>
+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
+ <jdk>java16_default</jdk>
+ <triggers class="vector">
+ <hudson.triggers.SCMTrigger>
+ <spec>45 3,9,15,21 * * * </spec>
+ </hudson.triggers.SCMTrigger>
+ </triggers>
+ <concurrentBuild>false</concurrentBuild>
+ <builders>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <pom>${WORKSPACE}/build/parent/pom.xml</pom>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS} -DJOB_NAME=${JOB_NAME} -DBUILD_ID=${BUILD_ID} -DBUILD_NUMBER=${BUILD_NUMBER}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS} -DJOB_NAME=${JOB_NAME} -DBUILD_ID=${BUILD_ID} -DBUILD_NUMBER=${BUILD_NUMBER}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <pom>${WORKSPACE}/sources/tools/pom.xml</pom>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Shell>
+ <command># script here: http://anonsvn.jboss.org/repos/jbosstools/trunk/build/publish.sh
+. ${WORKSPACE}/build/publish.sh</command>
+ </hudson.tasks.Shell>
+ </builders>
+ <publishers>
+ <hudson.tasks.ArtifactArchiver>
+ <artifacts>**/*Update*.zip, **/*Sources*.zip, **/savara-*.zip</artifacts>
+ <excludes>m2-repository, results, build, **/*-dist.zip</excludes>
+ <latestOnly>true</latestOnly>
+ <zip>false</zip>
+ </hudson.tasks.ArtifactArchiver>
+ <hudson.tasks.junit.JUnitResultArchiver>
+ <testResults>**/TEST-*.xml</testResults>
+ <keepLongStdio>false</keepLongStdio>
+ <testDataPublishers/>
+ </hudson.tasks.junit.JUnitResultArchiver>
+ <hudson.tasks.Mailer>
+ <recipients>savara-commits(a)lists.jboss.org</recipients>
+ <notifyEveryBuild>false</notifyEveryBuild>
+ <dontNotifyOnModules>false</dontNotifyOnModules>
+ <dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
+ <sendToIndividuals>true</sendToIndividuals>
+ </hudson.tasks.Mailer>
+ <hudson.plugins.build__publisher.BuildPublisher>
+ <publishUnstableBuilds>true</publishUnstableBuilds>
+ <publishFailedBuilds>true</publishFailedBuilds>
+ <postActions class="vector"/>
+ </hudson.plugins.build__publisher.BuildPublisher>
+ <hudson.plugins.emotional__hudson.EmotionalHudsonPublisher/>
+ </publishers>
+ <buildWrappers>
+ <hudson.plugins.xvnc.Xvnc>
+ <takeScreenshot>false</takeScreenshot>
+ </hudson.plugins.xvnc.Xvnc>
+ </buildWrappers>
+</project>
\ No newline at end of file
Added: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (rev 0)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:41:39 UTC (rev 30133)
@@ -0,0 +1,50 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <actions/>
+ <description>rsync<ul><li>from: <a href="https://svn.jboss.org/repos/jbosstools/trunk/download.jboss.org/jbosstool...">https://svn.jboss.org/repos/jbosstools/trunk/download.jboss.org/jbosstools/builds/staging/_composite_/</a>
+<li>to: <a href="http://download.jboss.org/jbosstools/builds/staging/_composite_/">tools@filemgmt.jboss.org:/downloads_htdocs/tools/builds/staging/_composite_/</a>
+</ul></description>
+ <logRotator>
+ <daysToKeep>5</daysToKeep>
+ <numToKeep>5</numToKeep>
+ <artifactDaysToKeep>-1</artifactDaysToKeep>
+ <artifactNumToKeep>-1</artifactNumToKeep>
+ </logRotator>
+ <keepDependencies>false</keepDependencies>
+ <properties>
+ <hudson.plugins.descriptionsetter.JobByDescription/>
+ <hudson.plugins.disk__usage.DiskUsageProperty/>
+ <hudson.plugins.jira.JiraProjectProperty>
+ <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
+ </hudson.plugins.jira.JiraProjectProperty>
+ </properties>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>https://svn.jboss.org/repos/jbosstools/trunk/download.jboss.org/jbosstool...</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <doRevert>false</doRevert>
+ <excludedRegions/>
+ <includedRegions/>
+ <excludedUsers/>
+ <excludedRevprop/>
+ <excludedCommitMessages/>
+ </scm>
+ <canRoam>true</canRoam>
+ <disabled>false</disabled>
+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
+ <jdk>(Default)</jdk>
+ <triggers class="vector"/>
+ <concurrentBuild>false</concurrentBuild>
+ <builders>
+ <hudson.tasks.Shell>
+ <command>rsync -arzq --delete ${WORKSPACE}/_composite_/* tools@filemgmt.jboss.org:/downloads_htdocs/tools/builds/staging/_composite_/</command>
+ </hudson.tasks.Shell>
+ </builders>
+ <publishers>
+ <hudson.plugins.ws__cleanup.WsCleanup/>
+ </publishers>
+ <buildWrappers/>
+</project>
\ No newline at end of file
Added: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (rev 0)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:41:39 UTC (rev 30133)
@@ -0,0 +1,161 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <actions/>
+ <description>Nightly build using Tycho, monitoring SVN every 6 hrs for changes.
+
+<h3>REQUIRES JDK6</h3>
+
+See also <a href="../jbosstools-modeshape">jbosstools-modeshape</a>
+
+<h2>Building from http://anonsvn.jboss.org/repos/tdesigner/branches/7.1/</h2>
+
+<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2></description>
+ <logRotator>
+ <daysToKeep>5</daysToKeep>
+ <numToKeep>5</numToKeep>
+ <artifactDaysToKeep>-1</artifactDaysToKeep>
+ <artifactNumToKeep>-1</artifactNumToKeep>
+ </logRotator>
+ <keepDependencies>false</keepDependencies>
+ <properties>
+ <hudson.model.ParametersDefinitionProperty>
+ <parameterDefinitions>
+ <hudson.model.StringParameterDefinition>
+ <name>MAVEN_FLAGS</name>
+ <description>Pass in lifecycle phase and extra flags to Maven, such as:
+<pre>
+clean :: clean before building *
+integration-test :: build and test *
+install :: build, test, and install into m2 repo *
+osgi-test:test :: just (re-)run test(s)
+
+-P hudson :: enable hudson build ID in feature/plugin qualifiers
+-P coverage :: enable coverage reporting
+-P helios-local-target :: don't use .target file to provision target; instead generate on the fly from MANIFEST.MF and feature.xml files
+-P galileo :: enable galileo dependencies
+-P hudson :: enable hudson build ID in feature/plugin qualifiers
+
+-Dmaven.test.skip :: skip compiling and running tests
+-Dmaven.repo.local=${WORKSPACE}/m2-repository :: path to local m2 repo
+
+-fae :: fail at end
+-fn :: fail never
+
+-o :: offline
+-B :: batch (non-interactive) mode
+-U :: check for updates
+-e :: if error occurs, dump stack into console
+
+-q :: quieter output</pre>
+</description>
+ <defaultValue>clean install -B -U -fae -Dmaven.repo.local=${WORKSPACE}/m2-repository -P helios-local-target,!helios,hudson</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ <hudson.model.ChoiceParameterDefinition>
+ <name>RELEASE</name>
+ <description>If a release, name zip w/ timestamp and build ID; otherwise call it "SNAPSHOT"</description>
+ <choices class="java.util.Arrays$ArrayList">
+ <a class="string-array">
+ <string>No</string>
+ <string>Yes</string>
+ </a>
+ </choices>
+ </hudson.model.ChoiceParameterDefinition>
+ </parameterDefinitions>
+ </hudson.model.ParametersDefinitionProperty>
+ <hudson.plugins.disk__usage.DiskUsageProperty/>
+ <hudson.plugins.descriptionsetter.JobByDescription/>
+ <hudson.plugins.jira.JiraProjectProperty>
+ <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
+ </hudson.plugins.jira.JiraProjectProperty>
+ </properties>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/tdesigner/branches/7.1</remote>
+ <local>sources</local>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/build</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <doRevert>false</doRevert>
+ <browser class="hudson.scm.browsers.FishEyeSVN">
+ <url>http://fisheye.jboss.com/browse/TDesigner/</url>
+ <rootModule/>
+ </browser>
+ <excludedRegions/>
+ <includedRegions/>
+ <excludedUsers/>
+ <excludedRevprop/>
+ <excludedCommitMessages/>
+ </scm>
+ <assignedNode>RHEL_any</assignedNode>
+ <canRoam>false</canRoam>
+ <disabled>false</disabled>
+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
+ <jdk>java16_default</jdk>
+ <triggers class="vector">
+ <hudson.triggers.SCMTrigger>
+ <spec>20 3,9,15,21 * * * </spec>
+ </hudson.triggers.SCMTrigger>
+ </triggers>
+ <concurrentBuild>false</concurrentBuild>
+ <builders>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <pom>${WORKSPACE}/build/parent/pom.xml</pom>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS} -DJOB_NAME=${JOB_NAME} -DBUILD_ID=${BUILD_ID} -DBUILD_NUMBER=${BUILD_NUMBER}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Ant>
+ <targets>collect.test.results.for.hudson -q -logger org.apache.tools.ant.NoBannerLogger</targets>
+ <antName>ant-1.7.x</antName>
+ <buildFile>build/build.xml</buildFile>
+ </hudson.tasks.Ant>
+ <hudson.tasks.Shell>
+ <command># script here: http://anonsvn.jboss.org/repos/jbosstools/trunk/build/publish.sh
+. ${WORKSPACE}/build/publish.sh</command>
+ </hudson.tasks.Shell>
+ </builders>
+ <publishers>
+ <hudson.tasks.ArtifactArchiver>
+ <artifacts>**/*Update*.zip, **/site.zip, **/*.jar</artifacts>
+ <excludes>**/target/**</excludes>
+ <latestOnly>true</latestOnly>
+ <zip>false</zip>
+ </hudson.tasks.ArtifactArchiver>
+ <hudson.tasks.junit.JUnitResultArchiver>
+ <testResults>**/TEST-*.xml</testResults>
+ <keepLongStdio>false</keepLongStdio>
+ <testDataPublishers/>
+ </hudson.tasks.junit.JUnitResultArchiver>
+ <hudson.tasks.Mailer>
+ <recipients>teiid-designer-dev(a)lists.jboss.org</recipients>
+ <notifyEveryBuild>false</notifyEveryBuild>
+ <dontNotifyOnModules>false</dontNotifyOnModules>
+ <dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
+ <sendToIndividuals>true</sendToIndividuals>
+ </hudson.tasks.Mailer>
+ <hudson.plugins.emotional__hudson.EmotionalHudsonPublisher/>
+ <hudson.tasks.BuildTrigger>
+ <childProjects>zz_disabled_jbosstools-teiid-designer-7.1_trunk-publish</childProjects>
+ <threshold>
+ <name>SUCCESS</name>
+ <ordinal>0</ordinal>
+ <color>BLUE</color>
+ </threshold>
+ </hudson.tasks.BuildTrigger>
+ </publishers>
+ <buildWrappers>
+ <hudson.plugins.xvnc.Xvnc>
+ <takeScreenshot>false</takeScreenshot>
+ </hudson.plugins.xvnc.Xvnc>
+ </buildWrappers>
+</project>
\ No newline at end of file
Added: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (rev 0)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:41:39 UTC (rev 30133)
@@ -0,0 +1,157 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <actions/>
+ <description>Nightly build using Tycho, monitoring SVN every 6 hrs for changes.
+
+<h3>REQUIRES JDK6</h3>
+
+<h2>Building from http://anonsvn.jboss.org/repos/tdesigner/trunk/</h2>
+
+<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2>
+</description>
+ <logRotator>
+ <daysToKeep>5</daysToKeep>
+ <numToKeep>5</numToKeep>
+ <artifactDaysToKeep>-1</artifactDaysToKeep>
+ <artifactNumToKeep>-1</artifactNumToKeep>
+ </logRotator>
+ <keepDependencies>false</keepDependencies>
+ <properties>
+ <hudson.model.ParametersDefinitionProperty>
+ <parameterDefinitions>
+ <hudson.model.StringParameterDefinition>
+ <name>MAVEN_FLAGS</name>
+ <description>Pass in lifecycle phase and extra flags to Maven, such as:
+<pre>
+clean :: clean before building *
+integration-test :: build and test *
+install :: build, test, and install into m2 repo *
+osgi-test:test :: just (re-)run test(s)
+
+-P hudson :: enable hudson build ID in feature/plugin qualifiers
+-P coverage :: enable coverage reporting
+
+-Dmaven.test.skip :: skip compiling and running tests
+-Dmaven.repo.local=${WORKSPACE}/m2-repository :: path to local m2 repo
+
+-fae :: fail at end
+-fn :: fail never
+
+-o :: offline
+-B :: batch (non-interactive) mode
+-U :: check for updates
+-e :: if error occurs, dump stack into console
+
+-q :: quieter output</pre>
+</description>
+ <defaultValue>clean install -B -U -fae -Dmaven.repo.local=${WORKSPACE}/m2-repository -P jbosstools-nightly-trunk,helios-local-target,hudson</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ <hudson.model.ChoiceParameterDefinition>
+ <name>RELEASE</name>
+ <description>If a release, name zip w/ timestamp and build ID; otherwise call it "SNAPSHOT"</description>
+ <choices class="java.util.Arrays$ArrayList">
+ <a class="string-array">
+ <string>No</string>
+ <string>Yes</string>
+ </a>
+ </choices>
+ </hudson.model.ChoiceParameterDefinition>
+ </parameterDefinitions>
+ </hudson.model.ParametersDefinitionProperty>
+ <hudson.plugins.descriptionsetter.JobByDescription/>
+ <hudson.plugins.disk__usage.DiskUsageProperty/>
+ <hudson.plugins.jira.JiraProjectProperty>
+ <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
+ </hudson.plugins.jira.JiraProjectProperty>
+ </properties>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/tdesigner/trunk</remote>
+ <local>sources</local>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>http://anonsvn.jboss.org/repos/jbosstools/trunk/build</remote>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <doRevert>false</doRevert>
+ <browser class="hudson.scm.browsers.FishEyeSVN">
+ <url>http://fisheye.jboss.com/browse/TDesigner/</url>
+ <rootModule/>
+ </browser>
+ <excludedRegions/>
+ <includedRegions/>
+ <excludedUsers/>
+ <excludedRevprop/>
+ <excludedCommitMessages/>
+ </scm>
+ <assignedNode>RHEL_any</assignedNode>
+ <canRoam>false</canRoam>
+ <disabled>false</disabled>
+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
+ <jdk>java16_default</jdk>
+ <triggers class="vector">
+ <hudson.triggers.SCMTrigger>
+ <spec>20 3,9,15,21 * * * </spec>
+ </hudson.triggers.SCMTrigger>
+ </triggers>
+ <concurrentBuild>false</concurrentBuild>
+ <builders>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <pom>${WORKSPACE}/build/parent/pom.xml</pom>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS} -DJOB_NAME=${JOB_NAME} -DBUILD_ID=${BUILD_ID} -DBUILD_NUMBER=${BUILD_NUMBER}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Ant>
+ <targets>collect.test.results.for.hudson -q -logger org.apache.tools.ant.NoBannerLogger</targets>
+ <antName>ant-1.7.x</antName>
+ <buildFile>build/build.xml</buildFile>
+ </hudson.tasks.Ant>
+ <hudson.tasks.Shell>
+ <command># script here: http://anonsvn.jboss.org/repos/jbosstools/trunk/build/publish.sh
+. ${WORKSPACE}/build/publish.sh</command>
+ </hudson.tasks.Shell>
+ </builders>
+ <publishers>
+ <hudson.tasks.junit.JUnitResultArchiver>
+ <testResults>**/TEST-*.xml</testResults>
+ <keepLongStdio>false</keepLongStdio>
+ <testDataPublishers/>
+ </hudson.tasks.junit.JUnitResultArchiver>
+ <hudson.tasks.ArtifactArchiver>
+ <artifacts>**/*Update*.zip, **/site.zip, **/*.jar</artifacts>
+ <excludes>**/target/**</excludes>
+ <latestOnly>true</latestOnly>
+ <zip>false</zip>
+ </hudson.tasks.ArtifactArchiver>
+ <hudson.tasks.Mailer>
+ <recipients>teiid-designer-dev(a)lists.jboss.org</recipients>
+ <notifyEveryBuild>false</notifyEveryBuild>
+ <dontNotifyOnModules>false</dontNotifyOnModules>
+ <dontNotifyEveryUnstableBuild>false</dontNotifyEveryUnstableBuild>
+ <sendToIndividuals>true</sendToIndividuals>
+ </hudson.tasks.Mailer>
+ <hudson.plugins.emotional__hudson.EmotionalHudsonPublisher/>
+ <hudson.tasks.BuildTrigger>
+ <childProjects>jbosstools-3.3_trunk.aggregate</childProjects>
+ <threshold>
+ <name>SUCCESS</name>
+ <ordinal>0</ordinal>
+ <color>BLUE</color>
+ </threshold>
+ </hudson.tasks.BuildTrigger>
+ </publishers>
+ <buildWrappers>
+ <hudson.plugins.xvnc.Xvnc>
+ <takeScreenshot>false</takeScreenshot>
+ </hudson.plugins.xvnc.Xvnc>
+ </buildWrappers>
+</project>
\ No newline at end of file
Added: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (rev 0)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 00:41:39 UTC (rev 30133)
@@ -0,0 +1,116 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <actions/>
+ <description>Check for schedule conflicts, disabled tests, build failures.</description>
+ <logRotator>
+ <daysToKeep>5</daysToKeep>
+ <numToKeep>5</numToKeep>
+ <artifactDaysToKeep>-1</artifactDaysToKeep>
+ <artifactNumToKeep>-1</artifactNumToKeep>
+ </logRotator>
+ <keepDependencies>false</keepDependencies>
+ <properties>
+ <hudson.model.ParametersDefinitionProperty>
+ <parameterDefinitions>
+ <hudson.model.StringParameterDefinition>
+ <name>MAVEN_FLAGS</name>
+ <description/>
+ <defaultValue>clean install -B -U -fae -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -DhudsonURL=https://hudson.qa.jboss.com/hudson/ -Dusername=admin -Dpassword=Che5tnuT#tR33 -DregexFilter=".*" -DviewFilter=view/DevStudio_Trunk -Dverbose=true</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ </parameterDefinitions>
+ </hudson.model.ParametersDefinitionProperty>
+ <hudson.plugins.descriptionsetter.JobByDescription/>
+ <hudson.plugins.disk__usage.DiskUsageProperty/>
+ <hudson.plugins.jira.JiraProjectProperty>
+ <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
+ </hudson.plugins.jira.JiraProjectProperty>
+ <com.coravy.hudson.plugins.github.GithubProjectProperty>
+ <projectUrl>https://github.com/nickboldt/maven-plugins/</projectUrl>
+ </com.coravy.hudson.plugins.github.GithubProjectProperty>
+ </properties>
+ <scm class="hudson.plugins.git.GitSCM">
+ <configVersion>1</configVersion>
+ <remoteRepositories>
+ <org.spearce.jgit.transport.RemoteConfig>
+ <string>origin</string>
+ <int>5</int>
+ <string>fetch</string>
+ <string>+refs/heads/*:refs/remotes/origin/*</string>
+ <string>receivepack</string>
+ <string>git-upload-pack</string>
+ <string>uploadpack</string>
+ <string>git-upload-pack</string>
+ <string>url</string>
+ <string>https://github.com/nickboldt/maven-plugins.git</string>
+ <string>tagopt</string>
+ <string/>
+ </org.spearce.jgit.transport.RemoteConfig>
+ </remoteRepositories>
+ <branches>
+ <hudson.plugins.git.BranchSpec>
+ <name>**</name>
+ </hudson.plugins.git.BranchSpec>
+ </branches>
+ <localBranch/>
+ <mergeOptions/>
+ <recursiveSubmodules>false</recursiveSubmodules>
+ <doGenerateSubmoduleConfigurations>false</doGenerateSubmoduleConfigurations>
+ <authorOrCommitter>false</authorOrCommitter>
+ <clean>false</clean>
+ <wipeOutWorkspace>false</wipeOutWorkspace>
+ <pruneBranches>false</pruneBranches>
+ <buildChooser class="hudson.plugins.git.util.DefaultBuildChooser"/>
+ <gitTool>Default</gitTool>
+ <browser class="hudson.plugins.git.browser.GithubWeb">
+ <url>https://github.com/nickboldt/maven-plugins/</url>
+ </browser>
+ <submoduleCfg class="list"/>
+ <relativeTargetDir/>
+ <excludedRegions/>
+ <excludedUsers/>
+ </scm>
+ <assignedNode>RHEL_any</assignedNode>
+ <canRoam>false</canRoam>
+ <disabled>false</disabled>
+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
+ <jdk>java16_default</jdk>
+ <triggers class="vector">
+ <hudson.triggers.SCMTrigger>
+ <spec>*/30 * * * *
+</spec>
+ </hudson.triggers.SCMTrigger>
+ </triggers>
+ <concurrentBuild>false</concurrentBuild>
+ <builders>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>hudson-job-schedule-checker-plugin/pom.xml</pom>
+ <properties># first, build the plugin + run tests</properties>
+ <usePrivateRepository>true</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>hudson-job-schedule-checker-plugin/pom-checker.xml</pom>
+ <properties># next, use the plugin to generate a log of job status & info</properties>
+ <usePrivateRepository>false</usePrivateRepository>
+ </hudson.tasks.Maven>
+ </builders>
+ <publishers>
+ <hudson.plugins.textfinder.TextFinderPublisher>
+ <regexp>Tests Disabled|FAIL</regexp>
+ <succeedIfFound>false</succeedIfFound>
+ <unstableIfFound>true</unstableIfFound>
+ <alsoCheckConsoleOutput>true</alsoCheckConsoleOutput>
+ </hudson.plugins.textfinder.TextFinderPublisher>
+ </publishers>
+ <buildWrappers>
+ <hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <timeoutMinutes>120</timeoutMinutes>
+ <failBuild>true</failBuild>
+ </hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ </buildWrappers>
+</project>
\ No newline at end of file
14 years, 9 months
JBoss Tools SVN: r30132 - in trunk/cdi/plugins/org.jboss.tools.cdi.solder.core: src/org/jboss/tools/cdi/solder/core and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2011-03-29 20:31:46 -0400 (Tue, 29 Mar 2011)
New Revision: 30132
Removed:
trunk/cdi/plugins/org.jboss.tools.cdi.solder.core/bin/org/
Modified:
trunk/cdi/plugins/org.jboss.tools.cdi.solder.core/src/org/jboss/tools/cdi/solder/core/BeanNameFeature.java
Log:
JBIDE-3120
https://issues.jboss.org/browse/JBIDE-3120
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.solder.core/src/org/jboss/tools/cdi/solder/core/BeanNameFeature.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.solder.core/src/org/jboss/tools/cdi/solder/core/BeanNameFeature.java 2011-03-30 00:31:25 UTC (rev 30131)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.solder.core/src/org/jboss/tools/cdi/solder/core/BeanNameFeature.java 2011-03-30 00:31:46 UTC (rev 30132)
@@ -10,23 +10,123 @@
******************************************************************************/
package org.jboss.tools.cdi.solder.core;
+import java.beans.Introspector;
+
+import org.eclipse.jdt.core.IAnnotation;
+import org.eclipse.jdt.core.IMemberValuePair;
+import org.eclipse.jdt.core.JavaModelException;
+import org.jboss.tools.cdi.core.CDIConstants;
+import org.jboss.tools.cdi.core.CDIUtil;
+import org.jboss.tools.cdi.core.IAnnotationDeclaration;
import org.jboss.tools.cdi.core.IBean;
+import org.jboss.tools.cdi.core.ICDIAnnotation;
+import org.jboss.tools.cdi.core.IClassBean;
+import org.jboss.tools.cdi.core.IProducerField;
+import org.jboss.tools.cdi.core.IProducerMethod;
import org.jboss.tools.cdi.core.extension.feature.IBeanNameFeature;
+import org.jboss.tools.cdi.internal.core.impl.AbstractBeanElement;
+import org.jboss.tools.cdi.internal.core.impl.AnnotationDeclaration;
+import org.jboss.tools.cdi.internal.core.impl.definition.AbstractMemberDefinition;
+import org.jboss.tools.cdi.internal.core.impl.definition.AbstractTypeDefinition;
+import org.jboss.tools.cdi.internal.core.impl.definition.PackageDefinition;
+import org.jboss.tools.common.util.BeanUtil;
+import org.jboss.tools.common.util.EclipseJavaUtil;
/**
*
* @author Viacheslav Kabanovich
- *
+ *
*/
public class BeanNameFeature implements IBeanNameFeature {
/**
- * The singleton instance that processes requests without building inner state.
+ * The singleton instance that processes requests without building inner
+ * state.
*/
public static final IBeanNameFeature instance = new BeanNameFeature();
public String computeBeanName(IBean bean) {
+ AbstractBeanElement abe = (AbstractBeanElement)bean;
+ AbstractMemberDefinition d = abe.getDefinition();
+ if(d == null) return null;
+ IAnnotationDeclaration named = CDIUtil.getNamedDeclaration(bean);
+ AbstractTypeDefinition t = d.getTypeDefinition();
+ PackageDefinition p = d.getPackageDefinition();
+ AnnotationDeclaration namedOnPackage = null;
+ AnnotationDeclaration fullyQualifiedOnPackage = null;
+ if(p != null) {
+ namedOnPackage = p.getAnnotation(CDIConstants.NAMED_QUALIFIER_TYPE_NAME);
+ fullyQualifiedOnPackage = p.getAnnotation(CDISolderConstants.FULLY_QUALIFIED_ANNOTATION_TYPE_NAME);
+ }
+
+ AnnotationDeclaration fullyQualified = d.getAnnotation(CDISolderConstants.FULLY_QUALIFIED_ANNOTATION_TYPE_NAME);
+
+ //@FullyQualified
+ if((fullyQualified != null || fullyQualifiedOnPackage != null) && (named != null || namedOnPackage != null)) {
+ if(named == null) named = namedOnPackage;
+ String pkg = resolvePackageName(fullyQualified, fullyQualifiedOnPackage, t, p);
+ String simpleName = getSimpleBeanName(bean, named);
+ return (simpleName == null) ? null : pkg.length() > 0 ? pkg + "." + simpleName : simpleName;
+ }
+
+ // @Named on package only
+ if(named == null && namedOnPackage != null) {
+ return getSimpleBeanName(bean, namedOnPackage);
+ }
+
return null;
}
+ private String getStringValue(IAnnotation a) {
+ if(a == null) return null;
+ try {
+ IMemberValuePair[] ps = a.getMemberValuePairs();
+ if(ps != null && ps.length > 0 && ps[0].getValue() != null) {
+ return ps[0].getValue().toString();
+ }
+ } catch (JavaModelException e) {
+ CDISolderCorePlugin.getDefault().logError(e);
+ }
+ return null;
+ }
+
+ private String resolvePackageName(AnnotationDeclaration fullyQualified, AnnotationDeclaration fullyQualifiedOnPackage, AbstractTypeDefinition t, PackageDefinition p) {
+ String contextClass = null;
+ IAnnotation a = fullyQualified != null ? fullyQualified.getDeclaration() : fullyQualifiedOnPackage.getDeclaration();
+ contextClass = getStringValue(a);
+ if(contextClass == null) {
+ contextClass = t == null ? "" : t.getQualifiedName();
+ } else if(fullyQualified != null && t != null) {
+ String resolved = EclipseJavaUtil.resolveType(t.getType(), contextClass);
+ if(resolved != null) contextClass = resolved;
+ } else if(fullyQualifiedOnPackage != null) {
+ contextClass = p.resolveType(contextClass);
+ }
+ int dot = contextClass.lastIndexOf('.');
+ return dot < 0 ? "" : contextClass.substring(0, dot);
+ }
+
+ private String getSimpleBeanName(IBean bean, IAnnotationDeclaration named) {
+ String simpleName = null;
+ if(named != null) {
+ simpleName = getStringValue(named.getDeclaration());
+ }
+ if(simpleName != null && simpleName.length() > 0) {
+ //do nothing
+ } else if(bean instanceof IClassBean) {
+ simpleName = Introspector.decapitalize(((IClassBean)bean).getBeanClass().getElementName());
+ } else if(bean instanceof IProducerField) {
+ simpleName = ((IProducerField)bean).getField().getElementName();
+ } else if(bean instanceof IProducerMethod) {
+ IProducerMethod m = (IProducerMethod)bean;
+ String mn = m.getMethod().getElementName();
+ if(BeanUtil.isGetter(m.getMethod())) {
+ simpleName = BeanUtil.getPropertyName(mn);
+ } else {
+ simpleName = mn;
+ }
+ }
+
+ return simpleName;
+ }
}
14 years, 9 months
JBoss Tools SVN: r30131 - in trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/impl: definition and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2011-03-29 20:31:25 -0400 (Tue, 29 Mar 2011)
New Revision: 30131
Modified:
trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/impl/ProducerField.java
trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/impl/ProducerMethod.java
trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/impl/definition/PackageDefinition.java
Log:
JBIDE-3120
https://issues.jboss.org/browse/JBIDE-3120
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/impl/ProducerField.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/impl/ProducerField.java 2011-03-29 22:32:06 UTC (rev 30130)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/impl/ProducerField.java 2011-03-30 00:31:25 UTC (rev 30131)
@@ -29,6 +29,7 @@
import org.jboss.tools.cdi.core.IStereotype;
import org.jboss.tools.cdi.core.IStereotypeDeclaration;
import org.jboss.tools.cdi.core.ITypeDeclaration;
+import org.jboss.tools.cdi.core.extension.feature.IBeanNameFeature;
import org.jboss.tools.common.model.project.ext.impl.ValueInfo;
import org.jboss.tools.common.text.ITextSourceReference;
@@ -93,6 +94,14 @@
}
public String getName() {
+ Set<IBeanNameFeature> fs = getExtensionManager().getBeanNameFeature();
+ if(fs != null) for (IBeanNameFeature f: fs) {
+ String result = f.computeBeanName(this);
+ if(result != null) {
+ return result;
+ }
+ }
+
AnnotationDeclaration named = findNamedAnnotation();
if(named == null) return null;
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/impl/ProducerMethod.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/impl/ProducerMethod.java 2011-03-29 22:32:06 UTC (rev 30130)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/impl/ProducerMethod.java 2011-03-30 00:31:25 UTC (rev 30131)
@@ -29,10 +29,12 @@
import org.jboss.tools.cdi.core.IStereotype;
import org.jboss.tools.cdi.core.IStereotypeDeclaration;
import org.jboss.tools.cdi.core.ITypeDeclaration;
+import org.jboss.tools.cdi.core.extension.feature.IBeanNameFeature;
import org.jboss.tools.cdi.internal.core.impl.definition.MethodDefinition;
import org.jboss.tools.cdi.internal.core.impl.definition.ParameterDefinition;
import org.jboss.tools.common.model.project.ext.impl.ValueInfo;
import org.jboss.tools.common.text.ITextSourceReference;
+import org.jboss.tools.common.util.BeanUtil;
/**
*
@@ -120,6 +122,15 @@
if(specialized != null) {
return specialized.getName();
}
+
+ Set<IBeanNameFeature> fs = getExtensionManager().getBeanNameFeature();
+ if(fs != null) for (IBeanNameFeature f: fs) {
+ String result = f.computeBeanName(this);
+ if(result != null) {
+ return result;
+ }
+ }
+
AnnotationDeclaration named = findNamedAnnotation();
if(named == null) return null;
@@ -129,10 +140,8 @@
try {
IMemberValuePair[] vs = a.getMemberValuePairs();
if(vs == null || vs.length == 0) {
- if(name.startsWith("get") && name.length() > 3) {
- return name.substring(3, 4).toLowerCase() + name.substring(4);
- } else if(name.startsWith("is") && name.length() > 2) {
- return name.substring(2, 3).toLowerCase() + name.substring(3);
+ if(BeanUtil.isGetter(getMethod())) {
+ return BeanUtil.getPropertyName(name);
}
} else {
Object value = vs[0].getValue();
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/impl/definition/PackageDefinition.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/impl/definition/PackageDefinition.java 2011-03-29 22:32:06 UTC (rev 30130)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.core/src/org/jboss/tools/cdi/internal/core/impl/definition/PackageDefinition.java 2011-03-30 00:31:25 UTC (rev 30131)
@@ -15,6 +15,7 @@
import org.eclipse.jdt.core.IPackageDeclaration;
import org.eclipse.jdt.core.IType;
import org.eclipse.jdt.core.JavaModelException;
+import org.jboss.tools.common.util.EclipseJavaUtil;
/**
*
@@ -31,6 +32,7 @@
}
public void setPackage(IPackageDeclaration pkg, DefinitionContext context) {
+ qualifiedName = pkg.getElementName();
IType contextType = null;
ICompilationUnit u = null;
if(pkg.getParent() instanceof ICompilationUnit) {
@@ -51,4 +53,35 @@
}
}
+ public String resolveType(String typeName) {
+ String result = typeName;
+ IPackageDeclaration pkg = (IPackageDeclaration)member;
+ IType contextType = null;
+ ICompilationUnit u = null;
+ if(pkg.getParent() instanceof ICompilationUnit) {
+ try {
+ u = ((ICompilationUnit)pkg.getParent()).getWorkingCopy(new NullProgressMonitor());
+ contextType = u.createType("class A {}", null, false, new NullProgressMonitor());
+ } catch (JavaModelException e) {
+
+ }
+ }
+
+ if(contextType != null) {
+ result = EclipseJavaUtil.resolveType(contextType, typeName);
+ }
+
+ if (u != null) {
+ try {
+ u.discardWorkingCopy();
+ } catch (JavaModelException e) {
+
+ }
+ }
+
+ return result == null ? typeName : result;
+ }
+
+
+
}
14 years, 9 months
JBoss Tools SVN: r30130 - in trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevStudio_Trunk/job: jbosstools-3.3_trunk.target-platform and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-03-29 18:32:06 -0400 (Tue, 29 Mar 2011)
New Revision: 30130
Added:
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
Log:
add new snapshots for latest target platform job configs
Added: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (rev 0)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-29 22:32:06 UTC (rev 30130)
@@ -0,0 +1,114 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <actions/>
+ <description>p2 mirror an update site consisting of the contents of the target platform, monitoring SVN for changes.
+
+<p>Repo is created outside of Hudson workspace for reuse between multiple builds.
+
+<ul>
+<li>/home/hudson/static_build_env/jbds/tools/sources/JBDS-REPO_3.3.indigo/ (sync'd to: /home/hudson/static_build_env/jbds/jbds-target-platform_3.3.indigo)
+<li><a href="http://reports.qa.atl.jboss.com/binaries/RHDS/updates/jbds-target-platfor...">http://reports.qa.atl.jboss.com/binaries/RHDS/updates/jbds-target-platform_3.3.indigo/latest/</a> (/qa/services/http/binaries/RHDS/updates/jbds-target-platform_3.3.indigo/latest/)
+<li><a href="http://reports.qa.atl.jboss.com/binaries/RHDS/updates/jbds-target-platfor...">http://reports.qa.atl.jboss.com/binaries/RHDS/updates/jbds-target-platform_3.3.indigo/jbds500-e37M5-wtp33M5.target.zip</a> (/qa/services/http/binaries/RHDS/updates/jbds-target-platform_3.3.indigo/jbds500-e37M5-wtp33M5.target.zip)
+</ul>
+
+<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2></description>
+ <logRotator>
+ <daysToKeep>5</daysToKeep>
+ <numToKeep>5</numToKeep>
+ <artifactDaysToKeep>-1</artifactDaysToKeep>
+ <artifactNumToKeep>-1</artifactNumToKeep>
+ </logRotator>
+ <keepDependencies>false</keepDependencies>
+ <properties>
+ <hudson.model.ParametersDefinitionProperty>
+ <parameterDefinitions>
+ <hudson.model.StringParameterDefinition>
+ <name>targetFile</name>
+ <description/>
+ <defaultValue>jbds.target</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ <hudson.model.StringParameterDefinition>
+ <name>repoDir</name>
+ <description>path to stage the update site</description>
+ <defaultValue>/home/hudson/static_build_env/jbds/tools/sources/JBDS-REPO_3.3.indigo</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ <hudson.model.ChoiceParameterDefinition>
+ <name>CLEAN</name>
+ <description>Should we purge the existing repo and start from a clean one (true),
+or build on top of an existing one (false)?</description>
+ <choices class="java.util.Arrays$ArrayList">
+ <a class="string-array">
+ <string>false</string>
+ <string>true</string>
+ </a>
+ </choices>
+ </hudson.model.ChoiceParameterDefinition>
+ </parameterDefinitions>
+ </hudson.model.ParametersDefinitionProperty>
+ <hudson.plugins.descriptionsetter.JobByDescription/>
+ <hudson.plugins.disk__usage.DiskUsageProperty/>
+ <hudson.plugins.jira.JiraProjectProperty>
+ <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
+ </hudson.plugins.jira.JiraProjectProperty>
+ </properties>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>https://svn.jboss.org/repos/jbosstools/trunk/build</remote>
+ <local>sources</local>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <doRevert>false</doRevert>
+ <browser class="hudson.scm.browsers.FishEyeSVN">
+ <url>http://fisheye.jboss.com/browse/JBossTools/</url>
+ <rootModule/>
+ </browser>
+ <excludedRegions/>
+ <includedRegions/>
+ <excludedUsers/>
+ <excludedRevprop/>
+ <excludedCommitMessages/>
+ </scm>
+ <assignedNode>RHEL_any</assignedNode>
+ <canRoam>false</canRoam>
+ <disabled>false</disabled>
+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
+ <jdk>java16_default</jdk>
+ <triggers class="vector"/>
+ <concurrentBuild>false</concurrentBuild>
+ <builders>
+ <hudson.tasks.Shell>
+ <command># clean up pre-existing locally before starting fresh
+repoDir=/home/hudson/static_build_env/jbds/tools/sources/JBDS-REPO_3.3.indigo
+destinationPath=/home/hudson/static_build_env/jbds/jbds-target-platform_3.3.indigo
+if [[ $CLEAN == "true" ]]; then rm -fr ${repoDir} ${destinationPath}; fi
+</command>
+ </hudson.tasks.Shell>
+ <hudson.tasks.Ant>
+ <targets>build.local.target.platform.repo</targets>
+ <antName>ant-1.7.x</antName>
+ <buildFile>${WORKSPACE}/sources/target-platform/build.xml</buildFile>
+ <properties>useLatest=false</properties>
+ </hudson.tasks.Ant>
+ <hudson.tasks.Shell>
+ <command># script here: http://anonsvn.jboss.org/repos/jbosstools/trunk/build/target-platform/pub...
+. ${WORKSPACE}/sources/target-platform/publish.sh -jbds_3.3.indigo</command>
+ </hudson.tasks.Shell>
+ </builders>
+ <publishers>
+ <hudson.plugins.textfinder.TextFinderPublisher>
+ <regexp>ERROR|AILURE|\[exec\] Caused by:|No such file or directory|: Exception in |: Error in |\[exec\] Result: </regexp>
+ <succeedIfFound>false</succeedIfFound>
+ <unstableIfFound>false</unstableIfFound>
+ <alsoCheckConsoleOutput>true</alsoCheckConsoleOutput>
+ </hudson.plugins.textfinder.TextFinderPublisher>
+ <hudson.plugins.ws__cleanup.WsCleanup/>
+ </publishers>
+ <buildWrappers>
+ <hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <timeoutMinutes>240</timeoutMinutes>
+ <failBuild>false</failBuild>
+ </hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ </buildWrappers>
+</project>
\ No newline at end of file
Added: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... (rev 0)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-29 22:32:06 UTC (rev 30130)
@@ -0,0 +1,141 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project>
+ <actions/>
+ <description>p2 mirror an update site consisting of the contents of the target platform, monitoring SVN for changes.
+
+<p>Repo is created outside of Hudson workspace for reuse between multiple builds.
+
+<ul>
+<li>/home/hudson/static_build_env/jbds/tools/sources/REPO_3.3.indigo/ (sync'd to: /home/hudson/static_build_env/jbds/target-platform_3.3.indigo/)
+<li><a href="http://download.jboss.org/jbosstools/updates/target-platform_3.3.indigo/l...">http://download.jboss.org/jbosstools/updates/target-platform_3.3.indigo/latest/</a> (sftp://tools@filemgmt.jboss.org/downloads_htdocs/tools/updates/target-platform_3.3.indigo/latest/)
+<li><a href="http://download.jboss.org/jbosstools/updates/target-platform_3.3.indigo/e...">http://download.jboss.org/jbosstools/updates/target-platform_3.3.indigo/e37M5-wtp33M5.target.zip</a> (sftp://tools@filemgmt.jboss.org/downloads_htdocs/tools/updates/target-platform_3.3.indigo/e37M5-wtp33M5.target.zip)
+</ul>
+
+<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2>
+
+</description>
+ <logRotator>
+ <daysToKeep>5</daysToKeep>
+ <numToKeep>5</numToKeep>
+ <artifactDaysToKeep>-1</artifactDaysToKeep>
+ <artifactNumToKeep>-1</artifactNumToKeep>
+ </logRotator>
+ <keepDependencies>false</keepDependencies>
+ <properties>
+ <hudson.model.ParametersDefinitionProperty>
+ <parameterDefinitions>
+ <hudson.model.StringParameterDefinition>
+ <name>targetFile</name>
+ <description>target file to resolve</description>
+ <defaultValue>multiple.target</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ <hudson.model.StringParameterDefinition>
+ <name>repoDir</name>
+ <description>path to stage the update site</description>
+ <defaultValue>/home/hudson/static_build_env/jbds/tools/sources/REPO_3.3.indigo</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ <hudson.model.ChoiceParameterDefinition>
+ <name>CLEAN</name>
+ <description>Should we purge the existing repo and start from a clean one (true),
+or build on top of an existing one (false)?</description>
+ <choices class="java.util.Arrays$ArrayList">
+ <a class="string-array">
+ <string>false</string>
+ <string>true</string>
+ </a>
+ </choices>
+ </hudson.model.ChoiceParameterDefinition>
+ <hudson.model.StringParameterDefinition>
+ <name>MAVEN_FLAGS</name>
+ <description>add 'deploy' to push to nexus</description>
+ <defaultValue>clean install -B -U -fae -e -Dmaven.repo.local=${WORKSPACE}/m2-repo</defaultValue>
+ </hudson.model.StringParameterDefinition>
+ </parameterDefinitions>
+ </hudson.model.ParametersDefinitionProperty>
+ <hudson.plugins.descriptionsetter.JobByDescription/>
+ <hudson.plugins.disk__usage.DiskUsageProperty/>
+ <hudson.plugins.jira.JiraProjectProperty>
+ <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
+ </hudson.plugins.jira.JiraProjectProperty>
+ </properties>
+ <scm class="hudson.scm.SubversionSCM">
+ <locations>
+ <hudson.scm.SubversionSCM_-ModuleLocation>
+ <remote>https://svn.jboss.org/repos/jbosstools/trunk/build</remote>
+ <local>sources</local>
+ </hudson.scm.SubversionSCM_-ModuleLocation>
+ </locations>
+ <useUpdate>true</useUpdate>
+ <doRevert>false</doRevert>
+ <browser class="hudson.scm.browsers.FishEyeSVN">
+ <url>http://fisheye.jboss.com/browse/JBossTools/</url>
+ <rootModule/>
+ </browser>
+ <excludedRegions/>
+ <includedRegions/>
+ <excludedUsers/>
+ <excludedRevprop/>
+ <excludedCommitMessages/>
+ </scm>
+ <assignedNode>RHEL5_any</assignedNode>
+ <canRoam>false</canRoam>
+ <disabled>false</disabled>
+ <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
+ <jdk>java16_default</jdk>
+ <triggers class="vector">
+ <hudson.triggers.SCMTrigger>
+ <spec># 4:15am every day
+15 4 * * *</spec>
+ </hudson.triggers.SCMTrigger>
+ </triggers>
+ <concurrentBuild>false</concurrentBuild>
+ <builders>
+ <hudson.tasks.Shell>
+ <command># clean up pre-existing locally before starting fresh
+repoDir=/home/hudson/static_build_env/jbds/tools/sources/REPO_3.3.indigo
+destinationPath=/home/hudson/static_build_env/jbds/target-platform_3.3.indigo
+if [[ $CLEAN == "true" ]]; then rm -fr ${repoDir} ${destinationPath}; fi
+</command>
+ </hudson.tasks.Shell>
+ <hudson.tasks.Ant>
+ <targets>build.local.target.platform.repo</targets>
+ <antName>ant-1.7.x</antName>
+ <antOpts>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</antOpts>
+ <buildFile>${WORKSPACE}/sources/target-platform/build.xml</buildFile>
+ </hudson.tasks.Ant>
+ <hudson.tasks.Maven>
+ <targets>${MAVEN_FLAGS} -DJOB_NAME=${JOB_NAME} -DBUILD_ID=${BUILD_ID} -DBUILD_NUMBER=${BUILD_NUMBER}</targets>
+ <mavenName>maven-3.0.1</mavenName>
+ <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
+ <pom>${WORKSPACE}/sources/parent/pom.xml</pom>
+ <usePrivateRepository>true</usePrivateRepository>
+ </hudson.tasks.Maven>
+ <hudson.tasks.Shell>
+ <command># script here: http://anonsvn.jboss.org/repos/jbosstools/trunk/build/target-platform/pub...
+. ${WORKSPACE}/sources/target-platform/publish.sh -jbt_3.3.indigo</command>
+ </hudson.tasks.Shell>
+ </builders>
+ <publishers>
+ <hudson.tasks.BuildTrigger>
+ <childProjects>devstudio-5.0_trunk.target-platform, jbosstools-3.3_trunk.component--gwt, jbosstools-3.3_trunk.component--runtime, jbosstools-3.3_trunk.component--tests, jbosstools-3.3_trunk.component--usage, jbosstools-3.3_trunk.continuous, jbosstools-3.3_trunk.tests, jbosstools-drools-5.2_trunk, jbosstools-pi4soa-3.1_trunk, jbosstools-savara-1.1_trunk, jbosstools-teiid-designer-7.4_trunk</childProjects>
+ <threshold>
+ <name>UNSTABLE</name>
+ <ordinal>1</ordinal>
+ <color>YELLOW</color>
+ </threshold>
+ </hudson.tasks.BuildTrigger>
+ <hudson.plugins.textfinder.TextFinderPublisher>
+ <regexp>ERROR|AILURE|\[exec\] Caused by:|No such file or directory|: Exception in |: Error in |\[exec\] Result: </regexp>
+ <succeedIfFound>false</succeedIfFound>
+ <unstableIfFound>false</unstableIfFound>
+ <alsoCheckConsoleOutput>true</alsoCheckConsoleOutput>
+ </hudson.plugins.textfinder.TextFinderPublisher>
+ <hudson.plugins.ws__cleanup.WsCleanup/>
+ </publishers>
+ <buildWrappers>
+ <hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ <timeoutMinutes>240</timeoutMinutes>
+ <failBuild>false</failBuild>
+ </hudson.plugins.build__timeout.BuildTimeoutWrapper>
+ </buildWrappers>
+</project>
\ No newline at end of file
14 years, 9 months
JBoss Tools SVN: r30129 - trunk/build/hudson-jobs.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-03-29 18:31:44 -0400 (Tue, 29 Mar 2011)
New Revision: 30129
Modified:
trunk/build/hudson-jobs/pom-sync.xml
Log:
update pom-sync.xml w/ new parameter + comment out default values so they can be passed as -D flags OOTB
Modified: trunk/build/hudson-jobs/pom-sync.xml
===================================================================
--- trunk/build/hudson-jobs/pom-sync.xml 2011-03-29 22:03:08 UTC (rev 30128)
+++ trunk/build/hudson-jobs/pom-sync.xml 2011-03-29 22:31:44 UTC (rev 30129)
@@ -43,36 +43,37 @@
$ export JAVA_HOME=/opt/sun-java2-6.0/; mvn clean install
-->
+ <!-- more output w/ verbose; default: false -->
+ <!-- <verbose>false</verbose> -->
- <!-- more output w/ verbose; default false -->
- <verbose>false</verbose>
-
<!-- server and connection details -->
<!-- <hudsonURL>https://hudson.qa.jboss.com/hudson/</hudsonURL> -->
<hudsonURL>http://localhost:8080/</hudsonURL>
<username>SET USERNAME HERE</username>
<password>SET PASSWORD HERE</password>
- <!-- to select a subset of jobs, use these filters; default none (all jobs on server!) -->
+ <!-- to select a subset of jobs, use these filters; default: view/myViewName/ -->
<!-- <viewFilter>view/DevStudio_Stable_Branch/</viewFilter> -->
- <viewFilter>view/DevStudio_Trunk/</viewFilter>
+ <!-- <viewFilter>view/DevStudio_Trunk/</viewFilter> -->
<!-- default .* to select all -->
+ <!-- <regexFilter>.*TEMPLATE.*</regexFilter> -->
<!-- <regexFilter>.*</regexFilter> -->
- <!-- <regexFilter>.*TEMPLATE.*</regexFilter> -->
<regexFilter>MyJobNameHere</regexFilter>
- <!-- if there's an existing config.xml (not config.$timestamp.xml) then overwrite it if true -->
- <overwriteExistingConfigXMLFile>false</overwriteExistingConfigXMLFile>
+ <!-- if there's an existing config.xml (not config.$timestamp.xml) then overwrite it if true; default false -->
+ <!-- <overwriteExistingConfigXMLFile>false</overwriteExistingConfigXMLFile> -->
<!-- either "pull" updated job config.xml file(s) from the server (default, reads only & stores a copy locally), or
"push" updates from local to the server (replacing existing job config.xml on server :: CAUTION!)
-->
- <operation>pull</operation>
+ <!-- <operation>pull</operation> -->
+
+ <!-- if pushing, can also store a copy of the latest configuration with storeSnapshotOnPush = true; default false -->
+ <!-- <storeSnapshotOnPush>false</storeSnapshotOnPush> -->
</configuration>
</plugin>
</plugins>
</build>
</project>
-
14 years, 9 months
JBoss Tools SVN: r30128 - trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/resources/jbossws.
by jbosstools-commits@lists.jboss.org
Author: jlukas(a)redhat.com
Date: 2011-03-29 18:03:08 -0400 (Tue, 29 Mar 2011)
New Revision: 30128
Removed:
trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/resources/jbossws/BottomUpJbossWStest.java.servlet
trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/resources/jbossws/ClassB.java.ws
trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/resources/jbossws/SampleWStest.java.servlet
trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/resources/jbossws/TopDownJbossWStest.java.servlet
trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/resources/jbossws/TwoServicesJbossWStest.java.servlet
Log:
remove obsolete files
Deleted: trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/resources/jbossws/BottomUpJbossWStest.java.servlet
===================================================================
--- trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/resources/jbossws/BottomUpJbossWStest.java.servlet 2011-03-29 21:43:52 UTC (rev 30127)
+++ trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/resources/jbossws/BottomUpJbossWStest.java.servlet 2011-03-29 22:03:08 UTC (rev 30128)
@@ -1,47 +0,0 @@
-package jbossws;
-
-import java.io.IOException;
-import javax.servlet.ServletException;
-import javax.servlet.http.HttpServlet;
-import javax.servlet.http.HttpServletRequest;
-import javax.servlet.http.HttpServletResponse;
-
-/**
- * Servlet implementation class testWS
- */
-public class BottomUpJbossWStest extends HttpServlet {
- private static final long serialVersionUID = 1L;
-
- /**
- * @see HttpServlet#HttpServlet()
- */
- public BottomUpJbossWStest() {
- super();
- }
-
- /**
- * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
- */
- protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
- System.out.println("***********************");
- System.out.println("Create Web Service Client...");
- ClassAService service1 = new ClassAService();
- System.out.println("Create Web Service...");
- ClassA port1 = service1.getClassAPort();
- System.out.println("Call Web Service Operation...");
- int resp = port1.method();
- System.out.println("Server said: " + resp);
- System.out.println("***********************");
- System.out.println("Call Over!");
- response.getOutputStream().print("<html><head></head><body>Web service said :'"+resp+"'</body></html>");
-
- }
-
- /**
- * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
- */
- protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
- // TODO Auto-generated method stub
- }
-
-}
\ No newline at end of file
Deleted: trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/resources/jbossws/ClassB.java.ws
===================================================================
--- trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/resources/jbossws/ClassB.java.ws 2011-03-29 21:43:52 UTC (rev 30127)
+++ trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/resources/jbossws/ClassB.java.ws 2011-03-29 22:03:08 UTC (rev 30128)
@@ -1,14 +0,0 @@
-package jbossws;
-
-import javax.jws.WebMethod;
-import javax.jws.WebService;
-
-@WebService()
-public class ClassB {
-
- @WebMethod()
- public int method() {
- System.out.println("JbossWS Service : method() was called");
- return 11111;
- }
-}
Deleted: trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/resources/jbossws/SampleWStest.java.servlet
===================================================================
--- trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/resources/jbossws/SampleWStest.java.servlet 2011-03-29 21:43:52 UTC (rev 30127)
+++ trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/resources/jbossws/SampleWStest.java.servlet 2011-03-29 22:03:08 UTC (rev 30128)
@@ -1,50 +0,0 @@
-package jbossws;
-
-import java.io.IOException;
-import javax.servlet.ServletException;
-import javax.servlet.http.HttpServlet;
-import javax.servlet.http.HttpServletRequest;
-import javax.servlet.http.HttpServletResponse;
-
-import org.jboss.samples.webservices.HelloWorld;
-import org.jboss.samples.webservices.HelloWorldService;
-
-/**
- * Servlet implementation class testWS
- */
-public class SampleWStest extends HttpServlet {
- private static final long serialVersionUID = 1L;
-
- /**
- * @see HttpServlet#HttpServlet()
- */
- public SampleWStest() {
- super();
- }
-
- /**
- * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
- */
- protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
- System.out.println("***********************");
- System.out.println("Create Web Service Client...");
- HelloWorldService service1 = new HelloWorldService();
- System.out.println("Create Web Service...");
- HelloWorld port1 = service1.getHelloWorldPort();
- System.out.println("Call Web Service Operation...");
- String resp = port1.sayHello("abcdefgh");
- System.out.println("Server said: " + resp);
- System.out.println("***********************");
- System.out.println("Call Over!");
- response.getOutputStream().print("<html><head></head><body>Web service said :'"+resp+"'</body></html>");
-
- }
-
- /**
- * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
- */
- protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
- // TODO Auto-generated method stub
- }
-
-}
\ No newline at end of file
Deleted: trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/resources/jbossws/TopDownJbossWStest.java.servlet
===================================================================
--- trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/resources/jbossws/TopDownJbossWStest.java.servlet 2011-03-29 21:43:52 UTC (rev 30127)
+++ trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/resources/jbossws/TopDownJbossWStest.java.servlet 2011-03-29 22:03:08 UTC (rev 30128)
@@ -1,48 +0,0 @@
-package jbossws;
-
-import java.io.IOException;
-import javax.servlet.ServletException;
-import javax.servlet.http.HttpServlet;
-import javax.servlet.http.HttpServletRequest;
-import javax.servlet.http.HttpServletResponse;
-
-/**
- * Servlet implementation class testWS
- */
-public class TopDownJbossWStest extends HttpServlet {
- private static final long serialVersionUID = 1L;
-
- /**
- * @see HttpServlet#HttpServlet()
- */
- public TopDownJbossWStest() {
- super();
- }
-
- /**
- * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
- */
- protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
- System.out.println("***********************");
- System.out.println("Create Web Service Client...");
- ClassB_Service service1 = new ClassB_Service();
- System.out.println("Create Web Service...");
- ClassB port1 = service1.getClassBImplPort();
- System.out.println("Call Web Service Operation...");
- int resp = port1.method();
- System.out.println("Server said: " + resp);
- System.out.println("***********************");
- System.out.println("Call Over!");
-
- response.getOutputStream().print("<html><head></head><body>Web service said :'"+resp+"'</body></html>");
-
- }
-
- /**
- * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
- */
- protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
- // TODO Auto-generated method stub
- }
-
-}
\ No newline at end of file
Deleted: trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/resources/jbossws/TwoServicesJbossWStest.java.servlet
===================================================================
--- trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/resources/jbossws/TwoServicesJbossWStest.java.servlet 2011-03-29 21:43:52 UTC (rev 30127)
+++ trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/resources/jbossws/TwoServicesJbossWStest.java.servlet 2011-03-29 22:03:08 UTC (rev 30128)
@@ -1,60 +0,0 @@
-package jbossws;
-
-import java.io.IOException;
-import javax.servlet.ServletException;
-import javax.servlet.http.HttpServlet;
-import javax.servlet.http.HttpServletRequest;
-import javax.servlet.http.HttpServletResponse;
-
-/**
- * Servlet implementation class testWS
- */
-public class TwoServicesJbossWStest extends HttpServlet {
- private static final long serialVersionUID = 1L;
-
- /**
- * @see HttpServlet#HttpServlet()
- */
- public TwoServicesJbossWStest() {
- super();
- }
-
- /**
- * @see HttpServlet#doGet(HttpServletRequest request, HttpServletResponse response)
- */
- protected void doGet(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
- System.out.println("***********************");
- System.out.println("Create Web Service Client...");
- ClassAService service1 = new ClassAService();
- System.out.println("Create Web Service...");
- ClassA port1 = service1.getClassAPort();
- System.out.println("Call Web Service Operation...");
- int resp1 = port1.method();
- System.out.println("Server said: " + resp1);
- System.out.println("***********************");
- System.out.println("Call Over!");
- System.out.println("***********************");
- System.out.println("Create Web Service Client...");
- ClassBService service2 = new ClassBService();
- System.out.println("Create Web Service...");
- ClassB port2 = service2.getClassBPort();
- System.out.println("Call Web Service Operation...");
- int resp2 = port2.method();
- System.out.println("Server said: " + resp2);
- System.out.println("***********************");
- System.out.println("Call Over!");
- response.getOutputStream().print("<html><head></head><body>");
- response.getOutputStream().print("<p>Web serviceA said :'"+resp1+"'</p>");
- response.getOutputStream().print("<p>Web serviceA said :'"+resp2+"'</p>");
- response.getOutputStream().print("</body></html>");
-
- }
-
- /**
- * @see HttpServlet#doPost(HttpServletRequest request, HttpServletResponse response)
- */
- protected void doPost(HttpServletRequest request, HttpServletResponse response) throws ServletException, IOException {
- // TODO Auto-generated method stub
- }
-
-}
\ No newline at end of file
14 years, 9 months
JBoss Tools SVN: r30127 - in trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevStudio_Trunk/job: jbosstools-3.3_trunk.target-platform and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-03-29 17:43:52 -0400 (Tue, 29 Mar 2011)
New Revision: 30127
Removed:
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
Log:
remove obsolete versions of TP config.xml
Deleted: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-29 21:43:30 UTC (rev 30126)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-29 21:43:52 UTC (rev 30127)
@@ -1,114 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project>
- <actions/>
- <description>p2 mirror an update site consisting of the contents of the target platform, monitoring SVN for changes.
-
-<p>Repo is created outside of Hudson workspace for reuse between multiple builds.
-
-<ul>
-<li>/home/hudson/static_build_env/jbds/tools/sources/JBDS-REPO_trunk/ (sync'd to: /home/hudson/static_build_env/jbds/jbds-target-platform_trunk)
-<li><a href="http://reports.qa.atl.jboss.com/binaries/RHDS/updates/jbds-target-platfor...">http://reports.qa.atl.jboss.com/binaries/RHDS/updates/jbds-target-platform_trunk/latest/</a> (/qa/services/http/binaries/RHDS/updates/jbds-target-platform_trunk/latest/)
-<li><a href="http://reports.qa.atl.jboss.com/binaries/RHDS/updates/jbds-target-platfor...">http://reports.qa.atl.jboss.com/binaries/RHDS/updates/jbds-target-platform_trunk/jbds400-e362-wtp323.target.zip</a> (/qa/services/http/binaries/RHDS/updates/jbds-target-platform_trunk/jbds400-e362-wtp323.target.zip)
-</ul>
-
-<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2></description>
- <logRotator>
- <daysToKeep>5</daysToKeep>
- <numToKeep>5</numToKeep>
- <artifactDaysToKeep>-1</artifactDaysToKeep>
- <artifactNumToKeep>-1</artifactNumToKeep>
- </logRotator>
- <keepDependencies>false</keepDependencies>
- <properties>
- <hudson.model.ParametersDefinitionProperty>
- <parameterDefinitions>
- <hudson.model.StringParameterDefinition>
- <name>targetFile</name>
- <description/>
- <defaultValue>jbds.target</defaultValue>
- </hudson.model.StringParameterDefinition>
- <hudson.model.StringParameterDefinition>
- <name>repoDir</name>
- <description>path to stage the update site</description>
- <defaultValue>/home/hudson/static_build_env/jbds/tools/sources/JBDS-REPO_3.3.indigo</defaultValue>
- </hudson.model.StringParameterDefinition>
- <hudson.model.ChoiceParameterDefinition>
- <name>CLEAN</name>
- <description>Should we purge the existing repo and start from a clean one (true),
-or build on top of an existing one (false)?</description>
- <choices class="java.util.Arrays$ArrayList">
- <a class="string-array">
- <string>false</string>
- <string>true</string>
- </a>
- </choices>
- </hudson.model.ChoiceParameterDefinition>
- </parameterDefinitions>
- </hudson.model.ParametersDefinitionProperty>
- <hudson.plugins.descriptionsetter.JobByDescription/>
- <hudson.plugins.disk__usage.DiskUsageProperty/>
- <hudson.plugins.jira.JiraProjectProperty>
- <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
- </hudson.plugins.jira.JiraProjectProperty>
- </properties>
- <scm class="hudson.scm.SubversionSCM">
- <locations>
- <hudson.scm.SubversionSCM_-ModuleLocation>
- <remote>https://svn.jboss.org/repos/jbosstools/trunk/build</remote>
- <local>sources</local>
- </hudson.scm.SubversionSCM_-ModuleLocation>
- </locations>
- <useUpdate>true</useUpdate>
- <doRevert>false</doRevert>
- <browser class="hudson.scm.browsers.FishEyeSVN">
- <url>http://fisheye.jboss.com/browse/JBossTools/</url>
- <rootModule/>
- </browser>
- <excludedRegions/>
- <includedRegions/>
- <excludedUsers/>
- <excludedRevprop/>
- <excludedCommitMessages/>
- </scm>
- <assignedNode>RHEL_any</assignedNode>
- <canRoam>false</canRoam>
- <disabled>false</disabled>
- <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
- <jdk>java16_default</jdk>
- <triggers class="vector"/>
- <concurrentBuild>false</concurrentBuild>
- <builders>
- <hudson.tasks.Shell>
- <command># clean up pre-existing locally before starting fresh
-repoDir=/home/hudson/static_build_env/jbds/tools/sources/JBDS-REPO_3.3.indigo
-destinationPath=/home/hudson/static_build_env/jbds/jbds-target-platform_3.3.indigo
-if [[ $CLEAN == "true" ]]; then rm -fr ${repoDir} ${destinationPath}; fi
-</command>
- </hudson.tasks.Shell>
- <hudson.tasks.Ant>
- <targets>build.local.target.platform.repo</targets>
- <antName>ant-1.7.x</antName>
- <buildFile>${WORKSPACE}/sources/target-platform/build.xml</buildFile>
- <properties>useLatest=false</properties>
- </hudson.tasks.Ant>
- <hudson.tasks.Shell>
- <command># script here: http://anonsvn.jboss.org/repos/jbosstools/trunk/build/target-platform/pub...
-. ${WORKSPACE}/sources/target-platform/publish.sh -jbds_3.3.indigo</command>
- </hudson.tasks.Shell>
- </builders>
- <publishers>
- <hudson.plugins.textfinder.TextFinderPublisher>
- <regexp>ERROR|AILURE|\[exec\] Caused by:|No such file or directory|: Exception in |: Error in |\[exec\] Result: </regexp>
- <succeedIfFound>false</succeedIfFound>
- <unstableIfFound>false</unstableIfFound>
- <alsoCheckConsoleOutput>true</alsoCheckConsoleOutput>
- </hudson.plugins.textfinder.TextFinderPublisher>
- <hudson.plugins.ws__cleanup.WsCleanup/>
- </publishers>
- <buildWrappers>
- <hudson.plugins.build__timeout.BuildTimeoutWrapper>
- <timeoutMinutes>240</timeoutMinutes>
- <failBuild>false</failBuild>
- </hudson.plugins.build__timeout.BuildTimeoutWrapper>
- </buildWrappers>
-</project>
\ No newline at end of file
Deleted: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-29 21:43:30 UTC (rev 30126)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-29 21:43:52 UTC (rev 30127)
@@ -1,114 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project>
- <actions/>
- <description>p2 mirror an update site consisting of the contents of the target platform, monitoring SVN for changes.
-
-<p>Repo is created outside of Hudson workspace for reuse between multiple builds.
-
-<ul>
-<li>/home/hudson/static_build_env/jbds/tools/sources/JBDS-REPO_trunk/ (sync'd to: /home/hudson/static_build_env/jbds/jbds-target-platform_trunk)
-<li><a href="http://reports.qa.atl.jboss.com/binaries/RHDS/updates/jbds-target-platfor...">http://reports.qa.atl.jboss.com/binaries/RHDS/updates/jbds-target-platform_trunk/latest/</a> (/qa/services/http/binaries/RHDS/updates/jbds-target-platform_trunk/latest/)
-<li><a href="http://reports.qa.atl.jboss.com/binaries/RHDS/updates/jbds-target-platfor...">http://reports.qa.atl.jboss.com/binaries/RHDS/updates/jbds-target-platform_trunk/jbds400-e362-wtp323.target.zip</a> (/qa/services/http/binaries/RHDS/updates/jbds-target-platform_trunk/jbds400-e362-wtp323.target.zip)
-</ul>
-
-<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2></description>
- <logRotator>
- <daysToKeep>5</daysToKeep>
- <numToKeep>5</numToKeep>
- <artifactDaysToKeep>-1</artifactDaysToKeep>
- <artifactNumToKeep>-1</artifactNumToKeep>
- </logRotator>
- <keepDependencies>false</keepDependencies>
- <properties>
- <hudson.model.ParametersDefinitionProperty>
- <parameterDefinitions>
- <hudson.model.StringParameterDefinition>
- <name>targetFile</name>
- <description/>
- <defaultValue>jbds.target</defaultValue>
- </hudson.model.StringParameterDefinition>
- <hudson.model.StringParameterDefinition>
- <name>repoDir</name>
- <description>path to stage the update site</description>
- <defaultValue>/home/hudson/static_build_env/jbds/tools/sources/JBDS-REPO_3.3.indigo</defaultValue>
- </hudson.model.StringParameterDefinition>
- <hudson.model.ChoiceParameterDefinition>
- <name>CLEAN</name>
- <description>Should we purge the existing repo and start from a clean one (true),
-or build on top of an existing one (false)?</description>
- <choices class="java.util.Arrays$ArrayList">
- <a class="string-array">
- <string>false</string>
- <string>true</string>
- </a>
- </choices>
- </hudson.model.ChoiceParameterDefinition>
- </parameterDefinitions>
- </hudson.model.ParametersDefinitionProperty>
- <hudson.plugins.descriptionsetter.JobByDescription/>
- <hudson.plugins.disk__usage.DiskUsageProperty/>
- <hudson.plugins.jira.JiraProjectProperty>
- <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
- </hudson.plugins.jira.JiraProjectProperty>
- </properties>
- <scm class="hudson.scm.SubversionSCM">
- <locations>
- <hudson.scm.SubversionSCM_-ModuleLocation>
- <remote>https://svn.jboss.org/repos/jbosstools/trunk/build</remote>
- <local>sources</local>
- </hudson.scm.SubversionSCM_-ModuleLocation>
- </locations>
- <useUpdate>true</useUpdate>
- <doRevert>false</doRevert>
- <browser class="hudson.scm.browsers.FishEyeSVN">
- <url>http://fisheye.jboss.com/browse/JBossTools/</url>
- <rootModule/>
- </browser>
- <excludedRegions/>
- <includedRegions/>
- <excludedUsers/>
- <excludedRevprop/>
- <excludedCommitMessages/>
- </scm>
- <assignedNode>RHEL_any</assignedNode>
- <canRoam>false</canRoam>
- <disabled>false</disabled>
- <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
- <jdk>java16_default</jdk>
- <triggers class="vector"/>
- <concurrentBuild>false</concurrentBuild>
- <builders>
- <hudson.tasks.Shell>
- <command># clean up pre-existing locally before starting fresh
-repoDir=/home/hudson/static_build_env/jbds/tools/sources/JBDS-REPO_3.3.indigo
-destinationPath=/home/hudson/static_build_env/jbds/jbds-target-platform_3.3.indigo
-if [[ $CLEAN == "true" ]]; then rm -fr ${repoDir} ${destinationPath}; fi
-</command>
- </hudson.tasks.Shell>
- <hudson.tasks.Ant>
- <targets>build.local.target.platform.repo</targets>
- <antName>ant-1.7.x</antName>
- <buildFile>${WORKSPACE}/sources/target-platform/build.xml</buildFile>
- <properties>useLatest=false</properties>
- </hudson.tasks.Ant>
- <hudson.tasks.Shell>
- <command># script here: http://anonsvn.jboss.org/repos/jbosstools/trunk/build/target-platform/pub...
-. ${WORKSPACE}/sources/target-platform/publish.sh -jbds_3.3.indigo</command>
- </hudson.tasks.Shell>
- </builders>
- <publishers>
- <hudson.plugins.textfinder.TextFinderPublisher>
- <regexp>ERROR|AILURE|\[exec\] Caused by:|No such file or directory|: Exception in |: Error in |\[exec\] Result: </regexp>
- <succeedIfFound>false</succeedIfFound>
- <unstableIfFound>false</unstableIfFound>
- <alsoCheckConsoleOutput>true</alsoCheckConsoleOutput>
- </hudson.plugins.textfinder.TextFinderPublisher>
- <hudson.plugins.ws__cleanup.WsCleanup/>
- </publishers>
- <buildWrappers>
- <hudson.plugins.build__timeout.BuildTimeoutWrapper>
- <timeoutMinutes>240</timeoutMinutes>
- <failBuild>false</failBuild>
- </hudson.plugins.build__timeout.BuildTimeoutWrapper>
- </buildWrappers>
-</project>
\ No newline at end of file
Deleted: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-29 21:43:30 UTC (rev 30126)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-29 21:43:52 UTC (rev 30127)
@@ -1,141 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project>
- <actions/>
- <description>p2 mirror an update site consisting of the contents of the target platform, monitoring SVN for changes.
-
-<p>Repo is created outside of Hudson workspace for reuse between multiple builds.
-
-<ul>
-<li>/home/hudson/static_build_env/jbds/tools/sources/REPO_trunk/ (sync'd to: /home/hudson/static_build_env/jbds/target-platform_trunk/)
-<li><a href="http://download.jboss.org/jbosstools/updates/target-platform_trunk/latest/">http://download.jboss.org/jbosstools/updates/target-platform_trunk/latest/</a> (sftp://tools@filemgmt.jboss.org/downloads_htdocs/tools/updates/target-platform_trunk/latest/)
-<li><a href="http://download.jboss.org/jbosstools/updates/target-platform_trunk/e362-w...">http://download.jboss.org/jbosstools/updates/target-platform_trunk/e362-wtp323.target.zip</a> (sftp://tools@filemgmt.jboss.org/downloads_htdocs/tools/updates/target-platform_trunk/e362-wtp323.target.zip)
-</ul>
-
-<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2>
-
-</description>
- <logRotator>
- <daysToKeep>5</daysToKeep>
- <numToKeep>5</numToKeep>
- <artifactDaysToKeep>-1</artifactDaysToKeep>
- <artifactNumToKeep>-1</artifactNumToKeep>
- </logRotator>
- <keepDependencies>false</keepDependencies>
- <properties>
- <hudson.model.ParametersDefinitionProperty>
- <parameterDefinitions>
- <hudson.model.StringParameterDefinition>
- <name>targetFile</name>
- <description>target file to resolve</description>
- <defaultValue>multiple.target</defaultValue>
- </hudson.model.StringParameterDefinition>
- <hudson.model.StringParameterDefinition>
- <name>repoDir</name>
- <description>path to stage the update site</description>
- <defaultValue>/home/hudson/static_build_env/jbds/tools/sources/REPO_3.3.indigo</defaultValue>
- </hudson.model.StringParameterDefinition>
- <hudson.model.ChoiceParameterDefinition>
- <name>CLEAN</name>
- <description>Should we purge the existing repo and start from a clean one (true),
-or build on top of an existing one (false)?</description>
- <choices class="java.util.Arrays$ArrayList">
- <a class="string-array">
- <string>false</string>
- <string>true</string>
- </a>
- </choices>
- </hudson.model.ChoiceParameterDefinition>
- <hudson.model.StringParameterDefinition>
- <name>MAVEN_FLAGS</name>
- <description>add 'deploy' to push to nexus</description>
- <defaultValue>clean install -B -U -fae -e -Dmaven.repo.local=${WORKSPACE}/m2-repo</defaultValue>
- </hudson.model.StringParameterDefinition>
- </parameterDefinitions>
- </hudson.model.ParametersDefinitionProperty>
- <hudson.plugins.descriptionsetter.JobByDescription/>
- <hudson.plugins.disk__usage.DiskUsageProperty/>
- <hudson.plugins.jira.JiraProjectProperty>
- <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
- </hudson.plugins.jira.JiraProjectProperty>
- </properties>
- <scm class="hudson.scm.SubversionSCM">
- <locations>
- <hudson.scm.SubversionSCM_-ModuleLocation>
- <remote>https://svn.jboss.org/repos/jbosstools/trunk/build</remote>
- <local>sources</local>
- </hudson.scm.SubversionSCM_-ModuleLocation>
- </locations>
- <useUpdate>true</useUpdate>
- <doRevert>false</doRevert>
- <browser class="hudson.scm.browsers.FishEyeSVN">
- <url>http://fisheye.jboss.com/browse/JBossTools/</url>
- <rootModule/>
- </browser>
- <excludedRegions/>
- <includedRegions/>
- <excludedUsers/>
- <excludedRevprop/>
- <excludedCommitMessages/>
- </scm>
- <assignedNode>RHEL5_any</assignedNode>
- <canRoam>false</canRoam>
- <disabled>false</disabled>
- <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
- <jdk>java16_default</jdk>
- <triggers class="vector">
- <hudson.triggers.SCMTrigger>
- <spec># 4:15am every day
-15 4 * * *</spec>
- </hudson.triggers.SCMTrigger>
- </triggers>
- <concurrentBuild>false</concurrentBuild>
- <builders>
- <hudson.tasks.Shell>
- <command># clean up pre-existing locally before starting fresh
-repoDir=/home/hudson/static_build_env/jbds/tools/sources/REPO_3.3.indigo
-destinationPath=/home/hudson/static_build_env/jbds/target-platform_3.3.indigo
-if [[ $CLEAN == "true" ]]; then rm -fr ${repoDir} ${destinationPath}; fi
-</command>
- </hudson.tasks.Shell>
- <hudson.tasks.Ant>
- <targets>build.local.target.platform.repo</targets>
- <antName>ant-1.7.x</antName>
- <antOpts>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</antOpts>
- <buildFile>${WORKSPACE}/sources/target-platform/build.xml</buildFile>
- </hudson.tasks.Ant>
- <hudson.tasks.Maven>
- <targets>${MAVEN_FLAGS} -DJOB_NAME=${JOB_NAME} -DBUILD_ID=${BUILD_ID} -DBUILD_NUMBER=${BUILD_NUMBER}</targets>
- <mavenName>maven-3.0.1</mavenName>
- <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
- <pom>${WORKSPACE}/sources/parent/pom.xml</pom>
- <usePrivateRepository>true</usePrivateRepository>
- </hudson.tasks.Maven>
- <hudson.tasks.Shell>
- <command># script here: http://anonsvn.jboss.org/repos/jbosstools/trunk/build/target-platform/pub...
-. ${WORKSPACE}/sources/target-platform/publish.sh -jbt_3.3.indigo</command>
- </hudson.tasks.Shell>
- </builders>
- <publishers>
- <hudson.tasks.BuildTrigger>
- <childProjects>devstudio-5.0_trunk.target-platform, jbosstools-3.3_trunk.component--gwt, jbosstools-3.3_trunk.component--runtime, jbosstools-3.3_trunk.component--tests, jbosstools-3.3_trunk.component--usage, jbosstools-3.3_trunk.continuous, jbosstools-3.3_trunk.tests, jbosstools-drools-5.2_trunk, jbosstools-pi4soa-3.1_trunk, jbosstools-savara-1.1_trunk, jbosstools-teiid-designer-7.4_trunk</childProjects>
- <threshold>
- <name>UNSTABLE</name>
- <ordinal>1</ordinal>
- <color>YELLOW</color>
- </threshold>
- </hudson.tasks.BuildTrigger>
- <hudson.plugins.textfinder.TextFinderPublisher>
- <regexp>ERROR|AILURE|\[exec\] Caused by:|No such file or directory|: Exception in |: Error in |\[exec\] Result: </regexp>
- <succeedIfFound>false</succeedIfFound>
- <unstableIfFound>false</unstableIfFound>
- <alsoCheckConsoleOutput>true</alsoCheckConsoleOutput>
- </hudson.plugins.textfinder.TextFinderPublisher>
- <hudson.plugins.ws__cleanup.WsCleanup/>
- </publishers>
- <buildWrappers>
- <hudson.plugins.build__timeout.BuildTimeoutWrapper>
- <timeoutMinutes>240</timeoutMinutes>
- <failBuild>false</failBuild>
- </hudson.plugins.build__timeout.BuildTimeoutWrapper>
- </buildWrappers>
-</project>
\ No newline at end of file
Deleted: trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt...
===================================================================
--- trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-29 21:43:30 UTC (rev 30126)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-29 21:43:52 UTC (rev 30127)
@@ -1,141 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project>
- <actions/>
- <description>p2 mirror an update site consisting of the contents of the target platform, monitoring SVN for changes.
-
-<p>Repo is created outside of Hudson workspace for reuse between multiple builds.
-
-<ul>
-<li>/home/hudson/static_build_env/jbds/tools/sources/REPO_trunk/ (sync'd to: /home/hudson/static_build_env/jbds/target-platform_trunk/)
-<li><a href="http://download.jboss.org/jbosstools/updates/target-platform_trunk/latest/">http://download.jboss.org/jbosstools/updates/target-platform_trunk/latest/</a> (sftp://tools@filemgmt.jboss.org/downloads_htdocs/tools/updates/target-platform_trunk/latest/)
-<li><a href="http://download.jboss.org/jbosstools/updates/target-platform_trunk/e362-w...">http://download.jboss.org/jbosstools/updates/target-platform_trunk/e362-wtp323.target.zip</a> (sftp://tools@filemgmt.jboss.org/downloads_htdocs/tools/updates/target-platform_trunk/e362-wtp323.target.zip)
-</ul>
-
-<h2><a style="color:#FF9933" href="http://download.jboss.org/jbosstools/builds/cascade/trunk.html">Build Job Cascade &amp; Results</a></h2>
-
-</description>
- <logRotator>
- <daysToKeep>5</daysToKeep>
- <numToKeep>5</numToKeep>
- <artifactDaysToKeep>-1</artifactDaysToKeep>
- <artifactNumToKeep>-1</artifactNumToKeep>
- </logRotator>
- <keepDependencies>false</keepDependencies>
- <properties>
- <hudson.model.ParametersDefinitionProperty>
- <parameterDefinitions>
- <hudson.model.StringParameterDefinition>
- <name>targetFile</name>
- <description>target file to resolve</description>
- <defaultValue>multiple.target</defaultValue>
- </hudson.model.StringParameterDefinition>
- <hudson.model.StringParameterDefinition>
- <name>repoDir</name>
- <description>path to stage the update site</description>
- <defaultValue>/home/hudson/static_build_env/jbds/tools/sources/REPO_3.3.indigo</defaultValue>
- </hudson.model.StringParameterDefinition>
- <hudson.model.ChoiceParameterDefinition>
- <name>CLEAN</name>
- <description>Should we purge the existing repo and start from a clean one (true),
-or build on top of an existing one (false)?</description>
- <choices class="java.util.Arrays$ArrayList">
- <a class="string-array">
- <string>false</string>
- <string>true</string>
- </a>
- </choices>
- </hudson.model.ChoiceParameterDefinition>
- <hudson.model.StringParameterDefinition>
- <name>MAVEN_FLAGS</name>
- <description>add 'deploy' to push to nexus</description>
- <defaultValue>clean install -B -U -fae -e -Dmaven.repo.local=${WORKSPACE}/m2-repo</defaultValue>
- </hudson.model.StringParameterDefinition>
- </parameterDefinitions>
- </hudson.model.ParametersDefinitionProperty>
- <hudson.plugins.descriptionsetter.JobByDescription/>
- <hudson.plugins.disk__usage.DiskUsageProperty/>
- <hudson.plugins.jira.JiraProjectProperty>
- <siteName>http://opensource.atlassian.com/projects/hibernate/</siteName>
- </hudson.plugins.jira.JiraProjectProperty>
- </properties>
- <scm class="hudson.scm.SubversionSCM">
- <locations>
- <hudson.scm.SubversionSCM_-ModuleLocation>
- <remote>https://svn.jboss.org/repos/jbosstools/trunk/build</remote>
- <local>sources</local>
- </hudson.scm.SubversionSCM_-ModuleLocation>
- </locations>
- <useUpdate>true</useUpdate>
- <doRevert>false</doRevert>
- <browser class="hudson.scm.browsers.FishEyeSVN">
- <url>http://fisheye.jboss.com/browse/JBossTools/</url>
- <rootModule/>
- </browser>
- <excludedRegions/>
- <includedRegions/>
- <excludedUsers/>
- <excludedRevprop/>
- <excludedCommitMessages/>
- </scm>
- <assignedNode>RHEL5_any</assignedNode>
- <canRoam>false</canRoam>
- <disabled>false</disabled>
- <blockBuildWhenUpstreamBuilding>false</blockBuildWhenUpstreamBuilding>
- <jdk>java16_default</jdk>
- <triggers class="vector">
- <hudson.triggers.SCMTrigger>
- <spec># 4:15am every day
-15 4 * * *</spec>
- </hudson.triggers.SCMTrigger>
- </triggers>
- <concurrentBuild>false</concurrentBuild>
- <builders>
- <hudson.tasks.Shell>
- <command># clean up pre-existing locally before starting fresh
-repoDir=/home/hudson/static_build_env/jbds/tools/sources/REPO_3.3.indigo
-destinationPath=/home/hudson/static_build_env/jbds/target-platform_3.3.indigo
-if [[ $CLEAN == "true" ]]; then rm -fr ${repoDir} ${destinationPath}; fi
-</command>
- </hudson.tasks.Shell>
- <hudson.tasks.Ant>
- <targets>build.local.target.platform.repo</targets>
- <antName>ant-1.7.x</antName>
- <antOpts>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</antOpts>
- <buildFile>${WORKSPACE}/sources/target-platform/build.xml</buildFile>
- </hudson.tasks.Ant>
- <hudson.tasks.Maven>
- <targets>${MAVEN_FLAGS} -DJOB_NAME=${JOB_NAME} -DBUILD_ID=${BUILD_ID} -DBUILD_NUMBER=${BUILD_NUMBER}</targets>
- <mavenName>maven-3.0.1</mavenName>
- <jvmOptions>-Xms512m -Xmx1024m -XX:PermSize=128m -XX:MaxPermSize=256m</jvmOptions>
- <pom>${WORKSPACE}/sources/parent/pom.xml</pom>
- <usePrivateRepository>true</usePrivateRepository>
- </hudson.tasks.Maven>
- <hudson.tasks.Shell>
- <command># script here: http://anonsvn.jboss.org/repos/jbosstools/trunk/build/target-platform/pub...
-. ${WORKSPACE}/sources/target-platform/publish.sh -jbt_3.3.indigo</command>
- </hudson.tasks.Shell>
- </builders>
- <publishers>
- <hudson.tasks.BuildTrigger>
- <childProjects>devstudio-5.0_trunk.target-platform, jbosstools-3.3_trunk.component--gwt, jbosstools-3.3_trunk.component--runtime, jbosstools-3.3_trunk.component--tests, jbosstools-3.3_trunk.component--usage, jbosstools-3.3_trunk.continuous, jbosstools-3.3_trunk.tests, jbosstools-drools-5.2_trunk, jbosstools-pi4soa-3.1_trunk, jbosstools-savara-1.1_trunk, jbosstools-teiid-designer-7.4_trunk</childProjects>
- <threshold>
- <name>UNSTABLE</name>
- <ordinal>1</ordinal>
- <color>YELLOW</color>
- </threshold>
- </hudson.tasks.BuildTrigger>
- <hudson.plugins.textfinder.TextFinderPublisher>
- <regexp>ERROR|AILURE|\[exec\] Caused by:|No such file or directory|: Exception in |: Error in |\[exec\] Result: </regexp>
- <succeedIfFound>false</succeedIfFound>
- <unstableIfFound>false</unstableIfFound>
- <alsoCheckConsoleOutput>true</alsoCheckConsoleOutput>
- </hudson.plugins.textfinder.TextFinderPublisher>
- <hudson.plugins.ws__cleanup.WsCleanup/>
- </publishers>
- <buildWrappers>
- <hudson.plugins.build__timeout.BuildTimeoutWrapper>
- <timeoutMinutes>240</timeoutMinutes>
- <failBuild>false</failBuild>
- </hudson.plugins.build__timeout.BuildTimeoutWrapper>
- </buildWrappers>
-</project>
\ No newline at end of file
14 years, 9 months