JBoss Tools SVN: r30145 - branches/jbosstools-3.2.x/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/internal/deltacloud/ui/utils.
by jbosstools-commits@lists.jboss.org
Author: adietish
Date: 2011-03-30 05:58:51 -0400 (Wed, 30 Mar 2011)
New Revision: 30145
Modified:
branches/jbosstools-3.2.x/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/internal/deltacloud/ui/utils/WizardUtils.java
Log:
[JBIDE-7772] added "Manage Keys" to cloud context menu in cloud viewer
Modified: branches/jbosstools-3.2.x/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/internal/deltacloud/ui/utils/WizardUtils.java
===================================================================
--- branches/jbosstools-3.2.x/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/internal/deltacloud/ui/utils/WizardUtils.java 2011-03-30 09:50:20 UTC (rev 30144)
+++ branches/jbosstools-3.2.x/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/internal/deltacloud/ui/utils/WizardUtils.java 2011-03-30 09:58:51 UTC (rev 30145)
@@ -22,6 +22,8 @@
import org.eclipse.jface.wizard.IWizard;
import org.eclipse.jface.wizard.IWizardContainer;
import org.eclipse.jface.wizard.IWizardPage;
+import org.eclipse.jface.wizard.WizardDialog;
+import org.eclipse.swt.widgets.Shell;
/**
* @author André Dietisheim
@@ -115,4 +117,11 @@
}
}
}
+
+ public static void openWizardDialog(IWizard wizard, Shell shell) {
+ WizardDialog dialog = new WizardDialog(shell, wizard);
+ dialog.create();
+ dialog.open();
+ }
+
}
13 years, 9 months
JBoss Tools SVN: r30144 - in branches/jbosstools-3.2.x/deltacloud/plugins/org.jboss.tools.deltacloud.ui: src/org/jboss/tools/deltacloud/ui/commands and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: adietish
Date: 2011-03-30 05:50:20 -0400 (Wed, 30 Mar 2011)
New Revision: 30144
Modified:
branches/jbosstools-3.2.x/deltacloud/plugins/org.jboss.tools.deltacloud.ui/ChangeLog
branches/jbosstools-3.2.x/deltacloud/plugins/org.jboss.tools.deltacloud.ui/plugin.xml
branches/jbosstools-3.2.x/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/commands/DeleteCloudHandler.java
Log:
[JBIDE-8290] delete is now only available on cloud items in the cloud viewer
Modified: branches/jbosstools-3.2.x/deltacloud/plugins/org.jboss.tools.deltacloud.ui/ChangeLog
===================================================================
--- branches/jbosstools-3.2.x/deltacloud/plugins/org.jboss.tools.deltacloud.ui/ChangeLog 2011-03-30 09:48:38 UTC (rev 30143)
+++ branches/jbosstools-3.2.x/deltacloud/plugins/org.jboss.tools.deltacloud.ui/ChangeLog 2011-03-30 09:50:20 UTC (rev 30144)
@@ -1,3 +1,11 @@
+2011-03-29 André Dietisheim <André Dietisheim@adietisheim-thinkpad>
+
+ * plugin.xml:
+ * src/org/jboss/tools/deltacloud/ui/commands/DeleteCloudHandler.java
+ (getSelectedClouds):
+ (getFirstSelectedCloud):
+ [JBIDE-8290] delete is now only available on cloud items in the cloud viewer
+
2011-03-25 André Dietisheim <André Dietisheim@adietisheim-thinkpad>
* src/org/jboss/tools/deltacloud/ui/views/cloudelements/TableViewerColumnComparator.java
Modified: branches/jbosstools-3.2.x/deltacloud/plugins/org.jboss.tools.deltacloud.ui/plugin.xml
===================================================================
--- branches/jbosstools-3.2.x/deltacloud/plugins/org.jboss.tools.deltacloud.ui/plugin.xml 2011-03-30 09:48:38 UTC (rev 30143)
+++ branches/jbosstools-3.2.x/deltacloud/plugins/org.jboss.tools.deltacloud.ui/plugin.xml 2011-03-30 09:50:20 UTC (rev 30144)
@@ -134,9 +134,8 @@
variable="selection">
<and>
<count value="+" />
- <iterate operator="and">
- <adapt
- type="org.jboss.tools.deltacloud.core.DeltaCloud" />
+ <iterate operator="or">
+ <instanceof value="org.jboss.tools.deltacloud.ui.views.cloud.CloudItem" />
</iterate>
</and>
</with>
Modified: branches/jbosstools-3.2.x/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/commands/DeleteCloudHandler.java
===================================================================
--- branches/jbosstools-3.2.x/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/commands/DeleteCloudHandler.java 2011-03-30 09:48:38 UTC (rev 30143)
+++ branches/jbosstools-3.2.x/deltacloud/plugins/org.jboss.tools.deltacloud.ui/src/org/jboss/tools/deltacloud/ui/commands/DeleteCloudHandler.java 2011-03-30 09:50:20 UTC (rev 30144)
@@ -38,7 +38,7 @@
import org.jboss.tools.deltacloud.core.DeltaCloudManager;
import org.jboss.tools.deltacloud.ui.ErrorUtils;
import org.jboss.tools.deltacloud.ui.views.CVMessages;
-import org.jboss.tools.internal.deltacloud.ui.utils.UIUtils;
+import org.jboss.tools.deltacloud.ui.views.cloud.CloudItem;
/**
* @author Andre Dietisheim
@@ -138,7 +138,9 @@
DeltaCloud deltaCloud = null;
if (selectedElements.size() > 0) {
Object object = selectedElements.get(0);
- deltaCloud = UIUtils.adapt(object, DeltaCloud.class);
+ if (object instanceof CloudItem) {
+ deltaCloud = ((CloudItem) object).getModel();
+ }
}
return deltaCloud;
}
@@ -146,9 +148,8 @@
private Collection<DeltaCloud> getSelectedClouds(List<?> selectedElements) {
Set<DeltaCloud> selectedClouds = new HashSet<DeltaCloud>();
for (Object element : selectedElements) {
- DeltaCloud deltaCloud = UIUtils.adapt(element, DeltaCloud.class);
- if (deltaCloud != null) {
- selectedClouds.add(deltaCloud);
+ if (element instanceof CloudItem) {
+ selectedClouds.add(((CloudItem) element).getModel());
}
}
return selectedClouds;
13 years, 9 months
JBoss Tools SVN: r30143 - branches/jbosstools-3.2.x/deltacloud/plugins/org.jboss.tools.deltacloud.ui.
by jbosstools-commits@lists.jboss.org
Author: adietish
Date: 2011-03-30 05:48:38 -0400 (Wed, 30 Mar 2011)
New Revision: 30143
Modified:
branches/jbosstools-3.2.x/deltacloud/plugins/org.jboss.tools.deltacloud.ui/plugin.properties
Log:
[JBIDE-7772] added "Manage Keys" to cloud context menu in cloud viewer
Modified: branches/jbosstools-3.2.x/deltacloud/plugins/org.jboss.tools.deltacloud.ui/plugin.properties
===================================================================
--- branches/jbosstools-3.2.x/deltacloud/plugins/org.jboss.tools.deltacloud.ui/plugin.properties 2011-03-30 08:12:14 UTC (rev 30142)
+++ branches/jbosstools-3.2.x/deltacloud/plugins/org.jboss.tools.deltacloud.ui/plugin.properties 2011-03-30 09:48:38 UTC (rev 30143)
@@ -53,6 +53,10 @@
command.rebootinstance.name = Reboot
command.destroyinstance.name = Destroy
command.destroyinstance.description = Destroys a cloud instance
+command.managekeys.description = Manages the keys of a cloud
+command.managekeys.name = Manage Keys
+command.managekeys.label = Manage Keys
+command.managekeys.tooltip = Manage Keys
command.filterimages.description = Filters images
command.filterimages.name = Filter Images...
command.filterinstances.description = Filters instances
13 years, 9 months
JBoss Tools SVN: r30142 - 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 directories.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-03-30 04:12:14 -0400 (Wed, 30 Mar 2011)
New Revision: 30142
Modified:
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:
jobs updated in Hudson, pulled to SVN
Modified: 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 06:45:24 UTC (rev 30141)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 08:12:14 UTC (rev 30142)
@@ -1,17 +1,9 @@
<?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>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>
@@ -120,14 +112,6 @@
<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>
@@ -136,6 +120,14 @@
<sendToIndividuals>true</sendToIndividuals>
</hudson.tasks.Mailer>
<hudson.plugins.emotional__hudson.EmotionalHudsonPublisher/>
+ <hudson.tasks.BuildTrigger>
+ <childProjects>jbosstools-3.3_trunk.component--esb, jbosstools-3.3_trunk.component--jst, jbosstools-3.3_trunk.component--usage</childProjects>
+ <threshold>
+ <name>UNSTABLE</name>
+ <ordinal>1</ordinal>
+ <color>YELLOW</color>
+ </threshold>
+ </hudson.tasks.BuildTrigger>
</publishers>
<buildWrappers>
<hudson.plugins.build__timeout.BuildTimeoutWrapper>
Modified: 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 06:45:24 UTC (rev 30141)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 08:12:14 UTC (rev 30142)
@@ -1,18 +1,18 @@
<?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>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>
@@ -116,21 +116,21 @@
</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/>
<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>
+ <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.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, jbosstools-3.3_trunk.component--forge</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>
Modified: 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 06:45:24 UTC (rev 30141)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 08:12:14 UTC (rev 30142)
@@ -1,10 +1,11 @@
<?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>
+ <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>
13 years, 9 months
JBoss Tools SVN: r30141 - trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/uiutils/wizards.
by jbosstools-commits@lists.jboss.org
Author: jlukas(a)redhat.com
Date: 2011-03-30 02:45:24 -0400 (Wed, 30 Mar 2011)
New Revision: 30141
Modified:
trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/uiutils/wizards/WsWizardBase.java
Log:
use proper index
Modified: trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/uiutils/wizards/WsWizardBase.java
===================================================================
--- trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/uiutils/wizards/WsWizardBase.java 2011-03-30 05:12:46 UTC (rev 30140)
+++ trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/uiutils/wizards/WsWizardBase.java 2011-03-30 06:45:24 UTC (rev 30141)
@@ -71,7 +71,7 @@
}
protected WsWizardBase setWebServiceRuntime(String name, int idx) {
- findLink("Web service runtime:").get(0).click();
+ findLink("Web service runtime:").get(idx).click();
sleep(100);
SWTBotShell sh = bot().activeShell();
sleep(100);
13 years, 9 months
JBoss Tools SVN: r30139 - in trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevStudio_Trunk/job: jbosstools-3.3_trunk.aggregate and 41 other directories.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-03-30 00:57:04 -0400 (Wed, 30 Mar 2011)
New Revision: 30139
Modified:
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...
Log:
update 43 jobs to use new profiles in parent pom; clean up descriptive text in MAVEN_FLAGS
Modified: 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 01:15:58 UTC (rev 30138)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 04:57:04 UTC (rev 30139)
@@ -26,19 +26,11 @@
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
@@ -47,14 +39,14 @@
-q :: quieter output
--Dtarget.platform.site=file:///home/hudson/static_build_env/jbds/jbds-target-platform/jbds400-e361-wtp322.target/ (generated)
+-Dlocal.site=file:///home/hudson/static_build_env/jbds/jbds-target-platform/jbds500-e37M5-wtp33M5.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)
+-Dlocal.site=file:///qa/services/http/binaries/RHDS/requirements/helios/.../ (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>
+ <defaultValue>clean install -B -U -fae -e -P hudson,jbosstools-nightly-staging-composite,unified.site,local.site -Dlocal.site=file://home/hudson/static_build_env/jbds/jbds-target-platform_3.3.indigo/jbds500-e37M5-wtp33M5.target/ -Dmaven.repo.local=${WORKSPACE}/m2-repository -Dlocal.site=file:///home/hudson/static_build_env/jbds/jbds-target-platform/jbds500-e37M5-wtp33M5.target/</defaultValue>
</hudson.model.StringParameterDefinition>
<hudson.model.ChoiceParameterDefinition>
<name>RELEASE</name>
Modified: 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 01:15:58 UTC (rev 30138)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 04:57:04 UTC (rev 30139)
@@ -26,18 +26,11 @@
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
@@ -46,7 +39,7 @@
-q :: quieter output</pre>
</description>
- <defaultValue>clean install -B -U -fae -P helios-local-target,hudson -Dmaven.repo.local=${WORKSPACE}/m2-repository</defaultValue>
+ <defaultValue>clean install -B -U -fae -P hudson,jbosstools-nightly-staging-composite,unified.site,local.site -Dlocal.site=file://home/hudson/static_build_env/jbds/target-platform_3.3.indigo/e37M5-wtp33M5.target/ -Dmaven.repo.local=${WORKSPACE}/m2-repository</defaultValue>
</hudson.model.StringParameterDefinition>
<hudson.model.ChoiceParameterDefinition>
<name>RELEASE</name>
Modified: 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 01:15:58 UTC (rev 30138)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 04:57:04 UTC (rev 30139)
@@ -25,13 +25,11 @@
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
@@ -40,7 +38,7 @@
-q :: quieter output</pre>
</description>
- <defaultValue>clean install -B -U -fae -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ <defaultValue>clean install -B -U -fae -e -P hudson,jbosstools-nightly-staging-composite,unified.site,local.site -Dlocal.site=file://home/hudson/static_build_env/jbds/target-platform_3.3.indigo/e37M5-wtp33M5.target/ -Dmaven.repo.local=${WORKSPACE}/m2-repository</defaultValue>
</hudson.model.StringParameterDefinition>
</parameterDefinitions>
</hudson.model.ParametersDefinitionProperty>
Modified: 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 01:15:58 UTC (rev 30138)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 04:57:04 UTC (rev 30139)
@@ -24,13 +24,11 @@
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
@@ -39,7 +37,7 @@
-q :: quieter output</pre>
</description>
- <defaultValue>clean install -B -U -fae -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ <defaultValue>clean install -B -U -fae -e -P hudson,jbosstools-nightly-staging-composite,unified.site,local.site -Dlocal.site=file://home/hudson/static_build_env/jbds/target-platform_3.3.indigo/e37M5-wtp33M5.target/ -Dmaven.repo.local=${WORKSPACE}/m2-repository</defaultValue>
</hudson.model.StringParameterDefinition>
</parameterDefinitions>
</hudson.model.ParametersDefinitionProperty>
Modified: 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 01:15:58 UTC (rev 30138)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 04:57:04 UTC (rev 30139)
@@ -24,13 +24,11 @@
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
@@ -39,7 +37,7 @@
-q :: quieter output</pre>
</description>
- <defaultValue>clean install -B -U -fn -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ <defaultValue>clean install -B -U -fae -e -P hudson,jbosstools-nightly-staging-composite,unified.site,local.site -Dlocal.site=file://home/hudson/static_build_env/jbds/target-platform_3.3.indigo/e37M5-wtp33M5.target/ -Dmaven.repo.local=${WORKSPACE}/m2-repository</defaultValue>
</hudson.model.StringParameterDefinition>
</parameterDefinitions>
</hudson.model.ParametersDefinitionProperty>
Modified: 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 01:15:58 UTC (rev 30138)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 04:57:04 UTC (rev 30139)
@@ -24,13 +24,11 @@
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
@@ -39,7 +37,7 @@
-q :: quieter output</pre>
</description>
- <defaultValue>clean install -B -U -fae -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ <defaultValue>clean install -B -U -fae -e -P hudson,jbosstools-nightly-staging-composite,unified.site,local.site -Dlocal.site=file://home/hudson/static_build_env/jbds/target-platform_3.3.indigo/e37M5-wtp33M5.target/ -Dmaven.repo.local=${WORKSPACE}/m2-repository</defaultValue>
</hudson.model.StringParameterDefinition>
</parameterDefinitions>
</hudson.model.ParametersDefinitionProperty>
Modified: 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 01:15:58 UTC (rev 30138)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 04:57:04 UTC (rev 30139)
@@ -25,13 +25,11 @@
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
@@ -40,7 +38,7 @@
-q :: quieter output</pre>
</description>
- <defaultValue>clean install -B -U -fn -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ <defaultValue>clean install -B -U -fae -e -P hudson,jbosstools-nightly-staging-composite,unified.site,local.site -Dlocal.site=file://home/hudson/static_build_env/jbds/target-platform_3.3.indigo/e37M5-wtp33M5.target/ -Dmaven.repo.local=${WORKSPACE}/m2-repository</defaultValue>
</hudson.model.StringParameterDefinition>
</parameterDefinitions>
</hudson.model.ParametersDefinitionProperty>
Modified: 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 01:15:58 UTC (rev 30138)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 04:57:04 UTC (rev 30139)
@@ -24,13 +24,11 @@
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
@@ -39,7 +37,7 @@
-q :: quieter output</pre>
</description>
- <defaultValue>clean install -B -U -fn -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ <defaultValue>clean install -B -U -fae -e -P hudson,jbosstools-nightly-staging-composite,unified.site,local.site -Dlocal.site=file://home/hudson/static_build_env/jbds/target-platform_3.3.indigo/e37M5-wtp33M5.target/ -Dmaven.repo.local=${WORKSPACE}/m2-repository</defaultValue>
</hudson.model.StringParameterDefinition>
</parameterDefinitions>
</hudson.model.ParametersDefinitionProperty>
Modified: 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 01:15:58 UTC (rev 30138)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 04:57:04 UTC (rev 30139)
@@ -33,13 +33,11 @@
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
@@ -48,7 +46,7 @@
-q :: quieter output</pre>
</description>
- <defaultValue>clean install -B -U -fae -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ <defaultValue>clean install -B -U -fae -e -P hudson,jbosstools-nightly-staging-composite,unified.site,local.site -Dlocal.site=file://home/hudson/static_build_env/jbds/target-platform_3.3.indigo/e37M5-wtp33M5.target/ -Dmaven.repo.local=${WORKSPACE}/m2-repository</defaultValue>
</hudson.model.StringParameterDefinition>
</parameterDefinitions>
</hudson.model.ParametersDefinitionProperty>
Modified: 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 01:15:58 UTC (rev 30138)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 04:57:04 UTC (rev 30139)
@@ -24,13 +24,11 @@
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
@@ -39,7 +37,7 @@
-q :: quieter output</pre>
</description>
- <defaultValue>clean install -B -U -fae -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ <defaultValue>clean install -B -U -fae -e -P hudson,jbosstools-nightly-staging-composite,unified.site,local.site -Dlocal.site=file://home/hudson/static_build_env/jbds/target-platform_3.3.indigo/e37M5-wtp33M5.target/ -Dmaven.repo.local=${WORKSPACE}/m2-repository</defaultValue>
</hudson.model.StringParameterDefinition>
</parameterDefinitions>
</hudson.model.ParametersDefinitionProperty>
Modified: 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 01:15:58 UTC (rev 30138)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 04:57:04 UTC (rev 30139)
@@ -24,13 +24,11 @@
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
@@ -39,7 +37,7 @@
-q :: quieter output</pre>
</description>
- <defaultValue>clean install -B -U -fn -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ <defaultValue>clean install -B -U -fae -e -P hudson,jbosstools-nightly-staging-composite,unified.site,local.site -Dlocal.site=file://home/hudson/static_build_env/jbds/target-platform_3.3.indigo/e37M5-wtp33M5.target/ -Dmaven.repo.local=${WORKSPACE}/m2-repository</defaultValue>
</hudson.model.StringParameterDefinition>
</parameterDefinitions>
</hudson.model.ParametersDefinitionProperty>
Modified: 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 01:15:58 UTC (rev 30138)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 04:57:04 UTC (rev 30139)
@@ -24,13 +24,11 @@
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
@@ -39,7 +37,7 @@
-q :: quieter output</pre>
</description>
- <defaultValue>clean install -B -U -fae -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ <defaultValue>clean install -B -U -fae -e -P hudson,jbosstools-nightly-staging-composite,unified.site,local.site -Dlocal.site=file://home/hudson/static_build_env/jbds/target-platform_3.3.indigo/e37M5-wtp33M5.target/ -Dmaven.repo.local=${WORKSPACE}/m2-repository</defaultValue>
</hudson.model.StringParameterDefinition>
</parameterDefinitions>
</hudson.model.ParametersDefinitionProperty>
Modified: 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 01:15:58 UTC (rev 30138)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 04:57:04 UTC (rev 30139)
@@ -25,13 +25,11 @@
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
@@ -40,7 +38,7 @@
-q :: quieter output</pre>
</description>
- <defaultValue>clean install -B -U -fae -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ <defaultValue>clean install -B -U -fae -e -P hudson,jbosstools-nightly-staging-composite,unified.site,local.site -Dlocal.site=file://home/hudson/static_build_env/jbds/target-platform_3.3.indigo/e37M5-wtp33M5.target/ -Dmaven.repo.local=${WORKSPACE}/m2-repository</defaultValue>
</hudson.model.StringParameterDefinition>
</parameterDefinitions>
</hudson.model.ParametersDefinitionProperty>
Modified: 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 01:15:58 UTC (rev 30138)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 04:57:04 UTC (rev 30139)
@@ -25,13 +25,11 @@
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
@@ -40,7 +38,7 @@
-q :: quieter output</pre>
</description>
- <defaultValue>clean install -B -U -fn -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ <defaultValue>clean install -B -U -fae -e -P hudson,jbosstools-nightly-staging-composite,unified.site,local.site -Dlocal.site=file://home/hudson/static_build_env/jbds/target-platform_3.3.indigo/e37M5-wtp33M5.target/ -Dmaven.repo.local=${WORKSPACE}/m2-repository</defaultValue>
</hudson.model.StringParameterDefinition>
</parameterDefinitions>
</hudson.model.ParametersDefinitionProperty>
Modified: 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 01:15:58 UTC (rev 30138)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 04:57:04 UTC (rev 30139)
@@ -25,13 +25,11 @@
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
@@ -40,7 +38,7 @@
-q :: quieter output</pre>
</description>
- <defaultValue>clean install -B -U -fae -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ <defaultValue>clean install -B -U -fae -e -P hudson,jbosstools-nightly-staging-composite,unified.site,local.site -Dlocal.site=file://home/hudson/static_build_env/jbds/target-platform_3.3.indigo/e37M5-wtp33M5.target/ -Dmaven.repo.local=${WORKSPACE}/m2-repository</defaultValue>
</hudson.model.StringParameterDefinition>
</parameterDefinitions>
</hudson.model.ParametersDefinitionProperty>
Modified: 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 01:15:58 UTC (rev 30138)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 04:57:04 UTC (rev 30139)
@@ -24,13 +24,11 @@
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
@@ -39,7 +37,7 @@
-q :: quieter output</pre>
</description>
- <defaultValue>clean install -B -U -fae -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ <defaultValue>clean install -B -U -fae -e -P hudson,jbosstools-nightly-staging-composite,unified.site,local.site -Dlocal.site=file://home/hudson/static_build_env/jbds/target-platform_3.3.indigo/e37M5-wtp33M5.target/ -Dmaven.repo.local=${WORKSPACE}/m2-repository</defaultValue>
</hudson.model.StringParameterDefinition>
</parameterDefinitions>
</hudson.model.ParametersDefinitionProperty>
Modified: 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 01:15:58 UTC (rev 30138)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 04:57:04 UTC (rev 30139)
@@ -25,13 +25,11 @@
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
@@ -40,7 +38,7 @@
-q :: quieter output</pre>
</description>
- <defaultValue>clean install -B -U -fae -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ <defaultValue>clean install -B -U -fae -e -P hudson,jbosstools-nightly-staging-composite,unified.site,local.site -Dlocal.site=file://home/hudson/static_build_env/jbds/target-platform_3.3.indigo/e37M5-wtp33M5.target/ -Dmaven.repo.local=${WORKSPACE}/m2-repository</defaultValue>
</hudson.model.StringParameterDefinition>
</parameterDefinitions>
</hudson.model.ParametersDefinitionProperty>
Modified: 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 01:15:58 UTC (rev 30138)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 04:57:04 UTC (rev 30139)
@@ -25,13 +25,11 @@
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
@@ -40,7 +38,7 @@
-q :: quieter output</pre>
</description>
- <defaultValue>clean install -B -U -fae -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ <defaultValue>clean install -B -U -fae -e -P hudson,jbosstools-nightly-staging-composite,unified.site,local.site -Dlocal.site=file://home/hudson/static_build_env/jbds/target-platform_3.3.indigo/e37M5-wtp33M5.target/ -Dmaven.repo.local=${WORKSPACE}/m2-repository</defaultValue>
</hudson.model.StringParameterDefinition>
</parameterDefinitions>
</hudson.model.ParametersDefinitionProperty>
Modified: 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 01:15:58 UTC (rev 30138)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 04:57:04 UTC (rev 30139)
@@ -24,13 +24,11 @@
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
@@ -39,7 +37,7 @@
-q :: quieter output</pre>
</description>
- <defaultValue>clean install -B -U -fae -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ <defaultValue>clean install -B -U -fae -e -P hudson,jbosstools-nightly-staging-composite,unified.site,local.site -Dlocal.site=file://home/hudson/static_build_env/jbds/target-platform_3.3.indigo/e37M5-wtp33M5.target/ -Dmaven.repo.local=${WORKSPACE}/m2-repository</defaultValue>
</hudson.model.StringParameterDefinition>
</parameterDefinitions>
</hudson.model.ParametersDefinitionProperty>
Modified: 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 01:15:58 UTC (rev 30138)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 04:57:04 UTC (rev 30139)
@@ -25,13 +25,11 @@
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
@@ -40,7 +38,7 @@
-q :: quieter output</pre>
</description>
- <defaultValue>clean install -B -U -fn -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ <defaultValue>clean install -B -U -fae -e -P hudson,jbosstools-nightly-staging-composite,unified.site,local.site -Dlocal.site=file://home/hudson/static_build_env/jbds/target-platform_3.3.indigo/e37M5-wtp33M5.target/ -Dmaven.repo.local=${WORKSPACE}/m2-repository</defaultValue>
</hudson.model.StringParameterDefinition>
</parameterDefinitions>
</hudson.model.ParametersDefinitionProperty>
Modified: 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 01:15:58 UTC (rev 30138)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 04:57:04 UTC (rev 30139)
@@ -25,13 +25,11 @@
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
@@ -40,7 +38,7 @@
-q :: quieter output</pre>
</description>
- <defaultValue>clean install -B -U -fae -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ <defaultValue>clean install -B -U -fae -e -P hudson,jbosstools-nightly-staging-composite,unified.site,local.site -Dlocal.site=file://home/hudson/static_build_env/jbds/target-platform_3.3.indigo/e37M5-wtp33M5.target/ -Dmaven.repo.local=${WORKSPACE}/m2-repository</defaultValue>
</hudson.model.StringParameterDefinition>
</parameterDefinitions>
</hudson.model.ParametersDefinitionProperty>
Modified: 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 01:15:58 UTC (rev 30138)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 04:57:04 UTC (rev 30139)
@@ -25,13 +25,11 @@
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
@@ -40,7 +38,7 @@
-q :: quieter output</pre>
</description>
- <defaultValue>clean install -B -U -fn -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ <defaultValue>clean install -B -U -fae -e -P hudson,jbosstools-nightly-staging-composite,unified.site,local.site -Dlocal.site=file://home/hudson/static_build_env/jbds/target-platform_3.3.indigo/e37M5-wtp33M5.target/ -Dmaven.repo.local=${WORKSPACE}/m2-repository</defaultValue>
</hudson.model.StringParameterDefinition>
</parameterDefinitions>
</hudson.model.ParametersDefinitionProperty>
Modified: 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 01:15:58 UTC (rev 30138)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 04:57:04 UTC (rev 30139)
@@ -24,13 +24,11 @@
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
@@ -39,7 +37,7 @@
-q :: quieter output</pre>
</description>
- <defaultValue>clean install -B -U -fae -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ <defaultValue>clean install -B -U -fae -e -P hudson,jbosstools-nightly-staging-composite,unified.site,local.site -Dlocal.site=file://home/hudson/static_build_env/jbds/target-platform_3.3.indigo/e37M5-wtp33M5.target/ -Dmaven.repo.local=${WORKSPACE}/m2-repository</defaultValue>
</hudson.model.StringParameterDefinition>
</parameterDefinitions>
</hudson.model.ParametersDefinitionProperty>
Modified: 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 01:15:58 UTC (rev 30138)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 04:57:04 UTC (rev 30139)
@@ -25,13 +25,11 @@
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
@@ -40,7 +38,7 @@
-q :: quieter output</pre>
</description>
- <defaultValue>clean install -B -U -fae -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ <defaultValue>clean install -B -U -fae -e -P hudson,jbosstools-nightly-staging-composite,unified.site,local.site -Dlocal.site=file://home/hudson/static_build_env/jbds/target-platform_3.3.indigo/e37M5-wtp33M5.target/ -Dmaven.repo.local=${WORKSPACE}/m2-repository</defaultValue>
</hudson.model.StringParameterDefinition>
</parameterDefinitions>
</hudson.model.ParametersDefinitionProperty>
Modified: 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 01:15:58 UTC (rev 30138)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 04:57:04 UTC (rev 30139)
@@ -24,13 +24,11 @@
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
@@ -39,7 +37,7 @@
-q :: quieter output</pre>
</description>
- <defaultValue>clean install -B -U -fae -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ <defaultValue>clean install -B -U -fae -e -P hudson,jbosstools-nightly-staging-composite,unified.site,local.site -Dlocal.site=file://home/hudson/static_build_env/jbds/target-platform_3.3.indigo/e37M5-wtp33M5.target/ -Dmaven.repo.local=${WORKSPACE}/m2-repository</defaultValue>
</hudson.model.StringParameterDefinition>
</parameterDefinitions>
</hudson.model.ParametersDefinitionProperty>
Modified: 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 01:15:58 UTC (rev 30138)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 04:57:04 UTC (rev 30139)
@@ -25,13 +25,11 @@
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
@@ -40,7 +38,7 @@
-q :: quieter output</pre>
</description>
- <defaultValue>clean install -B -U -fae -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ <defaultValue>clean install -B -U -fae -e -P hudson,jbosstools-nightly-staging-composite,unified.site,local.site -Dlocal.site=file://home/hudson/static_build_env/jbds/target-platform_3.3.indigo/e37M5-wtp33M5.target/ -Dmaven.repo.local=${WORKSPACE}/m2-repository</defaultValue>
</hudson.model.StringParameterDefinition>
</parameterDefinitions>
</hudson.model.ParametersDefinitionProperty>
Modified: 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 01:15:58 UTC (rev 30138)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 04:57:04 UTC (rev 30139)
@@ -25,13 +25,11 @@
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
@@ -40,7 +38,7 @@
-q :: quieter output</pre>
</description>
- <defaultValue>clean install -B -U -fn -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ <defaultValue>clean install -B -U -fae -e -P hudson,jbosstools-nightly-staging-composite,unified.site,local.site -Dlocal.site=file://home/hudson/static_build_env/jbds/target-platform_3.3.indigo/e37M5-wtp33M5.target/ -Dmaven.repo.local=${WORKSPACE}/m2-repository</defaultValue>
</hudson.model.StringParameterDefinition>
</parameterDefinitions>
</hudson.model.ParametersDefinitionProperty>
Modified: 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 01:15:58 UTC (rev 30138)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 04:57:04 UTC (rev 30139)
@@ -25,13 +25,11 @@
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
@@ -40,7 +38,7 @@
-q :: quieter output</pre>
</description>
- <defaultValue>clean install -B -U -fae -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ <defaultValue>clean install -B -U -fae -e -P hudson,jbosstools-nightly-staging-composite,unified.site,local.site -Dlocal.site=file://home/hudson/static_build_env/jbds/target-platform_3.3.indigo/e37M5-wtp33M5.target/ -Dmaven.repo.local=${WORKSPACE}/m2-repository</defaultValue>
</hudson.model.StringParameterDefinition>
</parameterDefinitions>
</hudson.model.ParametersDefinitionProperty>
Modified: 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 01:15:58 UTC (rev 30138)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 04:57:04 UTC (rev 30139)
@@ -25,13 +25,11 @@
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
@@ -40,7 +38,7 @@
-q :: quieter output</pre>
</description>
- <defaultValue>clean install -B -U -fn -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ <defaultValue>clean install -B -U -fae -e -P hudson,jbosstools-nightly-staging-composite,unified.site,local.site -Dlocal.site=file://home/hudson/static_build_env/jbds/target-platform_3.3.indigo/e37M5-wtp33M5.target/ -Dmaven.repo.local=${WORKSPACE}/m2-repository</defaultValue>
</hudson.model.StringParameterDefinition>
</parameterDefinitions>
</hudson.model.ParametersDefinitionProperty>
Modified: 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 01:15:58 UTC (rev 30138)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 04:57:04 UTC (rev 30139)
@@ -25,13 +25,11 @@
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
@@ -40,7 +38,7 @@
-q :: quieter output</pre>
</description>
- <defaultValue>clean install -B -U -fae -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ <defaultValue>clean install -B -U -fae -e -P hudson,jbosstools-nightly-staging-composite,unified.site,local.site -Dlocal.site=file://home/hudson/static_build_env/jbds/target-platform_3.3.indigo/e37M5-wtp33M5.target/ -Dmaven.repo.local=${WORKSPACE}/m2-repository</defaultValue>
</hudson.model.StringParameterDefinition>
</parameterDefinitions>
</hudson.model.ParametersDefinitionProperty>
Modified: 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 01:15:58 UTC (rev 30138)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 04:57:04 UTC (rev 30139)
@@ -25,13 +25,11 @@
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
@@ -40,7 +38,7 @@
-q :: quieter output</pre>
</description>
- <defaultValue>clean install -B -U -fae -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ <defaultValue>clean install -B -U -fae -e -P hudson,jbosstools-nightly-staging-composite,unified.site,local.site -Dlocal.site=file://home/hudson/static_build_env/jbds/target-platform_3.3.indigo/e37M5-wtp33M5.target/ -Dmaven.repo.local=${WORKSPACE}/m2-repository</defaultValue>
</hudson.model.StringParameterDefinition>
</parameterDefinitions>
</hudson.model.ParametersDefinitionProperty>
Modified: 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 01:15:58 UTC (rev 30138)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 04:57:04 UTC (rev 30139)
@@ -24,13 +24,11 @@
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
@@ -39,7 +37,7 @@
-q :: quieter output</pre>
</description>
- <defaultValue>clean install -B -U -fae -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ <defaultValue>clean install -B -U -fae -e -P hudson,jbosstools-nightly-staging-composite,unified.site,local.site -Dlocal.site=file://home/hudson/static_build_env/jbds/target-platform_3.3.indigo/e37M5-wtp33M5.target/ -Dmaven.repo.local=${WORKSPACE}/m2-repository</defaultValue>
</hudson.model.StringParameterDefinition>
</parameterDefinitions>
</hudson.model.ParametersDefinitionProperty>
Modified: 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 01:15:58 UTC (rev 30138)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 04:57:04 UTC (rev 30139)
@@ -25,13 +25,11 @@
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
@@ -40,7 +38,7 @@
-q :: quieter output</pre>
</description>
- <defaultValue>clean install -B -U -fn -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ <defaultValue>clean install -B -U -fae -e -P hudson,jbosstools-nightly-staging-composite,unified.site,local.site -Dlocal.site=file://home/hudson/static_build_env/jbds/target-platform_3.3.indigo/e37M5-wtp33M5.target/ -Dmaven.repo.local=${WORKSPACE}/m2-repository</defaultValue>
</hudson.model.StringParameterDefinition>
</parameterDefinitions>
</hudson.model.ParametersDefinitionProperty>
Modified: 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 01:15:58 UTC (rev 30138)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 04:57:04 UTC (rev 30139)
@@ -25,13 +25,11 @@
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
@@ -40,7 +38,7 @@
-q :: quieter output</pre>
</description>
- <defaultValue>clean install -B -U -fn -e -Dmaven.repo.local=${WORKSPACE}/m2-repository -P hudson</defaultValue>
+ <defaultValue>clean install -B -U -fae -e -P hudson,jbosstools-nightly-staging-composite,unified.site,local.site -Dlocal.site=file://home/hudson/static_build_env/jbds/target-platform_3.3.indigo/e37M5-wtp33M5.target/ -Dmaven.repo.local=${WORKSPACE}/m2-repository</defaultValue>
</hudson.model.StringParameterDefinition>
</parameterDefinitions>
</hudson.model.ParametersDefinitionProperty>
Modified: 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 01:15:58 UTC (rev 30138)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 04:57:04 UTC (rev 30139)
@@ -28,18 +28,13 @@
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
@@ -48,7 +43,7 @@
-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>
+ <defaultValue>clean install -B -U -fae -e -P hudson,jbosstools-nightly-staging-composite,unified.site,local.site -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>
Modified: 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 01:15:58 UTC (rev 30138)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 04:57:04 UTC (rev 30139)
@@ -48,7 +48,7 @@
<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>
+ <defaultValue>clean install -B -U -fae -e -Dmaven.repo.local=${WORKSPACE}/m2-repository</defaultValue>
</hudson.model.StringParameterDefinition>
</parameterDefinitions>
</hudson.model.ParametersDefinitionProperty>
Modified: 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 01:15:58 UTC (rev 30138)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 04:57:04 UTC (rev 30139)
@@ -27,14 +27,10 @@
-P hudson :: enable hudson build ID in feature/plugin qualifiers
-P coverage :: enable coverage reporting
+-Dcoverage :: enable Emma test 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
@@ -44,7 +40,7 @@
-q :: quieter output</pre>
</description>
- <defaultValue>clean install -B -U -fn -e -P hudson,coverage -Dmaven.repo.local=${WORKSPACE}/m2-repo</defaultValue>
+ <defaultValue>clean install -B -U -fn -e -P coverage -Dcoverage -P hudson,jbosstools-nightly-staging-composite,unified.site,local.site -Dlocal.site=file://home/hudson/static_build_env/jbds/target-platform_3.3.indigo/e37M5-wtp33M5.target/ -Dmaven.repo.local=${WORKSPACE}/m2-repository</defaultValue>
</hudson.model.StringParameterDefinition>
<hudson.model.ChoiceParameterDefinition>
<name>RELEASE</name>
Modified: 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 01:15:58 UTC (rev 30138)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 04:57:04 UTC (rev 30139)
@@ -111,7 +111,7 @@
</command>
</hudson.tasks.Shell>
<hudson.tasks.Maven>
- <targets>-B -fn clean install -Dmaven.repo.local=${WORKSPACE}/m2-repository -q</targets>
+ <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>
Modified: 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 01:15:58 UTC (rev 30138)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 04:57:04 UTC (rev 30139)
@@ -24,13 +24,11 @@
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
@@ -39,7 +37,7 @@
-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>
+ <defaultValue>clean install -B -U -fae -P hudson,jbosstools-nightly-staging-composite,unified.site,local.site -Dlocal.site=file://home/hudson/static_build_env/jbds/target-platform_3.3.indigo/e37M5-wtp33M5.target/ -Dmaven.repo.local=${WORKSPACE}/m2-repository</defaultValue>
</hudson.model.StringParameterDefinition>
<hudson.model.ChoiceParameterDefinition>
<name>RELEASE</name>
Modified: 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 01:15:58 UTC (rev 30138)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 04:57:04 UTC (rev 30139)
@@ -26,13 +26,11 @@
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
@@ -41,7 +39,7 @@
-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>
+ <defaultValue>clean install -B -U -fae -P hudson,jbosstools-nightly-staging-composite,unified.site,local.site -Dlocal.site=file://home/hudson/static_build_env/jbds/target-platform_3.3.indigo/e37M5-wtp33M5.target/ -Dmaven.repo.local=${WORKSPACE}/m2-repository</defaultValue>
</hudson.model.StringParameterDefinition>
<hudson.model.ChoiceParameterDefinition>
<name>RELEASE</name>
Modified: 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 01:15:58 UTC (rev 30138)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 04:57:04 UTC (rev 30139)
@@ -25,13 +25,11 @@
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
@@ -40,7 +38,7 @@
-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>
+ <defaultValue>clean install -B -U -fae -P hudson,jbosstools-nightly-staging-composite,unified.site,local.site -Dlocal.site=file://home/hudson/static_build_env/jbds/target-platform_3.3.indigo/e37M5-wtp33M5.target/ -Dmaven.repo.local=${WORKSPACE}/m2-repository</defaultValue>
</hudson.model.StringParameterDefinition>
<hudson.model.ChoiceParameterDefinition>
<name>RELEASE</name>
Modified: 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 01:15:58 UTC (rev 30138)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 04:57:04 UTC (rev 30139)
@@ -30,16 +30,11 @@
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
@@ -48,7 +43,7 @@
-q :: quieter output</pre>
</description>
- <defaultValue>clean install -B -U -fae -Dmaven.repo.local=${WORKSPACE}/m2-repository -P helios-local-target,!helios,hudson</defaultValue>
+ <defaultValue>clean install -B -U -fae -P hudson,jbosstools-nightly-staging-composite,unified.site,local.site -Dlocal.site=file://home/hudson/static_build_env/jbds/target-platform_3.3.indigo/e37M5-wtp33M5.target/ -Dmaven.repo.local=${WORKSPACE}/m2-repository</defaultValue>
</hudson.model.StringParameterDefinition>
<hudson.model.ChoiceParameterDefinition>
<name>RELEASE</name>
Modified: 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 01:15:58 UTC (rev 30138)
+++ trunk/build/hudson-jobs/cache/https/hudson.qa.jboss.com/hudson/view/DevSt... 2011-03-30 04:57:04 UTC (rev 30139)
@@ -29,13 +29,11 @@
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
@@ -44,7 +42,7 @@
-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>
+ <defaultValue>clean install -B -U -fae -P hudson,jbosstools-nightly-staging-composite,unified.site,local.site -Dlocal.site=file://home/hudson/static_build_env/jbds/target-platform_3.3.indigo/e37M5-wtp33M5.target/ -Dmaven.repo.local=${WORKSPACE}/m2-repository</defaultValue>
</hudson.model.StringParameterDefinition>
<hudson.model.ChoiceParameterDefinition>
<name>RELEASE</name>
13 years, 9 months
JBoss Tools SVN: r30138 - branches/jbosstools-3.2.x/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/preferences.
by jbosstools-commits@lists.jboss.org
Author: akazakov
Date: 2011-03-29 21:15:58 -0400 (Tue, 29 Mar 2011)
New Revision: 30138
Modified:
branches/jbosstools-3.2.x/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/preferences/SeamPreferencePage.java
Log:
https://issues.jboss.org/browse/JBIDE-8626
Modified: branches/jbosstools-3.2.x/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/preferences/SeamPreferencePage.java
===================================================================
--- branches/jbosstools-3.2.x/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/preferences/SeamPreferencePage.java 2011-03-30 01:15:09 UTC (rev 30137)
+++ branches/jbosstools-3.2.x/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/preferences/SeamPreferencePage.java 2011-03-30 01:15:58 UTC (rev 30138)
@@ -1,143 +1,120 @@
-/*******************************************************************************
- * Copyright (c) 2007 Red Hat, Inc.
- * Distributed under license by Red Hat, Inc. All rights reserved.
- * This program is made available under the terms of the
- * Eclipse Public License v1.0 which accompanies this distribution,
- * and is available at http://www.eclipse.org/legal/epl-v10.html
- *
- * Contributors:
- * Red Hat, Inc. - initial API and implementation
- ******************************************************************************/
-
-package org.jboss.tools.seam.ui.preferences;
-
-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;
-import org.eclipse.swt.layout.GridLayout;
-import org.eclipse.swt.widgets.Composite;
-import org.eclipse.swt.widgets.Control;
-import org.eclipse.ui.IWorkbench;
-import org.eclipse.ui.IWorkbenchPreferencePage;
-import org.jboss.tools.seam.core.project.facet.SeamRuntime;
-import org.jboss.tools.seam.core.project.facet.SeamRuntimeManager;
-import org.jboss.tools.seam.ui.widget.editor.SeamRuntimeListFieldEditor;
-
-/**
- * Seam preference page that allows editing list of available Seam Runtimes:
- * <ul>
- * <li>define new </li>
- * <li>change exists</li>
- * <li>remove</li>
- * <li>set default ones</li>
- * </ul>
- *
- * @author eskimo
- */
-public class SeamPreferencePage extends PreferencePage implements IWorkbenchPreferencePage {
-
- public SeamPreferencePage() {
- super();
- noDefaultAndApplyButton();
- }
-
- /**
- * Seam Preferences page ID
- */
- public static final String SEAM_PREFERENCES_ID = "org.jboss.tools.common.model.ui.seam";
-
- private static final int COLUMNS = 3;
-
- SeamRuntimeListFieldEditor seamRuntimes = new SeamRuntimeListFieldEditor(
- "rtlist", SeamPreferencesMessages.SEAM_PREFERENCE_PAGE_SEAM_RUNTIMES, new ArrayList<SeamRuntime>(Arrays.asList(SeamRuntimeManager.getInstance().getRuntimes()))); //$NON-NLS-1$
-
- /**
- * Create contents of Seam preferences page. SeamRuntime list editor is
- * created
- *
- * @return Control
- */
- @Override
- protected Control createContents(Composite parent) {
- Composite root = new Composite(parent, SWT.NONE);
- GridLayout gl = new GridLayout(COLUMNS, false);
- root.setLayout(gl);
- seamRuntimes.doFillIntoGrid(root);
-
- return root;
- }
-
- /**
- * Inherited from IWorkbenchPreferencePage
- *
- * @param workbench
- * {@link IWorkbench}
- *
- */
- public void init(IWorkbench workbench) {
- }
-
- /**
- * Save SeamRuntime list
- */
- @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()) {
- seamRuntime.setDefault(false);
- }
- // set deafult runtimes
- for (SeamRuntime seamRuntime : defaultRuntimes) {
- 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();
- }
-
- /**
- * Restore original preferences values
- */
- @Override
- protected void performDefaults() {
- setValid(true);
- setMessage(null);
- performApply();
- }
-
- /**
- * See {@link PreferencePage} for details
- *
- * @return Boolean
- */
- @Override
- public boolean performOk() {
- performApply();
- return super.performOk();
- }
+/*******************************************************************************
+ * Copyright (c) 2007 Red Hat, Inc.
+ * Distributed under license by Red Hat, Inc. All rights reserved.
+ * This program is made available under the terms of the
+ * Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Red Hat, Inc. - initial API and implementation
+ ******************************************************************************/
+
+package org.jboss.tools.seam.ui.preferences;
+
+import java.util.ArrayList;
+import java.util.Arrays;
+import java.util.List;
+
+import org.eclipse.jface.preference.PreferencePage;
+import org.eclipse.swt.SWT;
+import org.eclipse.swt.layout.GridLayout;
+import org.eclipse.swt.widgets.Composite;
+import org.eclipse.swt.widgets.Control;
+import org.eclipse.ui.IWorkbench;
+import org.eclipse.ui.IWorkbenchPreferencePage;
+import org.jboss.tools.seam.core.project.facet.SeamRuntime;
+import org.jboss.tools.seam.core.project.facet.SeamRuntimeManager;
+import org.jboss.tools.seam.ui.widget.editor.SeamRuntimeListFieldEditor;
+
+/**
+ * Seam preference page that allows editing list of available Seam Runtimes:
+ * <ul>
+ * <li>define new </li>
+ * <li>change exists</li>
+ * <li>remove</li>
+ * <li>set default ones</li>
+ * </ul>
+ *
+ * @author eskimo
+ */
+public class SeamPreferencePage extends PreferencePage implements IWorkbenchPreferencePage {
+
+ public SeamPreferencePage() {
+ super();
+ noDefaultAndApplyButton();
+ }
+
+ /**
+ * Seam Preferences page ID
+ */
+ public static final String SEAM_PREFERENCES_ID = "org.jboss.tools.common.model.ui.seam";
+
+ private static final int COLUMNS = 3;
+
+ SeamRuntimeListFieldEditor seamRuntimes = new SeamRuntimeListFieldEditor(
+ "rtlist", SeamPreferencesMessages.SEAM_PREFERENCE_PAGE_SEAM_RUNTIMES, new ArrayList<SeamRuntime>(Arrays.asList(SeamRuntimeManager.getInstance().getRuntimes()))); //$NON-NLS-1$
+
+ /**
+ * Create contents of Seam preferences page. SeamRuntime list editor is
+ * created
+ *
+ * @return Control
+ */
+ @Override
+ protected Control createContents(Composite parent) {
+ Composite root = new Composite(parent, SWT.NONE);
+ GridLayout gl = new GridLayout(COLUMNS, false);
+ root.setLayout(gl);
+ seamRuntimes.doFillIntoGrid(root);
+ return root;
+ }
+
+ /**
+ * Inherited from IWorkbenchPreferencePage
+ *
+ * @param workbench
+ * {@link IWorkbench}
+ *
+ */
+ public void init(IWorkbench workbench) {
+ }
+
+ /**
+ * Save SeamRuntime list
+ */
+ @Override
+ protected void performApply() {
+ List<SeamRuntime> defaultRuntimes = seamRuntimes.getDefaultSeamRuntimes();
+ // reset all default runtimes
+ for (SeamRuntime seamRuntime : SeamRuntimeManager.getInstance().getRuntimes()) {
+ seamRuntime.setDefault(false);
+ }
+ // set deafult runtimes
+ for (SeamRuntime seamRuntime : defaultRuntimes) {
+ seamRuntime.setDefault(true);
+ }
+ seamRuntimes.getDefaultSeamRuntimes().clear();
+ SeamRuntimeManager.getInstance().save();
+ }
+
+ /**
+ * Restore original preferences values
+ */
+ @Override
+ protected void performDefaults() {
+ setValid(true);
+ setMessage(null);
+ performApply();
+ }
+
+ /**
+ * See {@link PreferencePage} for details
+ *
+ * @return Boolean
+ */
+ @Override
+ public boolean performOk() {
+ performApply();
+ return super.performOk();
+ }
}
\ No newline at end of file
13 years, 9 months
JBoss Tools SVN: r30137 - branches/jbosstools-3.2.x/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/widget/editor.
by jbosstools-commits@lists.jboss.org
Author: akazakov
Date: 2011-03-29 21:15:09 -0400 (Tue, 29 Mar 2011)
New Revision: 30137
Modified:
branches/jbosstools-3.2.x/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: branches/jbosstools-3.2.x/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/widget/editor/SeamRuntimeListFieldEditor.java
===================================================================
--- branches/jbosstools-3.2.x/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/widget/editor/SeamRuntimeListFieldEditor.java 2011-03-30 01:11:01 UTC (rev 30136)
+++ branches/jbosstools-3.2.x/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/widget/editor/SeamRuntimeListFieldEditor.java 2011-03-30 01:15:09 UTC (rev 30137)
@@ -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
*
@@ -806,7 +832,7 @@
}
if (added.contains(source) || changed.containsKey(source)) {
source.setName(rt.getName());
- source.setHomeDir(rt.getName());
+ source.setHomeDir(rt.getHomeDir());
source.setVersion(rt.getVersion());
} else {
changed.put(rt, source);
@@ -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) {
13 years, 9 months
JBoss Tools SVN: r30136 - branches/3.2.helios/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/widget/editor.
by jbosstools-commits@lists.jboss.org
Author: akazakov
Date: 2011-03-29 21:11:01 -0400 (Tue, 29 Mar 2011)
New Revision: 30136
Modified:
branches/3.2.helios/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: branches/3.2.helios/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/widget/editor/SeamRuntimeListFieldEditor.java
===================================================================
--- branches/3.2.helios/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/widget/editor/SeamRuntimeListFieldEditor.java 2011-03-30 01:09:22 UTC (rev 30135)
+++ branches/3.2.helios/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/widget/editor/SeamRuntimeListFieldEditor.java 2011-03-30 01:11:01 UTC (rev 30136)
@@ -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;
@@ -108,6 +109,8 @@
private List<SeamRuntime> added = new ArrayList<SeamRuntime>();
private List<SeamRuntime> removed = new ArrayList<SeamRuntime>();
+
+ private AddAction addAction;
// ------------------------------------------------------------------------
// Constructors
@@ -127,6 +130,12 @@
Object defaultValue) {
super(name, label, defaultValue);
}
+
+ public AddAction getAddAction(){
+ if(addAction == null)
+ addAction = new AddAction();
+ return addAction;
+ }
/**
* TBD
@@ -164,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
*
@@ -334,7 +368,7 @@
protected void createActionBar() {
actionPanel = new ActionPanel(root, new BaseAction[] {
- new AddAction(), new EditAction(), new RemoveAction()});
+ getAddAction(), new EditAction(), new RemoveAction()});
tableView.addSelectionChangedListener(actionPanel);
}
@@ -549,18 +583,18 @@
if ("homeDir".equals(evt.getPropertyName())) { //$NON-NLS-1$
if (name.getValueAsString() == null
|| "".equals(name.getValueAsString().trim())) { //$NON-NLS-1$
- String homeDirName = homeDir.getValueAsString();
- if (homeDirName != null && !"".equals(homeDirName.trim())) { //$NON-NLS-1$
- File folder = new File(homeDirName);
- homeDirName = folder.getName();
- }
- name.setValue(homeDirName);
-
String seamVersion = SeamUtil.getSeamVersionFromManifest(homeDir.getValueAsString());
if (seamVersion == null) {
setErrorMessage(SeamUIMessages.SEAM_RUNTIME_LIST_FIELD_EDITOR_CANNOT_FIND_JBOSS_SEAM_JAR);
setPageComplete(false);
return;
+ } else {
+ String homeDirName = homeDir.getValueAsString();
+ if (homeDirName != null && !"".equals(homeDirName.trim())) { //$NON-NLS-1$
+ File folder = new File(homeDirName);
+ homeDirName = folder.getName();
+ }
+ name.setValue(homeDirName);
}
if (validSeamVersions != null) {
for (SeamVersion ver : validSeamVersions) {
@@ -798,7 +832,7 @@
}
if (added.contains(source) || changed.containsKey(source)) {
source.setName(rt.getName());
- source.setHomeDir(rt.getName());
+ source.setHomeDir(rt.getHomeDir());
source.setVersion(rt.getVersion());
} else {
changed.put(rt, source);
@@ -1023,7 +1057,24 @@
dialog.open();
tableView.refresh();
setDefaultRuntimes();
+ performApply();
}
+
+ public void run(String name, String version) {
+ SeamRuntimeNewWizard wiz = new SeamRuntimeNewWizard(
+ (List<SeamRuntime>) getValue(), added);
+
+ wiz.page1.name.setValue(name);
+
+ wiz.page1.version.setValue(version);
+
+ WizardDialog dialog = new WizardDialog(Display.getCurrent()
+ .getActiveShell(), wiz);
+ dialog.open();
+ tableView.refresh();
+ setDefaultRuntimes();
+ performApply();
+ }
}
/**
@@ -1073,6 +1124,7 @@
tableView.setSelection(new StructuredSelection(c));
}
}
+ performApply();
}
private SeamRuntime findChangedRuntime(SeamRuntime source) {
@@ -1117,6 +1169,7 @@
}
tableView.refresh();
setDefaultRuntimes();
+ performApply();
}
private void removeRuntime(SeamRuntime r) {
13 years, 9 months
JBoss Tools SVN: r30135 - branches/3.2.helios/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/preferences.
by jbosstools-commits@lists.jboss.org
Author: akazakov
Date: 2011-03-29 21:09:22 -0400 (Tue, 29 Mar 2011)
New Revision: 30135
Modified:
branches/3.2.helios/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/preferences/SeamPreferencePage.java
Log:
https://issues.jboss.org/browse/JBIDE-8626
Modified: branches/3.2.helios/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/preferences/SeamPreferencePage.java
===================================================================
--- branches/3.2.helios/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)
+++ branches/3.2.helios/seam/plugins/org.jboss.tools.seam.ui/src/org/jboss/tools/seam/ui/preferences/SeamPreferencePage.java 2011-03-30 01:09:22 UTC (rev 30135)
@@ -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();
}
13 years, 9 months