JBoss Tools SVN: r42116 - in workspace/dgolovin/new-releng: target-platform and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2012-06-20 15:22:55 -0400 (Wed, 20 Jun 2012)
New Revision: 42116
Modified:
workspace/dgolovin/new-releng/.project
workspace/dgolovin/new-releng/pom.xml
workspace/dgolovin/new-releng/target-platform/jboss.tools.tp.product
Log:
latest version without features module included in target platform product file and in pom.xml, it seems not required anymore
Modified: workspace/dgolovin/new-releng/.project
===================================================================
--- workspace/dgolovin/new-releng/.project 2012-06-20 17:04:24 UTC (rev 42115)
+++ workspace/dgolovin/new-releng/.project 2012-06-20 19:22:55 UTC (rev 42116)
@@ -8,16 +8,4 @@
</buildSpec>
<natures>
</natures>
- <linkedResources>
- <link>
- <name>jbdevstudio-beta3</name>
- <type>2</type>
- <location>/home/eskimo/jbdevstudio-beta3</location>
- </link>
- <link>
- <name>jbdevstudio-beta3-maven</name>
- <type>2</type>
- <location>/home/eskimo/jbdevstudio-beta3-maven</location>
- </link>
- </linkedResources>
</projectDescription>
Modified: workspace/dgolovin/new-releng/pom.xml
===================================================================
--- workspace/dgolovin/new-releng/pom.xml 2012-06-20 17:04:24 UTC (rev 42115)
+++ workspace/dgolovin/new-releng/pom.xml 2012-06-20 19:22:55 UTC (rev 42116)
@@ -8,7 +8,6 @@
<version>0.0.1</version>
<packaging>pom</packaging>
<modules>
- <module>features</module>
<module>target-platform</module>
</modules>
</project>
Modified: workspace/dgolovin/new-releng/target-platform/jboss.tools.tp.product
===================================================================
--- workspace/dgolovin/new-releng/target-platform/jboss.tools.tp.product 2012-06-20 17:04:24 UTC (rev 42115)
+++ workspace/dgolovin/new-releng/target-platform/jboss.tools.tp.product 2012-06-20 19:22:55 UTC (rev 42116)
@@ -111,7 +111,6 @@
<feature id="org.eclipse.uml2.sdk"/>
<feature id="org.eclipse.jgit"/>
<feature id="org.eclipse.egit"/>
- <feature id="org.jboss.tools.tp.dependencies"/>
<feature id="org.eclipse.mylyn.ide_feature"/>
</features>
12 years, 7 months
JBoss Tools SVN: r42115 - trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/common/model/markers.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2012-06-20 13:04:24 -0400 (Wed, 20 Jun 2012)
New Revision: 42115
Modified:
trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/common/model/markers/XMarkerManager.java
Log:
JBIDE-12221
https://issues.jboss.org/browse/JBIDE-12221
Delta is checked for null. Cache is cleaned for project closing event in the same way as it is for removal event.
Modified: trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/common/model/markers/XMarkerManager.java
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/common/model/markers/XMarkerManager.java 2012-06-20 16:07:38 UTC (rev 42114)
+++ trunk/common/plugins/org.jboss.tools.common.model/src/org/jboss/tools/common/model/markers/XMarkerManager.java 2012-06-20 17:04:24 UTC (rev 42115)
@@ -44,13 +44,18 @@
}
public void resourceChanged(IResourceChangeEvent event) {
- if(event.getType() == IResourceChangeEvent.PRE_DELETE && event.getResource() instanceof IProject) {
+ if((event.getType() == IResourceChangeEvent.PRE_DELETE
+ || event.getType() == IResourceChangeEvent.PRE_CLOSE)
+ && event.getResource() instanceof IProject) {
IProject p = (IProject)event.getResource();
clear(p.getFullPath());
return;
}
+ IResourceDelta delta = event.getDelta();
try {
- event.getDelta().accept(visitor);
+ if(delta != null) {
+ delta.accept(visitor);
+ }
} catch (CoreException e) {
ModelPlugin.getDefault().logError(e);
}
12 years, 7 months
JBoss Tools SVN: r42113 - trunk/download.jboss.org/jbosstools/updates/development/helios.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2012-06-20 12:07:27 -0400 (Wed, 20 Jun 2012)
New Revision: 42113
Modified:
trunk/download.jboss.org/jbosstools/updates/development/helios/compositeA...
trunk/download.jboss.org/jbosstools/updates/development/helios/compositeC...
trunk/download.jboss.org/jbosstools/updates/development/helios/index.html
Log:
update helios pages to point to 3.2.2
Modified: trunk/download.jboss.org/jbosstools/updates/development/helios/compositeA...
===================================================================
--- trunk/download.jboss.org/jbosstools/updates/development/helios/compositeA... 2012-06-20 16:07:08 UTC (rev 42112)
+++ trunk/download.jboss.org/jbosstools/updates/development/helios/compositeA... 2012-06-20 16:07:27 UTC (rev 42113)
@@ -7,9 +7,9 @@
get new time w/
date +%s000
-->
-<property name='p2.timestamp' value='1312751566000'/>
+<property name='p2.timestamp' value='1322698864000'/>
</properties>
<children size='1'>
-<child location='http://download.jboss.org/jbosstools/updates/JBossTools-3.2.1.Final/'/>
+<child location='http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/'/>
</children>
</repository>
Modified: trunk/download.jboss.org/jbosstools/updates/development/helios/compositeC...
===================================================================
--- trunk/download.jboss.org/jbosstools/updates/development/helios/compositeC... 2012-06-20 16:07:08 UTC (rev 42112)
+++ trunk/download.jboss.org/jbosstools/updates/development/helios/compositeC... 2012-06-20 16:07:27 UTC (rev 42113)
@@ -7,9 +7,9 @@
get new time w/
date +%s000
-->
-<property name='p2.timestamp' value='1312751562000'/>
+<property name='p2.timestamp' value='1322698864000'/>
</properties>
<children size='1'>
-<child location='http://download.jboss.org/jbosstools/updates/JBossTools-3.2.1.Final/'/>
+<child location='http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/'/>
</children>
</repository>
Modified: trunk/download.jboss.org/jbosstools/updates/development/helios/index.html
===================================================================
--- trunk/download.jboss.org/jbosstools/updates/development/helios/index.html 2012-06-20 16:07:08 UTC (rev 42112)
+++ trunk/download.jboss.org/jbosstools/updates/development/helios/index.html 2012-06-20 16:07:27 UTC (rev 42113)
@@ -1,34 +1,37 @@
<html>
<head>
-<title>JBoss Tools Stable Release Update Site: 3.2.1.Final.2011-08-01_12-53-33-H1305</title>
+<title>JBoss Tools Stable Release Update Site: 3.2.2.v20111114-2306-H1430-Final</title>
<style>
-@import url("../web/site.css");
+@import url("http://download.jboss.org/jbosstools/updates/web/site.css");
</style>
</head>
<body marginheight="0" marginwidth="0" leftmargin="0" topmargin="0">
+<center>
<table marginheight="0" marginwidth="0" leftmargin="0" topmargin="0"
- cellspacing="0" cellpadding="0">
+ cellspacing="0" cellpadding="0" width="920" class="bodyText">
<tr>
- <td colspan="2"><img
+ <td colspan="3"><img
src="https://www.jboss.org/dms/tools/images/tools-banner.png" /></td>
</tr>
<tr>
- <td>  </td>
+ <td>      </td>
+ <td>      </td>
+ <td>      </td>
</tr>
<tr>
- <td>  </td>
+ <td>      </td>
<td>
<h2 class="title">JBoss Tools Stable Release Update Site</h2>
<table width="100%">
<tr class="header">
- <td class="sub-header" width="100%"><span>Latest Build: 3.2.1.Final.2011-08-01_12-53-33-H1305</span></td>
+ <td class="sub-header" width="100%"><span>Latest Build: 3.2.2.v20111114-2306-H1430-Final</span></td>
</tr>
<tr class="light-row" style="height: 30px">
<td class="bodyText">
<p class="bodyText">This is the <b>Stable Release</b>
Update Site for JBoss Tools. See <a class="link"
- href="http://www.jboss.org/tools/download/update">Installation
+ href="http://www.jboss.org/tools/download/installation/update_3_2">Installation
Instructions</a>.</p>
</td>
</tr>
@@ -51,29 +54,435 @@
<p class="bodyText">You can also download JBoss Tools as
individual zips for offline installation. See <a class="link"
href="http://www.jboss.org/tools/download">JBoss Tools
- Downloads</a>.</p>
- </td>
- </tr>
-
- <tr class="dark-row" style="height: 30px">
- <td class="bodyText">
- <p class="bodyText">For more information, see <a
+ Downloads</a>.<br/>
+ If you downloaded this site as a zip, see <a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/READM...">Installation README</a>. See also <a
href="http://www.jboss.org/tools/download/installation">Installation
methods</a>.</p>
</td>
</tr>
- <tr>
- <td class="spacer"><br />
- </td>
- <td class="spacer"><br />
- </td>
- </tr>
</table>
</td>
+ <td>      </td>
</tr>
<tr>
<td></td>
<td>
+ <br xmlns="http://www.w3.org/1999/xhtml" xmlns:xalan="http://xml.apache.org/xalan"></br><table xmlns="http://www.w3.org/1999/xhtml" xmlns:xalan="http://xml.apache.org/xalan" cellspacing="2" cellpadding="0" border="0">
+ <tr style="background-color:#DDDDDD">
+ <th style="font-size:small">Feature</th>
+ <th style="font-size:small">Version</th>
+ <th style="font-size:small">
+ Feature Categor(ies)
+
+ </th>
+ </tr>
+ <tr style="background-color:
							#EEEEEE
						">
+ <td class="rowLine"><a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/featu..." style="font-size:x-small">org.jboss.ide.eclipse.archives.feature</a></td>
+ <td><span style="font-size:x-small">3.2.0.v20111025-0345-H201-Final</span></td>
+ <td><span style="font-size:x-small">
+ |
+ AllTools</span><span style="font-size:x-small">
+ |
+ GeneralTools</span></td>
+ </tr>
+ <tr style="background-color:
							#FFFFFF
						">
+ <td class="rowLine"><a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/featu..." style="font-size:x-small">org.jboss.ide.eclipse.as.feature</a></td>
+ <td><span style="font-size:x-small">2.2.0.v20111110-1751-H262-Final</span></td>
+ <td><span style="font-size:x-small">
+ |
+ AllTools</span><span style="font-size:x-small">
+ |
+ WebTools</span></td>
+ </tr>
+ <tr style="background-color:
							#EEEEEE
						">
+ <td class="rowLine"><a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/featu..." style="font-size:x-small">org.jboss.ide.eclipse.freemarker.feature</a></td>
+ <td><span style="font-size:x-small">1.1.0.v20111025-0320-H192-Final</span></td>
+ <td><span style="font-size:x-small">
+ |
+ AllTools</span><span style="font-size:x-small">
+ |
+ GeneralTools</span></td>
+ </tr>
+ <tr style="background-color:
							#FFFFFF
						">
+ <td class="rowLine"><a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/featu..." style="font-size:x-small">org.jboss.savara.tools.feature</a></td>
+ <td><span style="font-size:x-small">1.1.0.Final</span></td>
+ <td><span style="font-size:x-small">
+ |
+ SOATools</span></td>
+ </tr>
+ <tr style="background-color:
							#EEEEEE
						">
+ <td class="rowLine"><a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/featu..." style="font-size:x-small">org.jboss.tools.birt.feature</a></td>
+ <td><span style="font-size:x-small">1.2.0.v20111025-0413-H201-Final</span></td>
+ <td><span style="font-size:x-small">
+ |
+ ReportTools</span></td>
+ </tr>
+ <tr style="background-color:
							#FFFFFF
						">
+ <td class="rowLine"><a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/featu..." style="font-size:x-small">org.jboss.tools.bpel.feature</a></td>
+ <td><span style="font-size:x-small">1.0.1.v20111025-0514-H190-Final</span></td>
+ <td><span style="font-size:x-small">
+ |
+ SOATools</span></td>
+ </tr>
+ <tr style="background-color:
							#EEEEEE
						">
+ <td class="rowLine"><a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/featu..." style="font-size:x-small">org.jboss.tools.cdi.feature</a></td>
+ <td><span style="font-size:x-small">1.1.1.v20111025-1225-H178-Final</span></td>
+ <td><span style="font-size:x-small">
+ |
+ AllTools</span><span style="font-size:x-small">
+ |
+ WebTools</span><span style="font-size:x-small">
+ |
+ GeneralTools</span></td>
+ </tr>
+ <tr style="background-color:
							#FFFFFF
						">
+ <td class="rowLine"><a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/featu..." style="font-size:x-small">org.jboss.tools.community.project.examples.feature</a></td>
+ <td><span style="font-size:x-small">1.1.0.v20111025-1337-H184-Final</span></td>
+ <td><span style="font-size:x-small">
+ |
+ AllTools</span><span style="font-size:x-small">
+ |
+ GeneralTools</span></td>
+ </tr>
+ <tr style="background-color:
							#EEEEEE
						">
+ <td class="rowLine"><a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/featu..." style="font-size:x-small">org.jboss.tools.deltacloud.feature</a></td>
+ <td><span style="font-size:x-small">0.0.1.v20111025-2151-H288-Final</span></td>
+ <td><span style="font-size:x-small">
+ |
+ CloudTools</span></td>
+ </tr>
+ <tr style="background-color:
							#FFFFFF
						">
+ <td class="rowLine"><a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/featu..." style="font-size:x-small">org.jboss.tools.esb.feature</a></td>
+ <td><span style="font-size:x-small">1.3.0.v20111111-0222-H200-Final</span></td>
+ <td><span style="font-size:x-small">
+ |
+ AllTools</span><span style="font-size:x-small">
+ |
+ SOATools</span></td>
+ </tr>
+ <tr style="background-color:
							#EEEEEE
						">
+ <td class="rowLine"><a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/featu..." style="font-size:x-small">org.jboss.tools.gwt.feature</a></td>
+ <td><span style="font-size:x-small">1.0.0.v20111025-0319-H151-Final</span></td>
+ <td><span style="font-size:x-small">
+ |
+ GeneralTools</span></td>
+ </tr>
+ <tr style="background-color:
							#FFFFFF
						">
+ <td class="rowLine"><a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/featu..." style="font-size:x-small">org.jboss.tools.jbpm.common.feature</a></td>
+ <td><span style="font-size:x-small">4.4.0.v20111025-0508-H201-Final</span></td>
+ <td><span style="font-size:x-small">
+ |
+ AllTools</span><span style="font-size:x-small">
+ |
+ SOATools</span></td>
+ </tr>
+ <tr style="background-color:
							#EEEEEE
						">
+ <td class="rowLine"><a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/featu..." style="font-size:x-small">org.jboss.tools.jbpm.convert.feature</a></td>
+ <td><span style="font-size:x-small">1.0.0.v20111025-0508-H201-Final</span></td>
+ <td><span style="font-size:x-small">
+ |
+ AllTools</span><span style="font-size:x-small">
+ |
+ SOATools</span></td>
+ </tr>
+ <tr style="background-color:
							#FFFFFF
						">
+ <td class="rowLine"><a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/featu..." style="font-size:x-small">org.jboss.tools.jbpm3.feature</a></td>
+ <td><span style="font-size:x-small">3.2.1.v20111025-0508-H201-Final</span></td>
+ <td><span style="font-size:x-small">
+ |
+ AllTools</span><span style="font-size:x-small">
+ |
+ SOATools</span></td>
+ </tr>
+ <tr style="background-color:
							#EEEEEE
						">
+ <td class="rowLine"><a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/featu..." style="font-size:x-small">org.jboss.tools.jbpm4.feature</a></td>
+ <td><span style="font-size:x-small">4.0.0.v20111025-0508-H201-Final</span></td>
+ <td><span style="font-size:x-small">
+ |
+ AllTools</span><span style="font-size:x-small">
+ |
+ SOATools</span></td>
+ </tr>
+ <tr style="background-color:
							#FFFFFF
						">
+ <td class="rowLine"><a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/featu..." style="font-size:x-small">org.jboss.tools.jmx.feature</a></td>
+ <td><span style="font-size:x-small">1.1.0.v20111025-2055-H161-Final</span></td>
+ <td><span style="font-size:x-small">
+ |
+ AllTools</span><span style="font-size:x-small">
+ |
+ GeneralTools</span></td>
+ </tr>
+ <tr style="background-color:
							#EEEEEE
						">
+ <td class="rowLine"><a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/featu..." style="font-size:x-small">org.jboss.tools.maven.cdi.feature</a></td>
+ <td><span style="font-size:x-small">1.2.0.v20111027-1501-H240-Final</span></td>
+ <td><span style="font-size:x-small">
+ |
+ MavenTools</span></td>
+ </tr>
+ <tr style="background-color:
							#FFFFFF
						">
+ <td class="rowLine"><a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/featu..." style="font-size:x-small">org.jboss.tools.maven.feature</a></td>
+ <td><span style="font-size:x-small">1.2.0.v20111027-1501-H240-Final</span></td>
+ <td><span style="font-size:x-small">
+ |
+ MavenTools</span></td>
+ </tr>
+ <tr style="background-color:
							#EEEEEE
						">
+ <td class="rowLine"><a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/featu..." style="font-size:x-small">org.jboss.tools.maven.hibernate.feature</a></td>
+ <td><span style="font-size:x-small">1.2.0.v20111027-1501-H240-Final</span></td>
+ <td><span style="font-size:x-small">
+ |
+ MavenTools</span></td>
+ </tr>
+ <tr style="background-color:
							#FFFFFF
						">
+ <td class="rowLine"><a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/featu..." style="font-size:x-small">org.jboss.tools.maven.jsf.feature</a></td>
+ <td><span style="font-size:x-small">1.2.0.v20111027-1501-H240-Final</span></td>
+ <td><span style="font-size:x-small">
+ |
+ MavenTools</span></td>
+ </tr>
+ <tr style="background-color:
							#EEEEEE
						">
+ <td class="rowLine"><a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/featu..." style="font-size:x-small">org.jboss.tools.maven.portlet.feature</a></td>
+ <td><span style="font-size:x-small">1.2.0.v20111027-1501-H240-Final</span></td>
+ <td><span style="font-size:x-small">
+ |
+ MavenTools</span></td>
+ </tr>
+ <tr style="background-color:
							#FFFFFF
						">
+ <td class="rowLine"><a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/featu..." style="font-size:x-small">org.jboss.tools.maven.project.examples.feature</a></td>
+ <td><span style="font-size:x-small">1.2.0.v20111027-1501-H240-Final</span></td>
+ <td><span style="font-size:x-small">
+ |
+ MavenTools</span></td>
+ </tr>
+ <tr style="background-color:
							#EEEEEE
						">
+ <td class="rowLine"><a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/featu..." style="font-size:x-small">org.jboss.tools.maven.seam.feature</a></td>
+ <td><span style="font-size:x-small">1.2.0.v20111027-1501-H240-Final</span></td>
+ <td><span style="font-size:x-small">
+ |
+ MavenTools</span></td>
+ </tr>
+ <tr style="background-color:
							#FFFFFF
						">
+ <td class="rowLine"><a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/featu..." style="font-size:x-small">org.jboss.tools.modeshape.rest.feature</a></td>
+ <td><span style="font-size:x-small">1.0.0.v20111104-1207-H172-Final</span></td>
+ <td><span style="font-size:x-small">
+ |
+ AllTools</span><span style="font-size:x-small">
+ |
+ GeneralTools</span></td>
+ </tr>
+ <tr style="background-color:
							#EEEEEE
						">
+ <td class="rowLine"><a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/featu..." style="font-size:x-small">org.jboss.tools.portlet.feature</a></td>
+ <td><span style="font-size:x-small">1.1.0.v20111025-0629-H191-Final</span></td>
+ <td><span style="font-size:x-small">
+ |
+ AllTools</span><span style="font-size:x-small">
+ |
+ WebTools</span></td>
+ </tr>
+ <tr style="background-color:
							#FFFFFF
						">
+ <td class="rowLine"><a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/featu..." style="font-size:x-small">org.jboss.tools.project.examples.feature</a></td>
+ <td><span style="font-size:x-small">1.2.0.v20111025-1337-H184-Final</span></td>
+ <td><span style="font-size:x-small">
+ |
+ AllTools</span><span style="font-size:x-small">
+ |
+ GeneralTools</span></td>
+ </tr>
+ <tr style="background-color:
							#EEEEEE
						">
+ <td class="rowLine"><a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/featu..." style="font-size:x-small">org.jboss.tools.richfaces.feature</a></td>
+ <td><span style="font-size:x-small">3.2.1.v20111027-1258-H202-Final</span></td>
+ <td><span style="font-size:x-small">
+ |
+ AllTools</span><span style="font-size:x-small">
+ |
+ WebTools</span></td>
+ </tr>
+ <tr style="background-color:
							#FFFFFF
						">
+ <td class="rowLine"><a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/featu..." style="font-size:x-small">org.jboss.tools.runtime.core.feature</a></td>
+ <td><span style="font-size:x-small">1.0.0.v20111025-0316-H469-Final</span></td>
+ <td><span style="font-size:x-small">
+ |
+ AllTools</span></td>
+ </tr>
+ <tr style="background-color:
							#EEEEEE
						">
+ <td class="rowLine"><a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/featu..." style="font-size:x-small">org.jboss.tools.runtime.feature</a></td>
+ <td><span style="font-size:x-small">1.2.0.v20111025-0316-H469-Final</span></td>
+ <td><span style="font-size:x-small">
+ |
+ AllTools</span></td>
+ </tr>
+ <tr style="background-color:
							#FFFFFF
						">
+ <td class="rowLine"><a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/featu..." style="font-size:x-small">org.jboss.tools.seam.feature</a></td>
+ <td><span style="font-size:x-small">3.2.1.v20111027-1359-H303-Final</span></td>
+ <td><span style="font-size:x-small">
+ |
+ AllTools</span><span style="font-size:x-small">
+ |
+ WebTools</span></td>
+ </tr>
+ <tr style="background-color:
							#EEEEEE
						">
+ <td class="rowLine"><a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/featu..." style="font-size:x-small">org.jboss.tools.smooks.feature</a></td>
+ <td><span style="font-size:x-small">1.1.0.v20111025-0650-H200-Final</span></td>
+ <td><span style="font-size:x-small">
+ |
+ AllTools</span><span style="font-size:x-small">
+ |
+ SOATools</span><span style="font-size:x-small">
+ |
+ DataTools</span><span style="font-size:x-small">
+ |
+ GeneralTools</span></td>
+ </tr>
+ <tr style="background-color:
							#FFFFFF
						">
+ <td class="rowLine"><a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/featu..." style="font-size:x-small">org.jboss.tools.struts.feature</a></td>
+ <td><span style="font-size:x-small">3.1.1.v20111025-2151-H198-Final</span></td>
+ <td><span style="font-size:x-small">
+ |
+ AllTools</span><span style="font-size:x-small">
+ |
+ WebTools</span></td>
+ </tr>
+ <tr style="background-color:
							#EEEEEE
						">
+ <td class="rowLine"><a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/featu..." style="font-size:x-small">org.jboss.tools.tptp.feature</a></td>
+ <td><span style="font-size:x-small">1.2.0.v20111025-0405-H192-Final</span></td>
+ <td><span style="font-size:x-small">
+ |
+ TestPerfTools</span></td>
+ </tr>
+ <tr style="background-color:
							#FFFFFF
						">
+ <td class="rowLine"><a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/featu..." style="font-size:x-small">org.jboss.tools.usage.feature</a></td>
+ <td><span style="font-size:x-small">1.0.0.v20111025-0334-H157-Final</span></td>
+ <td><span style="font-size:x-small">
+ |
+ AllTools</span></td>
+ </tr>
+ <tr style="background-color:
							#EEEEEE
						">
+ <td class="rowLine"><a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/featu..." style="font-size:x-small">org.jboss.tools.ws.feature</a></td>
+ <td><span style="font-size:x-small">1.2.1.v20111025-2223-H243-Final</span></td>
+ <td><span style="font-size:x-small">
+ |
+ AllTools</span><span style="font-size:x-small">
+ |
+ SOATools</span></td>
+ </tr>
+ <tr style="background-color:
							#FFFFFF
						">
+ <td class="rowLine"><a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/featu..." style="font-size:x-small">org.jboss.tools.xulrunner.feature</a></td>
+ <td><span style="font-size:x-small">1.9.12.v20111025-2102-H197-Final</span></td>
+ <td></td>
+ </tr>
+ <tr style="background-color:#DDDDDD">
+ <th style="font-size:small">Feature</th>
+ <th style="font-size:small">Version</th>
+ <th style="font-size:small">
+ Feature Categor(ies)
+
+ </th>
+ </tr>
+ <tr style="background-color:
							#EEEEEE
						">
+ <td class="rowLine"><a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/featu..." style="font-size:x-small">org.drools.eclipse.feature</a></td>
+ <td><span style="font-size:x-small">5.2.1.Final</span></td>
+ <td><span style="font-size:x-small">
+ |
+ AllTools</span><span style="font-size:x-small">
+ |
+ SOATools</span><span style="font-size:x-small">
+ |
+ GeneralTools</span></td>
+ </tr>
+ <tr style="background-color:
							#FFFFFF
						">
+ <td class="rowLine"><a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/featu..." style="font-size:x-small">org.drools.eclipse.task.feature</a></td>
+ <td><span style="font-size:x-small">5.2.1.Final</span></td>
+ <td><span style="font-size:x-small">
+ |
+ AllTools</span><span style="font-size:x-small">
+ |
+ SOATools</span></td>
+ </tr>
+ <tr style="background-color:
							#EEEEEE
						">
+ <td class="rowLine"><a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/featu..." style="font-size:x-small">org.guvnor.tools.feature</a></td>
+ <td><span style="font-size:x-small">5.2.1.Final</span></td>
+ <td><span style="font-size:x-small">
+ |
+ AllTools</span><span style="font-size:x-small">
+ |
+ SOATools</span></td>
+ </tr>
+ <tr style="background-color:
							#FFFFFF
						">
+ <td class="rowLine"><a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/featu..." style="font-size:x-small">org.hibernate.eclipse.feature</a></td>
+ <td><span style="font-size:x-small">3.4.0.v20111025-0625-H210-Final</span></td>
+ <td><span style="font-size:x-small">
+ |
+ AllTools</span><span style="font-size:x-small">
+ |
+ WebTools</span><span style="font-size:x-small">
+ |
+ DataTools</span><span style="font-size:x-small">
+ |
+ GeneralTools</span></td>
+ </tr>
+ <tr style="background-color:
							#EEEEEE
						">
+ <td class="rowLine"><a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/featu..." style="font-size:x-small">org.mozilla.xulrunner.feature</a></td>
+ <td><span style="font-size:x-small">1.9.12.v20110706-1605-H39-CR2</span></td>
+ <td></td>
+ </tr>
+ <tr style="background-color:
							#FFFFFF
						">
+ <td class="rowLine"><a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/featu..." style="font-size:x-small">org.pi4soa.core.feature</a></td>
+ <td><span style="font-size:x-small">3.1.0.v20111114-2220-H205-Final</span></td>
+ <td><span style="font-size:x-small">
+ |
+ SOATools</span></td>
+ </tr>
+ <tr style="background-color:
							#EEEEEE
						">
+ <td class="rowLine"><a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/featu..." style="font-size:x-small">org.scribble.protocol.feature</a></td>
+ <td><span style="font-size:x-small">1.1.0.Final</span></td>
+ <td></td>
+ </tr>
+ <tr style="background-color:
							#FFFFFF
						">
+ <td class="rowLine"><a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/featu..." style="font-size:x-small">org.teiid.datatools.connectivity.feature</a></td>
+ <td><span style="font-size:x-small">7.4.2.v20111104-1235-H672-Final</span></td>
+ <td><span style="font-size:x-small">
+ |
+ DataTools</span></td>
+ </tr>
+ <tr style="background-color:
							#EEEEEE
						">
+ <td class="rowLine"><a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/featu..." style="font-size:x-small">org.teiid.designer.feature</a></td>
+ <td><span style="font-size:x-small">7.4.2.v20111104-1235-H672-Final</span></td>
+ <td><span style="font-size:x-small">
+ |
+ DataTools</span></td>
+ </tr>
+ <tr style="background-color:
							#FFFFFF
						">
+ <td class="rowLine"><a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/featu..." style="font-size:x-small">org.teiid.designer.runtime.feature</a></td>
+ <td><span style="font-size:x-small">7.4.2.v20111104-1235-H672-Final</span></td>
+ <td><span style="font-size:x-small">
+ |
+ DataTools</span></td>
+ </tr>
+ <tr style="background-color:#DDDDDD">
+ <th colspan="1" style="font-size:small">Metadata</th>
+ <th colspan="1" style="font-size:small"></th>
+ <th colspan="1" style="font-size:small"></th>
+ </tr>
+ <tr style="background-color:#EEEEEE">
+ <td class="rowLine" colspan="1"><a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/site.xml" style="font-size:x-small">site.xml</a>
+ ::
+ <a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/artif..." style="font-size:x-small">artifacts.jar</a>
+ ::
+ <a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/conte..." style="font-size:x-small">content.jar</a></td>
+ <td class="rowLine" colspan="1">
+ ::
+ <a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/plugins/" style="font-size:x-small">plugins</a>
+ ::
+ <a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.2.2.Final/featu..." style="font-size:x-small">features</a></td>
+ <td class="rowLine" colspan="1"></td>
+ </tr>
+</table><br xmlns="http://www.w3.org/1999/xhtml" xmlns:xalan="http://xml.apache.org/xalan"></br>
+ </td>
+ <td></td>
+ </tr>
+ <tr>
+ <td></td>
+ <td>
<table width="100%">
<tr class="header">
<td class="sub-header" width="100%"><span> Installation
@@ -129,4 +538,5 @@
</td>
</tr>
</table>
+</center>
</html>
12 years, 7 months
JBoss Tools SVN: r42112 - in trunk/download.jboss.org/jbosstools/updates: stable and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2012-06-20 12:07:08 -0400 (Wed, 20 Jun 2012)
New Revision: 42112
Added:
trunk/download.jboss.org/jbosstools/updates/stable/index.html
trunk/download.jboss.org/jbosstools/updates/stable/indigo/index.html
Modified:
trunk/download.jboss.org/jbosstools/updates/development/index.html
Log:
create more index pages
Modified: trunk/download.jboss.org/jbosstools/updates/development/index.html
===================================================================
--- trunk/download.jboss.org/jbosstools/updates/development/index.html 2012-06-20 15:54:54 UTC (rev 42111)
+++ trunk/download.jboss.org/jbosstools/updates/development/index.html 2012-06-20 16:07:08 UTC (rev 42112)
@@ -39,8 +39,8 @@
</p>
<ul>
- <li><a href="indigo">JBoss Tools 3.3 Development Milestone</a> (requires Eclipse 3.7 Indigo SR2)</li>
- <li><a href="helios">JBoss Tools 3.2 Development Milestone</a> (requires Eclipse 3.6 Helios SR2)</li>
+ <li><a href="indigo">JBoss Tools 3.3 Development Milestone</a> (requires Eclipse 3.7.2 Indigo SR2)</li>
+ <li><a href="helios">JBoss Tools 3.2 Development Milestone</a> (requires Eclipse 3.6.2 Helios SR2)</li>
</ul>
</td>
</tr>
Copied: trunk/download.jboss.org/jbosstools/updates/stable/index.html (from rev 42111, trunk/download.jboss.org/jbosstools/updates/development/index.html)
===================================================================
--- trunk/download.jboss.org/jbosstools/updates/stable/index.html (rev 0)
+++ trunk/download.jboss.org/jbosstools/updates/stable/index.html 2012-06-20 16:07:08 UTC (rev 42112)
@@ -0,0 +1,137 @@
+<html>
+<head>
+<title>JBoss Tools Stable Release Update Sites</title>
+<style>
+@import url("../../web/site.css");
+</style>
+</head>
+<body marginheight="0" marginwidth="0" leftmargin="0" topmargin="0">
+<table marginheight="0" marginwidth="0" leftmargin="0" topmargin="0"
+ cellspacing="0" cellpadding="0">
+ <tr>
+ <td colspan="2"><img
+ src="https://www.jboss.org/dms/tools/images/tools-banner.png" /></td>
+ </tr>
+ <tr>
+
+ <td>  </td>
+ </tr>
+ <tr>
+ <td>  </td>
+ <td>
+ <h2 class="title">JBoss Tools Stable Release Update Sites</h2>
+ <table width="100%">
+
+ <tr class="light-row" style="height: 30px">
+ <td class="bodyText">
+ <p class="bodyText">This is the <b>Development Milestone</b>
+ Update Site for JBoss Tools. See <a class="link"
+ href="http://www.jboss.org/tools/download/update">Installation
+ Instructions</a>.</p>
+
+ </td>
+ </tr>
+
+ <tr class="dark-row" style="height: 90px">
+ <td class="bodyText">
+ <p class="bodyText"><b class="bodyText" style="color: red;">
+Choose your development stream:</b>
+ </p>
+
+ <ul>
+ <li><a href="indigo">JBoss Tools 3.3 Development Milestone</a> (requires Eclipse 3.7.2 Indigo SR2)</li>
+ <li><a href="helios">JBoss Tools 3.2 Development Milestone</a> (requires Eclipse 3.6.2 Helios SR2)</li>
+ </ul>
+ </td>
+ </tr>
+
+ <tr class="light-row" style="height: 30px">
+ <td class="bodyText">
+
+ <p class="bodyText">You can also download JBoss Tools as
+ individual zips for offline installation. See <a class="link"
+ href="http://www.jboss.org/tools/download">JBoss Tools
+ Downloads</a>.</p>
+ </td>
+ </tr>
+
+ <tr class="dark-row" style="height: 30px">
+ <td class="bodyText">
+ <p class="bodyText">For more information, see <a
+ href="http://www.jboss.org/tools/download/installation">Installation
+ methods</a>.</p>
+
+ </td>
+ </tr>
+ <tr>
+ <td class="spacer"><br />
+ </td>
+ <td class="spacer"><br />
+ </td>
+ </tr>
+ </table>
+
+ </td>
+ </tr>
+ <tr>
+ <td></td>
+ <td>
+ <table width="100%">
+ <tr class="header">
+ <td class="sub-header" width="100%"><span> Installation
+ Types</span></td>
+
+ </tr>
+ <tr class="light-row" style="height: 30px">
+ <td class="bodyText">
+ <p class="bodyText">Depending on how close to the bleeding edge
+ you like to be, there are several types of releases available.</p>
+ <br />
+
+ </td>
+ </tr>
+
+ <tr class="dark-row" style="height: 30px">
+ <td class="bodyText">
+ <h4>Stable Releases</h4>
+
+ <p><a href="https://www.jboss.org/tools/download/stable.html">Stable
+ releases</a> are - as indicated by their name - stable.</p><br/>
+
+ </td>
+ </tr>
+
+ <tr class="light-row" style="height: 30px">
+ <td class="bodyText">
+ <h4>Development Milestones</h4>
+
+ <p><a href="https://www.jboss.org/tools/download/dev.html">Development
+ builds</a>, released once per milestone and only a few times a year, are
+ fairly stable, but there may be some things which do not yet work.
+ If you would like to try one of these milestones, we'd greatly
+ appreciate the assistance in testing and <a
+ href="https://jira.jboss.org/jira/browse/JBIDE">reporting of
+ issues in our issue tracker</a>.</p><br/>
+
+ </td>
+
+ </tr>
+
+ <tr class="dark-row" style="height: 30px">
+ <td class="bodyText">
+ <h4>Nightly Builds</h4>
+
+ <p>The <a
+ href="https://www.jboss.org/tools/download/nightly.html">bleeding
+ edge</a> contains the latest and greatest new features, but nothing is
+ stable or guaranteed - yet. If you're using a Milestone and need a
+ fix, you can update to the latest Nightly, or wait for the next
+ Milestone.</p><br/>
+
+ </td>
+ </tr>
+ </table>
+ </td>
+ </tr>
+</table>
+</html>
Added: trunk/download.jboss.org/jbosstools/updates/stable/indigo/index.html
===================================================================
--- trunk/download.jboss.org/jbosstools/updates/stable/indigo/index.html (rev 0)
+++ trunk/download.jboss.org/jbosstools/updates/stable/indigo/index.html 2012-06-20 16:07:08 UTC (rev 42112)
@@ -0,0 +1,1875 @@
+<html>
+<head>
+<title>JBoss Tools - Core - Stable Release Update Site: 3.3.0.v20120615-1215-H190-Final</title>
+<style>
+@import url("http://download.jboss.org/jbosstools/updates/web/site.css");
+</style>
+</head>
+<body marginheight="0" marginwidth="0" leftmargin="0" topmargin="0">
+<center>
+<table marginheight="0" marginwidth="0" leftmargin="0" topmargin="0"
+ cellspacing="0" cellpadding="0" width="920" class="bodyText">
+ <tr>
+ <td colspan="3"><img
+ src="https://www.jboss.org/dms/tools/images/tools-banner.png" /></td>
+ </tr>
+ <tr>
+ <td>      </td>
+ <td>      </td>
+ <td>      </td>
+ </tr>
+ <tr>
+ <td>      </td>
+ <td>
+ <h2 class="title">JBoss Tools - Core - Stable Release Update Site</h2>
+ <table width="100%">
+ <tr class="header">
+ <td class="sub-header" width="100%"><span>Latest Build: 3.3.0.v20120615-1215-H190-Final</span></td>
+ </tr>
+
+ <tr class="light-row" style="height: 30px">
+ <td class="bodyText">
+ <p class="bodyText">This is the <b>Stable Release</b>
+ Update Site for JBoss Tools - Core.
+ <blockquote style="border: 1px dashed #1778be; padding: 2px">
+ <ol>
+ <li>To <a class="link"
+ href="http://www.jboss.org/tools/download/installation/update_3_3">install</a>
+ from this site, start up Eclipse 3.7, then do:
+ <ul>
+ <code><strong>Help > Install New Software... ></strong></code>
+ </ul>
+ </li>
+ <li>Copy this site's URL into Eclipse, and hit Enter.</li>
+ <li>When the site loads, select the features to install,
+ or click the <code><strong>Select All</strong></code> button.</li>
+ <li>To properly resolve all dependencies, check
+ <ul><code><strong>[x] Contact all update sites during install to find required software</strong></code></ul>
+
+ <li>Click <code><strong>Next</strong></code>, agree to the license
+ terms, and install.</li>
+
+ <p class="bodyText">
+ You can also download JBoss Tools as individual zips for
+ offline installation. See <a class="link"
+ href="http://www.jboss.org/tools/download">JBoss Tools
+ Downloads</a>.<br /> If you downloaded this site as a zip, see
+ <a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">Installation README</a>.
+ See also <a
+ href="http://www.jboss.org/tools/download/installation">Installation
+ methods</a>.
+ </p>
+ </ol>
+ </blockquote>
+ </td>
+ </tr>
+ </table>
+ </td>
+ <td>      </td>
+ </tr>
+ <tr>
+ <td></td>
+ <td>
+ <table xmlns="http://www.w3.org/1999/xhtml" xmlns:xalan="http://xml.apache.org/xalan" border="0" cellpadding="0" cellspacing="2">
+<tr style="background-color:#DDDDDD">
+<th style="font-size:small">Feature</th>
+<th style="font-size:small">Version</th>
+<th style="font-size:small">
+ Feature Categor(ies)
+ </th>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.ide.eclipse.archives.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">3.2.1.v20120611-1725-H88-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AbridgedTools</span>
+<span style="font-size:x-small">
+ |
+ GeneralTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.ide.eclipse.archives.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">3.2.1.v20120611-1725-H88-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.ide.eclipse.as.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">2.3.0.v20120615-1559-H138-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AbridgedTools</span>
+<span style="font-size:x-small">
+ |
+ WebTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.ide.eclipse.as.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">2.3.0.v20120615-1559-H138-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.ide.eclipse.freemarker.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">1.2.0.v20120611-1732-H94-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AbridgedTools</span>
+<span style="font-size:x-small">
+ |
+ GeneralTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.ide.eclipse.freemarker.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">1.2.0.v20120611-1732-H94-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.birt.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">1.3.0.v20120611-2045-H100-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ ReportTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.birt.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">1.3.0.v20120611-2045-H100-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.cdi.deltaspike.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">1.2.0.v20120611-1827-H85-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AbridgedTools</span>
+<span style="font-size:x-small">
+ |
+ WebTools</span>
+<span style="font-size:x-small">
+ |
+ GeneralTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.cdi.deltaspike.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">1.2.0.v20120611-1827-H85-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.cdi.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">1.2.0.v20120611-1827-H85-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AbridgedTools</span>
+<span style="font-size:x-small">
+ |
+ WebTools</span>
+<span style="font-size:x-small">
+ |
+ GeneralTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.cdi.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">1.2.0.v20120611-1827-H85-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.cdi.seam.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">1.2.0.v20120611-1827-H85-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AbridgedTools</span>
+<span style="font-size:x-small">
+ |
+ WebTools</span>
+<span style="font-size:x-small">
+ |
+ GeneralTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.cdi.seam.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">1.2.0.v20120611-1827-H85-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.central.discovery.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">1.0.0.v20120612-0053-H99-Final</span>
+</td>
+<td/>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.central.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">1.0.0.v20120612-0053-H99-Final</span>
+</td>
+<td/>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.common.core.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">3.3.0.v20120611-1634-H74-Final</span>
+</td>
+<td/>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.common.core.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">3.3.0.v20120611-1634-H74-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.common.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">3.3.0.v20120611-1634-H74-Final</span>
+</td>
+<td/>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.common.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">3.3.0.v20120611-1634-H74-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.common.jdt.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">3.3.0.v20120611-1634-H74-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AbridgedTools</span>
+<span style="font-size:x-small">
+ |
+ GeneralTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.common.jdt.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">3.3.0.v20120611-1634-H74-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.common.mylyn.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">3.3.0.v20120611-1634-H74-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AbridgedTools</span>
+<span style="font-size:x-small">
+ |
+ GeneralTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.common.mylyn.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">3.3.0.v20120611-1634-H74-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.common.text.ext.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">3.3.0.v20120611-1634-H74-Final</span>
+</td>
+<td/>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.common.text.ext.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">3.3.0.v20120611-1634-H74-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.common.ui.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">3.3.0.v20120611-1634-H74-Final</span>
+</td>
+<td/>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.common.ui.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">3.3.0.v20120611-1634-H74-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.common.verification.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">3.3.0.v20120611-1634-H74-Final</span>
+</td>
+<td/>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.common.verification.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">3.3.0.v20120611-1634-H74-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.community.central.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">1.0.0.v20120612-0053-H99-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AbridgedTools</span>
+<span style="font-size:x-small">
+ |
+ GeneralTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.community.project.examples.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">1.2.1.v20120612-0012-H106-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AbridgedTools</span>
+<span style="font-size:x-small">
+ |
+ GeneralTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.community.project.examples.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">1.2.1.v20120612-0012-H106-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.forge.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">1.0.0.v20120611-1732-H94-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AbridgedTools</span>
+<span style="font-size:x-small">
+ |
+ WebTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.forge.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">1.0.0.v20120611-1732-H94-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.gwt.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">1.0.2.v20120611-1739-H80-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ GeneralTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.gwt.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">1.0.2.v20120611-1739-H80-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.jmx.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">1.2.0.v20120611-1733-H71-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AbridgedTools</span>
+<span style="font-size:x-small">
+ |
+ GeneralTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.jmx.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">1.2.0.v20120611-1733-H71-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.jsf.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">3.3.0.v20120611-2148-H115-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AbridgedTools</span>
+<span style="font-size:x-small">
+ |
+ WebTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.jsf.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">3.3.0.v20120611-2148-H115-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.jst.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">3.3.0.v20120611-1739-H85-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AbridgedTools</span>
+<span style="font-size:x-small">
+ |
+ WebTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.jst.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">3.3.0.v20120611-1739-H85-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.maven.cdi.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">1.3.0.v20120613-2141-H115-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AbridgedTools</span>
+<span style="font-size:x-small">
+ |
+ MavenTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.maven.cdi.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">1.3.0.v20120613-2141-H115-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.maven.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">1.3.0.v20120613-2141-H115-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AbridgedTools</span>
+<span style="font-size:x-small">
+ |
+ MavenTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.maven.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">1.3.0.v20120613-2141-H115-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.maven.gwt.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">1.3.0.v20120613-2141-H115-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ MavenTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.maven.gwt.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">1.3.0.v20120613-2141-H115-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.maven.hibernate.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">1.3.0.v20120613-2141-H115-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AbridgedTools</span>
+<span style="font-size:x-small">
+ |
+ MavenTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.maven.hibernate.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">1.3.0.v20120613-2141-H115-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.maven.jaxrs.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">1.3.0.v20120613-2141-H115-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AbridgedTools</span>
+<span style="font-size:x-small">
+ |
+ MavenTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.maven.jaxrs.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">1.3.0.v20120613-2141-H115-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.maven.jbosspackaging.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">1.3.0.v20120613-2141-H115-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AbridgedTools</span>
+<span style="font-size:x-small">
+ |
+ MavenTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.maven.jbosspackaging.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">1.3.0.v20120613-2141-H115-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.maven.jdt.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">1.3.0.v20120613-2141-H115-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AbridgedTools</span>
+<span style="font-size:x-small">
+ |
+ MavenTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.maven.jdt.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">1.3.0.v20120613-2141-H115-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.maven.jpa.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">1.3.0.v20120613-2141-H115-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AbridgedTools</span>
+<span style="font-size:x-small">
+ |
+ MavenTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.maven.jpa.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">1.3.0.v20120613-2141-H115-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.maven.jsf.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">1.3.0.v20120613-2141-H115-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AbridgedTools</span>
+<span style="font-size:x-small">
+ |
+ MavenTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.maven.jsf.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">1.3.0.v20120613-2141-H115-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.maven.portlet.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">1.3.0.v20120613-2141-H115-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AbridgedTools</span>
+<span style="font-size:x-small">
+ |
+ MavenTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.maven.portlet.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">1.3.0.v20120613-2141-H115-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.maven.profiles.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">1.3.0.v20120613-2141-H115-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AbridgedTools</span>
+<span style="font-size:x-small">
+ |
+ MavenTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.maven.profiles.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">1.3.0.v20120613-2141-H115-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.maven.project.examples.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">1.3.0.v20120613-2141-H115-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AbridgedTools</span>
+<span style="font-size:x-small">
+ |
+ MavenTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.maven.project.examples.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">1.3.0.v20120613-2141-H115-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.maven.seam.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">1.3.0.v20120613-2141-H115-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AbridgedTools</span>
+<span style="font-size:x-small">
+ |
+ MavenTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.maven.seam.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">1.3.0.v20120613-2141-H115-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.maven.sourcelookup.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">1.3.0.v20120613-2141-H115-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AbridgedTools</span>
+<span style="font-size:x-small">
+ |
+ MavenTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.maven.sourcelookup.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">1.3.0.v20120613-2141-H115-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.openshift.egit.integration.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">2.3.0.v20120613-1951-H135-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AbridgedTools</span>
+<span style="font-size:x-small">
+ |
+ CloudTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.openshift.egit.integration.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">2.3.0.v20120613-1951-H135-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.openshift.express.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">2.3.0.v20120613-1951-H135-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AbridgedTools</span>
+<span style="font-size:x-small">
+ |
+ CloudTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.openshift.express.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">2.3.0.v20120613-1951-H135-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.portlet.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">1.2.0.v20120611-2357-H92-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AbridgedTools</span>
+<span style="font-size:x-small">
+ |
+ WebTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.portlet.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">1.2.0.v20120611-2357-H92-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.project.examples.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">1.2.1.v20120612-0012-H106-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AbridgedTools</span>
+<span style="font-size:x-small">
+ |
+ GeneralTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.project.examples.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">1.2.1.v20120612-0012-H106-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.richfaces.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">3.3.0.v20120611-2148-H115-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AbridgedTools</span>
+<span style="font-size:x-small">
+ |
+ WebTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.richfaces.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">3.3.0.v20120611-2148-H115-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.runtime.as.detector.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">1.3.0.v20120611-2354-H105-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AbridgedTools</span>
+<span style="font-size:x-small">
+ |
+ WebTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.runtime.as.detector.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">1.3.0.v20120611-2354-H105-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.runtime.core.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">1.3.0.v20120611-2354-H105-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AbridgedTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.runtime.core.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">1.3.0.v20120611-2354-H105-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.runtime.seam.detector.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">1.3.0.v20120611-2354-H105-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AbridgedTools</span>
+<span style="font-size:x-small">
+ |
+ WebTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.runtime.seam.detector.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">1.3.0.v20120611-2354-H105-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.seam.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">3.3.0.v20120612-1916-H130-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AbridgedTools</span>
+<span style="font-size:x-small">
+ |
+ WebTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.seam.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">3.3.0.v20120612-1916-H130-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.struts.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">3.3.0.v20120611-1903-H112-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ WebTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.struts.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">3.3.0.v20120611-1903-H112-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.usage.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">1.1.0.v20120611-1654-H68-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AbridgedTools</span>
+<span style="font-size:x-small">
+ |
+ GeneralTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.usage.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">1.1.0.v20120611-1654-H68-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.vpe.browsersim.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">3.3.0.v20120611-1821-H102-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AbridgedTools</span>
+<span style="font-size:x-small">
+ |
+ WebTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.vpe.browsersim.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">3.3.0.v20120611-1821-H102-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.vpe.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">3.3.0.v20120611-1821-H102-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AbridgedTools</span>
+<span style="font-size:x-small">
+ |
+ WebTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.vpe.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">3.3.0.v20120611-1821-H102-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.ws.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">1.2.2.v20120611-1829-H137-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AbridgedTools</span>
+<span style="font-size:x-small">
+ |
+ WebTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.ws.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">1.2.2.v20120611-1829-H137-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.ws.jaxrs.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">1.2.2.v20120611-1829-H137-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AbridgedTools</span>
+<span style="font-size:x-small">
+ |
+ WebTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.ws.jaxrs.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">1.2.2.v20120611-1829-H137-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.xulrunner.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">3.3.0.v20120611-1821-H102-Final</span>
+</td>
+<td/>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.jboss.tools.xulrunner.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">3.3.0.v20120611-1821-H102-Final</span>
+</td>
+<td/>
+</tr>
+<tr style="background-color:#DDDDDD">
+<th style="font-size:small">Feature</th>
+<th style="font-size:small">Version</th>
+<th style="font-size:small">
+ Feature Categor(ies)
+ </th>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.hibernate.eclipse.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">3.4.0.v20120611-2017-H93-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AbridgedTools</span>
+<span style="font-size:x-small">
+ |
+ WebTools</span>
+<span style="font-size:x-small">
+ |
+ DataTools</span>
+<span style="font-size:x-small">
+ |
+ GeneralTools</span>
+</td>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.hibernate.eclipse.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">3.4.0.v20120611-2017-H93-Final</span>
+</td>
+<td>
+<span style="font-size:x-small">
+ |
+ AllSources</span>
+</td>
+</tr>
+<tr style="background-color:
+ #EEEEEE
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.mozilla.xulrunner.feature</a>
+</td>
+<td>
+<span style="font-size:x-small">1.9.218.v20120611-1712-H151-Final</span>
+</td>
+<td/>
+</tr>
+<tr style="background-color:
+ #FFFFFF
+ ">
+<td class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">org.mozilla.xulrunner.feature.source</a>
+</td>
+<td>
+<span style="font-size:x-small">1.9.218.v20120611-1712-H151-Final</span>
+</td>
+<td/>
+</tr>
+<tr style="background-color:#DDDDDD">
+<th style="font-size:small" colspan="1">Metadata</th>
+<th style="font-size:small" colspan="1"/>
+<th style="font-size:small" colspan="1"/>
+</tr>
+<tr style="background-color:#EEEEEE">
+<td colspan="1" class="rowLine">
+<a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">site.xml</a>
+ ::
+ <a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">artifacts.jar</a>
+ ::
+ <a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">content.jar</a>
+</td>
+<td colspan="1" class="rowLine">
+ ::
+ <a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">plugins</a>
+ ::
+ <a style="font-size:x-small" href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/...">features</a>
+</td>
+<td colspan="1" class="rowLine">
+ :: <a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/..." style="font-size:x-small">jbosstools-directory.xml</a>
+ :: <a href="http://download.jboss.org/jbosstools/updates/JBossTools-3.3.0.Final.core/..." style="font-size:x-small">site.properties</a>
+ </td>
+</tr>
+</table><br xmlns="http://www.w3.org/1999/xhtml" xmlns:xalan="http://xml.apache.org/xalan"/>
+
+ </td>
+ <td></td>
+ </tr>
+ <tr>
+ <td></td>
+ <td>
+ <table width="100%">
+ <tr class="header">
+ <td class="sub-header" width="100%"><span> Installation
+ Types</span></td>
+ </tr>
+ <tr class="light-row" style="height: 30px">
+ <td class="bodyText">
+ <p class="bodyText">Depending on how close to the bleeding edge
+ you like to be, there are several types of releases available.</p>
+ <br />
+
+ </td>
+ </tr>
+
+ <tr class="dark-row" style="height: 30px">
+ <td class="bodyText">
+ <h4>Stable Releases</h4>
+
+ <p><a href="https://www.jboss.org/tools/download/stable.html">Stable
+ releases</a> are - as indicated by their name - stable.</p><br/>
+
+ </td>
+ </tr>
+
+ <tr class="light-row" style="height: 30px">
+ <td class="bodyText">
+ <h4>Development Milestones</h4>
+
+ <p><a href="https://www.jboss.org/tools/download/dev.html">Development
+ builds</a>, released once per milestone and only a few times a year, are
+ fairly stable, but there may be some things which do not yet work.
+ If you would like to try one of these milestones, we'd greatly
+ appreciate the assistance in testing and <a
+ href="https://jira.jboss.org/jira/browse/JBIDE">reporting of
+ issues in our issue tracker</a>.</p><br/>
+
+ </td>
+ </tr>
+
+ <tr class="dark-row" style="height: 30px">
+ <td class="bodyText">
+ <h4>Nightly Builds</h4>
+
+ <p>The <a
+ href="https://www.jboss.org/tools/download/nightly.html">bleeding
+ edge</a> contains the latest and greatest new features, but nothing is
+ stable or guaranteed - yet. If you're using a Milestone and need a
+ fix, you can update to the latest Nightly, or wait for the next
+ Milestone.</p><br/>
+ </td>
+ </tr>
+ </table>
+ </td>
+ </tr>
+</table>
+</center>
+</html>
12 years, 7 months
JBoss Tools SVN: r42109 - trunk/download.jboss.org/jbosstools/updates/webtools/indigo.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2012-06-20 11:53:17 -0400 (Wed, 20 Jun 2012)
New Revision: 42109
Modified:
trunk/download.jboss.org/jbosstools/updates/webtools/indigo/index.html
Log:
release 3.3.0.Final to http://download.jboss.org/jbosstools/updates/webtools/indigo/
Modified: trunk/download.jboss.org/jbosstools/updates/webtools/indigo/index.html
===================================================================
--- trunk/download.jboss.org/jbosstools/updates/webtools/indigo/index.html 2012-06-20 14:51:46 UTC (rev 42108)
+++ trunk/download.jboss.org/jbosstools/updates/webtools/indigo/index.html 2012-06-20 15:53:17 UTC (rev 42109)
@@ -1,6 +1,6 @@
<html>
<head>
-<title>JBoss Tools - Web Tools - Development Milestone Update Site: 3.3.0.v20120605-1519-H98-CR1webtools</title>
+<title>JBoss Tools - Web Tools - Stable Release Update Site: 3.3.0.v20120615-1211-H103-Final.webtools</title>
<style>
@import url("http://download.jboss.org/jbosstools/updates/web/site.css");
</style>
@@ -21,15 +21,15 @@
<tr>
<td>      </td>
<td>
- <h2 class="title">JBoss Tools - Web Tools - Development Milestone Update Site</h2>
+ <h2 class="title">JBoss Tools - Web Tools - Stable Release Update Site</h2>
<table width="100%">
<tr class="header">
- <td class="sub-header" width="100%"><span>Latest Build: 3.3.0.v20120605-1519-H98-CR1webtools</span></td>
+ <td class="sub-header" width="100%"><span>Latest Build: 3.3.0.v20120615-1211-H103-Final.webtools</span></td>
</tr>
<tr class="light-row" style="height: 30px">
<td class="bodyText">
- <p class="bodyText">This is the <b>Development Milestone</b>
+ <p class="bodyText">This is the <b>Stable Release</b>
Update Site for JBoss Tools - Web Tools.
<p align="center"><span style="padding:4px;color:white;background-color:red;font-weight:bold">NOTE:This site was built using Indigo (Eclipse 3.7.2), but SHOULD work with Juno (Eclipse 4.2M6+) too.</span></p>
<blockquote style="border: 1px dashed #1778be; padding: 2px">
@@ -81,20 +81,20 @@
</th>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.ide.eclipse.archives.feature_3.2.1.v20120604-2017-H86-CR1.jar" style="font-size:x-small">org.jboss.ide.eclipse.archives.feature</a></td>
- <td><span style="font-size:x-small">3.2.1.v20120604-2017-H86-CR1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.ide.eclipse.archives.feature_3.2.1.v20120611-1725-H88-Final.jar" style="font-size:x-small">org.jboss.ide.eclipse.archives.feature</a></td>
+ <td><span style="font-size:x-small">3.2.1.v20120611-1725-H88-Final</span></td>
<td></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.ide.eclipse.as.feature_2.3.0.v20120605-1904-H135-CR1.jar" style="font-size:x-small">org.jboss.ide.eclipse.as.feature</a></td>
- <td><span style="font-size:x-small">2.3.0.v20120605-1904-H135-CR1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.ide.eclipse.as.feature_2.3.0.v20120615-1559-H138-Final.jar" style="font-size:x-small">org.jboss.ide.eclipse.as.feature</a></td>
+ <td><span style="font-size:x-small">2.3.0.v20120615-1559-H138-Final</span></td>
<td><span style="font-size:x-small">
|
org.eclipse.wst.server.core.serverAdapter</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.jmx.feature_1.2.0.v20120604-2017-H70-CR1.jar" style="font-size:x-small">org.jboss.tools.jmx.feature</a></td>
- <td><span style="font-size:x-small">1.2.0.v20120604-2017-H70-CR1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.jmx.feature_1.2.0.v20120611-1733-H71-Final.jar" style="font-size:x-small">org.jboss.tools.jmx.feature</a></td>
+ <td><span style="font-size:x-small">1.2.0.v20120611-1733-H71-Final</span></td>
<td></td>
</tr>
<tr style="background-color:#DDDDDD">
12 years, 7 months
JBoss Tools SVN: r42108 - trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/configurators.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2012-06-20 10:51:46 -0400 (Wed, 20 Jun 2012)
New Revision: 42108
Modified:
trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/configurators/DefaultJBossCentralConfigurator.java
Log:
JBIDE-11683 - Enable defining runtime download using external xml file
Modified: trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/configurators/DefaultJBossCentralConfigurator.java
===================================================================
--- trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/configurators/DefaultJBossCentralConfigurator.java 2012-06-20 13:52:29 UTC (rev 42107)
+++ trunk/examples/plugins/org.jboss.tools.project.examples/src/org/jboss/tools/project/examples/configurators/DefaultJBossCentralConfigurator.java 2012-06-20 14:51:46 UTC (rev 42108)
@@ -47,7 +47,7 @@
// see pom.xml for actual value -- this is passed it at build-time via Maven
private static final String JBOSS_DIRECTORY_URL;
- private static final String JBOSS_RUNTIME_URL_DEFAULT = "http://download.jboss.org/examples/download_runtimes.xml"; //$NON-NLS-1$
+ private static final String JBOSS_RUNTIME_URL_DEFAULT = "http://download.jboss.org/jbosstools/examples/download_runtimes.xml"; //$NON-NLS-1$
private static final String JBOSS_RUNTIME_DIRECTORY = "jboss.runtime.directory.url"; //$NON-NLS-1$
12 years, 7 months
JBoss Tools SVN: r42107 - trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/types.
by jbosstools-commits@lists.jboss.org
Author: jjankovi
Date: 2012-06-20 09:52:29 -0400 (Wed, 20 Jun 2012)
New Revision: 42107
Modified:
trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/types/IDELabel.java
Log:
Web Service Tester label added into IDELabel
Modified: trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/types/IDELabel.java
===================================================================
--- trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/types/IDELabel.java 2012-06-20 13:47:17 UTC (rev 42106)
+++ trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/types/IDELabel.java 2012-06-20 13:52:29 UTC (rev 42107)
@@ -282,6 +282,7 @@
public static final String DATA_SOURCE_EXPLORER = "Data Source Explorer";
public static final String SERVERS = "Servers";
public static final String WEB_PROJECTS = "Web Projects";
+ public static final String WEB_SERVICE_TESTER = "Web Service Tester";
public static final String CONSOLE = "Console";
public static final String PROBLEMS = "Problems";
public static final String DEBUG = "Debug";
12 years, 7 months
JBoss Tools SVN: r42106 - trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test.
by jbosstools-commits@lists.jboss.org
Author: jjankovi
Date: 2012-06-20 09:47:17 -0400 (Wed, 20 Jun 2012)
New Revision: 42106
Modified:
trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/WSAllBotTests.java
Log:
SOAPWSToolingIntegrationTest now included in testsuite as well
Modified: trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/WSAllBotTests.java
===================================================================
--- trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/WSAllBotTests.java 2012-06-20 13:46:27 UTC (rev 42105)
+++ trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/WSAllBotTests.java 2012-06-20 13:47:17 UTC (rev 42106)
@@ -12,6 +12,7 @@
import org.jboss.tools.ui.bot.ext.RequirementAwareSuite;
import org.jboss.tools.ws.ui.bot.test.annotation.AnnotationPropertiesTest;
+import org.jboss.tools.ws.ui.bot.test.integration.SOAPWSToolingIntegrationTest;
import org.jboss.tools.ws.ui.bot.test.rest.DefaultValueAnnotationSupportTest;
import org.jboss.tools.ws.ui.bot.test.rest.MatrixAnnotationSupportTest;
import org.jboss.tools.ws.ui.bot.test.rest.PathAnnotationSupportTest;
@@ -66,6 +67,7 @@
DefaultValueAnnotationSupportTest.class,
RESTfulValidationTest.class,
RESTfulCompletionTest.class,
+ SOAPWSToolingIntegrationTest.class,
ApplicationPathAnnotationTest.class,
BottomUpWSTest.class,
TopDownWSTest.class,
12 years, 7 months
JBoss Tools SVN: r42105 - in trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test: integration and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: jjankovi
Date: 2012-06-20 09:46:27 -0400 (Wed, 20 Jun 2012)
New Revision: 42105
Added:
trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/integration/
trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/integration/JAXRSToolingIntegrationTest.java
trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/integration/SOAPWSToolingIntegrationTest.java
Log:
new tooling integration test for SOAP ws tested in WSTester
Added: trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/integration/JAXRSToolingIntegrationTest.java
===================================================================
--- trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/integration/JAXRSToolingIntegrationTest.java (rev 0)
+++ trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/integration/JAXRSToolingIntegrationTest.java 2012-06-20 13:46:27 UTC (rev 42105)
@@ -0,0 +1,156 @@
+/*******************************************************************************
+ * Copyright (c) 2010-2012 Red Hat, Inc.
+ * Distributed under license by Red Hat, Inc. All rights reserved.
+ * This program is made available under the terms of the
+ * Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Red Hat, Inc. - initial API and implementation
+ ******************************************************************************/
+package org.jboss.tools.ws.ui.bot.test.integration;
+
+import org.jboss.tools.ui.bot.ext.config.Annotations.Require;
+import org.jboss.tools.ui.bot.ext.config.Annotations.Server;
+import org.jboss.tools.ui.bot.ext.config.Annotations.ServerState;
+import org.jboss.tools.ws.ui.bot.test.rest.RESTfulTestBase;
+import org.jboss.tools.ws.ui.bot.test.uiutils.RESTFullExplorer;
+import org.jboss.tools.ws.ui.bot.test.widgets.WsTesterView;
+import org.jboss.tools.ws.ui.bot.test.widgets.WsTesterView.Request_Type;
+import org.junit.BeforeClass;
+import org.junit.Test;
+
+/**
+ *
+ * @author jjankovi
+ *
+ */
+@Require(server = @Server(state = ServerState.Running), perspective = "Java EE")
+public class JAXRSToolingIntegrationTest extends RESTfulTestBase {
+
+ private static String projectName = "integration1";
+ private String localhostUrl = "http://localhost:8080/";
+ private String serviceUrl = localhostUrl + projectName + "/rest/";
+
+ @BeforeClass
+ public static void prepareWS() {
+ importRestWSProject(projectName);
+ }
+
+ @Test
+ public void testGetMethod() {
+ /* get JAX-RS REST Web Services */
+ restfulWizard = new RESTFullExplorer(projectName);
+
+ /* run on server - web service tester should be shown */
+ runRestServiceOnConfiguredServer("GET");
+ assertWebServiceTesterIsActive();
+
+ /* test generated url and response after invoking */
+ WsTesterView wsTesterView = showWSTester();
+ assertEquals(serviceUrl + "get", wsTesterView.getServiceURL());
+
+ invokeMethodInWSTester(wsTesterView, Request_Type.GET);
+ assertEquals("GET method", wsTesterView.getResponseBody());
+ assertEquals("[HTTP/1.1 200 OK]", wsTesterView.getResponseHeaders()[0]);
+
+ /* minimize web service tester */
+ wsTesterView.minimize();
+ }
+
+ @Test
+ public void testPostMethod() {
+ /* get JAX-RS REST Web Services */
+ restfulWizard = new RESTFullExplorer(projectName);
+
+ /* run on server - web service tester should be shown */
+ runRestServiceOnConfiguredServer("POST");
+ assertWebServiceTesterIsActive();
+
+ /* test generated url and response after invoking */
+ WsTesterView wsTesterView = showWSTester();
+ assertEquals(serviceUrl + "post", wsTesterView.getServiceURL());
+
+ invokeMethodInWSTester(wsTesterView, Request_Type.POST);
+ assertEquals("POST method", wsTesterView.getResponseBody());
+ assertEquals("[HTTP/1.1 200 OK]", wsTesterView.getResponseHeaders()[0]);
+
+ /* minimize web service tester */
+ wsTesterView.minimize();
+ }
+
+ @Test
+ public void testPutMethod() {
+ /* get JAX-RS REST Web Services */
+ restfulWizard = new RESTFullExplorer(projectName);
+
+ /* run on server - web service tester should be shown */
+ runRestServiceOnConfiguredServer("PUT");
+ assertWebServiceTesterIsActive();
+
+ /* test generated url and response after invoking */
+ WsTesterView wsTesterView = showWSTester();
+ assertEquals(serviceUrl + "put", wsTesterView.getServiceURL());
+
+ invokeMethodInWSTester(wsTesterView, Request_Type.PUT);
+ assertEquals("PUT method", wsTesterView.getResponseBody());
+ assertEquals("[HTTP/1.1 200 OK]", wsTesterView.getResponseHeaders()[0]);
+
+ /* minimize web service tester */
+ wsTesterView.minimize();
+ }
+
+ @Test
+ public void testDeleteMethod() {
+ /* get JAX-RS REST Web Services */
+ restfulWizard = new RESTFullExplorer(projectName);
+
+ /* run on server - web service tester should be shown */
+ runRestServiceOnConfiguredServer("DELETE");
+ assertWebServiceTesterIsActive();
+
+ /* test generated url and response after invoking */
+ WsTesterView wsTesterView = showWSTester();
+ assertEquals(serviceUrl + "get", wsTesterView.getServiceURL());
+
+ invokeMethodInWSTester(wsTesterView, Request_Type.DELETE);
+ assertEquals("DELETE method", wsTesterView.getResponseBody());
+ assertEquals("[HTTP/1.1 200 OK]", wsTesterView.getResponseHeaders()[0]);
+
+ /* minimize web service tester */
+ wsTesterView.minimize();
+ }
+
+ @Test
+ public void testUnavailableServiceMethod() {
+ /* get JAX-RS REST Web Services */
+ restfulWizard = new RESTFullExplorer(projectName);
+
+ /* run on server - web service tester should be shown */
+ runRestServiceOnConfiguredServer("GET");
+ assertWebServiceTesterIsActive();
+
+ /* test generated url and response after invoking */
+ WsTesterView wsTesterView = showWSTester();
+ assertEquals(serviceUrl + "get", wsTesterView.getServiceURL());
+
+ invokeMethodInWSTester(wsTesterView, Request_Type.POST);
+ assertFalse(wsTesterView.getResponseBody().equals("GET method"));
+ assertEquals("[HTTP/1.1 405 Method Not Allowed]", wsTesterView.getResponseHeaders()[0]);
+
+ /* minimize web service tester */
+ wsTesterView.minimize();
+ }
+
+ private WsTesterView showWSTester() {
+ WsTesterView wsTesterView = new WsTesterView();
+ wsTesterView.show();
+ return wsTesterView;
+ }
+
+ private void invokeMethodInWSTester(WsTesterView wsTesterView, Request_Type type) {
+ wsTesterView.setRequestType(type);
+ wsTesterView.invoke();
+ }
+
+}
Added: trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/integration/SOAPWSToolingIntegrationTest.java
===================================================================
--- trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/integration/SOAPWSToolingIntegrationTest.java (rev 0)
+++ trunk/ws/tests/org.jboss.tools.ws.ui.bot.test/src/org/jboss/tools/ws/ui/bot/test/integration/SOAPWSToolingIntegrationTest.java 2012-06-20 13:46:27 UTC (rev 42105)
@@ -0,0 +1,102 @@
+/*******************************************************************************
+ * Copyright (c) 2010-2012 Red Hat, Inc.
+ * Distributed under license by Red Hat, Inc. All rights reserved.
+ * This program is made available under the terms of the
+ * Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * Red Hat, Inc. - initial API and implementation
+ ******************************************************************************/
+package org.jboss.tools.ws.ui.bot.test.integration;
+
+import org.eclipse.swtbot.swt.finder.widgets.SWTBotMenu;
+import org.eclipse.swtbot.swt.finder.widgets.SWTBotTree;
+import org.eclipse.swtbot.swt.finder.widgets.SWTBotTreeItem;
+import org.jboss.tools.ui.bot.ext.helper.ContextMenuHelper;
+import org.jboss.tools.ws.ui.bot.test.WSTestBase;
+import org.jboss.tools.ws.ui.bot.test.widgets.WsTesterView;
+import org.jboss.tools.ws.ui.bot.test.widgets.WsTesterView.Request_Type;
+import org.junit.BeforeClass;
+import org.junit.Test;
+
+/**
+ *
+ * @author jjankovi
+ *
+ */
+public class SOAPWSToolingIntegrationTest extends WSTestBase {
+
+ private final static String projectName = "integration2";
+ private final String[] pathToRestExplorer = {projectName, "wsdl"};
+ private final String request =
+ "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"yes\" ?> " + LINE_SEPARATOR +
+ "<soap:Envelope xmlns:soap=\"http://schemas.xmlsoap.org/soap/envelope/\" " +
+ "xmlns:xsd=\"http://www.w3.org/2001/XMLSchema\" " +
+ "xmlns:xsi=\"http://www.w3.org/2001/XMLSchema-instance\"> " + LINE_SEPARATOR +
+ "<soap:Header> " + LINE_SEPARATOR +
+ "</soap:Header>" + LINE_SEPARATOR +
+ "<soap:Body> " + LINE_SEPARATOR +
+ "<webs:sayHello xmlns:webs=\"http://webservices.samples.jboss.org/\">" + LINE_SEPARATOR +
+ "<arg0>User</arg0>" + LINE_SEPARATOR +
+ "</webs:sayHello>" + LINE_SEPARATOR +
+ "</soap:Body>" + LINE_SEPARATOR +
+ "</soap:Envelope>";
+
+ @BeforeClass
+ public static void prepareWS() {
+ importWSTestProject(projectName);
+ deploymentHelper.runProject(projectName);
+ }
+
+ @Override
+ public void setup() {
+
+ }
+
+ @Override
+ public void cleanup() {
+
+ }
+
+ @Test
+ public void testSimpleIntegration() {
+
+ WsTesterView wsTesterView = openWSDLFileInWSTester();
+ testWSDLInWSTester(wsTesterView);
+
+ }
+
+ private SWTBotTreeItem getWSDLTreeItem() {
+ return projectExplorer.selectTreeItem("HelloWorldService.wsdl",
+ pathToRestExplorer).expand();
+ }
+
+ private SWTBotTree getProjectExplorerTree() {
+ return projectExplorer.bot().tree();
+ }
+
+ private WsTesterView openWSDLFileInWSTester() {
+ SWTBotTree tree = getProjectExplorerTree();
+ ContextMenuHelper.prepareTreeItemForContextMenu(
+ tree, getWSDLTreeItem());
+ SWTBotMenu menu = new SWTBotMenu(ContextMenuHelper.
+ getContextMenu(tree, "Web Services", false));
+ menu.menu("Test in JBoss Web Service Tester").click();
+ WsTesterView tester = new WsTesterView();
+ tester.show();
+ return tester;
+ }
+
+ private void testWSDLInWSTester(WsTesterView wsTesterView) {
+ wsTesterView.setRequestType(Request_Type.JAX_WS);
+ wsTesterView.getFromWSDL().ok();
+ wsTesterView.setRequestBody(request);
+ wsTesterView.invoke();
+ bot.sleep(5000);
+ String rsp = wsTesterView.getResponseBody();
+ assertTrue(rsp.trim().length() > 0);
+ assertTrue(rsp, rsp.contains("Hello User!"));
+ }
+
+}
12 years, 7 months