JBoss Tools SVN: r26445 - in trunk/as/plugins: org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: rob.stryker(a)jboss.com
Date: 2010-11-11 04:19:41 -0500 (Thu, 11 Nov 2010)
New Revision: 26445
Modified:
trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/LocalJBossServerRuntime.java
trunk/as/plugins/org.jboss.ide.eclipse.as.core/plugin.properties
trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/wizards/JBossRuntimeWizardFragment.java
trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/wizards/JBossServerWizardFragment.java
Log:
JBDS-1381 JBIDE-7544 - eap 5.0 renamed eap 5.x
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/LocalJBossServerRuntime.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/LocalJBossServerRuntime.java 2010-11-11 00:04:45 UTC (rev 26444)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/LocalJBossServerRuntime.java 2010-11-11 09:19:41 UTC (rev 26445)
@@ -46,6 +46,11 @@
private String getNextRuntimeName() {
String version = getRuntime().getRuntimeType().getVersion();
String base = null;
+
+ // hack for eap 5.1, which is now using the 5.0 runtime type id
+ if( isEAP(getRuntime()) && version.equals(IConstants.V5_0))
+ version = "5.x"; //$NON-NLS-1$
+
if( getRuntime().getRuntimeType().getId().startsWith("org.jboss.ide.eclipse.as.runtime.eap.")) { //$NON-NLS-1$
base = Messages.jboss + " EAP " + version + " " + Messages.runtime; //$NON-NLS-1$ //$NON-NLS-2$
} else {
@@ -54,6 +59,10 @@
return getNextRuntimeName(base);
}
+ public static boolean isEAP(IRuntime rt) {
+ return rt.getRuntimeType().getId().startsWith("org.jboss.ide.eclipse.as.runtime.eap."); //$NON-NLS-1$
+ }
+
public static String getNextRuntimeName(String base) {
IRuntime rt = ServerCore.findRuntime(base);
if (rt == null)
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.core/plugin.properties
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.core/plugin.properties 2010-11-11 00:04:45 UTC (rev 26444)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.core/plugin.properties 2010-11-11 09:19:41 UTC (rev 26445)
@@ -32,9 +32,9 @@
jboss.eap.version.43.description=JBoss Enterprise Application Platform (EAP) 4.3
jboss.eap.version.43.runtime.name=JBoss Enterprise Application Platform 4.3 Runtime
-jboss.eap.version.50.name=JBoss Enterprise Application Platform 5.0
-jboss.eap.version.50.description=JBoss Enterprise Application Platform (EAP) 5.0
-jboss.eap.version.50.runtime.name=JBoss Enterprise Application Platform 5.0 Runtime
+jboss.eap.version.50.name=JBoss Enterprise Application Platform 5.x
+jboss.eap.version.50.description=JBoss Enterprise Application Platform (EAP) 5.x
+jboss.eap.version.50.runtime.name=JBoss Enterprise Application Platform 5.x Runtime
deploy.runtime.name=Local Deployer Runtime
deploy.runtime.description=A runtime provided to allow a deploy-only server the ability to deploy certain project types.
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/wizards/JBossRuntimeWizardFragment.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/wizards/JBossRuntimeWizardFragment.java 2010-11-11 00:04:45 UTC (rev 26444)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/wizards/JBossRuntimeWizardFragment.java 2010-11-11 09:19:41 UTC (rev 26445)
@@ -142,6 +142,8 @@
IRuntime r = (IRuntime) getTaskModel()
.getObject(TaskModel.TASK_RUNTIME);
String version = r.getRuntimeType().getVersion();
+ if( isEAP() && version.startsWith("5."))
+ version = "5.x";
handle.setTitle( Messages.rwf_JBossRuntime);
String description = NLS.bind(
isEAP() ? Messages.JBEAP_version : Messages.JBAS_version,
@@ -153,9 +155,8 @@
}
protected boolean isEAP() {
- IRuntime rt = (IRuntime) getTaskModel().getObject(
- TaskModel.TASK_RUNTIME);
- return rt.getRuntimeType().getId().startsWith("org.jboss.ide.eclipse.as.runtime.eap."); //$NON-NLS-1$
+ IRuntime rt = (IRuntime) getTaskModel().getObject(TaskModel.TASK_RUNTIME);
+ return LocalJBossServerRuntime.isEAP(rt);
}
protected ImageDescriptor getImageDescriptor() {
@@ -624,10 +625,19 @@
}
protected String getHomeVersionWarning() {
- String version = new ServerBeanLoader().getFullServerVersion(new File(homeDir, JBossServerType.AS.getSystemJarPath()));
+ File loc = new File(homeDir, JBossServerType.AS.getSystemJarPath());
+ String version = new ServerBeanLoader().getFullServerVersion(loc);
IRuntime rt = (IRuntime) getTaskModel().getObject(
TaskModel.TASK_RUNTIME);
String v = rt.getRuntimeType().getVersion();
+
+ /*
+ * CHEAP WARNING HACK -
+ * EAP 5.0 was started as named 5.0, but is now 5.x.
+ * So a jar with 5.1 should work here also.
+ */
+ if( isEAP() && v.startsWith("5."))
+ v = "5.";
return version.startsWith(v) ? null : NLS.bind(Messages.rwf_homeIncorrectVersion, v, version);
}
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/wizards/JBossServerWizardFragment.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/wizards/JBossServerWizardFragment.java 2010-11-11 00:04:45 UTC (rev 26444)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.ui/jbossui/org/jboss/ide/eclipse/as/ui/wizards/JBossServerWizardFragment.java 2010-11-11 09:19:41 UTC (rev 26445)
@@ -47,6 +47,7 @@
import org.jboss.ide.eclipse.as.core.server.IDeployableServer;
import org.jboss.ide.eclipse.as.core.server.IJBossServerRuntime;
import org.jboss.ide.eclipse.as.core.server.internal.JBossServer;
+import org.jboss.ide.eclipse.as.core.server.internal.LocalJBossServerRuntime;
import org.jboss.ide.eclipse.as.core.util.IJBossToolingConstants;
import org.jboss.ide.eclipse.as.ui.JBossServerUISharedImages;
import org.jboss.ide.eclipse.as.ui.Messages;
@@ -79,6 +80,8 @@
IRuntime r = (IRuntime) getTaskModel()
.getObject(TaskModel.TASK_RUNTIME);
String version = r.getRuntimeType().getVersion();
+ if( isEAP() && version.startsWith("5."))
+ version = "5.x";
String description = NLS.bind(
isEAP() ? Messages.JBEAP_version : Messages.JBAS_version,
version);
@@ -96,9 +99,8 @@
}
protected boolean isEAP() {
- IRuntime rt = (IRuntime) getTaskModel().getObject(
- TaskModel.TASK_RUNTIME);
- return rt.getRuntimeType().getId().startsWith("org.jboss.ide.eclipse.as.runtime.eap."); //$NON-NLS-1$
+ IRuntime rt = (IRuntime) getTaskModel().getObject(TaskModel.TASK_RUNTIME);
+ return LocalJBossServerRuntime.isEAP(rt);
}
public ImageDescriptor getImageDescriptor() {
15 years, 5 months
JBoss Tools SVN: r26444 - in trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core: src/org/jboss/tools/deltacloud/core and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: adietish
Date: 2010-11-10 19:04:45 -0500 (Wed, 10 Nov 2010)
New Revision: 26444
Modified:
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/ChangeLog
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/src/org/jboss/tools/deltacloud/core/DeltaCloud.java
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/src/org/jboss/tools/deltacloud/core/DeltaCloudInstance.java
Log:
[JBIDE-7516] added reference to DeltaCloud in DeltaCloudInstance
Modified: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/ChangeLog
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/ChangeLog 2010-11-10 23:33:37 UTC (rev 26443)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/ChangeLog 2010-11-11 00:04:45 UTC (rev 26444)
@@ -1,3 +1,11 @@
+2010-11-11 André Dietisheim <adietish(a)redhat.com>
+
+ * src/org/jboss/tools/deltacloud/core/DeltaCloudInstance.java (DeltaCloudInstance):
+ * src/org/jboss/tools/deltacloud/core/DeltaCloud.java (refreshInstance):
+ (loadInstances):
+ (createInstance):
+ [JBIDE-7516] added reference to DeltaCloud in DeltaCloudInstance
+
2010-11-10 André Dietisheim <adietish(a)redhat.com>
* src/org/jboss/tools/deltacloud/core/client/utils/UrlBuilder.java:
Modified: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/src/org/jboss/tools/deltacloud/core/DeltaCloud.java
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/src/org/jboss/tools/deltacloud/core/DeltaCloud.java 2010-11-10 23:33:37 UTC (rev 26443)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/src/org/jboss/tools/deltacloud/core/DeltaCloud.java 2010-11-11 00:04:45 UTC (rev 26444)
@@ -287,7 +287,7 @@
try {
List<Instance> list = client.listInstances();
for (Iterator<Instance> i = list.iterator(); i.hasNext();) {
- DeltaCloudInstance instance = new DeltaCloudInstance(i.next());
+ DeltaCloudInstance instance = new DeltaCloudInstance(this, i.next());
instances.add(instance);
}
} catch (DeltaCloudClientException e) {
@@ -368,7 +368,7 @@
DeltaCloudInstance retVal = null;
try {
Instance instance = client.listInstances(instanceId);
- retVal = new DeltaCloudInstance(instance);
+ retVal = new DeltaCloudInstance(this, instance);
for (int i = 0; i < instances.size(); ++i) {
DeltaCloudInstance inst = instances.get(i);
if (inst.getId().equals(instanceId)) {
@@ -522,7 +522,7 @@
instance = client.createInstance(imageId, profileId, realmId, name, memory, storage);
}
if (instance != null) {
- DeltaCloudInstance newInstance = new DeltaCloudInstance(instance);
+ DeltaCloudInstance newInstance = new DeltaCloudInstance(this, instance);
newInstance.setGivenName(name);
instances.add(newInstance);
DeltaCloudInstance[] instanceArray = new DeltaCloudInstance[instances.size()];
Modified: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/src/org/jboss/tools/deltacloud/core/DeltaCloudInstance.java
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/src/org/jboss/tools/deltacloud/core/DeltaCloudInstance.java 2010-11-10 23:33:37 UTC (rev 26443)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.core/src/org/jboss/tools/deltacloud/core/DeltaCloudInstance.java 2010-11-11 00:04:45 UTC (rev 26444)
@@ -30,10 +30,12 @@
public final static String REBOOT = InstanceAction.REBOOT;
public final static String DESTROY = InstanceAction.DESTROY;
+ private DeltaCloud cloud;
private Instance instance;
private String givenName;
- public DeltaCloudInstance(Instance instance) {
+ public DeltaCloudInstance(DeltaCloud cloud, Instance instance) {
+ this.cloud = cloud;
this.instance = instance;
}
@@ -92,6 +94,10 @@
return null;
}
+ public DeltaCloud getDeltaCloud() {
+ return cloud;
+ }
+
protected boolean performInstanceAction(String actionId, DeltaCloudClientImpl client)
throws DeltaCloudClientException {
InstanceAction action = instance.getAction(actionId);
15 years, 5 months
JBoss Tools SVN: r26443 - trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui.
by jbosstools-commits@lists.jboss.org
Author: adietish
Date: 2010-11-10 18:33:37 -0500 (Wed, 10 Nov 2010)
New Revision: 26443
Modified:
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/ChangeLog
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/plugin.xml
Log:
[JBIDE-7540] instance handlers: removed enabledWhen, replaced by additional activatedWhen
Modified: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/ChangeLog
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/ChangeLog 2010-11-10 23:22:47 UTC (rev 26442)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/ChangeLog 2010-11-10 23:33:37 UTC (rev 26443)
@@ -1,3 +1,7 @@
+2010-11-11 André Dietisheim <adietish(a)redhat.com>
+
+ * plugin.xml: [JBIDE-7540] instance handlers: removed enabledWhen, replaced by additional activatedWhen
+
2010-11-10 André Dietisheim <adietish(a)redhat.com>
* src/org/jboss/tools/deltacloud/ui/views/InstanceView.java (ColumnListener):
Modified: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/plugin.xml
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/plugin.xml 2010-11-10 23:22:47 UTC (rev 26442)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.ui/plugin.xml 2010-11-10 23:33:37 UTC (rev 26443)
@@ -115,9 +115,9 @@
<with
variable="selection">
<iterate>
- <instanceof
- value="org.jboss.tools.deltacloud.ui.views.CloudViewElement">
- </instanceof>
+ <instanceof
+ value="org.jboss.tools.deltacloud.ui.views.CloudViewElement">
+ </instanceof>
</iterate>
</with>
</activeWhen>
@@ -158,21 +158,17 @@
<with
variable="selection">
<iterate operator="and">
- <adapt
- type="org.jboss.tools.deltacloud.core.DeltaCloudInstance" />
+ <and>
+ <instanceof
+ value="org.jboss.tools.deltacloud.ui.views.CVInstanceElement">
+ </instanceof>
+ <test
+ property="org.jboss.tools.deltacloud.ui.instance.isStopped"
+ value="true"/>
+ </and>
</iterate>
</with>
</activeWhen>
- <enabledWhen>
- <with
- variable="selection">
- <iterate operator="and">
- <test
- property="org.jboss.tools.deltacloud.ui.instance.isStopped"
- value="true"/>
- </iterate>
- </with>
- </enabledWhen>
</handler>
<handler
class="org.jboss.tools.deltacloud.ui.commands.StopInstanceHandler"
@@ -181,22 +177,16 @@
<with
variable="selection">
<iterate operator="and">
- <instanceof
- value="org.jboss.tools.deltacloud.ui.views.CVInstanceElement">
- </instanceof>
- </iterate>
- </with>
- </activeWhen>
- <enabledWhen>
- <with
- variable="selection">
- <iterate operator="and">
+ <and>
+ <instanceof
+ value="org.jboss.tools.deltacloud.ui.views.CVInstanceElement" />
<test
property="org.jboss.tools.deltacloud.ui.instance.isStopped"
value="false"/>
+ </and>
</iterate>
</with>
- </enabledWhen>
+ </activeWhen>
</handler>
<handler
class="org.jboss.tools.deltacloud.ui.commands.RebootInstanceHandler"
@@ -205,22 +195,17 @@
<with
variable="selection">
<iterate operator="and">
- <instanceof
- value="org.jboss.tools.deltacloud.ui.views.CVInstanceElement">
- </instanceof>
+ <and>
+ <instanceof
+ value="org.jboss.tools.deltacloud.ui.views.CVInstanceElement">
+ </instanceof>
+ <test
+ property="org.jboss.tools.deltacloud.ui.instance.isStopped"
+ value="false"/>
+ </and>
</iterate>
</with>
</activeWhen>
- <enabledWhen>
- <with
- variable="selection">
- <iterate operator="and">
- <test
- property="org.jboss.tools.deltacloud.ui.instance.isStopped"
- value="false"/>
- </iterate>
- </with>
- </enabledWhen>
</handler>
<handler
class="org.jboss.tools.deltacloud.ui.commands.DestroyInstanceHandler"
@@ -229,22 +214,17 @@
<with
variable="selection">
<iterate operator="and">
- <instanceof
- value="org.jboss.tools.deltacloud.ui.views.CVInstanceElement">
- </instanceof>
+ <and>
+ <instanceof
+ value="org.jboss.tools.deltacloud.ui.views.CVInstanceElement">
+ </instanceof>
+ <test
+ property="org.jboss.tools.deltacloud.ui.instance.isStopped"
+ value="true"/>
+ </and>
</iterate>
</with>
</activeWhen>
- <enabledWhen>
- <with
- variable="selection">
- <iterate operator="and">
- <test
- property="org.jboss.tools.deltacloud.ui.instance.isStopped"
- value="true"/>
- </iterate>
- </with>
- </enabledWhen>
</handler>
<handler
class="org.jboss.tools.deltacloud.ui.commands.CreateInstanceHandler2"
@@ -586,7 +566,7 @@
point="org.eclipse.core.expressions.propertyTesters">
<propertyTester
class="org.jboss.tools.deltacloud.ui.commands.InstanceStoppedPropertyTester"
- id="org.jboss.tools.deltacloud.ui.commands.InstancePropertyTester"
+ id="org.jboss.tools.deltacloud.ui.commands.InstanceStoppedPropertyTester"
namespace="org.jboss.tools.deltacloud.ui.instance"
properties="isStopped"
type="org.jboss.tools.deltacloud.ui.views.CVInstanceElement">
15 years, 5 months
JBoss Tools SVN: r26442 - trunk/build/target-platform.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-11-10 18:22:47 -0500 (Wed, 10 Nov 2010)
New Revision: 26442
Modified:
trunk/build/target-platform/.gitignore
Log:
gitignore
Modified: trunk/build/target-platform/.gitignore
===================================================================
--- trunk/build/target-platform/.gitignore 2010-11-10 23:22:42 UTC (rev 26441)
+++ trunk/build/target-platform/.gitignore 2010-11-10 23:22:47 UTC (rev 26442)
@@ -1 +1,4 @@
local.target*
+target
+eclipse*
+*REPO*
15 years, 5 months
JBoss Tools SVN: r26441 - trunk/build/target-platform.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-11-10 18:22:42 -0500 (Wed, 10 Nov 2010)
New Revision: 26441
Modified:
trunk/build/target-platform/multiple.target
trunk/build/target-platform/multiple.target.p2mirror.xml
trunk/build/target-platform/unified.target
Log:
updated target files
Modified: trunk/build/target-platform/multiple.target
===================================================================
--- trunk/build/target-platform/multiple.target 2010-11-10 23:22:36 UTC (rev 26440)
+++ trunk/build/target-platform/multiple.target 2010-11-10 23:22:42 UTC (rev 26441)
@@ -8,11 +8,11 @@
-->
<locations>
<location includeAllPlatforms="false" includeMode="planner" type="InstallableUnit">
- <unit version="0.10.2.20100623-1649" id="org.maven.ide.eclipse.feature.feature.group"/>
+ <unit id="org.maven.ide.eclipse.feature.feature.group" version="0.10.2.20100623-1649"/>
<repository location="http://m2eclipse.sonatype.org/sites/m2e/"/>
</location>
<location includeAllPlatforms="false" includeMode="planner" type="InstallableUnit">
- <unit version="0.11.0.20101024-0955" id="org.maven.ide.eclipse.wtp.feature.feature.group"/>
+ <unit id="org.maven.ide.eclipse.wtp.feature.feature.group" version="0.11.0.20101024-0955"/>
<repository location="http://m2eclipse.sonatype.org/sites/m2e-extras/"/>
</location>
<location includeAllPlatforms="false" includeMode="planner" type="InstallableUnit">
@@ -34,9 +34,9 @@
<repository location="http://download.jboss.org/jbosstools/updates/requirements/orbit/R20100519..."/>
</location>
<location includeAllPlatforms="false" includeMode="planner" type="InstallableUnit">
- <unit version="1.6.2.v201005080631" id="javax.wsdl.feature.feature.group"/>
- <unit version="2.0.8.v201005080400" id="org.apache.oro.feature.feature.group"/>
- <unit version="1.0.0.v201005080400" id="org.jdom.feature.feature.group"/>
+ <unit id="javax.wsdl.feature.feature.group" version="1.6.2.v201005080631"/>
+ <unit id="org.apache.oro.feature.feature.group" version="2.0.8.v201005080400"/>
+ <unit id="org.jdom.feature.feature.group" version="1.0.0.v201005080400"/>
<repository location="http://download.jboss.org/jbosstools/updates/requirements/thirdparty/"/>
</location>
<!-- <location includeAllPlatforms="false" includeMode="planner" type="InstallableUnit">
@@ -45,105 +45,105 @@
<repository location="http://download.jboss.org/jbosstools/updates/requirements/xulrunner-1.9.2/"/>
</location> -->
<location includeAllPlatforms="false" includeMode="planner" type="InstallableUnit">
- <unit version="1.9.12.v20100909-1551-H34-M2" id="org.mozilla.xulrunner.feature.feature.group"/>
- <unit version="1.9.12.v20100909-1551-H34-M2" id="org.mozilla.xpcom.feature.feature.group"/>
+ <unit id="org.mozilla.xulrunner.feature.feature.group" version="1.9.12.v20100909-1551-H34-M2"/>
+ <unit id="org.mozilla.xpcom.feature.feature.group" version="1.9.12.v20100909-1551-H34-M2"/>
<repository location="http://download.jboss.org/jbosstools/updates/requirements/xulrunner-1.9.1.2/"/>
</location>
<location includeAllPlatforms="false" includeMode="planner" type="InstallableUnit">
<repository location="http://download.eclipse.org/rt/ecf/3.2/3.6/site.p2"/>
</location>
<location includeAllPlatforms="false" includeMode="planner" type="InstallableUnit">
- <unit version="4.5.1.v201009092123-7H7F2AkF7B77c7dEGDG" id="org.eclipse.tptp.platform.profile.server.feature.group"/>
- <unit version="4.3.1.v201009092123-797908s73533D4H6D56" id="org.eclipse.tptp.platform.instrumentation.ui.feature.group"/>
- <unit version="4.7.1.v201009092123-8X8ZFXUFLWUl6knOxRCm9t" id="org.eclipse.tptp.platform.core.feature.group"/>
- <unit version="4.5.1.v201009092123-797A18s73533L4F6D6D" id="org.eclipse.tptp.platform.jvmti.feature.group"/>
- <unit version="4.5.1.v201009092123-7L7O8bBgJ9E99jAfGWEM" id="org.eclipse.tptp.platform.trace.feature.group"/>
- <unit version="4.6.0.v201005032111-777K4AkF7B77R7c7N77" id="org.eclipse.tptp.platform.xerces.feature.group"/>
- <unit version="4.3.1.v201009092123-797908s73533D4H6D56" id="org.eclipse.tptp.platform.instrumentation.ui.feature.group"/>
- <unit version="4.5.1.v201009092123-7H7BF8PAkF7B77ZARCNEK" id="org.eclipse.tptp.platform.probekit.feature.group"/>
- <unit version="4.5.0.v201005032111-2-37w312116191612" id="org.eclipse.tptp.platform.commons.logging.feature.group"/>
- <unit version="4.5.0.v201005032111-217E7w312116191611" id="org.eclipse.tptp.platform.jakarta.log4j.feature.group"/>
+ <unit id="org.eclipse.tptp.platform.profile.server.feature.group" version="4.5.1.v201009092123-7H7F2AkF7B77c7dEGDG"/>
+ <unit id="org.eclipse.tptp.platform.instrumentation.ui.feature.group" version="4.3.1.v201009092123-797908s73533D4H6D56"/>
+ <unit id="org.eclipse.tptp.platform.core.feature.group" version="4.7.1.v201009092123-8X8ZFXUFLWUl6knOxRCm9t"/>
+ <unit id="org.eclipse.tptp.platform.jvmti.feature.group" version="4.5.1.v201009092123-797A18s73533L4F6D6D"/>
+ <unit id="org.eclipse.tptp.platform.trace.feature.group" version="4.5.1.v201009092123-7L7O8bBgJ9E99jAfGWEM"/>
+ <unit id="org.eclipse.tptp.platform.xerces.feature.group" version="4.6.0.v201005032111-777K4AkF7B77R7c7N77"/>
+ <unit id="org.eclipse.tptp.platform.instrumentation.ui.feature.group" version="4.3.1.v201009092123-797908s73533D4H6D56"/>
+ <unit id="org.eclipse.tptp.platform.probekit.feature.group" version="4.5.1.v201009092123-7H7BF8PAkF7B77ZARCNEK"/>
+ <unit id="org.eclipse.tptp.platform.commons.logging.feature.group" version="4.5.0.v201005032111-2-37w312116191612"/>
+ <unit id="org.eclipse.tptp.platform.jakarta.log4j.feature.group" version="4.5.0.v201005032111-217E7w312116191611"/>
<repository location="http://download.eclipse.org/tptp/updates/helios/"/>
</location>
<location includeAllPlatforms="false" includeMode="planner" type="InstallableUnit">
- <unit version="2.6.1.v20100914-1218" id="org.eclipse.emf.ecore.feature.group"/>
- <unit version="2.6.1.v20100914-1218" id="org.eclipse.emf.feature.group"/>
- <unit version="2.6.0.v20100914-1218" id="org.eclipse.emf.codegen.feature.group"/>
- <unit version="2.6.0.v20100914-1218" id="org.eclipse.emf.common.feature.group"/>
- <unit version="1.2.0.v20100914-1218" id="org.eclipse.emf.databinding.feature.group"/>
- <unit version="2.6.1.v20100914-1218" id="org.eclipse.emf.codegen.ecore.feature.group"/>
- <unit version="2.6.0.v20100914-1218" id="org.eclipse.emf.ecore.edit.feature.group"/>
- <unit version="2.6.0.v20100914-1218" id="org.eclipse.emf.ecore.editor.feature.group"/>
- <unit version="2.6.1.v20100914-1218" id="org.eclipse.emf.ecore.feature.group"/>
- <unit version="2.6.0.v20100914-1218" id="org.eclipse.emf.edit.feature.group"/>
- <unit version="2.6.0.v20100914-1218" id="org.eclipse.xsd.edit.feature.group"/>
- <unit version="2.6.0.v20100914-1218" id="org.eclipse.xsd.feature.group"/>
+ <unit id="org.eclipse.emf.ecore.feature.group" version="2.6.1.v20100914-1218"/>
+ <unit id="org.eclipse.emf.feature.group" version="2.6.1.v20100914-1218"/>
+ <unit id="org.eclipse.emf.codegen.feature.group" version="2.6.0.v20100914-1218"/>
+ <unit id="org.eclipse.emf.common.feature.group" version="2.6.0.v20100914-1218"/>
+ <unit id="org.eclipse.emf.databinding.feature.group" version="1.2.0.v20100914-1218"/>
+ <unit id="org.eclipse.emf.codegen.ecore.feature.group" version="2.6.1.v20100914-1218"/>
+ <unit id="org.eclipse.emf.ecore.edit.feature.group" version="2.6.0.v20100914-1218"/>
+ <unit id="org.eclipse.emf.ecore.editor.feature.group" version="2.6.0.v20100914-1218"/>
+ <unit id="org.eclipse.emf.ecore.feature.group" version="2.6.1.v20100914-1218"/>
+ <unit id="org.eclipse.emf.edit.feature.group" version="2.6.0.v20100914-1218"/>
+ <unit id="org.eclipse.xsd.edit.feature.group" version="2.6.0.v20100914-1218"/>
+ <unit id="org.eclipse.xsd.feature.group" version="2.6.0.v20100914-1218"/>
<repository location="http://download.eclipse.org/modeling/emf/emf/updates/2.6/R201009141218/"/>
</location>
<location includeAllPlatforms="false" includeMode="planner" type="InstallableUnit">
- <unit version="2.0.0.595-dev-e36" id="org.eclipse.swtbot.eclipse.feature.group"/>
- <unit version="2.0.0.595-dev-e36" id="org.eclipse.swtbot.eclipse.gef.feature.group"/>
- <unit version="2.0.0.595-dev-e36" id="org.eclipse.swtbot.ide.feature.group"/>
- <unit version="2.0.0.595-dev-e36" id="org.eclipse.swtbot.eclipse.test.junit4.feature.group"/>
- <unit version="2.0.0.595-dev-e36" id="org.eclipse.swtbot.feature.group"/>
+ <unit id="org.eclipse.swtbot.eclipse.feature.group" version="2.0.0.595-dev-e36"/>
+ <unit id="org.eclipse.swtbot.eclipse.gef.feature.group" version="2.0.0.595-dev-e36"/>
+ <unit id="org.eclipse.swtbot.ide.feature.group" version="2.0.0.595-dev-e36"/>
+ <unit id="org.eclipse.swtbot.eclipse.test.junit4.feature.group" version="2.0.0.595-dev-e36"/>
+ <unit id="org.eclipse.swtbot.feature.group" version="2.0.0.595-dev-e36"/>
<repository location="http://download.eclipse.org/technology/swtbot/helios/dev-build/update-site/"/>
</location>
<location includeAllPlatforms="false" includeMode="planner" type="InstallableUnit">
- <unit version="2.6.1.v20100617a-57B185wFfAqPz0Ef8mBsMkG-0hfS" id="org.eclipse.birt.osgi.runtime.sdk.feature.group"/>
- <unit version="2.6.1.v20100709a-9iF7A8FGLY4z0pxX3ORrsdrp6JXb" id="org.eclipse.birt.feature.group"/>
- <unit version="2.6.1.v20100915-1750-35-7w31211A2602861" id="org.eclipse.birt.integration.wtp.feature.group"/>
- <unit version="2.6.1.v20100709-7f9T7DFQCnv8nz0gRMa6NG1" id="org.eclipse.birt.chart.feature.group"/>
- <unit version="2.6.1.v20100915-1750-3507w31211A2602861" id="org.eclipse.birt.chart.integration.wtp.feature.group"/>
+ <unit id="org.eclipse.birt.osgi.runtime.sdk.feature.group" version="2.6.1.v20100617a-57B185wFfAqPz0Ef8mBsMkG-0hfS"/>
+ <unit id="org.eclipse.birt.feature.group" version="2.6.1.v20100709a-9iF7A8FGLY4z0pxX3ORrsdrp6JXb"/>
+ <unit id="org.eclipse.birt.integration.wtp.feature.group" version="2.6.1.v20100915-1750-35-7w31211A2602861"/>
+ <unit id="org.eclipse.birt.chart.feature.group" version="2.6.1.v20100709-7f9T7DFQCnv8nz0gRMa6NG1"/>
+ <unit id="org.eclipse.birt.chart.integration.wtp.feature.group" version="2.6.1.v20100915-1750-3507w31211A2602861"/>
<repository location="http://download.eclipse.org/birt/update-site/2.6/"/>
</location>
<location includeAllPlatforms="false" includeMode="planner" type="InstallableUnit">
- <unit version="1.1.0.v20090119-79318s73533B57" id="com.ibm.icu.base.feature.group"/>
- <unit version="1.0.0.v20100510-7K7QErDzbb9z-yqHb55T7I" id="org.eclipse.equinox.server.core.feature.group"/>
- <unit version="1.2.0.v20100427-7B77FKt90GE5h0SBT5FV9A01911" id="org.eclipse.cvs.feature.group"/>
- <unit version="1.2.0.v20100427-7e7jEQFEp4jsWcboLU9l93" id="org.eclipse.help.feature.group"/>
- <unit version="3.6.1.r361_v20100714-0800-7z8XFUSFLFlmgLc5z-Bvrt8-HVkH" id="org.eclipse.jdt.feature.group"/>
- <unit version="3.6.1.r361_v20100909-9gF78GrkFqw7GrsZnvz0JWNTeb6fue6896L" id="org.eclipse.platform.feature.group"/>
- <unit version="3.6.1.M20100909-0800" id="org.eclipse.platform.ide"/>
- <unit version="3.4.1.R36x_v20100823-7M7K7JF90dnJ-WLf3cf4yi" id="org.eclipse.equinox.executable.feature.group"/>
- <unit version="3.6.1.M20100909-0800" id="org.eclipse.platform.sdk"/>
- <unit version="3.6.1.r361_v20100727-7b7mFL-FET3dhESDgE5_bkJ" id="org.eclipse.pde.feature.group"/>
- <unit version="3.6.1.r361_v20100714-0800-7Q7m6DDaKf5o2z-L9LxPSe6ygafz-KKIqk1rr_3j4dn7J" id="org.eclipse.sdk.feature.group"/>
- <unit version="3.6.0.M20100909-0800" id="org.eclipse.rcp.id"/>
- <unit version="3.6.0.M20100909-0800" id="org.eclipse.rcp.sdk.id"/>
- <unit version="3.3.0.v20100427-44A77w31211642" id="org.eclipse.releng.tools.feature.group"/>
- <unit version="3.6.1.M20100909-0800" id="org.eclipse.sdk.ide"/>
- <unit version="3.3.0.v20100527-817fFcfFEdcVcRZlgyBRcVX" id="org.eclipse.sdk.examples.feature.group"/>
- <unit version="3.3.0.v20100527" id="org.eclipse.sdk.examples.source.feature.group"/>
- <unit version="3.6.0.v20100421-7V7RFiwFLSgEt4Pctn77c7J" id="org.eclipse.equinox.compendium.sdk.feature.group"/>
- <unit version="3.6.0.v20100603-7sF99FsHFTw8HQBta4g33J3F" id="org.eclipse.equinox.core.sdk.feature.group"/>
- <unit version="1.0.0.v20100510-4--9oB5855K7P" id="org.eclipse.equinox.p2.discovery.feature.feature.group"/>
- <unit version="2.0.1.r361_v20100903-897HFZFFZRuSD2LMtVxyz0Vr" id="org.eclipse.equinox.p2.user.ui.feature.group"/>
- <unit version="3.6.0.v20100503-9I7VGAeG8tz-BY6jz0w2HLRYr" id="org.eclipse.equinox.p2.sdk.feature.group"/>
- <unit version="3.6.0.v20100421-7u7NFVgFN5JdPKPhDHd_6Yqc54uw" id="org.eclipse.equinox.serverside.sdk.feature.group"/>
- <unit version="3.6.1.r361_v20100903-7H7R07v8rtOZyYbv1I6aZgou5z07" id="org.eclipse.equinox.sdk.feature.group"/>
- <unit version="1.0.0.v20100421-79--EVVFNFFsFc" id="org.eclipse.equinox.weaving.sdk.feature.group"/>
- <unit version="1.0.0.v20100510-7I777iBgJ9DIARGH8IIQ" id="org.eclipse.equinox.server.jetty.feature.group"/>
- <unit version="1.0.0.v20100503-7x7IFGOFQ74dz0POCNUBjA6L" id="org.eclipse.equinox.server.p2.feature.group"/>
- <unit version="1.0.0.v20100427-7C-7BF9JgLWLMBMMAMsLL" id="org.eclipse.pde.api.tools.ee.fragments.feature.group"/>
- <unit version="1.1.0.M20100909-0800" id="org.eclipse.equinox.p2.ui.admin.rcp.product"/>
- <unit version="1.0.0.v20100510-42A79oB5855K5E" id="org.eclipse.equinox.server.servletbridge.feature.group"/>
- <unit version="1.0.0.v20100510-44DF8s734C48662444" id="org.eclipse.equinox.server.simple.feature.group"/>
- <unit version="3.6.1.r361_v20100827-9OArFLdFjY-ThSQXmKvKz0_T" id="org.eclipse.rcp.feature.group"/>
+ <unit id="com.ibm.icu.base.feature.group" version="1.1.0.v20090119-79318s73533B57"/>
+ <unit id="org.eclipse.equinox.server.core.feature.group" version="1.0.0.v20100510-7K7QErDzbb9z-yqHb55T7I"/>
+ <unit id="org.eclipse.cvs.feature.group" version="1.2.0.v20100427-7B77FKt90GE5h0SBT5FV9A01911"/>
+ <unit id="org.eclipse.help.feature.group" version="1.2.0.v20100427-7e7jEQFEp4jsWcboLU9l93"/>
+ <unit id="org.eclipse.jdt.feature.group" version="3.6.1.r361_v20100714-0800-7z8XFUSFLFlmgLc5z-Bvrt8-HVkH"/>
+ <unit id="org.eclipse.platform.feature.group" version="3.6.1.r361_v20100909-9gF78GrkFqw7GrsZnvz0JWNTeb6fue6896L"/>
+ <unit id="org.eclipse.platform.ide" version="3.6.1.M20100909-0800"/>
+ <unit id="org.eclipse.equinox.executable.feature.group" version="3.4.1.R36x_v20100823-7M7K7JF90dnJ-WLf3cf4yi"/>
+ <unit id="org.eclipse.platform.sdk" version="3.6.1.M20100909-0800"/>
+ <unit id="org.eclipse.pde.feature.group" version="3.6.1.r361_v20100727-7b7mFL-FET3dhESDgE5_bkJ"/>
+ <unit id="org.eclipse.sdk.feature.group" version="3.6.1.r361_v20100714-0800-7Q7m6DDaKf5o2z-L9LxPSe6ygafz-KKIqk1rr_3j4dn7J"/>
+ <unit id="org.eclipse.rcp.id" version="3.6.0.M20100909-0800"/>
+ <unit id="org.eclipse.rcp.sdk.id" version="3.6.0.M20100909-0800"/>
+ <unit id="org.eclipse.releng.tools.feature.group" version="3.3.0.v20100427-44A77w31211642"/>
+ <unit id="org.eclipse.sdk.ide" version="3.6.1.M20100909-0800"/>
+ <unit id="org.eclipse.sdk.examples.feature.group" version="3.3.0.v20100527-817fFcfFEdcVcRZlgyBRcVX"/>
+ <unit id="org.eclipse.sdk.examples.source.feature.group" version="3.3.0.v20100527"/>
+ <unit id="org.eclipse.equinox.compendium.sdk.feature.group" version="3.6.0.v20100421-7V7RFiwFLSgEt4Pctn77c7J"/>
+ <unit id="org.eclipse.equinox.core.sdk.feature.group" version="3.6.0.v20100603-7sF99FsHFTw8HQBta4g33J3F"/>
+ <unit id="org.eclipse.equinox.p2.discovery.feature.feature.group" version="1.0.0.v20100510-4--9oB5855K7P"/>
+ <unit id="org.eclipse.equinox.p2.user.ui.feature.group" version="2.0.1.r361_v20100903-897HFZFFZRuSD2LMtVxyz0Vr"/>
+ <unit id="org.eclipse.equinox.p2.sdk.feature.group" version="3.6.0.v20100503-9I7VGAeG8tz-BY6jz0w2HLRYr"/>
+ <unit id="org.eclipse.equinox.serverside.sdk.feature.group" version="3.6.0.v20100421-7u7NFVgFN5JdPKPhDHd_6Yqc54uw"/>
+ <unit id="org.eclipse.equinox.sdk.feature.group" version="3.6.1.r361_v20100903-7H7R07v8rtOZyYbv1I6aZgou5z07"/>
+ <unit id="org.eclipse.equinox.weaving.sdk.feature.group" version="1.0.0.v20100421-79--EVVFNFFsFc"/>
+ <unit id="org.eclipse.equinox.server.jetty.feature.group" version="1.0.0.v20100510-7I777iBgJ9DIARGH8IIQ"/>
+ <unit id="org.eclipse.equinox.server.p2.feature.group" version="1.0.0.v20100503-7x7IFGOFQ74dz0POCNUBjA6L"/>
+ <unit id="org.eclipse.pde.api.tools.ee.fragments.feature.group" version="1.0.0.v20100427-7C-7BF9JgLWLMBMMAMsLL"/>
+ <unit id="org.eclipse.equinox.p2.ui.admin.rcp.product" version="1.1.0.M20100909-0800"/>
+ <unit id="org.eclipse.equinox.server.servletbridge.feature.group" version="1.0.0.v20100510-42A79oB5855K5E"/>
+ <unit id="org.eclipse.equinox.server.simple.feature.group" version="1.0.0.v20100510-44DF8s734C48662444"/>
+ <unit id="org.eclipse.rcp.feature.group" version="3.6.1.r361_v20100827-9OArFLdFjY-ThSQXmKvKz0_T"/>
<repository location="http://download.eclipse.org/eclipse/updates/3.6/"/>
</location>
<location includeAllPlatforms="false" includeMode="planner" type="InstallableUnit">
- <unit version="2.6.1.v20100709a-9iF7A8FGLY4z0pxX3ORrsdrp6JXb" id="org.eclipse.birt.feature.group"/>
- <unit version="1.8.1.v20100618-7C7b8hEt1ZvtiLkdlO7BVoL_wm6" id="org.eclipse.datatools.connectivity.feature.feature.group"/>
- <unit version="1.8.1.v20100618-7J8x7FBWwUL6z-2z-fcrYC2s55KI" id="org.eclipse.datatools.enablement.feature.feature.group"/>
- <unit version="1.8.1.v20100618-7P9i7KFDxNYrp4cjPjqnPaRKxeyT" id="org.eclipse.datatools.sdk.feature.feature.group"/>
- <unit version="1.8.1.v20100618-2-07w31211518181A" id="org.eclipse.datatools.enablement.jdt.feature.feature.group"/>
- <unit version="1.8.1.v20100618-77078CcNBGKBZI_FcRd" id="org.eclipse.datatools.modelbase.feature.feature.group"/>
- <unit version="1.8.1.v20100618-77778eBmKDNOMgJvJ8Of7QBR" id="org.eclipse.datatools.enablement.apache.derby.feature.feature.group"/>
- <unit version="3.6.1.v20100908-1100-4507w31211A2403131" id="org.eclipse.draw2d.feature.group"/>
- <unit version="3.6.1.v20100908-1100-777B181A3Bz-6B663E7974242" id="org.eclipse.gef.feature.group"/>
- <unit version="1.2.0.v20100519-2050-67808yE5F-8HAH4HECF4242" id="org.eclipse.zest.feature.group"/>
- <unit version="3.1.1.v201008191505" id="org.eclipse.uml2.feature.group"/>
- <unit version="3.2.1.v201008191400-7L78FA-8wqbPcNj4qa8R0eViy7vZ" id="org.eclipse.rse.feature.group"/>
+ <unit id="org.eclipse.birt.feature.group" version="2.6.1.v20100709a-9iF7A8FGLY4z0pxX3ORrsdrp6JXb"/>
+ <unit id="org.eclipse.datatools.connectivity.feature.feature.group" version="1.8.1.v20100618-7C7b8hEt1ZvtiLkdlO7BVoL_wm6"/>
+ <unit id="org.eclipse.datatools.enablement.feature.feature.group" version="1.8.1.v20100618-7J8x7FBWwUL6z-2z-fcrYC2s55KI"/>
+ <unit id="org.eclipse.datatools.sdk.feature.feature.group" version="1.8.1.v20100618-7P9i7KFDxNYrp4cjPjqnPaRKxeyT"/>
+ <unit id="org.eclipse.datatools.enablement.jdt.feature.feature.group" version="1.8.1.v20100618-2-07w31211518181A"/>
+ <unit id="org.eclipse.datatools.modelbase.feature.feature.group" version="1.8.1.v20100618-77078CcNBGKBZI_FcRd"/>
+ <unit id="org.eclipse.datatools.enablement.apache.derby.feature.feature.group" version="1.8.1.v20100618-77778eBmKDNOMgJvJ8Of7QBR"/>
+ <unit id="org.eclipse.draw2d.feature.group" version="3.6.1.v20100908-1100-4507w31211A2403131"/>
+ <unit id="org.eclipse.gef.feature.group" version="3.6.1.v20100908-1100-777B181A3Bz-6B663E7974242"/>
+ <unit id="org.eclipse.zest.feature.group" version="1.2.0.v20100519-2050-67808yE5F-8HAH4HECF4242"/>
+ <unit id="org.eclipse.uml2.feature.group" version="3.1.1.v201008191505"/>
+ <unit id="org.eclipse.rse.feature.group" version="3.2.1.v201008191400-7L78FA-8wqbPcNj4qa8R0eViy7vZ"/>
<!-- SAVARA dependencies -->
<!-- <unit version="1.2.0.201006151053" id="org.eclipse.stp.bpmn.feature.feature.group"/>
<unit version="1.4.1.v20100909-1000-37708s73533F5C1479I" id="org.eclipse.gmf.runtime.notation.feature.group"/>
@@ -162,50 +162,50 @@
<repository location="http://download.eclipse.org/releases/helios/"/>
</location>
<location includeAllPlatforms="false" includeMode="planner" type="InstallableUnit">
- <unit version="1.0.301.v201007151900" id="org.eclipse.jst.jee"/>
- <unit version="1.2.0.v201003040800" id="org.eclipse.wst.common.frameworks"/>
- <unit version="1.4.102.v201008170019" id="org.eclipse.wst.common.project.facet.ui"/>
- <unit version="1.0.301.v201007070907" id="org.eclipse.jst.jee.web"/>
- <unit version="3.2.2.v201008170019-377AB8s73533J5J759F" id="org.eclipse.jst.common.fproj.enablement.jdt.feature.group"/>
+ <unit id="org.eclipse.jst.jee" version="1.0.301.v201007151900"/>
+ <unit id="org.eclipse.wst.common.frameworks" version="1.2.0.v201003040800"/>
+ <unit id="org.eclipse.wst.common.project.facet.ui" version="1.4.102.v201008170019"/>
+ <unit id="org.eclipse.jst.jee.web" version="1.0.301.v201007070907"/>
+ <unit id="org.eclipse.jst.common.fproj.enablement.jdt.feature.group" version="3.2.2.v201008170019-377AB8s73533J5J759F"/>
- <unit version="1.1.100.v201005241530-78-FF0DZRDKDDePSKwHj" id="org.eclipse.jst.ws.axis2tools.feature.feature.group"/>
- <unit version="1.0.2.v201008232129-7H777DFAKlRiOX8lGdRoz0878J" id="org.eclipse.jst.ws.cxf.feature.feature.group"/>
- <unit version="2.3.2.v201008242310-7N7UF75FD3wTgbUpoff0aT" id="org.eclipse.jpt.feature.feature.group"/>
- <unit version="3.2.2.v201008170019-377AB8s73533J5H335L" id="org.eclipse.wst.common.fproj.feature.group"/>
- <unit version="3.2.2.v201008190400-7b7GHf2FSK2WBLQ2D-mrubYEOrRh" id="org.eclipse.jst.enterprise_ui.feature.feature.group"/>
- <unit version="3.2.2.v201008100100-7O7CFbKEMf84nUlEJyX7-SPQjhYZ" id="org.eclipse.wst.web_ui.feature.feature.group"/>
- <unit version="3.2.2.v201008170029-7H7AFUQDxumQGOpBqffOY2f1qxDZ" id="org.eclipse.wst.xml_ui.feature.feature.group"/>
- <unit version="1.1.2.v201009091745-7S7WFAPFIpS-1-NbCE6tnacCXKP" id="org.eclipse.wst.xsl.feature.feature.group"/>
- <unit version="1.2.2.v201008170101-7C78FGMF9JgLWLMUUEMtXc" id="org.eclipse.wst.jsdt.feature.feature.group"/>
- <unit version="3.2.2.v201008231400-7E7I6F9JgLWLMUW3" id="org.eclipse.jsf.feature.feature.group"/>
- <unit version="1.0.0.v201005241530-5--AkF7B77NBZBgBg" id="org.eclipse.jst.ws.jaxws.dom.feature.feature.group"/>
- <unit version="1.0.1.v201008232129-7E777CF8NcJSSK-UBTwXn" id="org.eclipse.jst.ws.jaxws.feature.feature.group"/>
- <unit version="3.2.1.v201007070821-52FMTAkF7B77UBR7W98" id="org.eclipse.jst.enterprise_core.feature.feature.group"/>
- <unit version="3.2.2.v20100818b-777HFGRCcNBDiBjIbhBA8" id="org.eclipse.jst.server_adapters.ext.feature.feature.group"/>
- <unit version="3.2.0.v201005241530-208Z7w31211419" id="org.eclipse.jst.server_adapters.feature.feature.group"/>
- <unit version="3.2.0.v201005241530-31FA28s73533C66" id="org.eclipse.jst.server_core.feature.feature.group"/>
- <unit version="3.2.2.v20100908-7A5FEi9xFc7RCJMToAIOJC43A" id="org.eclipse.jst.server_ui.feature.feature.group"/>
- <unit version="3.2.2.v201008170029-7F77FJSC25Tkdy1nqglPjqLAoDgh" id="org.eclipse.jst.web_ui.feature.feature.group"/>
- <unit version="3.2.2.v201008231400-7E7I6F9JgLWLMUW3" id="org.eclipse.jsf.feature.source.feature.group"/>
- <unit version="1.1.5.v201009091745-67K2BgJ9DIAXCbBWJO" id="org.eclipse.wst.xml.xpath2.processor.feature.feature.group"/>
- <unit version="2.3.1.v20100906-4609oB5855L6N" id="org.eclipse.jst.webpageeditor.feature.feature.group"/>
- <unit version="1.5.300.v201005241450-2407w312116191741" id="org.eclipse.wst.ws_wsdl15.feature.feature.group"/>
- <unit version="3.2.2.v201008091400-7B7DFElF7RZHOZJ6W0PsNJ" id="org.eclipse.wst.common_core.feature.feature.group"/>
- <unit version="3.2.2.v201008091400-7C78FPhEdhO_mXde7kbap_K7X1Qt" id="org.eclipse.wst.common_ui.feature.feature.group"/>
- <unit version="3.2.0.v201005241510-51EoAkF77g8HBSc" id="org.eclipse.wst.server_adapters.feature.feature.group"/>
- <unit version="3.2.2.v20100908-30F8V8s734C3I3K" id="org.eclipse.wst.server_core.feature.feature.group"/>
- <unit version="3.2.2.v20100908-7B4FBrAtJb1nESKmCJHPGQ347" id="org.eclipse.wst.server_ui.feature.feature.group"/>
- <unit version="3.2.2.v201008100100-7E7AFHwAJrn5PM15pUYBwJLkSG8j" id="org.eclipse.wst.web_core.feature.feature.group"/>
- <unit version="3.2.2.v201008211705-7I78FZFEtEoO2c5BlJ4jPNvNC-yS" id="org.eclipse.wst.ws_ui.feature.feature.group"/>
- <unit version="3.2.2.v201008170029-7C7OFXYF7RZHQHI5PyJwPT" id="org.eclipse.wst.xml_core.feature.feature.group"/>
+ <unit id="org.eclipse.jst.ws.axis2tools.feature.feature.group" version="1.1.100.v201005241530-78-FF0DZRDKDDePSKwHj"/>
+ <unit id="org.eclipse.jst.ws.cxf.feature.feature.group" version="1.0.2.v201008232129-7H777DFAKlRiOX8lGdRoz0878J"/>
+ <unit id="org.eclipse.jpt.feature.feature.group" version="2.3.2.v201008242310-7N7UF75FD3wTgbUpoff0aT"/>
+ <unit id="org.eclipse.wst.common.fproj.feature.group" version="3.2.2.v201008170019-377AB8s73533J5H335L"/>
+ <unit id="org.eclipse.jst.enterprise_ui.feature.feature.group" version="3.2.2.v201008190400-7b7GHf2FSK2WBLQ2D-mrubYEOrRh"/>
+ <unit id="org.eclipse.wst.web_ui.feature.feature.group" version="3.2.2.v201008100100-7O7CFbKEMf84nUlEJyX7-SPQjhYZ"/>
+ <unit id="org.eclipse.wst.xml_ui.feature.feature.group" version="3.2.2.v201008170029-7H7AFUQDxumQGOpBqffOY2f1qxDZ"/>
+ <unit id="org.eclipse.wst.xsl.feature.feature.group" version="1.1.2.v201009091745-7S7WFAPFIpS-1-NbCE6tnacCXKP"/>
+ <unit id="org.eclipse.wst.jsdt.feature.feature.group" version="1.2.2.v201008170101-7C78FGMF9JgLWLMUUEMtXc"/>
+ <unit id="org.eclipse.jsf.feature.feature.group" version="3.2.2.v201008231400-7E7I6F9JgLWLMUW3"/>
+ <unit id="org.eclipse.jst.ws.jaxws.dom.feature.feature.group" version="1.0.0.v201005241530-5--AkF7B77NBZBgBg"/>
+ <unit id="org.eclipse.jst.ws.jaxws.feature.feature.group" version="1.0.1.v201008232129-7E777CF8NcJSSK-UBTwXn"/>
+ <unit id="org.eclipse.jst.enterprise_core.feature.feature.group" version="3.2.1.v201007070821-52FMTAkF7B77UBR7W98"/>
+ <unit id="org.eclipse.jst.server_adapters.ext.feature.feature.group" version="3.2.2.v20100818b-777HFGRCcNBDiBjIbhBA8"/>
+ <unit id="org.eclipse.jst.server_adapters.feature.feature.group" version="3.2.0.v201005241530-208Z7w31211419"/>
+ <unit id="org.eclipse.jst.server_core.feature.feature.group" version="3.2.0.v201005241530-31FA28s73533C66"/>
+ <unit id="org.eclipse.jst.server_ui.feature.feature.group" version="3.2.2.v20100908-7A5FEi9xFc7RCJMToAIOJC43A"/>
+ <unit id="org.eclipse.jst.web_ui.feature.feature.group" version="3.2.2.v201008170029-7F77FJSC25Tkdy1nqglPjqLAoDgh"/>
+ <unit id="org.eclipse.jsf.feature.source.feature.group" version="3.2.2.v201008231400-7E7I6F9JgLWLMUW3"/>
+ <unit id="org.eclipse.wst.xml.xpath2.processor.feature.feature.group" version="1.1.5.v201009091745-67K2BgJ9DIAXCbBWJO"/>
+ <unit id="org.eclipse.jst.webpageeditor.feature.feature.group" version="2.3.1.v20100906-4609oB5855L6N"/>
+ <unit id="org.eclipse.wst.ws_wsdl15.feature.feature.group" version="1.5.300.v201005241450-2407w312116191741"/>
+ <unit id="org.eclipse.wst.common_core.feature.feature.group" version="3.2.2.v201008091400-7B7DFElF7RZHOZJ6W0PsNJ"/>
+ <unit id="org.eclipse.wst.common_ui.feature.feature.group" version="3.2.2.v201008091400-7C78FPhEdhO_mXde7kbap_K7X1Qt"/>
+ <unit id="org.eclipse.wst.server_adapters.feature.feature.group" version="3.2.0.v201005241510-51EoAkF77g8HBSc"/>
+ <unit id="org.eclipse.wst.server_core.feature.feature.group" version="3.2.2.v20100908-30F8V8s734C3I3K"/>
+ <unit id="org.eclipse.wst.server_ui.feature.feature.group" version="3.2.2.v20100908-7B4FBrAtJb1nESKmCJHPGQ347"/>
+ <unit id="org.eclipse.wst.web_core.feature.feature.group" version="3.2.2.v201008100100-7E7AFHwAJrn5PM15pUYBwJLkSG8j"/>
+ <unit id="org.eclipse.wst.ws_ui.feature.feature.group" version="3.2.2.v201008211705-7I78FZFEtEoO2c5BlJ4jPNvNC-yS"/>
+ <unit id="org.eclipse.wst.xml_core.feature.feature.group" version="3.2.2.v201008170029-7C7OFXYF7RZHQHI5PyJwPT"/>
<repository location="http://download.eclipse.org/webtools/repository/helios/"/>
</location>
<location includeAllPlatforms="false" includeMode="planner" type="InstallableUnit">
<repository location="http://download.jboss.org/jbosstools/builds/staging/jbosstools-drools/all..."/>
</location>
<location includeAllPlatforms="false" includeMode="planner" type="InstallableUnit">
- <unit version="1.3.3.v201006111317" id="com.google.gdt.eclipse.suite.e36.feature.feature.group"/>
- <unit version="2.1.0.v201010280102" id="com.google.gwt.eclipse.sdkbundle.e36.feature.2.1.0.feature.group"/>
+ <unit id="com.google.gdt.eclipse.suite.e36.feature.feature.group" version="1.3.3.v201006111317"/>
+ <unit id="com.google.gwt.eclipse.sdkbundle.e36.feature.2.1.0.feature.group" version="2.1.0.v201010280102"/>
<repository location="http://dl.google.com/eclipse/plugin/3.6/"/>
</location>
Modified: trunk/build/target-platform/multiple.target.p2mirror.xml
===================================================================
--- trunk/build/target-platform/multiple.target.p2mirror.xml 2010-11-10 23:22:36 UTC (rev 26440)
+++ trunk/build/target-platform/multiple.target.p2mirror.xml 2010-11-10 23:22:42 UTC (rev 26441)
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="UTF-8"?>
-<project xmlns:xs="http://www.w3.org/2001/XMLSchema" default="download.target.platform" name="Download target platform">
+<project name="Download target platform" default="download.target.platform" xmlns:xs="http://www.w3.org/2001/XMLSchema">
<target name="help">
<echo>
Generated with useLatest = true
@@ -18,15 +18,15 @@
-Ddebug=true -DfollowStrict=true -DrepoDir=`pwd`/REPO/
</echo>
</target>
-<target unless="repoDir" name="init">
+<target name="init" unless="repoDir">
<fail>Must set -DrepoDir=/abs/path/to/download/artifacts/</fail>
</target>
-<target if="repoDir" description="Download from target platform definition" depends="init" name="download.target.platform">
-<property value="false" name="verbose"/>
-<property value="false" name="followStrict"/>
+<target name="download.target.platform" depends="init" description="Download from target platform definition" if="repoDir">
+<property name="verbose" value="false"/>
+<property name="followStrict" value="false"/>
<echo level="info">Download features/plugins into ${repoDir}</echo>
-<p2.mirror verbose="${verbose}" destination="file://${repoDir}">
-<slicingOptions followStrict="${followStrict}" includeFeatures="true"/>
+<p2.mirror destination="file://${repoDir}" verbose="${verbose}">
+<slicingOptions includeFeatures="true" followStrict="${followStrict}"/>
<source>
<repository location="http://m2eclipse.sonatype.org/sites/m2e/"/>
<repository location="http://m2eclipse.sonatype.org/sites/m2e-extras/"/>
@@ -50,131 +50,131 @@
<repository location="http://download.jboss.org/jbosstools/updates/requirements/webtools-3.2/"/>
<repository location="http://download.jboss.org/jbosstools/updates/requirements/helios/"/>
</source>
-<iu version="" id="org.maven.ide.eclipse.feature.feature.group"/>
-<iu version="" id="org.maven.ide.eclipse.wtp.feature.feature.group"/>
-<iu version="" id="javax.wsdl.feature.feature.group"/>
-<iu version="" id="org.apache.oro.feature.feature.group"/>
-<iu version="" id="org.jdom.feature.feature.group"/>
-<iu version="" id="org.mozilla.xulrunner.feature.feature.group"/>
-<iu version="" id="org.mozilla.xpcom.feature.feature.group"/>
-<iu version="" id="org.eclipse.tptp.platform.profile.server.feature.group"/>
-<iu version="" id="org.eclipse.tptp.platform.instrumentation.ui.feature.group"/>
-<iu version="" id="org.eclipse.tptp.platform.core.feature.group"/>
-<iu version="" id="org.eclipse.tptp.platform.jvmti.feature.group"/>
-<iu version="" id="org.eclipse.tptp.platform.trace.feature.group"/>
-<iu version="" id="org.eclipse.tptp.platform.xerces.feature.group"/>
-<iu version="" id="org.eclipse.tptp.platform.instrumentation.ui.feature.group"/>
-<iu version="" id="org.eclipse.tptp.platform.probekit.feature.group"/>
-<iu version="" id="org.eclipse.tptp.platform.commons.logging.feature.group"/>
-<iu version="" id="org.eclipse.tptp.platform.jakarta.log4j.feature.group"/>
-<iu version="" id="org.eclipse.emf.ecore.feature.group"/>
-<iu version="" id="org.eclipse.emf.feature.group"/>
-<iu version="" id="org.eclipse.emf.codegen.feature.group"/>
-<iu version="" id="org.eclipse.emf.common.feature.group"/>
-<iu version="" id="org.eclipse.emf.databinding.feature.group"/>
-<iu version="" id="org.eclipse.emf.codegen.ecore.feature.group"/>
-<iu version="" id="org.eclipse.emf.ecore.edit.feature.group"/>
-<iu version="" id="org.eclipse.emf.ecore.editor.feature.group"/>
-<iu version="" id="org.eclipse.emf.ecore.feature.group"/>
-<iu version="" id="org.eclipse.emf.edit.feature.group"/>
-<iu version="" id="org.eclipse.xsd.edit.feature.group"/>
-<iu version="" id="org.eclipse.xsd.feature.group"/>
-<iu version="" id="org.eclipse.swtbot.eclipse.feature.group"/>
-<iu version="" id="org.eclipse.swtbot.eclipse.gef.feature.group"/>
-<iu version="" id="org.eclipse.swtbot.ide.feature.group"/>
-<iu version="" id="org.eclipse.swtbot.eclipse.test.junit4.feature.group"/>
-<iu version="" id="org.eclipse.swtbot.feature.group"/>
-<iu version="" id="org.eclipse.birt.osgi.runtime.sdk.feature.group"/>
-<iu version="" id="org.eclipse.birt.feature.group"/>
-<iu version="" id="org.eclipse.birt.integration.wtp.feature.group"/>
-<iu version="" id="org.eclipse.birt.chart.feature.group"/>
-<iu version="" id="org.eclipse.birt.chart.integration.wtp.feature.group"/>
-<iu version="" id="com.ibm.icu.base.feature.group"/>
-<iu version="" id="org.eclipse.equinox.server.core.feature.group"/>
-<iu version="" id="org.eclipse.cvs.feature.group"/>
-<iu version="" id="org.eclipse.help.feature.group"/>
-<iu version="" id="org.eclipse.jdt.feature.group"/>
-<iu version="" id="org.eclipse.platform.feature.group"/>
-<iu version="" id="org.eclipse.platform.ide"/>
-<iu version="" id="org.eclipse.equinox.executable.feature.group"/>
-<iu version="" id="org.eclipse.platform.sdk"/>
-<iu version="" id="org.eclipse.pde.feature.group"/>
-<iu version="" id="org.eclipse.sdk.feature.group"/>
-<iu version="" id="org.eclipse.rcp.id"/>
-<iu version="" id="org.eclipse.rcp.sdk.id"/>
-<iu version="" id="org.eclipse.releng.tools.feature.group"/>
-<iu version="" id="org.eclipse.sdk.ide"/>
-<iu version="" id="org.eclipse.sdk.examples.feature.group"/>
-<iu version="" id="org.eclipse.sdk.examples.source.feature.group"/>
-<iu version="" id="org.eclipse.equinox.compendium.sdk.feature.group"/>
-<iu version="" id="org.eclipse.equinox.core.sdk.feature.group"/>
-<iu version="" id="org.eclipse.equinox.p2.discovery.feature.feature.group"/>
-<iu version="" id="org.eclipse.equinox.p2.user.ui.feature.group"/>
-<iu version="" id="org.eclipse.equinox.p2.sdk.feature.group"/>
-<iu version="" id="org.eclipse.equinox.serverside.sdk.feature.group"/>
-<iu version="" id="org.eclipse.equinox.sdk.feature.group"/>
-<iu version="" id="org.eclipse.equinox.weaving.sdk.feature.group"/>
-<iu version="" id="org.eclipse.equinox.server.jetty.feature.group"/>
-<iu version="" id="org.eclipse.equinox.server.p2.feature.group"/>
-<iu version="" id="org.eclipse.pde.api.tools.ee.fragments.feature.group"/>
-<iu version="" id="org.eclipse.equinox.p2.ui.admin.rcp.product"/>
-<iu version="" id="org.eclipse.equinox.server.servletbridge.feature.group"/>
-<iu version="" id="org.eclipse.equinox.server.simple.feature.group"/>
-<iu version="" id="org.eclipse.rcp.feature.group"/>
-<iu version="" id="org.eclipse.birt.feature.group"/>
-<iu version="" id="org.eclipse.datatools.connectivity.feature.feature.group"/>
-<iu version="" id="org.eclipse.datatools.enablement.feature.feature.group"/>
-<iu version="" id="org.eclipse.datatools.sdk.feature.feature.group"/>
-<iu version="" id="org.eclipse.datatools.enablement.jdt.feature.feature.group"/>
-<iu version="" id="org.eclipse.datatools.modelbase.feature.feature.group"/>
-<iu version="" id="org.eclipse.datatools.enablement.apache.derby.feature.feature.group"/>
-<iu version="" id="org.eclipse.draw2d.feature.group"/>
-<iu version="" id="org.eclipse.gef.feature.group"/>
-<iu version="" id="org.eclipse.zest.feature.group"/>
-<iu version="" id="org.eclipse.uml2.feature.group"/>
-<iu version="" id="org.eclipse.rse.feature.group"/>
-<iu version="" id="org.eclipse.jst.jee"/>
-<iu version="" id="org.eclipse.wst.common.frameworks"/>
-<iu version="" id="org.eclipse.wst.common.project.facet.ui"/>
-<iu version="" id="org.eclipse.jst.jee.web"/>
-<iu version="" id="org.eclipse.jst.common.fproj.enablement.jdt.feature.group"/>
-<iu version="" id="org.eclipse.jst.ws.axis2tools.feature.feature.group"/>
-<iu version="" id="org.eclipse.jst.ws.cxf.feature.feature.group"/>
-<iu version="" id="org.eclipse.jpt.feature.feature.group"/>
-<iu version="" id="org.eclipse.wst.common.fproj.feature.group"/>
-<iu version="" id="org.eclipse.jst.enterprise_ui.feature.feature.group"/>
-<iu version="" id="org.eclipse.wst.web_ui.feature.feature.group"/>
-<iu version="" id="org.eclipse.wst.xml_ui.feature.feature.group"/>
-<iu version="" id="org.eclipse.wst.xsl.feature.feature.group"/>
-<iu version="" id="org.eclipse.wst.jsdt.feature.feature.group"/>
-<iu version="" id="org.eclipse.jsf.feature.feature.group"/>
-<iu version="" id="org.eclipse.jst.ws.jaxws.dom.feature.feature.group"/>
-<iu version="" id="org.eclipse.jst.ws.jaxws.feature.feature.group"/>
-<iu version="" id="org.eclipse.jst.enterprise_core.feature.feature.group"/>
-<iu version="" id="org.eclipse.jst.server_adapters.ext.feature.feature.group"/>
-<iu version="" id="org.eclipse.jst.server_adapters.feature.feature.group"/>
-<iu version="" id="org.eclipse.jst.server_core.feature.feature.group"/>
-<iu version="" id="org.eclipse.jst.server_ui.feature.feature.group"/>
-<iu version="" id="org.eclipse.jst.web_ui.feature.feature.group"/>
-<iu version="" id="org.eclipse.jsf.feature.source.feature.group"/>
-<iu version="" id="org.eclipse.wst.xml.xpath2.processor.feature.feature.group"/>
-<iu version="" id="org.eclipse.jst.webpageeditor.feature.feature.group"/>
-<iu version="" id="org.eclipse.wst.ws_wsdl15.feature.feature.group"/>
-<iu version="" id="org.eclipse.wst.common_core.feature.feature.group"/>
-<iu version="" id="org.eclipse.wst.common_ui.feature.feature.group"/>
-<iu version="" id="org.eclipse.wst.server_adapters.feature.feature.group"/>
-<iu version="" id="org.eclipse.wst.server_core.feature.feature.group"/>
-<iu version="" id="org.eclipse.wst.server_ui.feature.feature.group"/>
-<iu version="" id="org.eclipse.wst.web_core.feature.feature.group"/>
-<iu version="" id="org.eclipse.wst.ws_ui.feature.feature.group"/>
-<iu version="" id="org.eclipse.wst.xml_core.feature.feature.group"/>
-<iu version="" id="com.google.gdt.eclipse.suite.e36.feature.feature.group"/>
-<iu version="" id="com.google.gwt.eclipse.sdkbundle.e36.feature.2.1.0.feature.group"/>
-<iu version="" id="org.drools.eclipse.feature.feature.group"/>
-<iu version="" id="org.drools.eclipse.task.feature.feature.group"/>
-<iu version="" id="org.guvnor.tools.feature.feature.group"/>
-<iu version="" id="org.mozilla.xulrunner.feature.feature.group"/>
-<iu version="" id="org.mozilla.xpcom.feature.feature.group"/>
+<iu id="org.maven.ide.eclipse.feature.feature.group" version=""/>
+<iu id="org.maven.ide.eclipse.wtp.feature.feature.group" version=""/>
+<iu id="javax.wsdl.feature.feature.group" version=""/>
+<iu id="org.apache.oro.feature.feature.group" version=""/>
+<iu id="org.jdom.feature.feature.group" version=""/>
+<iu id="org.mozilla.xulrunner.feature.feature.group" version=""/>
+<iu id="org.mozilla.xpcom.feature.feature.group" version=""/>
+<iu id="org.eclipse.tptp.platform.profile.server.feature.group" version=""/>
+<iu id="org.eclipse.tptp.platform.instrumentation.ui.feature.group" version=""/>
+<iu id="org.eclipse.tptp.platform.core.feature.group" version=""/>
+<iu id="org.eclipse.tptp.platform.jvmti.feature.group" version=""/>
+<iu id="org.eclipse.tptp.platform.trace.feature.group" version=""/>
+<iu id="org.eclipse.tptp.platform.xerces.feature.group" version=""/>
+<iu id="org.eclipse.tptp.platform.instrumentation.ui.feature.group" version=""/>
+<iu id="org.eclipse.tptp.platform.probekit.feature.group" version=""/>
+<iu id="org.eclipse.tptp.platform.commons.logging.feature.group" version=""/>
+<iu id="org.eclipse.tptp.platform.jakarta.log4j.feature.group" version=""/>
+<iu id="org.eclipse.emf.ecore.feature.group" version=""/>
+<iu id="org.eclipse.emf.feature.group" version=""/>
+<iu id="org.eclipse.emf.codegen.feature.group" version=""/>
+<iu id="org.eclipse.emf.common.feature.group" version=""/>
+<iu id="org.eclipse.emf.databinding.feature.group" version=""/>
+<iu id="org.eclipse.emf.codegen.ecore.feature.group" version=""/>
+<iu id="org.eclipse.emf.ecore.edit.feature.group" version=""/>
+<iu id="org.eclipse.emf.ecore.editor.feature.group" version=""/>
+<iu id="org.eclipse.emf.ecore.feature.group" version=""/>
+<iu id="org.eclipse.emf.edit.feature.group" version=""/>
+<iu id="org.eclipse.xsd.edit.feature.group" version=""/>
+<iu id="org.eclipse.xsd.feature.group" version=""/>
+<iu id="org.eclipse.swtbot.eclipse.feature.group" version=""/>
+<iu id="org.eclipse.swtbot.eclipse.gef.feature.group" version=""/>
+<iu id="org.eclipse.swtbot.ide.feature.group" version=""/>
+<iu id="org.eclipse.swtbot.eclipse.test.junit4.feature.group" version=""/>
+<iu id="org.eclipse.swtbot.feature.group" version=""/>
+<iu id="org.eclipse.birt.osgi.runtime.sdk.feature.group" version=""/>
+<iu id="org.eclipse.birt.feature.group" version=""/>
+<iu id="org.eclipse.birt.integration.wtp.feature.group" version=""/>
+<iu id="org.eclipse.birt.chart.feature.group" version=""/>
+<iu id="org.eclipse.birt.chart.integration.wtp.feature.group" version=""/>
+<iu id="com.ibm.icu.base.feature.group" version=""/>
+<iu id="org.eclipse.equinox.server.core.feature.group" version=""/>
+<iu id="org.eclipse.cvs.feature.group" version=""/>
+<iu id="org.eclipse.help.feature.group" version=""/>
+<iu id="org.eclipse.jdt.feature.group" version=""/>
+<iu id="org.eclipse.platform.feature.group" version=""/>
+<iu id="org.eclipse.platform.ide" version=""/>
+<iu id="org.eclipse.equinox.executable.feature.group" version=""/>
+<iu id="org.eclipse.platform.sdk" version=""/>
+<iu id="org.eclipse.pde.feature.group" version=""/>
+<iu id="org.eclipse.sdk.feature.group" version=""/>
+<iu id="org.eclipse.rcp.id" version=""/>
+<iu id="org.eclipse.rcp.sdk.id" version=""/>
+<iu id="org.eclipse.releng.tools.feature.group" version=""/>
+<iu id="org.eclipse.sdk.ide" version=""/>
+<iu id="org.eclipse.sdk.examples.feature.group" version=""/>
+<iu id="org.eclipse.sdk.examples.source.feature.group" version=""/>
+<iu id="org.eclipse.equinox.compendium.sdk.feature.group" version=""/>
+<iu id="org.eclipse.equinox.core.sdk.feature.group" version=""/>
+<iu id="org.eclipse.equinox.p2.discovery.feature.feature.group" version=""/>
+<iu id="org.eclipse.equinox.p2.user.ui.feature.group" version=""/>
+<iu id="org.eclipse.equinox.p2.sdk.feature.group" version=""/>
+<iu id="org.eclipse.equinox.serverside.sdk.feature.group" version=""/>
+<iu id="org.eclipse.equinox.sdk.feature.group" version=""/>
+<iu id="org.eclipse.equinox.weaving.sdk.feature.group" version=""/>
+<iu id="org.eclipse.equinox.server.jetty.feature.group" version=""/>
+<iu id="org.eclipse.equinox.server.p2.feature.group" version=""/>
+<iu id="org.eclipse.pde.api.tools.ee.fragments.feature.group" version=""/>
+<iu id="org.eclipse.equinox.p2.ui.admin.rcp.product" version=""/>
+<iu id="org.eclipse.equinox.server.servletbridge.feature.group" version=""/>
+<iu id="org.eclipse.equinox.server.simple.feature.group" version=""/>
+<iu id="org.eclipse.rcp.feature.group" version=""/>
+<iu id="org.eclipse.birt.feature.group" version=""/>
+<iu id="org.eclipse.datatools.connectivity.feature.feature.group" version=""/>
+<iu id="org.eclipse.datatools.enablement.feature.feature.group" version=""/>
+<iu id="org.eclipse.datatools.sdk.feature.feature.group" version=""/>
+<iu id="org.eclipse.datatools.enablement.jdt.feature.feature.group" version=""/>
+<iu id="org.eclipse.datatools.modelbase.feature.feature.group" version=""/>
+<iu id="org.eclipse.datatools.enablement.apache.derby.feature.feature.group" version=""/>
+<iu id="org.eclipse.draw2d.feature.group" version=""/>
+<iu id="org.eclipse.gef.feature.group" version=""/>
+<iu id="org.eclipse.zest.feature.group" version=""/>
+<iu id="org.eclipse.uml2.feature.group" version=""/>
+<iu id="org.eclipse.rse.feature.group" version=""/>
+<iu id="org.eclipse.jst.jee" version=""/>
+<iu id="org.eclipse.wst.common.frameworks" version=""/>
+<iu id="org.eclipse.wst.common.project.facet.ui" version=""/>
+<iu id="org.eclipse.jst.jee.web" version=""/>
+<iu id="org.eclipse.jst.common.fproj.enablement.jdt.feature.group" version=""/>
+<iu id="org.eclipse.jst.ws.axis2tools.feature.feature.group" version=""/>
+<iu id="org.eclipse.jst.ws.cxf.feature.feature.group" version=""/>
+<iu id="org.eclipse.jpt.feature.feature.group" version=""/>
+<iu id="org.eclipse.wst.common.fproj.feature.group" version=""/>
+<iu id="org.eclipse.jst.enterprise_ui.feature.feature.group" version=""/>
+<iu id="org.eclipse.wst.web_ui.feature.feature.group" version=""/>
+<iu id="org.eclipse.wst.xml_ui.feature.feature.group" version=""/>
+<iu id="org.eclipse.wst.xsl.feature.feature.group" version=""/>
+<iu id="org.eclipse.wst.jsdt.feature.feature.group" version=""/>
+<iu id="org.eclipse.jsf.feature.feature.group" version=""/>
+<iu id="org.eclipse.jst.ws.jaxws.dom.feature.feature.group" version=""/>
+<iu id="org.eclipse.jst.ws.jaxws.feature.feature.group" version=""/>
+<iu id="org.eclipse.jst.enterprise_core.feature.feature.group" version=""/>
+<iu id="org.eclipse.jst.server_adapters.ext.feature.feature.group" version=""/>
+<iu id="org.eclipse.jst.server_adapters.feature.feature.group" version=""/>
+<iu id="org.eclipse.jst.server_core.feature.feature.group" version=""/>
+<iu id="org.eclipse.jst.server_ui.feature.feature.group" version=""/>
+<iu id="org.eclipse.jst.web_ui.feature.feature.group" version=""/>
+<iu id="org.eclipse.jsf.feature.source.feature.group" version=""/>
+<iu id="org.eclipse.wst.xml.xpath2.processor.feature.feature.group" version=""/>
+<iu id="org.eclipse.jst.webpageeditor.feature.feature.group" version=""/>
+<iu id="org.eclipse.wst.ws_wsdl15.feature.feature.group" version=""/>
+<iu id="org.eclipse.wst.common_core.feature.feature.group" version=""/>
+<iu id="org.eclipse.wst.common_ui.feature.feature.group" version=""/>
+<iu id="org.eclipse.wst.server_adapters.feature.feature.group" version=""/>
+<iu id="org.eclipse.wst.server_core.feature.feature.group" version=""/>
+<iu id="org.eclipse.wst.server_ui.feature.feature.group" version=""/>
+<iu id="org.eclipse.wst.web_core.feature.feature.group" version=""/>
+<iu id="org.eclipse.wst.ws_ui.feature.feature.group" version=""/>
+<iu id="org.eclipse.wst.xml_core.feature.feature.group" version=""/>
+<iu id="com.google.gdt.eclipse.suite.e36.feature.feature.group" version=""/>
+<iu id="com.google.gwt.eclipse.sdkbundle.e36.feature.2.1.0.feature.group" version=""/>
+<iu id="org.drools.eclipse.feature.feature.group" version=""/>
+<iu id="org.drools.eclipse.task.feature.feature.group" version=""/>
+<iu id="org.guvnor.tools.feature.feature.group" version=""/>
+<iu id="org.mozilla.xulrunner.feature.feature.group" version=""/>
+<iu id="org.mozilla.xpcom.feature.feature.group" version=""/>
</p2.mirror>
</target>
</project>
Modified: trunk/build/target-platform/unified.target
===================================================================
--- trunk/build/target-platform/unified.target 2010-11-10 23:22:36 UTC (rev 26440)
+++ trunk/build/target-platform/unified.target 2010-11-10 23:22:42 UTC (rev 26441)
@@ -8,11 +8,11 @@
-->
<locations>
<location includeAllPlatforms="false" includeMode="planner" type="InstallableUnit">
- <unit version="0.10.2.20100623-1649" id="org.maven.ide.eclipse.feature.feature.group"/>
+ <unit id="org.maven.ide.eclipse.feature.feature.group" version="0.10.2.20100623-1649"/>
<repository location="http://download.jboss.org/jbosstools/updates/target-platform/latest/"/>
</location>
<location includeAllPlatforms="false" includeMode="planner" type="InstallableUnit">
- <unit version="0.11.0.20101024-0955" id="org.maven.ide.eclipse.wtp.feature.feature.group"/>
+ <unit id="org.maven.ide.eclipse.wtp.feature.feature.group" version="0.11.0.20101024-0955"/>
<repository location="http://download.jboss.org/jbosstools/updates/target-platform/latest/"/>
</location>
<location includeAllPlatforms="false" includeMode="planner" type="InstallableUnit">
@@ -34,9 +34,9 @@
<repository location="http://download.jboss.org/jbosstools/updates/target-platform/latest/"/>
</location>
<location includeAllPlatforms="false" includeMode="planner" type="InstallableUnit">
- <unit version="1.6.2.v201005080631" id="javax.wsdl.feature.feature.group"/>
- <unit version="2.0.8.v201005080400" id="org.apache.oro.feature.feature.group"/>
- <unit version="1.0.0.v201005080400" id="org.jdom.feature.feature.group"/>
+ <unit id="javax.wsdl.feature.feature.group" version="1.6.2.v201005080631"/>
+ <unit id="org.apache.oro.feature.feature.group" version="2.0.8.v201005080400"/>
+ <unit id="org.jdom.feature.feature.group" version="1.0.0.v201005080400"/>
<repository location="http://download.jboss.org/jbosstools/updates/target-platform/latest/"/>
</location>
<!-- <location includeAllPlatforms="false" includeMode="planner" type="InstallableUnit">
@@ -45,105 +45,105 @@
<repository location="http://download.jboss.org/jbosstools/updates/requirements/xulrunner-1.9.2/"/>
</location> -->
<location includeAllPlatforms="false" includeMode="planner" type="InstallableUnit">
- <unit version="1.9.12.v20100909-1551-H34-M2" id="org.mozilla.xulrunner.feature.feature.group"/>
- <unit version="1.9.12.v20100909-1551-H34-M2" id="org.mozilla.xpcom.feature.feature.group"/>
+ <unit id="org.mozilla.xulrunner.feature.feature.group" version="1.9.12.v20100909-1551-H34-M2"/>
+ <unit id="org.mozilla.xpcom.feature.feature.group" version="1.9.12.v20100909-1551-H34-M2"/>
<repository location="http://download.jboss.org/jbosstools/updates/target-platform/latest/"/>
</location>
<location includeAllPlatforms="false" includeMode="planner" type="InstallableUnit">
<repository location="http://download.jboss.org/jbosstools/updates/target-platform/latest/"/>
</location>
<location includeAllPlatforms="false" includeMode="planner" type="InstallableUnit">
- <unit version="4.5.1.v201009092123-7H7F2AkF7B77c7dEGDG" id="org.eclipse.tptp.platform.profile.server.feature.group"/>
- <unit version="4.3.1.v201009092123-797908s73533D4H6D56" id="org.eclipse.tptp.platform.instrumentation.ui.feature.group"/>
- <unit version="4.7.1.v201009092123-8X8ZFXUFLWUl6knOxRCm9t" id="org.eclipse.tptp.platform.core.feature.group"/>
- <unit version="4.5.1.v201009092123-797A18s73533L4F6D6D" id="org.eclipse.tptp.platform.jvmti.feature.group"/>
- <unit version="4.5.1.v201009092123-7L7O8bBgJ9E99jAfGWEM" id="org.eclipse.tptp.platform.trace.feature.group"/>
- <unit version="4.6.0.v201005032111-777K4AkF7B77R7c7N77" id="org.eclipse.tptp.platform.xerces.feature.group"/>
- <unit version="4.3.1.v201009092123-797908s73533D4H6D56" id="org.eclipse.tptp.platform.instrumentation.ui.feature.group"/>
- <unit version="4.5.1.v201009092123-7H7BF8PAkF7B77ZARCNEK" id="org.eclipse.tptp.platform.probekit.feature.group"/>
- <unit version="4.5.0.v201005032111-2-37w312116191612" id="org.eclipse.tptp.platform.commons.logging.feature.group"/>
- <unit version="4.5.0.v201005032111-217E7w312116191611" id="org.eclipse.tptp.platform.jakarta.log4j.feature.group"/>
+ <unit id="org.eclipse.tptp.platform.profile.server.feature.group" version="4.5.1.v201009092123-7H7F2AkF7B77c7dEGDG"/>
+ <unit id="org.eclipse.tptp.platform.instrumentation.ui.feature.group" version="4.3.1.v201009092123-797908s73533D4H6D56"/>
+ <unit id="org.eclipse.tptp.platform.core.feature.group" version="4.7.1.v201009092123-8X8ZFXUFLWUl6knOxRCm9t"/>
+ <unit id="org.eclipse.tptp.platform.jvmti.feature.group" version="4.5.1.v201009092123-797A18s73533L4F6D6D"/>
+ <unit id="org.eclipse.tptp.platform.trace.feature.group" version="4.5.1.v201009092123-7L7O8bBgJ9E99jAfGWEM"/>
+ <unit id="org.eclipse.tptp.platform.xerces.feature.group" version="4.6.0.v201005032111-777K4AkF7B77R7c7N77"/>
+ <unit id="org.eclipse.tptp.platform.instrumentation.ui.feature.group" version="4.3.1.v201009092123-797908s73533D4H6D56"/>
+ <unit id="org.eclipse.tptp.platform.probekit.feature.group" version="4.5.1.v201009092123-7H7BF8PAkF7B77ZARCNEK"/>
+ <unit id="org.eclipse.tptp.platform.commons.logging.feature.group" version="4.5.0.v201005032111-2-37w312116191612"/>
+ <unit id="org.eclipse.tptp.platform.jakarta.log4j.feature.group" version="4.5.0.v201005032111-217E7w312116191611"/>
<repository location="http://download.jboss.org/jbosstools/updates/target-platform/latest/"/>
</location>
<location includeAllPlatforms="false" includeMode="planner" type="InstallableUnit">
- <unit version="2.6.1.v20100914-1218" id="org.eclipse.emf.ecore.feature.group"/>
- <unit version="2.6.1.v20100914-1218" id="org.eclipse.emf.feature.group"/>
- <unit version="2.6.0.v20100914-1218" id="org.eclipse.emf.codegen.feature.group"/>
- <unit version="2.6.0.v20100914-1218" id="org.eclipse.emf.common.feature.group"/>
- <unit version="1.2.0.v20100914-1218" id="org.eclipse.emf.databinding.feature.group"/>
- <unit version="2.6.1.v20100914-1218" id="org.eclipse.emf.codegen.ecore.feature.group"/>
- <unit version="2.6.0.v20100914-1218" id="org.eclipse.emf.ecore.edit.feature.group"/>
- <unit version="2.6.0.v20100914-1218" id="org.eclipse.emf.ecore.editor.feature.group"/>
- <unit version="2.6.1.v20100914-1218" id="org.eclipse.emf.ecore.feature.group"/>
- <unit version="2.6.0.v20100914-1218" id="org.eclipse.emf.edit.feature.group"/>
- <unit version="2.6.0.v20100914-1218" id="org.eclipse.xsd.edit.feature.group"/>
- <unit version="2.6.0.v20100914-1218" id="org.eclipse.xsd.feature.group"/>
+ <unit id="org.eclipse.emf.ecore.feature.group" version="2.6.1.v20100914-1218"/>
+ <unit id="org.eclipse.emf.feature.group" version="2.6.1.v20100914-1218"/>
+ <unit id="org.eclipse.emf.codegen.feature.group" version="2.6.0.v20100914-1218"/>
+ <unit id="org.eclipse.emf.common.feature.group" version="2.6.0.v20100914-1218"/>
+ <unit id="org.eclipse.emf.databinding.feature.group" version="1.2.0.v20100914-1218"/>
+ <unit id="org.eclipse.emf.codegen.ecore.feature.group" version="2.6.1.v20100914-1218"/>
+ <unit id="org.eclipse.emf.ecore.edit.feature.group" version="2.6.0.v20100914-1218"/>
+ <unit id="org.eclipse.emf.ecore.editor.feature.group" version="2.6.0.v20100914-1218"/>
+ <unit id="org.eclipse.emf.ecore.feature.group" version="2.6.1.v20100914-1218"/>
+ <unit id="org.eclipse.emf.edit.feature.group" version="2.6.0.v20100914-1218"/>
+ <unit id="org.eclipse.xsd.edit.feature.group" version="2.6.0.v20100914-1218"/>
+ <unit id="org.eclipse.xsd.feature.group" version="2.6.0.v20100914-1218"/>
<repository location="http://download.jboss.org/jbosstools/updates/target-platform/latest/"/>
</location>
<location includeAllPlatforms="false" includeMode="planner" type="InstallableUnit">
- <unit version="2.0.0.595-dev-e36" id="org.eclipse.swtbot.eclipse.feature.group"/>
- <unit version="2.0.0.595-dev-e36" id="org.eclipse.swtbot.eclipse.gef.feature.group"/>
- <unit version="2.0.0.595-dev-e36" id="org.eclipse.swtbot.ide.feature.group"/>
- <unit version="2.0.0.595-dev-e36" id="org.eclipse.swtbot.eclipse.test.junit4.feature.group"/>
- <unit version="2.0.0.595-dev-e36" id="org.eclipse.swtbot.feature.group"/>
+ <unit id="org.eclipse.swtbot.eclipse.feature.group" version="2.0.0.595-dev-e36"/>
+ <unit id="org.eclipse.swtbot.eclipse.gef.feature.group" version="2.0.0.595-dev-e36"/>
+ <unit id="org.eclipse.swtbot.ide.feature.group" version="2.0.0.595-dev-e36"/>
+ <unit id="org.eclipse.swtbot.eclipse.test.junit4.feature.group" version="2.0.0.595-dev-e36"/>
+ <unit id="org.eclipse.swtbot.feature.group" version="2.0.0.595-dev-e36"/>
<repository location="http://download.jboss.org/jbosstools/updates/target-platform/latest/"/>
</location>
<location includeAllPlatforms="false" includeMode="planner" type="InstallableUnit">
- <unit version="2.6.1.v20100617a-57B185wFfAqPz0Ef8mBsMkG-0hfS" id="org.eclipse.birt.osgi.runtime.sdk.feature.group"/>
- <unit version="2.6.1.v20100709a-9iF7A8FGLY4z0pxX3ORrsdrp6JXb" id="org.eclipse.birt.feature.group"/>
- <unit version="2.6.1.v20100915-1750-35-7w31211A2602861" id="org.eclipse.birt.integration.wtp.feature.group"/>
- <unit version="2.6.1.v20100709-7f9T7DFQCnv8nz0gRMa6NG1" id="org.eclipse.birt.chart.feature.group"/>
- <unit version="2.6.1.v20100915-1750-3507w31211A2602861" id="org.eclipse.birt.chart.integration.wtp.feature.group"/>
+ <unit id="org.eclipse.birt.osgi.runtime.sdk.feature.group" version="2.6.1.v20100617a-57B185wFfAqPz0Ef8mBsMkG-0hfS"/>
+ <unit id="org.eclipse.birt.feature.group" version="2.6.1.v20100709a-9iF7A8FGLY4z0pxX3ORrsdrp6JXb"/>
+ <unit id="org.eclipse.birt.integration.wtp.feature.group" version="2.6.1.v20100915-1750-35-7w31211A2602861"/>
+ <unit id="org.eclipse.birt.chart.feature.group" version="2.6.1.v20100709-7f9T7DFQCnv8nz0gRMa6NG1"/>
+ <unit id="org.eclipse.birt.chart.integration.wtp.feature.group" version="2.6.1.v20100915-1750-3507w31211A2602861"/>
<repository location="http://download.jboss.org/jbosstools/updates/target-platform/latest/"/>
</location>
<location includeAllPlatforms="false" includeMode="planner" type="InstallableUnit">
- <unit version="1.1.0.v20090119-79318s73533B57" id="com.ibm.icu.base.feature.group"/>
- <unit version="1.0.0.v20100510-7K7QErDzbb9z-yqHb55T7I" id="org.eclipse.equinox.server.core.feature.group"/>
- <unit version="1.2.0.v20100427-7B77FKt90GE5h0SBT5FV9A01911" id="org.eclipse.cvs.feature.group"/>
- <unit version="1.2.0.v20100427-7e7jEQFEp4jsWcboLU9l93" id="org.eclipse.help.feature.group"/>
- <unit version="3.6.1.r361_v20100714-0800-7z8XFUSFLFlmgLc5z-Bvrt8-HVkH" id="org.eclipse.jdt.feature.group"/>
- <unit version="3.6.1.r361_v20100909-9gF78GrkFqw7GrsZnvz0JWNTeb6fue6896L" id="org.eclipse.platform.feature.group"/>
- <unit version="3.6.1.M20100909-0800" id="org.eclipse.platform.ide"/>
- <unit version="3.4.1.R36x_v20100823-7M7K7JF90dnJ-WLf3cf4yi" id="org.eclipse.equinox.executable.feature.group"/>
- <unit version="3.6.1.M20100909-0800" id="org.eclipse.platform.sdk"/>
- <unit version="3.6.1.r361_v20100727-7b7mFL-FET3dhESDgE5_bkJ" id="org.eclipse.pde.feature.group"/>
- <unit version="3.6.1.r361_v20100714-0800-7Q7m6DDaKf5o2z-L9LxPSe6ygafz-KKIqk1rr_3j4dn7J" id="org.eclipse.sdk.feature.group"/>
- <unit version="3.6.0.M20100909-0800" id="org.eclipse.rcp.id"/>
- <unit version="3.6.0.M20100909-0800" id="org.eclipse.rcp.sdk.id"/>
- <unit version="3.3.0.v20100427-44A77w31211642" id="org.eclipse.releng.tools.feature.group"/>
- <unit version="3.6.1.M20100909-0800" id="org.eclipse.sdk.ide"/>
- <unit version="3.3.0.v20100527-817fFcfFEdcVcRZlgyBRcVX" id="org.eclipse.sdk.examples.feature.group"/>
- <unit version="3.3.0.v20100527" id="org.eclipse.sdk.examples.source.feature.group"/>
- <unit version="3.6.0.v20100421-7V7RFiwFLSgEt4Pctn77c7J" id="org.eclipse.equinox.compendium.sdk.feature.group"/>
- <unit version="3.6.0.v20100603-7sF99FsHFTw8HQBta4g33J3F" id="org.eclipse.equinox.core.sdk.feature.group"/>
- <unit version="1.0.0.v20100510-4--9oB5855K7P" id="org.eclipse.equinox.p2.discovery.feature.feature.group"/>
- <unit version="2.0.1.r361_v20100903-897HFZFFZRuSD2LMtVxyz0Vr" id="org.eclipse.equinox.p2.user.ui.feature.group"/>
- <unit version="3.6.0.v20100503-9I7VGAeG8tz-BY6jz0w2HLRYr" id="org.eclipse.equinox.p2.sdk.feature.group"/>
- <unit version="3.6.0.v20100421-7u7NFVgFN5JdPKPhDHd_6Yqc54uw" id="org.eclipse.equinox.serverside.sdk.feature.group"/>
- <unit version="3.6.1.r361_v20100903-7H7R07v8rtOZyYbv1I6aZgou5z07" id="org.eclipse.equinox.sdk.feature.group"/>
- <unit version="1.0.0.v20100421-79--EVVFNFFsFc" id="org.eclipse.equinox.weaving.sdk.feature.group"/>
- <unit version="1.0.0.v20100510-7I777iBgJ9DIARGH8IIQ" id="org.eclipse.equinox.server.jetty.feature.group"/>
- <unit version="1.0.0.v20100503-7x7IFGOFQ74dz0POCNUBjA6L" id="org.eclipse.equinox.server.p2.feature.group"/>
- <unit version="1.0.0.v20100427-7C-7BF9JgLWLMBMMAMsLL" id="org.eclipse.pde.api.tools.ee.fragments.feature.group"/>
- <unit version="1.1.0.M20100909-0800" id="org.eclipse.equinox.p2.ui.admin.rcp.product"/>
- <unit version="1.0.0.v20100510-42A79oB5855K5E" id="org.eclipse.equinox.server.servletbridge.feature.group"/>
- <unit version="1.0.0.v20100510-44DF8s734C48662444" id="org.eclipse.equinox.server.simple.feature.group"/>
- <unit version="3.6.1.r361_v20100827-9OArFLdFjY-ThSQXmKvKz0_T" id="org.eclipse.rcp.feature.group"/>
+ <unit id="com.ibm.icu.base.feature.group" version="1.1.0.v20090119-79318s73533B57"/>
+ <unit id="org.eclipse.equinox.server.core.feature.group" version="1.0.0.v20100510-7K7QErDzbb9z-yqHb55T7I"/>
+ <unit id="org.eclipse.cvs.feature.group" version="1.2.0.v20100427-7B77FKt90GE5h0SBT5FV9A01911"/>
+ <unit id="org.eclipse.help.feature.group" version="1.2.0.v20100427-7e7jEQFEp4jsWcboLU9l93"/>
+ <unit id="org.eclipse.jdt.feature.group" version="3.6.1.r361_v20100714-0800-7z8XFUSFLFlmgLc5z-Bvrt8-HVkH"/>
+ <unit id="org.eclipse.platform.feature.group" version="3.6.1.r361_v20100909-9gF78GrkFqw7GrsZnvz0JWNTeb6fue6896L"/>
+ <unit id="org.eclipse.platform.ide" version="3.6.1.M20100909-0800"/>
+ <unit id="org.eclipse.equinox.executable.feature.group" version="3.4.1.R36x_v20100823-7M7K7JF90dnJ-WLf3cf4yi"/>
+ <unit id="org.eclipse.platform.sdk" version="3.6.1.M20100909-0800"/>
+ <unit id="org.eclipse.pde.feature.group" version="3.6.1.r361_v20100727-7b7mFL-FET3dhESDgE5_bkJ"/>
+ <unit id="org.eclipse.sdk.feature.group" version="3.6.1.r361_v20100714-0800-7Q7m6DDaKf5o2z-L9LxPSe6ygafz-KKIqk1rr_3j4dn7J"/>
+ <unit id="org.eclipse.rcp.id" version="3.6.0.M20100909-0800"/>
+ <unit id="org.eclipse.rcp.sdk.id" version="3.6.0.M20100909-0800"/>
+ <unit id="org.eclipse.releng.tools.feature.group" version="3.3.0.v20100427-44A77w31211642"/>
+ <unit id="org.eclipse.sdk.ide" version="3.6.1.M20100909-0800"/>
+ <unit id="org.eclipse.sdk.examples.feature.group" version="3.3.0.v20100527-817fFcfFEdcVcRZlgyBRcVX"/>
+ <unit id="org.eclipse.sdk.examples.source.feature.group" version="3.3.0.v20100527"/>
+ <unit id="org.eclipse.equinox.compendium.sdk.feature.group" version="3.6.0.v20100421-7V7RFiwFLSgEt4Pctn77c7J"/>
+ <unit id="org.eclipse.equinox.core.sdk.feature.group" version="3.6.0.v20100603-7sF99FsHFTw8HQBta4g33J3F"/>
+ <unit id="org.eclipse.equinox.p2.discovery.feature.feature.group" version="1.0.0.v20100510-4--9oB5855K7P"/>
+ <unit id="org.eclipse.equinox.p2.user.ui.feature.group" version="2.0.1.r361_v20100903-897HFZFFZRuSD2LMtVxyz0Vr"/>
+ <unit id="org.eclipse.equinox.p2.sdk.feature.group" version="3.6.0.v20100503-9I7VGAeG8tz-BY6jz0w2HLRYr"/>
+ <unit id="org.eclipse.equinox.serverside.sdk.feature.group" version="3.6.0.v20100421-7u7NFVgFN5JdPKPhDHd_6Yqc54uw"/>
+ <unit id="org.eclipse.equinox.sdk.feature.group" version="3.6.1.r361_v20100903-7H7R07v8rtOZyYbv1I6aZgou5z07"/>
+ <unit id="org.eclipse.equinox.weaving.sdk.feature.group" version="1.0.0.v20100421-79--EVVFNFFsFc"/>
+ <unit id="org.eclipse.equinox.server.jetty.feature.group" version="1.0.0.v20100510-7I777iBgJ9DIARGH8IIQ"/>
+ <unit id="org.eclipse.equinox.server.p2.feature.group" version="1.0.0.v20100503-7x7IFGOFQ74dz0POCNUBjA6L"/>
+ <unit id="org.eclipse.pde.api.tools.ee.fragments.feature.group" version="1.0.0.v20100427-7C-7BF9JgLWLMBMMAMsLL"/>
+ <unit id="org.eclipse.equinox.p2.ui.admin.rcp.product" version="1.1.0.M20100909-0800"/>
+ <unit id="org.eclipse.equinox.server.servletbridge.feature.group" version="1.0.0.v20100510-42A79oB5855K5E"/>
+ <unit id="org.eclipse.equinox.server.simple.feature.group" version="1.0.0.v20100510-44DF8s734C48662444"/>
+ <unit id="org.eclipse.rcp.feature.group" version="3.6.1.r361_v20100827-9OArFLdFjY-ThSQXmKvKz0_T"/>
<repository location="http://download.jboss.org/jbosstools/updates/target-platform/latest/"/>
</location>
<location includeAllPlatforms="false" includeMode="planner" type="InstallableUnit">
- <unit version="2.6.1.v20100709a-9iF7A8FGLY4z0pxX3ORrsdrp6JXb" id="org.eclipse.birt.feature.group"/>
- <unit version="1.8.1.v20100618-7C7b8hEt1ZvtiLkdlO7BVoL_wm6" id="org.eclipse.datatools.connectivity.feature.feature.group"/>
- <unit version="1.8.1.v20100618-7J8x7FBWwUL6z-2z-fcrYC2s55KI" id="org.eclipse.datatools.enablement.feature.feature.group"/>
- <unit version="1.8.1.v20100618-7P9i7KFDxNYrp4cjPjqnPaRKxeyT" id="org.eclipse.datatools.sdk.feature.feature.group"/>
- <unit version="1.8.1.v20100618-2-07w31211518181A" id="org.eclipse.datatools.enablement.jdt.feature.feature.group"/>
- <unit version="1.8.1.v20100618-77078CcNBGKBZI_FcRd" id="org.eclipse.datatools.modelbase.feature.feature.group"/>
- <unit version="1.8.1.v20100618-77778eBmKDNOMgJvJ8Of7QBR" id="org.eclipse.datatools.enablement.apache.derby.feature.feature.group"/>
- <unit version="3.6.1.v20100908-1100-4507w31211A2403131" id="org.eclipse.draw2d.feature.group"/>
- <unit version="3.6.1.v20100908-1100-777B181A3Bz-6B663E7974242" id="org.eclipse.gef.feature.group"/>
- <unit version="1.2.0.v20100519-2050-67808yE5F-8HAH4HECF4242" id="org.eclipse.zest.feature.group"/>
- <unit version="3.1.1.v201008191505" id="org.eclipse.uml2.feature.group"/>
- <unit version="3.2.1.v201008191400-7L78FA-8wqbPcNj4qa8R0eViy7vZ" id="org.eclipse.rse.feature.group"/>
+ <unit id="org.eclipse.birt.feature.group" version="2.6.1.v20100709a-9iF7A8FGLY4z0pxX3ORrsdrp6JXb"/>
+ <unit id="org.eclipse.datatools.connectivity.feature.feature.group" version="1.8.1.v20100618-7C7b8hEt1ZvtiLkdlO7BVoL_wm6"/>
+ <unit id="org.eclipse.datatools.enablement.feature.feature.group" version="1.8.1.v20100618-7J8x7FBWwUL6z-2z-fcrYC2s55KI"/>
+ <unit id="org.eclipse.datatools.sdk.feature.feature.group" version="1.8.1.v20100618-7P9i7KFDxNYrp4cjPjqnPaRKxeyT"/>
+ <unit id="org.eclipse.datatools.enablement.jdt.feature.feature.group" version="1.8.1.v20100618-2-07w31211518181A"/>
+ <unit id="org.eclipse.datatools.modelbase.feature.feature.group" version="1.8.1.v20100618-77078CcNBGKBZI_FcRd"/>
+ <unit id="org.eclipse.datatools.enablement.apache.derby.feature.feature.group" version="1.8.1.v20100618-77778eBmKDNOMgJvJ8Of7QBR"/>
+ <unit id="org.eclipse.draw2d.feature.group" version="3.6.1.v20100908-1100-4507w31211A2403131"/>
+ <unit id="org.eclipse.gef.feature.group" version="3.6.1.v20100908-1100-777B181A3Bz-6B663E7974242"/>
+ <unit id="org.eclipse.zest.feature.group" version="1.2.0.v20100519-2050-67808yE5F-8HAH4HECF4242"/>
+ <unit id="org.eclipse.uml2.feature.group" version="3.1.1.v201008191505"/>
+ <unit id="org.eclipse.rse.feature.group" version="3.2.1.v201008191400-7L78FA-8wqbPcNj4qa8R0eViy7vZ"/>
<!-- SAVARA dependencies -->
<!-- <unit version="1.2.0.201006151053" id="org.eclipse.stp.bpmn.feature.feature.group"/>
<unit version="1.4.1.v20100909-1000-37708s73533F5C1479I" id="org.eclipse.gmf.runtime.notation.feature.group"/>
@@ -162,50 +162,50 @@
<repository location="http://download.jboss.org/jbosstools/updates/target-platform/latest/"/>
</location>
<location includeAllPlatforms="false" includeMode="planner" type="InstallableUnit">
- <unit version="1.0.301.v201007151900" id="org.eclipse.jst.jee"/>
- <unit version="1.2.0.v201003040800" id="org.eclipse.wst.common.frameworks"/>
- <unit version="1.4.102.v201008170019" id="org.eclipse.wst.common.project.facet.ui"/>
- <unit version="1.0.301.v201007070907" id="org.eclipse.jst.jee.web"/>
- <unit version="3.2.2.v201008170019-377AB8s73533J5J759F" id="org.eclipse.jst.common.fproj.enablement.jdt.feature.group"/>
+ <unit id="org.eclipse.jst.jee" version="1.0.301.v201007151900"/>
+ <unit id="org.eclipse.wst.common.frameworks" version="1.2.0.v201003040800"/>
+ <unit id="org.eclipse.wst.common.project.facet.ui" version="1.4.102.v201008170019"/>
+ <unit id="org.eclipse.jst.jee.web" version="1.0.301.v201007070907"/>
+ <unit id="org.eclipse.jst.common.fproj.enablement.jdt.feature.group" version="3.2.2.v201008170019-377AB8s73533J5J759F"/>
- <unit version="1.1.100.v201005241530-78-FF0DZRDKDDePSKwHj" id="org.eclipse.jst.ws.axis2tools.feature.feature.group"/>
- <unit version="1.0.2.v201008232129-7H777DFAKlRiOX8lGdRoz0878J" id="org.eclipse.jst.ws.cxf.feature.feature.group"/>
- <unit version="2.3.2.v201008242310-7N7UF75FD3wTgbUpoff0aT" id="org.eclipse.jpt.feature.feature.group"/>
- <unit version="3.2.2.v201008170019-377AB8s73533J5H335L" id="org.eclipse.wst.common.fproj.feature.group"/>
- <unit version="3.2.2.v201008190400-7b7GHf2FSK2WBLQ2D-mrubYEOrRh" id="org.eclipse.jst.enterprise_ui.feature.feature.group"/>
- <unit version="3.2.2.v201008100100-7O7CFbKEMf84nUlEJyX7-SPQjhYZ" id="org.eclipse.wst.web_ui.feature.feature.group"/>
- <unit version="3.2.2.v201008170029-7H7AFUQDxumQGOpBqffOY2f1qxDZ" id="org.eclipse.wst.xml_ui.feature.feature.group"/>
- <unit version="1.1.2.v201009091745-7S7WFAPFIpS-1-NbCE6tnacCXKP" id="org.eclipse.wst.xsl.feature.feature.group"/>
- <unit version="1.2.2.v201008170101-7C78FGMF9JgLWLMUUEMtXc" id="org.eclipse.wst.jsdt.feature.feature.group"/>
- <unit version="3.2.2.v201008231400-7E7I6F9JgLWLMUW3" id="org.eclipse.jsf.feature.feature.group"/>
- <unit version="1.0.0.v201005241530-5--AkF7B77NBZBgBg" id="org.eclipse.jst.ws.jaxws.dom.feature.feature.group"/>
- <unit version="1.0.1.v201008232129-7E777CF8NcJSSK-UBTwXn" id="org.eclipse.jst.ws.jaxws.feature.feature.group"/>
- <unit version="3.2.1.v201007070821-52FMTAkF7B77UBR7W98" id="org.eclipse.jst.enterprise_core.feature.feature.group"/>
- <unit version="3.2.2.v20100818b-777HFGRCcNBDiBjIbhBA8" id="org.eclipse.jst.server_adapters.ext.feature.feature.group"/>
- <unit version="3.2.0.v201005241530-208Z7w31211419" id="org.eclipse.jst.server_adapters.feature.feature.group"/>
- <unit version="3.2.0.v201005241530-31FA28s73533C66" id="org.eclipse.jst.server_core.feature.feature.group"/>
- <unit version="3.2.2.v20100908-7A5FEi9xFc7RCJMToAIOJC43A" id="org.eclipse.jst.server_ui.feature.feature.group"/>
- <unit version="3.2.2.v201008170029-7F77FJSC25Tkdy1nqglPjqLAoDgh" id="org.eclipse.jst.web_ui.feature.feature.group"/>
- <unit version="3.2.2.v201008231400-7E7I6F9JgLWLMUW3" id="org.eclipse.jsf.feature.source.feature.group"/>
- <unit version="1.1.5.v201009091745-67K2BgJ9DIAXCbBWJO" id="org.eclipse.wst.xml.xpath2.processor.feature.feature.group"/>
- <unit version="2.3.1.v20100906-4609oB5855L6N" id="org.eclipse.jst.webpageeditor.feature.feature.group"/>
- <unit version="1.5.300.v201005241450-2407w312116191741" id="org.eclipse.wst.ws_wsdl15.feature.feature.group"/>
- <unit version="3.2.2.v201008091400-7B7DFElF7RZHOZJ6W0PsNJ" id="org.eclipse.wst.common_core.feature.feature.group"/>
- <unit version="3.2.2.v201008091400-7C78FPhEdhO_mXde7kbap_K7X1Qt" id="org.eclipse.wst.common_ui.feature.feature.group"/>
- <unit version="3.2.0.v201005241510-51EoAkF77g8HBSc" id="org.eclipse.wst.server_adapters.feature.feature.group"/>
- <unit version="3.2.2.v20100908-30F8V8s734C3I3K" id="org.eclipse.wst.server_core.feature.feature.group"/>
- <unit version="3.2.2.v20100908-7B4FBrAtJb1nESKmCJHPGQ347" id="org.eclipse.wst.server_ui.feature.feature.group"/>
- <unit version="3.2.2.v201008100100-7E7AFHwAJrn5PM15pUYBwJLkSG8j" id="org.eclipse.wst.web_core.feature.feature.group"/>
- <unit version="3.2.2.v201008211705-7I78FZFEtEoO2c5BlJ4jPNvNC-yS" id="org.eclipse.wst.ws_ui.feature.feature.group"/>
- <unit version="3.2.2.v201008170029-7C7OFXYF7RZHQHI5PyJwPT" id="org.eclipse.wst.xml_core.feature.feature.group"/>
+ <unit id="org.eclipse.jst.ws.axis2tools.feature.feature.group" version="1.1.100.v201005241530-78-FF0DZRDKDDePSKwHj"/>
+ <unit id="org.eclipse.jst.ws.cxf.feature.feature.group" version="1.0.2.v201008232129-7H777DFAKlRiOX8lGdRoz0878J"/>
+ <unit id="org.eclipse.jpt.feature.feature.group" version="2.3.2.v201008242310-7N7UF75FD3wTgbUpoff0aT"/>
+ <unit id="org.eclipse.wst.common.fproj.feature.group" version="3.2.2.v201008170019-377AB8s73533J5H335L"/>
+ <unit id="org.eclipse.jst.enterprise_ui.feature.feature.group" version="3.2.2.v201008190400-7b7GHf2FSK2WBLQ2D-mrubYEOrRh"/>
+ <unit id="org.eclipse.wst.web_ui.feature.feature.group" version="3.2.2.v201008100100-7O7CFbKEMf84nUlEJyX7-SPQjhYZ"/>
+ <unit id="org.eclipse.wst.xml_ui.feature.feature.group" version="3.2.2.v201008170029-7H7AFUQDxumQGOpBqffOY2f1qxDZ"/>
+ <unit id="org.eclipse.wst.xsl.feature.feature.group" version="1.1.2.v201009091745-7S7WFAPFIpS-1-NbCE6tnacCXKP"/>
+ <unit id="org.eclipse.wst.jsdt.feature.feature.group" version="1.2.2.v201008170101-7C78FGMF9JgLWLMUUEMtXc"/>
+ <unit id="org.eclipse.jsf.feature.feature.group" version="3.2.2.v201008231400-7E7I6F9JgLWLMUW3"/>
+ <unit id="org.eclipse.jst.ws.jaxws.dom.feature.feature.group" version="1.0.0.v201005241530-5--AkF7B77NBZBgBg"/>
+ <unit id="org.eclipse.jst.ws.jaxws.feature.feature.group" version="1.0.1.v201008232129-7E777CF8NcJSSK-UBTwXn"/>
+ <unit id="org.eclipse.jst.enterprise_core.feature.feature.group" version="3.2.1.v201007070821-52FMTAkF7B77UBR7W98"/>
+ <unit id="org.eclipse.jst.server_adapters.ext.feature.feature.group" version="3.2.2.v20100818b-777HFGRCcNBDiBjIbhBA8"/>
+ <unit id="org.eclipse.jst.server_adapters.feature.feature.group" version="3.2.0.v201005241530-208Z7w31211419"/>
+ <unit id="org.eclipse.jst.server_core.feature.feature.group" version="3.2.0.v201005241530-31FA28s73533C66"/>
+ <unit id="org.eclipse.jst.server_ui.feature.feature.group" version="3.2.2.v20100908-7A5FEi9xFc7RCJMToAIOJC43A"/>
+ <unit id="org.eclipse.jst.web_ui.feature.feature.group" version="3.2.2.v201008170029-7F77FJSC25Tkdy1nqglPjqLAoDgh"/>
+ <unit id="org.eclipse.jsf.feature.source.feature.group" version="3.2.2.v201008231400-7E7I6F9JgLWLMUW3"/>
+ <unit id="org.eclipse.wst.xml.xpath2.processor.feature.feature.group" version="1.1.5.v201009091745-67K2BgJ9DIAXCbBWJO"/>
+ <unit id="org.eclipse.jst.webpageeditor.feature.feature.group" version="2.3.1.v20100906-4609oB5855L6N"/>
+ <unit id="org.eclipse.wst.ws_wsdl15.feature.feature.group" version="1.5.300.v201005241450-2407w312116191741"/>
+ <unit id="org.eclipse.wst.common_core.feature.feature.group" version="3.2.2.v201008091400-7B7DFElF7RZHOZJ6W0PsNJ"/>
+ <unit id="org.eclipse.wst.common_ui.feature.feature.group" version="3.2.2.v201008091400-7C78FPhEdhO_mXde7kbap_K7X1Qt"/>
+ <unit id="org.eclipse.wst.server_adapters.feature.feature.group" version="3.2.0.v201005241510-51EoAkF77g8HBSc"/>
+ <unit id="org.eclipse.wst.server_core.feature.feature.group" version="3.2.2.v20100908-30F8V8s734C3I3K"/>
+ <unit id="org.eclipse.wst.server_ui.feature.feature.group" version="3.2.2.v20100908-7B4FBrAtJb1nESKmCJHPGQ347"/>
+ <unit id="org.eclipse.wst.web_core.feature.feature.group" version="3.2.2.v201008100100-7E7AFHwAJrn5PM15pUYBwJLkSG8j"/>
+ <unit id="org.eclipse.wst.ws_ui.feature.feature.group" version="3.2.2.v201008211705-7I78FZFEtEoO2c5BlJ4jPNvNC-yS"/>
+ <unit id="org.eclipse.wst.xml_core.feature.feature.group" version="3.2.2.v201008170029-7C7OFXYF7RZHQHI5PyJwPT"/>
<repository location="http://download.jboss.org/jbosstools/updates/target-platform/latest/"/>
</location>
<location includeAllPlatforms="false" includeMode="planner" type="InstallableUnit">
<repository location="http://download.jboss.org/jbosstools/updates/target-platform/latest/"/>
</location>
<location includeAllPlatforms="false" includeMode="planner" type="InstallableUnit">
- <unit version="1.3.3.v201006111317" id="com.google.gdt.eclipse.suite.e36.feature.feature.group"/>
- <unit version="2.1.0.v201010280102" id="com.google.gwt.eclipse.sdkbundle.e36.feature.2.1.0.feature.group"/>
+ <unit id="com.google.gdt.eclipse.suite.e36.feature.feature.group" version="1.3.3.v201006111317"/>
+ <unit id="com.google.gwt.eclipse.sdkbundle.e36.feature.2.1.0.feature.group" version="2.1.0.v201010280102"/>
<repository location="http://download.jboss.org/jbosstools/updates/target-platform/latest/"/>
</location>
15 years, 5 months
JBoss Tools SVN: r26440 - trunk/build/results.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-11-10 18:22:36 -0500 (Wed, 10 Nov 2010)
New Revision: 26440
Added:
trunk/build/results/.gitignore
trunk/build/results/buildResults.css
trunk/build/results/buildResults.xsl
Modified:
trunk/build/results/build.xml
trunk/build/results/download-template.xml
trunk/build/results/download.xsl
Log:
JBIDE-6958 JBIDE-7045 JBIDE-7444 initial pass
Added: trunk/build/results/.gitignore
===================================================================
--- trunk/build/results/.gitignore (rev 0)
+++ trunk/build/results/.gitignore 2010-11-10 23:22:36 UTC (rev 26440)
@@ -0,0 +1 @@
+*.out.*
Modified: trunk/build/results/build.xml
===================================================================
--- trunk/build/results/build.xml 2010-11-10 23:22:27 UTC (rev 26439)
+++ trunk/build/results/build.xml 2010-11-10 23:22:36 UTC (rev 26440)
@@ -110,20 +110,8 @@
</path>
<sequential>
<var name="filename" unset="true" />
- <propertyregex property="filename"
- input="@{UPDATEZIP}"
- defaultvalue="@{UPDATEZIP}"
- regexp=".+/([^/]+\.zip)"
- replace="\1"
- casesensitive="false"
- override="true" />
- <propertyregex property="COMPONENT"
- input="${filename}"
- defaultvalue="${filename}"
- regexp="(.+)-(Update|Sources)-${ZIPSUFFIX}\.zip"
- replace="\1"
- casesensitive="false"
- override="true" />
+ <propertyregex property="filename" input="@{UPDATEZIP}" defaultvalue="@{UPDATEZIP}" regexp=".+/([^/]+\.zip)" replace="\1" casesensitive="false" override="true" />
+ <propertyregex property="COMPONENT" input="${filename}" defaultvalue="${filename}" regexp="(.+)-(Update|Sources)-${ZIPSUFFIX}\.zip" replace="\1" casesensitive="false" override="true" />
<if>
<and>
<isset property="JOB_NAME" />
@@ -183,6 +171,7 @@
</filterchain>
</copy>
<xslt in="${output.dir}/download.xml" out="${output.dir}/download-snippet.txt" style="download.xsl" />
+ <xslt in="${output.dir}/download.xml" out="${output.dir}/buildResults.html" style="buildResults.xsl" />
<delete file="${output.dir}/download.xml" />
</then>
<elseif>
@@ -193,12 +182,7 @@
<contains string="${template.file}" substring="ftp:" />
</or>
<then>
- <propertyregex property="template.file.cleaned"
- input="${template.file}"
- defaultvalue="${template.file}"
- regexp=".+/([^/]+)"
- replace="\1"
- override="true" />
+ <propertyregex property="template.file.cleaned" input="${template.file}" defaultvalue="${template.file}" regexp=".+/([^/]+)" replace="\1" override="true" />
<get src="${template.file}" dest="${output.dir}/${template.file.cleaned}.in" ignoreerrors="true" />
<if>
<available file="${output.dir}/${template.file.cleaned}.in" type="file" />
@@ -223,9 +207,7 @@
<expandproperties />
</filterchain>
</copy>
- <xslt in="${output.dir}/download.xml"
- out="${output.dir}/download-snippet.txt"
- style="download.xsl" />
+ <xslt in="${output.dir}/download.xml" out="${output.dir}/download-snippet.txt" style="download.xsl" />
<delete file="${output.dir}/download.xml" />
</else>
</if>
@@ -234,4 +216,9 @@
</if>
</target>
+ <target name="test.xslt">
+ <xslt in="download-template.xml" out="download-snippet.out.html" style="download.xsl" />
+ <xslt in="download-template.xml" out="buildResults.out.html" style="buildResults.xsl" />
+ </target>
+
</project>
Added: trunk/build/results/buildResults.css
===================================================================
--- trunk/build/results/buildResults.css (rev 0)
+++ trunk/build/results/buildResults.css 2010-11-10 23:22:36 UTC (rev 26440)
@@ -0,0 +1,258 @@
+@CHARSET "UTF-8";
+body {
+ font-family: Verdana, Sans-Serif, Helvetica, Arial;
+}
+
+#header, #header-blue {
+ width: 70%;
+ position: absolute;
+ top: 10px;
+ left: 15%;
+ padding: 5px;
+ padding-bottom: 0px;
+ margin-bottom: 0px;
+ color: #fff;
+
+ border-width: 1px;
+ border-style: solid;
+ border-color: #a00000;
+}
+
+#header {
+ background: url(images/gradient-red.png) 0px 0px repeat-x;
+}
+
+#header-blue {
+ background: url(images/gradient-blue.png) 0px 0px repeat-x;
+}
+
+#header table tr td, #header-blue table tr td {
+ font-weight: bold;
+ font-size: 14pt;
+}
+
+#title {
+ color: #f0f0f0;
+}
+
+#title-blue {
+ color: #000000;
+}
+
+#buildName {
+ font-size: 10pt;
+ color: #fc6;
+}
+
+#buildName-blue {
+ font-size: 10pt;
+ color: #0000d0;
+}
+
+#buildDate, #buildExecTime, #buildLog {
+ font-size: 8pt;
+ color: #ccc;
+}
+
+#buildDate-blue, #buildExecTime-blue {
+ font-size: 8pt;
+ color: #303060;
+}
+
+#buildLog-blue {
+ font-size: 8pt;
+ color: #0000d0;
+}
+
+#downloads, #downloads-blue {
+ border-width: 1px;
+ border-style: solid;
+ border-color: #a00000;
+ border-top-width: 0px;
+ padding: 5px;
+
+ width: 70%;
+ position: absolute;
+ top: 61px;
+ left: 15%;
+}
+
+#links, #links-blue {
+ border-width: 0px 0px 1px 0px;
+ border-style: solid;
+ border-color: #a00000;
+ padding-bottom: 4px;
+}
+
+#links tr td {
+ font-size: 8pt;
+}
+
+a {
+ color: #a00000;
+}
+
+a.blue {
+ color: #6060c0;
+}
+
+a:hover {
+ color: #f00000;
+}
+
+a.blue:hover {
+ color: #0000f0;
+}
+
+h1 {
+ font-size: 11pt;
+ color: #300000;
+}
+
+h1.blue {
+ color: #000030;
+}
+
+h2 {
+ font-size: 10pt;
+ color: #d00000;
+}
+
+h2.blue {
+ color: #0000d0;
+}
+
+p {
+ font-size: 8pt;
+ color: #202020;
+}
+
+div.line {
+ background-color: #f00000;
+ height: 1px;
+}
+
+div.line-blue {
+ background-color: #0000f0;
+ height: 1px;
+}
+
+#rightFrame {
+ float: right;
+ padding: 5px;
+}
+
+#buildDrivers, #unitTestResults, #coverageResults, #buildDrivers-blue, #unitTestResults-blue, #coverageResults-blue {
+ font-size: 10pt;
+ color: #000030;
+
+ border-bottom-width: 1px;
+ border-bottom-style: solid;
+ border-bottom-color: #f00000;
+
+ padding-bottom: 3px;
+ margin-bottom: 3px;
+}
+
+#buildDrivers-blue, #unitTestResults-blue, #coverageResults-blue {
+ border-bottom-color: #0000f0;
+}
+
+#buildDrivers table tr td, #buildDrivers-blue table tr td {
+ font-size: 8pt;
+}
+
+#unitTestResults table tr td, #unitTestResults-blue table tr td {
+ font-size: 9pt;
+}
+
+img {
+ vertical-align: middle;
+}
+
+#downloadLinks {
+ padding: 5px;
+ float: left;
+}
+
+#downloadLinks h1 {
+ font-size: 14pt;
+}
+
+.downloadInfo {
+ font-size: 8pt;
+ color: #909090;
+}
+
+a.allLink, a.allLink-blue {
+ padding-left: 5px;
+ font-size: 14pt;
+ font-weight: bold;
+ text-decoration: none;
+ color: #c33;
+}
+
+a.allLink-blue {
+ color: #3030c0;
+}
+
+a.pluginLink, a.pluginLink-blue {
+ padding-left: 5px;
+ font-size: 8pt;
+ font-weight: bold;
+ text-decoration: none;
+ color: #c33;
+}
+
+a.pluginLink-blue {
+ color: #3030c0;
+}
+
+a.md5 {
+ font-size: 8pt;
+ font-weight: bold;
+ color: #666;
+ text-decoration: none;
+}
+
+span.description {
+ font-size: 10pt;
+ color: black;
+ font-weight: bold;
+}
+
+
+#buildInfo {
+ width: 300px;
+}
+
+
+#buildInfo p, #buildInfo b {
+ font-size: 8pt;
+ color: #666;
+}
+
+#testPercentage {
+ border: 1px solid #666;
+ width: 200px;
+ height: 15px;
+
+}
+
+#testPassPercentage {
+ background-color: #21844f;
+ height: 15px;
+ float: left;
+ clear: none;
+}
+
+#testFailPercentage {
+ background-color: #de1f2f;
+ height: 15px;
+ float: left;
+ clear: none;
+}
+
+#header-blue, #downloads-blue, #links-blue {
+ border-color: #0000f0;
+}
\ No newline at end of file
Added: trunk/build/results/buildResults.xsl
===================================================================
--- trunk/build/results/buildResults.xsl (rev 0)
+++ trunk/build/results/buildResults.xsl 2010-11-10 23:22:36 UTC (rev 26440)
@@ -0,0 +1,264 @@
+<xsl:transform version="1.0"
+ xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xalan="http://xml.apache.org/xalan">
+ <xsl:output method="html" indent="yes" xalan:indent-amount="4" />
+ <xsl:template match="/projects">
+
+ <xsl:variable name="baseurl">
+ <xsl:value-of select="@baseurl" />
+ </xsl:variable>
+
+ <html>
+ <head>
+ <title>JBossTools Build Results</title>
+ <link rel="stylesheet" type="text/css" href="buildResults.css" />
+ </head>
+ <body>
+ <div id="header-blue">
+ <table width="100%" height="100%">
+ <tr>
+ <td>
+ <span id="title-blue">JBossTools Build Results</span>
+ <br />
+ <span id="buildName-blue">
+ ${build-type} build
+ ${jbds-build-name}
+ <span id="buildName-blue" style="font-size: x-small;">
+ [Hudson Build
+ <a id="buildName-blue" style="font-size: x-small;"
+ href="http://hudson.qa.jboss.com/hudson/view/DevStudio/job/${hudson-job-name}/$...">#${hudson-build-number},
+ ${hudson-build-id}</a>
+ ]
+ </span>
+ <span id="buildName-blue" style="font-size: x-small; font-style: italic;">
+ <a id="buildName-blue"
+ style="font-size: x-small; font-style: italic; color: black;"
+ href="http://hudson.jboss.org/hudson/view/JBossTools/job/${hudson-job-name}/">Public
+ Hudson Mirror</a>
+ </span>
+ </span>
+ </td>
+ <td align="right">
+ <span id="buildDate-blue">${date}</span>
+ <br />
+ <span id="buildExecTime-blue">${build-time}</span>
+ <br />
+ <a id="buildLog-blue"
+ href="http://download.jboss.org/jbosstools/builds/staging/${hudson-job-name}/logs/">Build Logs</a>
+ </td>
+ </tr>
+ </table>
+ </div>
+
+ <div id="downloads-blue">
+ <table id="links-blue" width="100%">
+ <tr>
+ <td>
+ <a class="blue" href="http://www.jboss.org/tools">JBossTools</a>
+ |
+ <a class="blue" href="http://www.redhat.com/jbds">JBDS</a>
+ |
+ <a class="blue" href="http://tools.hibernate.org">Hibernate Tools</a>
+ |
+ <a class="blue"
+ href="http://www.jboss.com/index.html?module=bb&op=viewforum&f=201">User
+ Forum</a>
+ |
+ <a class="blue"
+ href="http://jboss.com/index.html?module=bb&op=viewforum&f=162">Development
+ Forum</a>
+ |
+ <a class="blue"
+ href="http://jira.jboss.com/jira/secure/BrowseProject.jspa?id=10020">JIRA
+ / Bugs</a>
+ | #jbosstools on irc.freenode.net
+ </td>
+ <td align="right">
+ <a class="blue" href="http://www.redhat.com">
+ <img src="images/redhat.gif" border="0" />
+ </a>
+ <a class="blue" href="http://www.jboss.org">
+ <img src="images/jboss.gif" border="0" />
+ </a>
+ <a class="blue" href="http://www.hibernate.org">
+ <img src="images/hibernate.gif" border="0" />
+ </a>
+ <a class="blue" href="http://www.eclipse.org">
+ <img src="images/eclipse.gif" border="0" />
+ </a>
+ </td>
+ </tr>
+ </table>
+
+ <div id="downloadLinks">
+
+ <table>
+ <tr>
+ <td colspan="2">
+ First time here ? Read
+ <a href="http://www.jboss.org/tools/download/installation.html">How
+ to install JBoss Tools.</a>
+ </td>
+ </tr>
+
+ <tr>
+ <td colspan="2">
+ <h1>p2 Repo / Update Site Zips:</h1>
+ </td>
+ </tr>
+
+ <xsl:for-each select="project">
+ <xsl:variable name="rowColor">
+ <xsl:if test="position() mod 2 = 1">
+ #CCCCEE
+ </xsl:if>
+ <xsl:if test="position() mod 2 = 0">
+ #FFFFFF
+ </xsl:if>
+ <xsl:if test="contains(@name,'All')">
+ #CCEECC
+ </xsl:if>
+ <xsl:if test="contains(@name,'Source')">
+ #EECCCC
+ </xsl:if>
+ </xsl:variable>
+
+ <tr bgcolor="{$rowColor}">
+ <td>
+ <img src="images/OK-small.png" />
+ </td>
+ <td class="downloadInfo">
+ <xsl:for-each select=".">
+ <b>
+ <acronym title="{@name} :: {description}">
+ <a class="allLink-blue" href="{$baseurl}/{download/@url}">
+ <xsl:value-of select="concat(@name,' ',@version)" />
+ </a>
+ </acronym>
+ <br />
+ <a class="md5" href="{$baseurl}/{download/(a)url}.MD5">MD5</a>
+ | filesize:
+ <xsl:value-of select="download/@size" />
+ </b>
+ <br />
+ </xsl:for-each>
+ </td>
+ </tr>
+ </xsl:for-each>
+ </table>
+
+ </div>
+
+ <div id="rightFrame">
+ <div id="buildDrivers-blue">
+ <b>SVN Revisions</b>
+ <br />
+ See
+ <a
+ href="http://download.jboss.org/jbosstools/builds/staging/jbosstools-3.2.0.Beta...">SVN_REVISION.txt</a>
+ </div>
+ <div id="buildDrivers-blue">
+ <b>Target Platform</b>
+ <table>
+ <tr>
+ <td rowspan="3">
+ Eclipse Helios 3.6.1 +
+ <br />
+ Web Tools 3.2.2 +
+ <br />
+ TPTP + BIRT + DTP ...
+ </td>
+ <td>
+ <a class="blue"
+ href="http://download.jboss.org/jbosstools/updates/target-platform/latest/">Target Platform Update Site</a>
+ </td>
+ </tr>
+ <tr>
+ <td>
+ <a class="blue"
+ href="http://download.jboss.org/jbosstools/updates/target-platform/e361-wtp322....">Target Platform Update Zip</a>
+ </td>
+ </tr>
+ <tr>
+ <td>
+ <a class="blue"
+ href="http://anonsvn.jboss.org/repos/jbosstools/trunk/build/target-platform/uni...">Target Platform Definition File</a>
+ </td>
+ </tr>
+ </table>
+ </div>
+ <div id="unitTestResults-blue">
+ <b>Unit Test Results</b>
+ <br />
+
+ See
+ <a
+ href="http://hudson.qa.jboss.com/hudson/view/DevStudio_Tycho/job/jbosstools-3.2...">jbosstools-3.2.0.Beta2.tests</a>
+ <!-- <table> <tr> <td> <img src="images/test.gif" /> Tests </td> <td
+ align="right">??? </td> </tr> <tr> <td> <img src="images/testerr.gif" />
+ Errors </td> <td align="right">???</td> </tr> <tr> <td> <img src="images/testfail.gif"
+ /> Failures </td> <td align="right">???</td> </tr> <tr> <td colspan="2">
+ <b id="testPassPercentageAmount">%</b> tests passed <div id="testPercentage">
+ <div id="testPassPercentage"> </div> <div id="testFailPercentage"> </div>
+ </div> </td> </tr> </table> -->
+
+ <script>
+ <!-- var tests = 2228; var failures = 0; var errors = 0; var passPercent
+ = Math.floor(((tests-(failures+errors))/tests) * 100); var failPercent =
+ 100 - passPercent; document.getElementById("testPassPercentage").style.width
+ = passPercent + '%'; document.getElementById("testFailPercentage").style.width
+ = failPercent + '%'; document.getElementById("testPassPercentageAmount").innerHTML
+ = passPercent + '%'; -->
+ </script>
+
+ <!-- <div align="right"> <a class="blue" style="align: right;" href="tests/test-results/org.jboss.ide.eclipse.tests.html">See
+ full unit test results</a> </div> <div align="right"> <a class="blue" style="align:
+ right;" href="tests/test-results/test-workspace.log.txt">See unit test workspace
+ log</a> </div> <div id="coverageResults-blue"> <b>Test Coverage Results</b>
+ <br /> <div align="right"> <a class="blue" style="align: right;" href="tests/test-results/emma-coverage/index.html">See
+ test coverage results</a> </div> <div align="right"> <a class="blue" style="align:
+ right;" href="tests/test-results/emma-coverage/coverage.es">See coverage
+ session file</a> </div> </div> -->
+ </div>
+
+ <div id="buildInfo">
+ <p>
+ <b>WARNING</b>
+ </p>
+ <p>This build has been deemed by the JBossTools team to be in
+ good working condition.
+ Please note that this build may be a
+ developer release, and if so
+ should be treated
+ with slightly more
+ understanding and care than a stable release.
+ Please see the
+ release
+ notes on JIRA and/or Sourceforge for further
+ information.
+ (This
+ release is much less likely to
+ set your
+ computer aflame.)</p>
+
+ <p>Any suggestions/issues should be posted on the relevant
+ product
+ forums and should clearly indicate that you are using an
+ integration
+ build. Please take care in making sure that your
+ issue hasn't
+ already been addressed when posting on forums or
+ opening new
+ JIRA issues.</p>
+ </div>
+
+ </div>
+
+ </div>
+
+ </body>
+ </html>
+
+
+
+ </xsl:template>
+</xsl:transform>
\ No newline at end of file
Modified: trunk/build/results/download-template.xml
===================================================================
--- trunk/build/results/download-template.xml 2010-11-10 23:22:27 UTC (rev 26439)
+++ trunk/build/results/download-template.xml 2010-11-10 23:22:36 UTC (rev 26440)
@@ -1,5 +1,5 @@
<projects baseurl="http://downloads.sourceforge.net/jboss/">
-<project name="All Plugins (repo)" version="${ZIPSUFFIX}">
+<project name="All Plugins" version="${ZIPSUFFIX}">
<description>A p2 repo (update site) bundle of all JBoss Tools plugins - </description>
<a href="http://www.jboss.org/tools/download/update.html#fromzip">install instructions</a>
<download os="All platforms" url="${update-filename}" size="${update-filesize} MB"/>
@@ -125,6 +125,11 @@
<download os="All platforms" url="${runtime-filename}" size="${runtime-filesize} MB"/>
</project>
+<project name="Savara Tools" version="${ZIPSUFFIX}">
+ <description>Provides Savara Tools</description>
+ <download os="All platforms" url="${savara-filename}" size="${savara-filesize} MB"/>
+</project>
+
<project name="Seam Tools" version="${ZIPSUFFIX}" >
<description>For creating Seam Components and Projects</description>
<download os="All platforms" url="${seam-filename}" size="${seam-filesize} MB"/>
Modified: trunk/build/results/download.xsl
===================================================================
--- trunk/build/results/download.xsl 2010-11-10 23:22:27 UTC (rev 26439)
+++ trunk/build/results/download.xsl 2010-11-10 23:22:36 UTC (rev 26440)
@@ -1,47 +1,68 @@
-<xsl:transform version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xalan="http://xml.apache.org/xalan">
-<xsl:output method="html" indent="yes" xalan:indent-amount="4"/>
-<xsl:template match="/projects">
+<xsl:transform version="1.0"
+ xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xalan="http://xml.apache.org/xalan">
+ <xsl:output method="html" indent="yes" xalan:indent-amount="4" />
+ <xsl:template match="/projects">
-<xsl:variable name="baseurl"><xsl:value-of select="@baseurl"/></xsl:variable>
+ <xsl:variable name="baseurl">
+ <xsl:value-of select="@baseurl" />
+ </xsl:variable>
-<table cellspacing="1" cellpadding="0" border="0" align="left"
-style="width: 100%;" class="simpletablestyle">
- <thead>
- <tr class="header">
- <th>Description</th>
- <th>Version</th>
- <th>Download</th>
- </tr>
- </thead>
- <tbody>
- <xsl:for-each select="project">
- <xsl:variable name="rowClass">
- <xsl:if test="position() mod 2 = 1">oddRow</xsl:if>
- <xsl:if test="position() mod 2 = 0">evenRow</xsl:if>
- </xsl:variable>
-
- <tr>
- <xsl:attribute name="class">
- <xsl:value-of select="$rowClass"/>
- </xsl:attribute>
- <td class="rowLine"><xsl:value-of select="@name"/> - <xsl:value-of select="description"/><xsl:if test="string(a) != ''"><xsl:copy-of select="a"/></xsl:if></td>
- <td class="rowLine"><xsl:value-of select="substring-before(@version,'-')"/></td>
- <td class="rowLine">
- <xsl:for-each select="download">
- <b><a>
- <xsl:attribute name="href"><xsl:value-of select="$baseurl"/><xsl:value-of select="@url"/></xsl:attribute>
- <xsl:attribute name="onclick">javascript:pageTracker._trackPageview('/downloads/<xsl:value-of select="@url"/>');turnOnModal(this); return false;</xsl:attribute>
- <xsl:value-of select="@os"/>
- </a>
- (<xsl:value-of select="@size"/>)
- </b>
- <br/>
- </xsl:for-each>
- </td>
- </tr>
- </xsl:for-each>
- </tbody>
-</table>
+ <table cellspacing="1" cellpadding="0" border="0" align="left"
+ style="width: 100%;" class="simpletablestyle">
+ <thead>
+ <tr class="header">
+ <th>Download</th>
+ <th>Size</th>
+ <th>Description</th>
+ </tr>
+ </thead>
+ <tbody>
+ <xsl:for-each select="project">
+ <xsl:variable name="rowClass">
+ <xsl:if test="position() mod 2 = 1">
+ oddRow
+ </xsl:if>
+ <xsl:if test="position() mod 2 = 0">
+ evenRow
+ </xsl:if>
+ </xsl:variable>
+ <xsl:variable name="rowColor">
+ <xsl:if test="contains(@name,'All')">
+ #CCEECC
+ </xsl:if>
+ <xsl:if test="contains(@name,'Sources')">
+ #EECCCC
+ </xsl:if>
+ </xsl:variable>
-</xsl:template>
+ <tr class="{$rowClass}" bgcolor="{$rowColor}">
+ <td class="rowLine">
+ <xsl:for-each select=".">
+ <b>
+ <a href="{$baseurl}/{download/@url}"
+ onclick="javascript:pageTracker._trackPageview('/downloads/{@url}');turnOnModal(this); return false;">
+ <xsl:value-of select="@name" />
+ </a>
+ </b>
+ <br />
+ </xsl:for-each>
+ </td>
+ <td class="rowLine">
+ <xsl:for-each select=".">
+ <xsl:value-of select="download/@size" />
+ </xsl:for-each>
+ </td>
+ <td class="rowLine">
+ <xsl:value-of select="@name" />
+ -
+ <xsl:value-of select="description" />
+ <xsl:if test="string(a) != ''">
+ <xsl:copy-of select="a" />
+ </xsl:if>
+ </td>
+ </tr>
+ </xsl:for-each>
+ </tbody>
+ </table>
+ </xsl:template>
</xsl:transform>
\ No newline at end of file
15 years, 5 months
JBoss Tools SVN: r26439 - trunk/build.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-11-10 18:22:27 -0500 (Wed, 10 Nov 2010)
New Revision: 26439
Modified:
trunk/build/publish.sh
Log:
enable generation of snippet file for ALL builds
Modified: trunk/build/publish.sh
===================================================================
--- trunk/build/publish.sh 2010-11-10 21:31:59 UTC (rev 26438)
+++ trunk/build/publish.sh 2010-11-10 23:22:27 UTC (rev 26439)
@@ -147,7 +147,7 @@
echo "" >> ${STAGINGDIR}/logs/${METAFILE}
# generate HTML snippet, download-snippet.txt, for inclusion on jboss.org
-if [[ ${RELEASE} == "Yes" ]]; then
+#if [[ ${RELEASE} == "Yes" ]]; then
mkdir -p ${STAGINGDIR}/logs
ANT_PARAMS="-v -DZIPSUFFIX=${ZIPSUFFIX} -DJOB_NAME=${JOB_NAME} -Dinput.dir=${STAGINGDIR} -Doutput.dir=${STAGINGDIR}/logs -DWORKSPACE=${WORKSPACE}"
if [[ ${JOB_NAME/.aggregate} != ${JOB_NAME} ]]; then # reuse snippet from upstream build
@@ -159,7 +159,7 @@
fi
done
ant -f ${ANT_SCRIPT} ${ANT_PARAMS}
-fi
+#fi
# ${bl} is full build log; see above
mkdir -p ${STAGINGDIR}/logs
15 years, 5 months
JBoss Tools SVN: r26438 - trunk/jmx/site.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-11-10 16:31:59 -0500 (Wed, 10 Nov 2010)
New Revision: 26438
Modified:
trunk/jmx/site/.project
trunk/jmx/site/pom.xml
Log:
rename site metadata
Modified: trunk/jmx/site/.project
===================================================================
--- trunk/jmx/site/.project 2010-11-10 20:54:44 UTC (rev 26437)
+++ trunk/jmx/site/.project 2010-11-10 21:31:59 UTC (rev 26438)
@@ -1,6 +1,6 @@
<?xml version="1.0" encoding="UTF-8"?>
<projectDescription>
- <name>jmx-site</name>
+ <name>org.jboss.tools.jmx.site</name>
<comment></comment>
<projects>
</projects>
Modified: trunk/jmx/site/pom.xml
===================================================================
--- trunk/jmx/site/pom.xml 2010-11-10 20:54:44 UTC (rev 26437)
+++ trunk/jmx/site/pom.xml 2010-11-10 21:31:59 UTC (rev 26438)
@@ -7,8 +7,8 @@
<version>0.0.1-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.jmx</groupId>
- <artifactId>jmx.site</artifactId>
- <name>jmx.site</name>
+ <artifactId>org.jboss.tools.jmx.site</artifactId>
+ <name>org.jboss.tools.jmx.site</name>
<version>0.0.1-SNAPSHOT</version>
<packaging>eclipse-update-site</packaging>
</project>
15 years, 5 months
JBoss Tools SVN: r26437 - trunk/jst/tests/org.jboss.tools.jst.jsp.test/src/org/jboss/tools/jst/jsp/test/ca.
by jbosstools-commits@lists.jboss.org
Author: yradtsevich
Date: 2010-11-10 15:54:44 -0500 (Wed, 10 Nov 2010)
New Revision: 26437
Modified:
trunk/jst/tests/org.jboss.tools.jst.jsp.test/src/org/jboss/tools/jst/jsp/test/ca/ExternalizeCommandTest.java
Log:
https://jira.jboss.org/browse/JBIDE-7489 : org.jboss.tools.jst.jsp.test.ca.ExternalizeCommandTest failure
Modified: trunk/jst/tests/org.jboss.tools.jst.jsp.test/src/org/jboss/tools/jst/jsp/test/ca/ExternalizeCommandTest.java
===================================================================
--- trunk/jst/tests/org.jboss.tools.jst.jsp.test/src/org/jboss/tools/jst/jsp/test/ca/ExternalizeCommandTest.java 2010-11-10 20:33:40 UTC (rev 26436)
+++ trunk/jst/tests/org.jboss.tools.jst.jsp.test/src/org/jboss/tools/jst/jsp/test/ca/ExternalizeCommandTest.java 2010-11-10 20:54:44 UTC (rev 26437)
@@ -75,7 +75,7 @@
}
private void checkExternalizeCommand(boolean requiredState) {
- TestUtil.waitForIdle(TestUtil.MAX_IDLE * 100);
+ TestUtil.waitForIdle(TestUtil.MAX_IDLE);
assertEquals("Externalize Command has incorrect enabled state", //$NON-NLS-1$
requiredState,externalizeCommand.isEnabled());
}
15 years, 5 months