JBoss Tools SVN: r43199 - in trunk/maven/plugins/org.jboss.tools.maven.conversion.ui: src/org/jboss/tools/maven/conversion/ui/dialog and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: fbricon
Date: 2012-08-23 12:39:35 -0400 (Thu, 23 Aug 2012)
New Revision: 43199
Added:
trunk/maven/plugins/org.jboss.tools.maven.conversion.ui/src/org/jboss/tools/maven/conversion/ui/internal/CellListener.java
Modified:
trunk/maven/plugins/org.jboss.tools.maven.conversion.ui/plugin.xml
trunk/maven/plugins/org.jboss.tools.maven.conversion.ui/src/org/jboss/tools/maven/conversion/ui/dialog/IdentifyMavenDependencyPage.java
trunk/maven/plugins/org.jboss.tools.maven.conversion.ui/src/org/jboss/tools/maven/conversion/ui/internal/ClasspathConversionParticipant.java
Log:
JBIDE-8973 : don't display wizard if there are no jar dependencies
Modified: trunk/maven/plugins/org.jboss.tools.maven.conversion.ui/plugin.xml
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.conversion.ui/plugin.xml 2012-08-23 15:33:04 UTC (rev 43198)
+++ trunk/maven/plugins/org.jboss.tools.maven.conversion.ui/plugin.xml 2012-08-23 16:39:35 UTC (rev 43199)
@@ -1,6 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.5"?>
<plugin>
+<!--
<extension point="org.eclipse.ui.commands">
<command
id="org.jboss.tools.maven.conversion.ui.commands.convertToMavenDependencies"
@@ -32,8 +33,8 @@
</command>
</menuContribution>
</extension>
+-->
-
<extension
point="org.eclipse.m2e.core.projectConversionParticipants">
<projectConversionParticipant
Modified: trunk/maven/plugins/org.jboss.tools.maven.conversion.ui/src/org/jboss/tools/maven/conversion/ui/dialog/IdentifyMavenDependencyPage.java
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.conversion.ui/src/org/jboss/tools/maven/conversion/ui/dialog/IdentifyMavenDependencyPage.java 2012-08-23 15:33:04 UTC (rev 43198)
+++ trunk/maven/plugins/org.jboss.tools.maven.conversion.ui/src/org/jboss/tools/maven/conversion/ui/dialog/IdentifyMavenDependencyPage.java 2012-08-23 16:39:35 UTC (rev 43199)
@@ -17,6 +17,7 @@
import java.util.LinkedHashMap;
import java.util.List;
import java.util.Map;
+import java.util.Map.Entry;
import java.util.Set;
import org.apache.maven.model.Dependency;
@@ -54,6 +55,7 @@
import org.eclipse.swt.widgets.TableColumn;
import org.eclipse.swt.widgets.TableItem;
import org.jboss.tools.maven.conversion.ui.handlers.IdentifyJarJob;
+import org.jboss.tools.maven.conversion.ui.internal.CellListener;
import org.jboss.tools.maven.conversion.ui.internal.MavenDependencyConversionActivator;
import org.jboss.tools.maven.sourcelookup.identification.IFileIdentificationManager;
import org.jboss.tools.maven.sourcelookup.identification.IdentificationUtil;
@@ -244,10 +246,27 @@
dependenciesViewer.setInput(dependencyMap.entrySet());
dependenciesViewer.setAllChecked(true);
+ dependenciesViewer.getTable().addListener(SWT.MouseDoubleClick, new CellListener(dependenciesViewer.getTable()) {
+
+ @Override
+ protected void handle(int columnIndex, TableItem item) {
+ if (columnIndex == DEPENDENCY_COLUMN) {
+ Entry<IClasspathEntry, Dependency> entry = (Map.Entry<IClasspathEntry, Dependency>) item.getData();
+ Dependency d= entry.getValue();
+ EditDependencyDialog editDependencyDialog = new EditDependencyDialog(getShell());
+ editDependencyDialog.setDependency(d);
+ if(editDependencyDialog.open() == Window.OK) {
+ entry.setValue(editDependencyDialog.getDependency());
+ }
+ }
+ }
+ });
+
+
addSelectionButton(container, "Select All", true);
addSelectionButton(container, "Deselect All", false);
- addIdentifyButton(container, "Identify dependencies");
- //addResetButton(container, "Reset");
+ //addIdentifyButton(container, "Identify dependencies");
+ addResetButton(container, "Reset");
addCellEditors();
}
@@ -302,13 +321,7 @@
super(parent);
}
- protected Button createButton(Composite parent) {
- Button result = new Button(parent, SWT.DOWN);
- result.setText("Edit..."); //$NON-NLS-1$
- return result;
- }
-
- @Override
+ @Override
protected Object openDialogBox(Control cellEditorWindow) {
Table table = (Table)cellEditorWindow.getParent();
int idx = table.getSelectionIndex();
@@ -493,7 +506,10 @@
List<Dependency> dependencies = new ArrayList<Dependency>(selection.length);
for (Object o : selection) {
Map.Entry<IClasspathEntry, Dependency> entry = (Map.Entry<IClasspathEntry, Dependency>) o;
- dependencies.add(entry.getValue());
+ Dependency d = entry.getValue();
+ if (d != null) {
+ dependencies.add(d);
+ }
}
return dependencies;
}
Added: trunk/maven/plugins/org.jboss.tools.maven.conversion.ui/src/org/jboss/tools/maven/conversion/ui/internal/CellListener.java
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.conversion.ui/src/org/jboss/tools/maven/conversion/ui/internal/CellListener.java (rev 0)
+++ trunk/maven/plugins/org.jboss.tools.maven.conversion.ui/src/org/jboss/tools/maven/conversion/ui/internal/CellListener.java 2012-08-23 16:39:35 UTC (rev 43199)
@@ -0,0 +1,40 @@
+package org.jboss.tools.maven.conversion.ui.internal;
+
+import org.eclipse.core.runtime.Assert;
+import org.eclipse.swt.graphics.Point;
+import org.eclipse.swt.graphics.Rectangle;
+import org.eclipse.swt.widgets.Event;
+import org.eclipse.swt.widgets.Listener;
+import org.eclipse.swt.widgets.Table;
+import org.eclipse.swt.widgets.TableItem;
+
+public abstract class CellListener implements Listener {
+
+ protected Table table;
+
+ public CellListener(Table table) {
+ Assert.isNotNull(table);
+ this.table = table;
+ }
+
+ @Override
+ public void handleEvent(Event event) {
+ Point pt = new Point(event.x, event.y);
+ TableItem item = table.getItem(pt);
+ if (item == null)
+ return;
+
+ int columnCount = table.getColumnCount();
+
+ for (int i = 0; i < columnCount; i++) {
+ Rectangle rect = item.getBounds(i);
+ if (rect.contains(pt)) {
+ int index = table.indexOf(item);
+ handle(index, item);
+ }
+ }
+ }
+
+ abstract protected void handle(int columnIndex, TableItem item);
+
+}
Modified: trunk/maven/plugins/org.jboss.tools.maven.conversion.ui/src/org/jboss/tools/maven/conversion/ui/internal/ClasspathConversionParticipant.java
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.conversion.ui/src/org/jboss/tools/maven/conversion/ui/internal/ClasspathConversionParticipant.java 2012-08-23 15:33:04 UTC (rev 43198)
+++ trunk/maven/plugins/org.jboss.tools.maven.conversion.ui/src/org/jboss/tools/maven/conversion/ui/internal/ClasspathConversionParticipant.java 2012-08-23 16:39:35 UTC (rev 43199)
@@ -1,5 +1,6 @@
package org.jboss.tools.maven.conversion.ui.internal;
+import java.util.Collection;
import java.util.LinkedHashSet;
import java.util.List;
import java.util.Set;
@@ -9,9 +10,11 @@
import org.eclipse.core.resources.IProject;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IProgressMonitor;
+import org.eclipse.jdt.core.IClasspathContainer;
import org.eclipse.jdt.core.IClasspathEntry;
import org.eclipse.jdt.core.IJavaProject;
import org.eclipse.jdt.core.JavaCore;
+import org.eclipse.jdt.core.JavaModelException;
import org.eclipse.jface.window.Window;
import org.eclipse.jface.wizard.WizardDialog;
import org.eclipse.m2e.core.project.conversion.AbstractProjectConversionParticipant;
@@ -34,6 +37,7 @@
throws CoreException {
if (accept(project)) {
+
IJavaProject javaProject = JavaCore.create(project);
IClasspathEntry[] classpath = javaProject.getRawClasspath();
Set<IClasspathEntry> entries = new LinkedHashSet<IClasspathEntry>(classpath.length);
@@ -43,7 +47,7 @@
}
}
- if (entries.isEmpty()) {
+ if (!hasDependencies(javaProject, entries)) {
return;
}
@@ -66,6 +70,24 @@
}
}
+ private boolean hasDependencies(IJavaProject javaProject, Collection<IClasspathEntry> initialEntries) throws JavaModelException {
+ for (IClasspathEntry entry : initialEntries) {
+ if ((entry.getEntryKind() == IClasspathEntry.CPE_LIBRARY && entry.getPath() != null)
+ || (entry.getEntryKind() == IClasspathEntry.CPE_PROJECT)) {
+ return true;
+ } else if (entry.getEntryKind() == IClasspathEntry.CPE_CONTAINER) {
+ IClasspathContainer container = JavaCore.getClasspathContainer(entry.getPath(), javaProject );
+ if (container != null) {
+ IClasspathEntry[] cpes = container.getClasspathEntries();
+ if (cpes != null && cpes.length > 0) {
+ return true;
+ }
+ }
+ }
+ }
+ return false;
+ }
+
private boolean isValid(IClasspathEntry cpe) {
if(IClasspathEntry.CPE_CONTAINER == cpe.getEntryKind()
12 years, 5 months
JBoss Tools SVN: r43198 - trunk/build/aggregate/site.
by jbosstools-commits@lists.jboss.org
Author: mickael_istria
Date: 2012-08-23 11:33:04 -0400 (Thu, 23 Aug 2012)
New Revision: 43198
Added:
trunk/build/aggregate/site/category.xml
Removed:
trunk/build/aggregate/site/index.html
trunk/build/aggregate/site/jbosstools-directory.xml
trunk/build/aggregate/site/site.xml
Modified:
trunk/build/aggregate/site/pom.xml
Log:
JBIDE-11065: Use generate-repository-facade plugin for aggregate site WIP.
Copied: trunk/build/aggregate/site/category.xml (from rev 42811, trunk/build/aggregate/site/site.xml)
===================================================================
--- trunk/build/aggregate/site/category.xml (rev 0)
+++ trunk/build/aggregate/site/category.xml 2012-08-23 15:33:04 UTC (rev 43198)
@@ -0,0 +1,457 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<site>
+ <description>JBoss Tools 3.4 (Juno) Updates - Core</description>
+
+ <!-- PLEASE NOTE!
+ When updating this file, please be sure that it parses as valid XML before committing it.
+ To test, just run `mvn clean install` in this folder.
+ -->
+
+ <!-- only in JBDS
+ <feature url="features/com.jboss.jbds.product.feature_0.0.0.jar" id="com.jboss.jbds.product.feature" version="0.0.0" patch="false">
+ <category name="AbridgedTools" />
+ </feature>
+ <feature url="features/com.jboss.jbds.central.discovery.feature_0.0.0.jar" id="com.jboss.jbds.central.discovery.feature" version="0.0.0">
+ </feature>
+ -->
+
+ <feature url="features/org.jboss.tools.central.feature_0.0.0.jar" id="org.jboss.tools.central.feature" version="0.0.0">
+ </feature>
+ <!-- only in JBT -->
+ <feature url="features/org.jboss.tools.community.central.feature_0.0.0.jar" id="org.jboss.tools.community.central.feature" version="0.0.0">
+ <category name="AbridgedTools" />
+ <category name="GeneralTools" />
+ </feature>
+ <feature url="features/org.jboss.tools.central.discovery.feature_0.0.0.jar" id="org.jboss.tools.central.discovery.feature" version="0.0.0">
+ </feature>
+ <feature url="features/org.jboss.tools.richfaces.feature_0.0.0.jar" id="org.jboss.tools.richfaces.feature" version="0.0.0">
+ <category name="AbridgedTools" />
+ <category name="WebTools" />
+ </feature>
+ <feature url="features/org.jboss.tools.vpe.browsersim.feature_0.0.0.jar" id="org.jboss.tools.vpe.browsersim.feature" version="0.0.0">
+ <category name="AbridgedTools" />
+ <category name="WebTools" />
+ </feature>
+ <feature url="features/org.jboss.tools.jst.feature_0.0.0.jar" id="org.jboss.tools.jst.feature" version="0.0.0">
+ <category name="AbridgedTools" />
+ <category name="WebTools" />
+ </feature>
+ <feature url="features/org.jboss.tools.vpe.feature_0.0.0.jar" id="org.jboss.tools.vpe.feature" version="0.0.0">
+ <category name="AbridgedTools" />
+ <category name="WebTools" />
+ </feature>
+ <feature url="features/org.jboss.tools.jsf.feature_0.0.0.jar" id="org.jboss.tools.jsf.feature" version="0.0.0">
+ <category name="AbridgedTools" />
+ <category name="WebTools" />
+ </feature>
+ <!-- include but do not categorize -->
+ <feature url="features/org.jboss.tools.xulrunner.feature_0.0.0.jar" id="org.jboss.tools.xulrunner.feature" version="0.0.0">
+ </feature>
+ <feature url="features/org.mozilla.xulrunner.feature_0.0.0.jar" id="org.mozilla.xulrunner.feature" version="0.0.0">
+ </feature>
+
+ <feature url="features/org.jboss.tools.seam.feature_0.0.0.jar" id="org.jboss.tools.seam.feature" version="0.0.0">
+ <category name="AbridgedTools" />
+ <category name="WebTools" />
+ </feature>
+ <feature url="features/org.jboss.tools.cdi.feature_0.0.0.jar" id="org.jboss.tools.cdi.feature" version="0.0.0">
+ <category name="AbridgedTools" />
+ <category name="WebTools" />
+ <category name="GeneralTools" />
+ </feature>
+ <feature url="features/org.jboss.tools.cdi.seam.feature_0.0.0.jar" id="org.jboss.tools.cdi.seam.feature" version="0.0.0">
+ <category name="AbridgedTools" />
+ <category name="WebTools" />
+ <category name="GeneralTools" />
+ </feature>
+ <feature url="features/org.jboss.tools.cdi.deltaspike.feature_0.0.0.jar" id="org.jboss.tools.cdi.deltaspike.feature" version="0.0.0">
+ <category name="AbridgedTools" />
+ <category name="WebTools" />
+ <category name="GeneralTools" />
+ </feature>
+ <feature url="features/org.jboss.tools.jmx.feature_0.0.0.jar" id="org.jboss.tools.jmx.feature" version="0.0.0">
+ <category name="AbridgedTools" />
+ <category name="GeneralTools" />
+ </feature>
+ <feature url="features/org.jboss.ide.eclipse.as.feature_0.0.0.jar" id="org.jboss.ide.eclipse.as.feature" version="0.0.0">
+ <category name="AbridgedTools" />
+ <category name="WebTools" />
+ </feature>
+ <feature url="features/org.jboss.tools.openshift.express.feature_0.0.0.jar" id="org.jboss.tools.openshift.express.feature" version="0.0.0">
+ <category name="AbridgedTools" />
+ <category name="CloudTools" />
+ </feature>
+ <feature url="features/org.jboss.tools.openshift.egit.integration.feature_0.0.0.jar" id="org.jboss.tools.openshift.egit.integration.feature" version="0.0.0">
+ <category name="AbridgedTools" />
+ <category name="CloudTools" />
+ </feature>
+ <!-- only in JBDS
+ <feature url="features/org.eclipse.egit_0.0.0.jar" id="org.eclipse.egit" version="0.0.0">
+ </feature>
+ <feature url="features/org.eclipse.jgit_0.0.0.jar" id="org.eclipse.jgit" version="0.0.0">
+ </feature>
+ -->
+ <feature url="features/org.jboss.ide.eclipse.archives.feature_0.0.0.jar" id="org.jboss.ide.eclipse.archives.feature" version="0.0.0">
+ <category name="AbridgedTools" />
+ <category name="GeneralTools" />
+ </feature>
+ <feature url="features/org.hibernate.eclipse.feature_0.0.0.jar" id="org.hibernate.eclipse.feature" version="0.0.0">
+ <category name="AbridgedTools" />
+ <category name="WebTools" />
+ <category name="DataTools" />
+ <category name="GeneralTools" />
+ </feature>
+ <feature url="features/org.jboss.ide.eclipse.freemarker.feature_0.0.0.jar" id="org.jboss.ide.eclipse.freemarker.feature" version="0.0.0">
+ <category name="AbridgedTools" />
+ <category name="GeneralTools" />
+ </feature>
+ <feature url="features/org.jboss.tools.struts.feature_0.0.0.jar" id="org.jboss.tools.struts.feature" version="0.0.0">
+ <category name="WebTools" />
+ </feature>
+ <feature url="features/org.jboss.tools.ws.feature_0.0.0.jar" id="org.jboss.tools.ws.feature" version="0.0.0">
+ <category name="AbridgedTools" />
+ <category name="WebTools" />
+ </feature>
+ <feature url="features/org.jboss.tools.ws.jaxrs.feature_0.0.0.jar" id="org.jboss.tools.ws.jaxrs.feature" version="0.0.0">
+ <category name="AbridgedTools" />
+ <category name="WebTools" />
+ </feature>
+ <feature url="features/org.jboss.tools.portlet.feature_0.0.0.jar" id="org.jboss.tools.portlet.feature" version="0.0.0">
+ <category name="AbridgedTools" />
+ <category name="WebTools" />
+ </feature>
+ <feature url="features/org.jboss.tools.forge.feature_0.0.0.jar" id="org.jboss.tools.forge.feature" version="0.0.0">
+ <category name="AbridgedTools"/>
+ <category name="WebTools" />
+ </feature>
+ <feature url="features/org.jboss.tools.project.examples.feature_0.0.0.jar" id="org.jboss.tools.project.examples.feature" version="0.0.0">
+ <category name="AbridgedTools" />
+ <category name="GeneralTools" />
+ </feature>
+
+ <!-- only in JBT -->
+ <feature url="features/org.jboss.tools.community.project.examples.feature_0.0.0.jar" id="org.jboss.tools.community.project.examples.feature" version="0.0.0">
+ <category name="AbridgedTools" />
+ <category name="GeneralTools" />
+ </feature>
+ <feature url="features/org.jboss.tools.birt.feature_0.0.0.jar" id="org.jboss.tools.birt.feature" version="0.0.0">
+ <category name="ReportTools" />
+ </feature>
+
+ <!-- only in JBDS
+ <feature url="features/com.jboss.jbds.m2e.feature_0.0.0.jar" id="com.jboss.jbds.m2e.feature" version="0.0.0">
+ <category name="AbridgedTools"/>
+ <category name="MavenTools" />
+ </feature>
+ <feature url="features/org.eclipse.m2e.feature_0.0.0.jar" id="org.eclipse.m2e.feature" version="0.0.0">
+ </feature>
+ <feature url="features/org.maven.ide.eclipse.wtp.feature_0.0.0.jar" id="org.maven.ide.eclipse.wtp.feature" version="0.0.0">
+ </feature>
+ <feature url="features/org.sonatype.m2e.mavenarchiver.feature_0.0.0.jar" id="org.sonatype.m2e.mavenarchiver.feature" version="0.0.0">
+ </feature>
+ -->
+ <feature url="features/org.jboss.tools.maven.feature_0.0.0.jar" id="org.jboss.tools.maven.feature" version="0.0.0">
+ <category name="AbridgedTools" />
+ <category name="MavenTools" />
+ </feature>
+ <feature url="features/org.jboss.tools.maven.cdi.feature_0.0.0.jar" id="org.jboss.tools.maven.cdi.feature" version="0.0.0">
+ <category name="AbridgedTools" />
+ <category name="MavenTools" />
+ </feature>
+ <feature url="features/org.jboss.tools.maven.hibernate.feature_0.0.0.jar" id="org.jboss.tools.maven.hibernate.feature" version="0.0.0">
+ <category name="AbridgedTools" />
+ <category name="MavenTools" />
+ </feature>
+ <feature url="features/org.jboss.tools.maven.jaxrs.feature_0.0.0.jar" id="org.jboss.tools.maven.jaxrs.feature" version="0.0.0">
+ <category name="AbridgedTools" />
+ <category name="MavenTools" />
+ </feature>
+ <feature url="features/org.jboss.tools.maven.jdt.feature_0.0.0.jar" id="org.jboss.tools.maven.jdt.feature" version="0.0.0">
+ <category name="AbridgedTools" />
+ <category name="MavenTools" />
+ </feature>
+ <feature url="features/org.jboss.tools.maven.jpa.feature_0.0.0.jar" id="org.jboss.tools.maven.jpa.feature" version="0.0.0">
+ <category name="AbridgedTools" />
+ <category name="MavenTools" />
+ </feature>
+ <feature url="features/org.jboss.tools.maven.jsf.feature_0.0.0.jar" id="org.jboss.tools.maven.jsf.feature" version="0.0.0">
+ <category name="AbridgedTools" />
+ <category name="MavenTools" />
+ </feature>
+ <feature url="features/org.jboss.tools.maven.portlet.feature_0.0.0.jar" id="org.jboss.tools.maven.portlet.feature" version="0.0.0">
+ <category name="AbridgedTools" />
+ <category name="MavenTools" />
+ </feature>
+ <feature url="features/org.jboss.tools.maven.profiles.feature_0.0.0.jar" id="org.jboss.tools.maven.profiles.feature" version="0.0.0">
+ <category name="AbridgedTools" />
+ <category name="MavenTools" />
+ </feature>
+ <feature url="features/org.jboss.tools.maven.project.examples.feature_0.0.0.jar" id="org.jboss.tools.maven.project.examples.feature" version="0.0.0">
+ <category name="AbridgedTools" />
+ <category name="MavenTools" />
+ </feature>
+ <feature url="features/org.jboss.tools.maven.seam.feature_0.0.0.jar" id="org.jboss.tools.maven.seam.feature" version="0.0.0">
+ <category name="AbridgedTools" />
+ <category name="MavenTools"/>
+ </feature>
+ <feature url="features/org.jboss.tools.maven.sourcelookup.feature_0.0.0.jar" id="org.jboss.tools.maven.sourcelookup.feature" version="0.0.0">
+ <category name="AbridgedTools" />
+ <category name="MavenTools" />
+ </feature>
+ <!-- only in JBT and JBDS Extras -->
+ <feature url="features/org.jboss.tools.maven.jbosspackaging.feature_0.0.0.jar" id="org.jboss.tools.maven.jbosspackaging.feature" version="0.0.0">
+ <category name="AbridgedTools" />
+ <category name="MavenTools" />
+ </feature>
+ <feature url="features/org.jboss.tools.maven.gwt.feature_0.0.0.jar" id="org.jboss.tools.maven.gwt.feature" version="0.0.0">
+ <category name="MavenTools" />
+ </feature>
+ <!-- only in JBT -->
+ <feature url="features/org.jboss.tools.gwt.feature_0.0.0.jar" id="org.jboss.tools.gwt.feature" version="0.0.0">
+ <category name="GeneralTools" />
+ </feature>
+ <feature url="features/org.jboss.tools.common.mylyn.feature_0.0.0.jar" id="org.jboss.tools.common.mylyn.feature" version="0.0.0">
+ <category name="AbridgedTools" />
+ <category name="GeneralTools"/>
+ </feature>
+
+ <feature url="features/org.jboss.tools.common.jdt.feature_0.0.0.jar" id="org.jboss.tools.common.jdt.feature" version="0.0.0">
+ <category name="AbridgedTools" />
+ <category name="GeneralTools"/>
+ </feature>
+
+ <!-- include but do not categorize -->
+ <feature url="features/org.jboss.tools.common.feature_0.0.0.jar" id="org.jboss.tools.common.feature" version="0.0.0">
+ </feature>
+ <feature url="features/org.jboss.tools.common.core.feature_0.0.0.jar" id="org.jboss.tools.common.core.feature" version="0.0.0">
+ </feature>
+ <feature url="features/org.jboss.tools.common.text.ext.feature_0.0.0.jar" id="org.jboss.tools.common.text.ext.feature" version="0.0.0">
+ </feature>
+ <feature url="features/org.jboss.tools.common.ui.feature_0.0.0.jar" id="org.jboss.tools.common.ui.feature" version="0.0.0">
+ </feature>
+ <feature url="features/org.jboss.tools.common.verification.feature_0.0.0.jar" id="org.jboss.tools.common.verification.feature" version="0.0.0">
+ </feature>
+
+ <feature url="features/org.jboss.tools.runtime.core.feature_0.0.0.jar" id="org.jboss.tools.runtime.core.feature" version="0.0.0">
+ <category name="AbridgedTools" />
+ </feature>
+ <feature url="features/org.jboss.tools.runtime.as.detector.feature_0.0.0.jar" id="org.jboss.tools.runtime.as.detector.feature" version="0.0.0">
+ <category name="AbridgedTools" />
+ <category name="WebTools" />
+ </feature>
+ <feature url="features/org.jboss.tools.runtime.seam.detector.feature_0.0.0.jar" id="org.jboss.tools.runtime.seam.detector.feature" version="0.0.0">
+ <category name="AbridgedTools" />
+ <category name="WebTools" />
+ </feature>
+
+ <feature url="features/org.jboss.tools.usage.feature_0.0.0.jar" id="org.jboss.tools.usage.feature" version="0.0.0">
+ <category name="AbridgedTools" />
+ <category name="GeneralTools"/>
+ </feature>
+
+
+ <!-- ####### -->
+ <!-- SOURCES -->
+ <!-- ####### -->
+ <feature url="features/org.jboss.tools.central.feature.source_0.0.0.jar" id="org.jboss.tools.central.feature.source" version="0.0.0">
+ </feature>
+ <feature url="features/org.jboss.tools.community.central.feature.source_0.0.0.jar" id="org.jboss.tools.community.central.feature.source" version="0.0.0">
+ <category name="AllSources" />
+ </feature>
+ <feature url="features/org.jboss.tools.central.discovery.feature.source_0.0.0.jar" id="org.jboss.tools.central.discovery.feature.source" version="0.0.0">
+ </feature>
+ <feature url="features/org.jboss.tools.richfaces.feature.source_0.0.0.jar" id="org.jboss.tools.richfaces.feature.source" version="0.0.0">
+ <category name="AllSources" />
+ </feature>
+ <feature url="features/org.jboss.tools.vpe.browsersim.feature.source_0.0.0.jar" id="org.jboss.tools.vpe.browsersim.feature.source" version="0.0.0">
+ <category name="AllSources" />
+ </feature>
+ <feature url="features/org.jboss.tools.jst.feature.source_0.0.0.jar" id="org.jboss.tools.jst.feature.source" version="0.0.0">
+ <category name="AllSources" />
+ </feature>
+ <feature url="features/org.jboss.tools.vpe.feature.source_0.0.0.jar" id="org.jboss.tools.vpe.feature.source" version="0.0.0">
+ <category name="AllSources" />
+ </feature>
+ <feature url="features/org.jboss.tools.jsf.feature.source_0.0.0.jar" id="org.jboss.tools.jsf.feature.source" version="0.0.0">
+ <category name="AllSources" />
+ </feature>
+ <!-- include but do not categorize -->
+ <feature url="features/org.jboss.tools.xulrunner.feature.source_0.0.0.jar" id="org.jboss.tools.xulrunner.feature.source" version="0.0.0">
+ </feature>
+ <feature url="features/org.mozilla.xulrunner.feature.source_0.0.0.jar" id="org.mozilla.xulrunner.feature.source" version="0.0.0">
+ </feature>
+
+ <feature url="features/org.jboss.tools.seam.feature.source_0.0.0.jar" id="org.jboss.tools.seam.feature.source" version="0.0.0">
+ <category name="AllSources" />
+ </feature>
+ <feature url="features/org.jboss.tools.cdi.feature.source_0.0.0.jar" id="org.jboss.tools.cdi.feature.source" version="0.0.0">
+ <category name="AllSources" />
+ </feature>
+ <feature url="features/org.jboss.tools.cdi.seam.feature.source_0.0.0.jar" id="org.jboss.tools.cdi.seam.feature.source" version="0.0.0">
+ <category name="AllSources" />
+ </feature>
+ <feature url="features/org.jboss.tools.cdi.deltaspike.feature.source_0.0.0.jar" id="org.jboss.tools.cdi.deltaspike.feature.source" version="0.0.0">
+ <category name="AllSources" />
+ </feature>
+ <feature url="features/org.jboss.tools.jmx.feature.source_0.0.0.jar" id="org.jboss.tools.jmx.feature.source" version="0.0.0">
+ <category name="AllSources" />
+ </feature>
+ <feature url="features/org.jboss.ide.eclipse.as.feature.source_0.0.0.jar" id="org.jboss.ide.eclipse.as.feature.source" version="0.0.0">
+ <category name="AllSources" />
+ </feature>
+ <feature url="features/org.jboss.tools.openshift.express.feature.source_0.0.0.jar" id="org.jboss.tools.openshift.express.feature.source" version="0.0.0">
+ <category name="AllSources" />
+ </feature>
+ <feature url="features/org.jboss.tools.openshift.egit.integration.feature.source_0.0.0.jar" id="org.jboss.tools.openshift.egit.integration.feature.source" version="0.0.0">
+ <category name="AllSources" />
+ </feature>
+ <feature url="features/org.jboss.ide.eclipse.archives.feature.source_0.0.0.jar" id="org.jboss.ide.eclipse.archives.feature.source" version="0.0.0">
+ <category name="AllSources" />
+ </feature>
+ <feature url="features/org.hibernate.eclipse.feature.source_0.0.0.jar" id="org.hibernate.eclipse.feature.source" version="0.0.0">
+ <category name="AllSources" />
+ </feature>
+ <feature url="features/org.jboss.ide.eclipse.freemarker.feature.source_0.0.0.jar" id="org.jboss.ide.eclipse.freemarker.feature.source" version="0.0.0">
+ <category name="AllSources" />
+ </feature>
+ <feature url="features/org.jboss.tools.struts.feature.source_0.0.0.jar" id="org.jboss.tools.struts.feature.source" version="0.0.0">
+ <category name="AllSources" />
+ </feature>
+ <feature url="features/org.jboss.tools.ws.feature.source_0.0.0.jar" id="org.jboss.tools.ws.feature.source" version="0.0.0">
+ <category name="AllSources" />
+ </feature>
+ <feature url="features/org.jboss.tools.ws.jaxrs.feature.source_0.0.0.jar" id="org.jboss.tools.ws.jaxrs.feature.source" version="0.0.0">
+ <category name="AllSources" />
+ </feature>
+ <feature url="features/org.jboss.tools.portlet.feature.source_0.0.0.jar" id="org.jboss.tools.portlet.feature.source" version="0.0.0">
+ <category name="AllSources" />
+ </feature>
+ <feature url="features/org.jboss.tools.forge.feature.source_0.0.0.jar" id="org.jboss.tools.forge.feature.source" version="0.0.0">
+ <category name="AllSources"/>
+ </feature>
+ <feature url="features/org.jboss.tools.project.examples.feature.source_0.0.0.jar" id="org.jboss.tools.project.examples.feature.source" version="0.0.0">
+ <category name="AllSources" />
+ </feature>
+ <feature url="features/org.jboss.tools.community.project.examples.feature.source_0.0.0.jar" id="org.jboss.tools.community.project.examples.feature.source" version="0.0.0">
+ <category name="AllSources" />
+ </feature>
+ <feature url="features/org.jboss.tools.birt.feature.source_0.0.0.jar" id="org.jboss.tools.birt.feature.source" version="0.0.0">
+ <category name="AllSources" />
+ </feature>
+ <feature url="features/org.jboss.tools.maven.feature.source_0.0.0.jar" id="org.jboss.tools.maven.feature.source" version="0.0.0">
+ <category name="AllSources" />
+ </feature>
+ <feature url="features/org.jboss.tools.maven.cdi.feature.source_0.0.0.jar" id="org.jboss.tools.maven.cdi.feature.source" version="0.0.0">
+ <category name="AllSources" />
+ </feature>
+ <feature url="features/org.jboss.tools.maven.hibernate.feature.source_0.0.0.jar" id="org.jboss.tools.maven.hibernate.feature.source" version="0.0.0">
+ <category name="AllSources" />
+ </feature>
+ <feature url="features/org.jboss.tools.maven.jsf.feature.source_0.0.0.jar" id="org.jboss.tools.maven.jsf.feature.source" version="0.0.0">
+ <category name="AllSources" />
+ </feature>
+ <feature url="features/org.jboss.tools.maven.portlet.feature.source_0.0.0.jar" id="org.jboss.tools.maven.portlet.feature.source" version="0.0.0">
+ <category name="AllSources" />
+ </feature>
+ <feature url="features/org.jboss.tools.maven.seam.feature.source_0.0.0.jar" id="org.jboss.tools.maven.seam.feature.source" version="0.0.0">
+ <category name="AllSources" />
+ </feature>
+ <feature url="features/org.jboss.tools.maven.project.examples.feature.source_0.0.0.jar" id="org.jboss.tools.maven.project.examples.feature.source" version="0.0.0">
+ <category name="AllSources" />
+ </feature>
+ <feature url="features/org.jboss.tools.maven.jaxrs.feature.source_0.0.0.jar" id="org.jboss.tools.maven.jaxrs.feature.source" version="0.0.0">
+ <category name="AllSources" />
+ </feature>
+ <feature url="features/org.jboss.tools.maven.jpa.feature.source_0.0.0.jar" id="org.jboss.tools.maven.jpa.feature.source" version="0.0.0">
+ <category name="AllSources" />
+ </feature>
+ <feature url="features/org.jboss.tools.maven.jdt.feature.source_0.0.0.jar" id="org.jboss.tools.maven.jdt.feature.source" version="0.0.0">
+ <category name="AllSources" />
+ </feature>
+ <feature url="features/org.jboss.tools.maven.profiles.feature.source_0.0.0.jar" id="org.jboss.tools.maven.profiles.feature.source" version="0.0.0">
+ <category name="AllSources" />
+ </feature>
+ <feature url="features/org.jboss.tools.maven.sourcelookup.feature.source_0.0.0.jar" id="org.jboss.tools.maven.sourcelookup.feature.source" version="0.0.0">
+ <category name="AllSources" />
+ </feature>
+ <feature url="features/org.jboss.tools.runtime.core.featur.source_0.0.0.jar" id="org.jboss.tools.runtime.core.feature.source" version="0.0.0">
+ <category name="AllSources" />
+ </feature>
+ <feature url="features/org.jboss.tools.runtime.as.detector.feature.source_0.0.0.jar" id="org.jboss.tools.runtime.as.detector.feature.source" version="0.0.0">
+ <category name="AllSources" />
+ </feature>
+ <feature url="features/org.jboss.tools.runtime.seam.detector.feature.source_0.0.0.jar" id="org.jboss.tools.runtime.seam.detector.feature.source" version="0.0.0">
+ <category name="AllSources" />
+ </feature>
+ <feature url="features/org.jboss.tools.usage.feature.source_0.0.0.jar" id="org.jboss.tools.usage.feature.source" version="0.0.0">
+ <category name="AllSources" />
+ </feature>
+ <!-- only in JBT and JBDS Extras -->
+ <feature url="features/org.jboss.tools.maven.jbosspackaging.feature.source_0.0.0.jar" id="org.jboss.tools.maven.jbosspackaging.feature.source" version="0.0.0">
+ <category name="AllSources" />
+ </feature>
+ <feature url="features/org.jboss.tools.maven.gwt.feature.source_0.0.0.jar" id="org.jboss.tools.maven.gwt.feature.source" version="0.0.0">
+ <category name="AllSources" />
+ </feature>
+ <!-- only in JBT -->
+ <feature url="features/org.jboss.tools.gwt.feature.source_0.0.0.jar" id="org.jboss.tools.gwt.feature.source" version="0.0.0">
+ <category name="AllSources" />
+ </feature>
+ <feature url="features/org.jboss.tools.common.mylyn.feature.source_0.0.0.jar" id="org.jboss.tools.common.mylyn.feature.source" version="0.0.0">
+ <category name="AllSources"/>
+ </feature>
+ <feature url="features/org.jboss.tools.common.jdt.feature.source_0.0.0.jar" id="org.jboss.tools.common.jdt.feature.source" version="0.0.0">
+ <category name="AllSources" />
+ </feature>
+ <feature url="features/org.jboss.tools.common.feature.source_0.0.0.jar" id="org.jboss.tools.common.feature.source" version="0.0.0">
+ <category name="AllSources" />
+ </feature>
+ <!-- Not categorize -->
+ <feature url="features/org.jboss.tools.common.core.feature.source_0.0.0.jar" id="org.jboss.tools.common.core.feature.source" version="0.0.0">
+ <category name="AllSources" />
+ </feature>
+ <feature url="features/org.jboss.tools.common.text.ext.feature.source_0.0.0.jar" id="org.jboss.tools.common.text.ext.feature.source" version="0.0.0">
+ <category name="AllSources" />
+ </feature>
+ <feature url="features/org.jboss.tools.common.ui.feature.source_0.0.0.jar" id="org.jboss.tools.common.ui.feature.source" version="0.0.0">
+ <category name="AllSources" />
+ </feature>
+ <feature url="features/org.jboss.tools.common.verification.feature.source_0.0.0.jar" id="org.jboss.tools.common.verification.feature.source" version="0.0.0">
+ <category name="AllSources" />
+ </feature>
+
+ <!-- ########## -->
+ <!-- CATEGORIES -->
+ <!-- ########## -->
+ <category-def name="AbridgedTools" label="Abridged JBoss Tools 3.4">
+ <description>Contains most of the JBoss Tools features. Excluded are those related to integration with 3rd party plugins. Selecting this category will give you all tools needed for Web and Seam Development.</description>
+ </category-def>
+
+ <category-def name="WebTools" label="JBoss Web and Java EE Development">
+ <description>Tools to help create web and enterprise applications, using JSF, Facelets, Seam, Hibernate/JPA, CSS, Webservices and more.</description>
+ </category-def>
+
+ <category-def name="GeneralTools" label="JBoss Application Development">
+ <description>Tools for general application development.</description>
+ </category-def>
+
+ <category-def name="DataTools" label="JBoss Data Services">
+ <description>Tools related to data services such as persistence and transformation.</description>
+ </category-def>
+
+ <category-def name="MavenTools" label="JBoss Maven Support">
+ <description>Plugins related to Maven and m2eclipse support. Use these to enable use of Maven.</description>
+ </category-def>
+ <category-def name="CloudTools" label="JBoss Cloud Development Tools">
+ <description>Tools for Cloud Development.</description>
+ </category-def>
+ <!-- Only in JBT -->
+ <category-def name="ReportTools" label="JBoss Business Intelligence, Reporting and Charting">
+ <description>Business Intelligence, Reporting and Charting. Use these if you plan to integrate Hibernate or Seam with Eclipse BIRT.</description>
+ </category-def>
+
+ <category-def name="AllSources" label="Sources">
+ <description>Source code for JBoss Tools features.</description>
+ </category-def>
+
+</site>
Property changes on: trunk/build/aggregate/site/category.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Deleted: trunk/build/aggregate/site/index.html
===================================================================
--- trunk/build/aggregate/site/index.html 2012-08-23 15:29:55 UTC (rev 43197)
+++ trunk/build/aggregate/site/index.html 2012-08-23 15:33:04 UTC (rev 43198)
@@ -1,1800 +0,0 @@
-<html>
-<head>
-<title>JBoss Tools - Core - Nightly Build Update Site</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 - Nightly Build Update Site</h2>
- <table width="100%">
- <tr class="header">
- <td class="sub-header" width="100%"><span>Latest Build</span></td>
- </tr>
-
- <tr class="light-row" style="height: 30px">
- <td class="bodyText">
- <p class="bodyText">This is the <b>Nightly Build</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="README.installation.txt">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="features/org.jboss.ide.eclipse.archives.feature_3.2.1.v20120501-2007-H882-CR1.jar">org.jboss.ide.eclipse.archives.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">3.2.1.v20120501-2007-H882-CR1</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="features/org.jboss.ide.eclipse.archives.feature.source_3.2.1.v20120501-2007-H882-CR1.jar">org.jboss.ide.eclipse.archives.feature.source</a>
-</td>
-<td>
-<span style="font-size:x-small">3.2.1.v20120501-2007-H882-CR1</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="features/org.jboss.ide.eclipse.as.feature_2.3.0.v20120501-2033-H1291-CR1.jar">org.jboss.ide.eclipse.as.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">2.3.0.v20120501-2033-H1291-CR1</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="features/org.jboss.ide.eclipse.as.feature.source_2.3.0.v20120501-2033-H1291-CR1.jar">org.jboss.ide.eclipse.as.feature.source</a>
-</td>
-<td>
-<span style="font-size:x-small">2.3.0.v20120501-2033-H1291-CR1</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="features/org.jboss.ide.eclipse.freemarker.feature_1.2.0.v20120501-2008-H885-CR1.jar">org.jboss.ide.eclipse.freemarker.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">1.2.0.v20120501-2008-H885-CR1</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="features/org.jboss.ide.eclipse.freemarker.feature.source_1.2.0.v20120501-2008-H885-CR1.jar">org.jboss.ide.eclipse.freemarker.feature.source</a>
-</td>
-<td>
-<span style="font-size:x-small">1.2.0.v20120501-2008-H885-CR1</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="features/org.jboss.tools.birt.feature_1.3.0.v20120501-2046-H906-CR1.jar">org.jboss.tools.birt.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">1.3.0.v20120501-2046-H906-CR1</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="features/org.jboss.tools.birt.feature.source_1.3.0.v20120501-2046-H906-CR1.jar">org.jboss.tools.birt.feature.source</a>
-</td>
-<td>
-<span style="font-size:x-small">1.3.0.v20120501-2046-H906-CR1</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="features/org.jboss.tools.cdi.feature_1.2.0.v20120501-1845-H1086-CR1.jar">org.jboss.tools.cdi.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">1.2.0.v20120501-1845-H1086-CR1</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="features/org.jboss.tools.cdi.feature.source_1.2.0.v20120501-1845-H1086-CR1.jar">org.jboss.tools.cdi.feature.source</a>
-</td>
-<td>
-<span style="font-size:x-small">1.2.0.v20120501-1845-H1086-CR1</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="features/org.jboss.tools.cdi.seam.feature_1.2.0.v20120501-1845-H1086-CR1.jar">org.jboss.tools.cdi.seam.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">1.2.0.v20120501-1845-H1086-CR1</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="features/org.jboss.tools.cdi.seam.feature.source_1.2.0.v20120501-1845-H1086-CR1.jar">org.jboss.tools.cdi.seam.feature.source</a>
-</td>
-<td>
-<span style="font-size:x-small">1.2.0.v20120501-1845-H1086-CR1</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="features/org.jboss.tools.central.discovery.feature_1.0.0.v20120501-1931-CR1.jar">org.jboss.tools.central.discovery.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">1.0.0.v20120501-1931-CR1</span>
-</td>
-<td/>
-</tr>
-<tr style="background-color:
- #FFFFFF
- ">
-<td class="rowLine">
-<a style="font-size:x-small" href="features/org.jboss.tools.central.feature_1.0.0.v20120501-1931-CR1.jar">org.jboss.tools.central.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">1.0.0.v20120501-1931-CR1</span>
-</td>
-<td/>
-</tr>
-<tr style="background-color:
- #EEEEEE
- ">
-<td class="rowLine">
-<a style="font-size:x-small" href="features/org.jboss.tools.common.core.feature_3.3.0.v20120501-1934-H877-CR1.jar">org.jboss.tools.common.core.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">3.3.0.v20120501-1934-H877-CR1</span>
-</td>
-<td/>
-</tr>
-<tr style="background-color:
- #FFFFFF
- ">
-<td class="rowLine">
-<a style="font-size:x-small" href="features/org.jboss.tools.common.core.feature.source_3.3.0.v20120501-1934-H877-CR1.jar">org.jboss.tools.common.core.feature.source</a>
-</td>
-<td>
-<span style="font-size:x-small">3.3.0.v20120501-1934-H877-CR1</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="features/org.jboss.tools.common.feature_3.3.0.v20120501-1934-H877-CR1.jar">org.jboss.tools.common.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">3.3.0.v20120501-1934-H877-CR1</span>
-</td>
-<td/>
-</tr>
-<tr style="background-color:
- #FFFFFF
- ">
-<td class="rowLine">
-<a style="font-size:x-small" href="features/org.jboss.tools.common.feature.source_3.3.0.v20120501-1934-H877-CR1.jar">org.jboss.tools.common.feature.source</a>
-</td>
-<td>
-<span style="font-size:x-small">3.3.0.v20120501-1934-H877-CR1</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="features/org.jboss.tools.common.jdt.feature_3.3.0.v20120501-1934-H877-CR1.jar">org.jboss.tools.common.jdt.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">3.3.0.v20120501-1934-H877-CR1</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="features/org.jboss.tools.common.jdt.feature.source_3.3.0.v20120501-1934-H877-CR1.jar">org.jboss.tools.common.jdt.feature.source</a>
-</td>
-<td>
-<span style="font-size:x-small">3.3.0.v20120501-1934-H877-CR1</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="features/org.jboss.tools.common.mylyn.feature_3.3.0.v20120501-1934-H877-CR1.jar">org.jboss.tools.common.mylyn.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">3.3.0.v20120501-1934-H877-CR1</span>
-</td>
-<td>
-<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="features/org.jboss.tools.common.mylyn.feature.source_3.3.0.v20120501-1934-H877-CR1.jar">org.jboss.tools.common.mylyn.feature.source</a>
-</td>
-<td>
-<span style="font-size:x-small">3.3.0.v20120501-1934-H877-CR1</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="features/org.jboss.tools.common.text.ext.feature_3.3.0.v20120501-1934-H877-CR1.jar">org.jboss.tools.common.text.ext.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">3.3.0.v20120501-1934-H877-CR1</span>
-</td>
-<td/>
-</tr>
-<tr style="background-color:
- #FFFFFF
- ">
-<td class="rowLine">
-<a style="font-size:x-small" href="features/org.jboss.tools.common.text.ext.feature.source_3.3.0.v20120501-1934-H877-CR1.jar">org.jboss.tools.common.text.ext.feature.source</a>
-</td>
-<td>
-<span style="font-size:x-small">3.3.0.v20120501-1934-H877-CR1</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="features/org.jboss.tools.common.ui.feature_3.3.0.v20120501-1934-H877-CR1.jar">org.jboss.tools.common.ui.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">3.3.0.v20120501-1934-H877-CR1</span>
-</td>
-<td/>
-</tr>
-<tr style="background-color:
- #FFFFFF
- ">
-<td class="rowLine">
-<a style="font-size:x-small" href="features/org.jboss.tools.common.ui.feature.source_3.3.0.v20120501-1934-H877-CR1.jar">org.jboss.tools.common.ui.feature.source</a>
-</td>
-<td>
-<span style="font-size:x-small">3.3.0.v20120501-1934-H877-CR1</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="features/org.jboss.tools.common.verification.feature_3.3.0.v20120501-1934-H877-CR1.jar">org.jboss.tools.common.verification.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">3.3.0.v20120501-1934-H877-CR1</span>
-</td>
-<td/>
-</tr>
-<tr style="background-color:
- #FFFFFF
- ">
-<td class="rowLine">
-<a style="font-size:x-small" href="features/org.jboss.tools.common.verification.feature.source_3.3.0.v20120501-1934-H877-CR1.jar">org.jboss.tools.common.verification.feature.source</a>
-</td>
-<td>
-<span style="font-size:x-small">3.3.0.v20120501-1934-H877-CR1</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="features/org.jboss.tools.community.central.feature_1.0.0.v20120501-1931-CR1.jar">org.jboss.tools.community.central.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">1.0.0.v20120501-1931-CR1</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="features/org.jboss.tools.community.project.examples.feature_1.2.1.v20120501-1742-CR1.jar">org.jboss.tools.community.project.examples.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">1.2.1.v20120501-1742-CR1</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="features/org.jboss.tools.community.project.examples.feature.source_1.2.1.v20120501-1742-CR1.jar">org.jboss.tools.community.project.examples.feature.source</a>
-</td>
-<td>
-<span style="font-size:x-small">1.2.1.v20120501-1742-CR1</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="features/org.jboss.tools.forge.feature_1.0.0.v20120501-2003-H705-CR1.jar">org.jboss.tools.forge.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">1.0.0.v20120501-2003-H705-CR1</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="features/org.jboss.tools.forge.feature.source_1.0.0.v20120501-2003-H705-CR1.jar">org.jboss.tools.forge.feature.source</a>
-</td>
-<td>
-<span style="font-size:x-small">1.0.0.v20120501-2003-H705-CR1</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="features/org.jboss.tools.gwt.feature_1.0.2.v20120501-2003-H651-CR1.jar">org.jboss.tools.gwt.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">1.0.2.v20120501-2003-H651-CR1</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="features/org.jboss.tools.gwt.feature.source_1.0.2.v20120501-2003-H651-CR1.jar">org.jboss.tools.gwt.feature.source</a>
-</td>
-<td>
-<span style="font-size:x-small">1.0.2.v20120501-2003-H651-CR1</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="features/org.jboss.tools.jmx.feature_1.2.0.v20120501-2006-H801-CR1.jar">org.jboss.tools.jmx.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">1.2.0.v20120501-2006-H801-CR1</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="features/org.jboss.tools.jmx.feature.source_1.2.0.v20120501-2006-H801-CR1.jar">org.jboss.tools.jmx.feature.source</a>
-</td>
-<td>
-<span style="font-size:x-small">1.2.0.v20120501-2006-H801-CR1</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="features/org.jboss.tools.jsf.feature_3.3.0.v20120501-1742-CR1.jar">org.jboss.tools.jsf.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">3.3.0.v20120501-1742-CR1</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="features/org.jboss.tools.jsf.feature.source_3.3.0.v20120501-1742-CR1.jar">org.jboss.tools.jsf.feature.source</a>
-</td>
-<td>
-<span style="font-size:x-small">3.3.0.v20120501-1742-CR1</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="features/org.jboss.tools.jst.feature_3.3.0.v20120501-2017-H1042-CR1.jar">org.jboss.tools.jst.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">3.3.0.v20120501-2017-H1042-CR1</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="features/org.jboss.tools.jst.feature.source_3.3.0.v20120501-2017-H1042-CR1.jar">org.jboss.tools.jst.feature.source</a>
-</td>
-<td>
-<span style="font-size:x-small">3.3.0.v20120501-2017-H1042-CR1</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="features/org.jboss.tools.maven.cdi.feature_1.3.0.v20120501-1932-H620-CR1.jar">org.jboss.tools.maven.cdi.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">1.3.0.v20120501-1932-H620-CR1</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="features/org.jboss.tools.maven.cdi.feature.source_1.3.0.v20120501-1932-H620-CR1.jar">org.jboss.tools.maven.cdi.feature.source</a>
-</td>
-<td>
-<span style="font-size:x-small">1.3.0.v20120501-1932-H620-CR1</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="features/org.jboss.tools.maven.feature_1.3.0.v20120501-1932-H620-CR1.jar">org.jboss.tools.maven.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">1.3.0.v20120501-1932-H620-CR1</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="features/org.jboss.tools.maven.feature.source_1.3.0.v20120501-1932-H620-CR1.jar">org.jboss.tools.maven.feature.source</a>
-</td>
-<td>
-<span style="font-size:x-small">1.3.0.v20120501-1932-H620-CR1</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="features/org.jboss.tools.maven.gwt.feature_1.3.0.v20120501-1932-H620-CR1.jar">org.jboss.tools.maven.gwt.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">1.3.0.v20120501-1932-H620-CR1</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="features/org.jboss.tools.maven.gwt.feature.source_1.3.0.v20120501-1932-H620-CR1.jar">org.jboss.tools.maven.gwt.feature.source</a>
-</td>
-<td>
-<span style="font-size:x-small">1.3.0.v20120501-1932-H620-CR1</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="features/org.jboss.tools.maven.hibernate.feature_1.3.0.v20120501-1932-H620-CR1.jar">org.jboss.tools.maven.hibernate.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">1.3.0.v20120501-1932-H620-CR1</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="features/org.jboss.tools.maven.hibernate.feature.source_1.3.0.v20120501-1932-H620-CR1.jar">org.jboss.tools.maven.hibernate.feature.source</a>
-</td>
-<td>
-<span style="font-size:x-small">1.3.0.v20120501-1932-H620-CR1</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="features/org.jboss.tools.maven.jaxrs.feature_1.3.0.v20120501-1932-H620-CR1.jar">org.jboss.tools.maven.jaxrs.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">1.3.0.v20120501-1932-H620-CR1</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="features/org.jboss.tools.maven.jaxrs.feature.source_1.3.0.v20120501-1932-H620-CR1.jar">org.jboss.tools.maven.jaxrs.feature.source</a>
-</td>
-<td>
-<span style="font-size:x-small">1.3.0.v20120501-1932-H620-CR1</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="features/org.jboss.tools.maven.jbosspackaging.feature_1.3.0.v20120501-1932-H620-CR1.jar">org.jboss.tools.maven.jbosspackaging.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">1.3.0.v20120501-1932-H620-CR1</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="features/org.jboss.tools.maven.jbosspackaging.feature.source_1.3.0.v20120501-1932-H620-CR1.jar">org.jboss.tools.maven.jbosspackaging.feature.source</a>
-</td>
-<td>
-<span style="font-size:x-small">1.3.0.v20120501-1932-H620-CR1</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="features/org.jboss.tools.maven.jpa.feature_1.3.0.v20120501-1932-H620-CR1.jar">org.jboss.tools.maven.jpa.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">1.3.0.v20120501-1932-H620-CR1</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="features/org.jboss.tools.maven.jpa.feature.source_1.3.0.v20120501-1932-H620-CR1.jar">org.jboss.tools.maven.jpa.feature.source</a>
-</td>
-<td>
-<span style="font-size:x-small">1.3.0.v20120501-1932-H620-CR1</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="features/org.jboss.tools.maven.jsf.feature_1.3.0.v20120501-1932-H620-CR1.jar">org.jboss.tools.maven.jsf.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">1.3.0.v20120501-1932-H620-CR1</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="features/org.jboss.tools.maven.jsf.feature.source_1.3.0.v20120501-1932-H620-CR1.jar">org.jboss.tools.maven.jsf.feature.source</a>
-</td>
-<td>
-<span style="font-size:x-small">1.3.0.v20120501-1932-H620-CR1</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="features/org.jboss.tools.maven.portlet.feature_1.3.0.v20120501-1932-H620-CR1.jar">org.jboss.tools.maven.portlet.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">1.3.0.v20120501-1932-H620-CR1</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="features/org.jboss.tools.maven.portlet.feature.source_1.3.0.v20120501-1932-H620-CR1.jar">org.jboss.tools.maven.portlet.feature.source</a>
-</td>
-<td>
-<span style="font-size:x-small">1.3.0.v20120501-1932-H620-CR1</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="features/org.jboss.tools.maven.profiles.feature_1.3.0.v20120501-1932-H620-CR1.jar">org.jboss.tools.maven.profiles.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">1.3.0.v20120501-1932-H620-CR1</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="features/org.jboss.tools.maven.profiles.feature.source_1.3.0.v20120501-1932-H620-CR1.jar">org.jboss.tools.maven.profiles.feature.source</a>
-</td>
-<td>
-<span style="font-size:x-small">1.3.0.v20120501-1932-H620-CR1</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="features/org.jboss.tools.maven.project.examples.feature_1.3.0.v20120501-1932-H620-CR1.jar">org.jboss.tools.maven.project.examples.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">1.3.0.v20120501-1932-H620-CR1</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="features/org.jboss.tools.maven.project.examples.feature.source_1.3.0.v20120501-1932-H620-CR1.jar">org.jboss.tools.maven.project.examples.feature.source</a>
-</td>
-<td>
-<span style="font-size:x-small">1.3.0.v20120501-1932-H620-CR1</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="features/org.jboss.tools.maven.seam.feature_1.3.0.v20120501-1932-H620-CR1.jar">org.jboss.tools.maven.seam.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">1.3.0.v20120501-1932-H620-CR1</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="features/org.jboss.tools.maven.seam.feature.source_1.3.0.v20120501-1932-H620-CR1.jar">org.jboss.tools.maven.seam.feature.source</a>
-</td>
-<td>
-<span style="font-size:x-small">1.3.0.v20120501-1932-H620-CR1</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="features/org.jboss.tools.maven.sourcelookup.feature_1.3.0.v20120501-1932-H620-CR1.jar">org.jboss.tools.maven.sourcelookup.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">1.3.0.v20120501-1932-H620-CR1</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="features/org.jboss.tools.maven.sourcelookup.feature.source_1.3.0.v20120501-1932-H620-CR1.jar">org.jboss.tools.maven.sourcelookup.feature.source</a>
-</td>
-<td>
-<span style="font-size:x-small">1.3.0.v20120501-1932-H620-CR1</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="features/org.jboss.tools.openshift.egit.integration.feature_2.3.0.v20120501-2100-H434-CR1.jar">org.jboss.tools.openshift.egit.integration.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">2.3.0.v20120501-2100-H434-CR1</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="features/org.jboss.tools.openshift.egit.integration.feature.source_2.3.0.v20120501-2100-H434-CR1.jar">org.jboss.tools.openshift.egit.integration.feature.source</a>
-</td>
-<td>
-<span style="font-size:x-small">2.3.0.v20120501-2100-H434-CR1</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="features/org.jboss.tools.openshift.express.feature_2.3.0.v20120501-2100-H434-CR1.jar">org.jboss.tools.openshift.express.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">2.3.0.v20120501-2100-H434-CR1</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="features/org.jboss.tools.openshift.express.feature.source_2.3.0.v20120501-2100-H434-CR1.jar">org.jboss.tools.openshift.express.feature.source</a>
-</td>
-<td>
-<span style="font-size:x-small">2.3.0.v20120501-2100-H434-CR1</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="features/org.jboss.tools.portlet.feature_1.2.0.v20120501-1742-CR1.jar">org.jboss.tools.portlet.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">1.2.0.v20120501-1742-CR1</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="features/org.jboss.tools.portlet.feature.source_1.2.0.v20120501-1742-CR1.jar">org.jboss.tools.portlet.feature.source</a>
-</td>
-<td>
-<span style="font-size:x-small">1.2.0.v20120501-1742-CR1</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="features/org.jboss.tools.project.examples.feature_1.2.1.v20120501-1742-CR1.jar">org.jboss.tools.project.examples.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">1.2.1.v20120501-1742-CR1</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="features/org.jboss.tools.project.examples.feature.source_1.2.1.v20120501-1742-CR1.jar">org.jboss.tools.project.examples.feature.source</a>
-</td>
-<td>
-<span style="font-size:x-small">1.2.1.v20120501-1742-CR1</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="features/org.jboss.tools.richfaces.feature_3.3.0.v20120501-1742-CR1.jar">org.jboss.tools.richfaces.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">3.3.0.v20120501-1742-CR1</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="features/org.jboss.tools.richfaces.feature.source_3.3.0.v20120501-1742-CR1.jar">org.jboss.tools.richfaces.feature.source</a>
-</td>
-<td>
-<span style="font-size:x-small">3.3.0.v20120501-1742-CR1</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="features/org.jboss.tools.runtime.as.detector.feature_1.3.0.v20120501-1742-CR1.jar">org.jboss.tools.runtime.as.detector.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">1.3.0.v20120501-1742-CR1</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="features/org.jboss.tools.runtime.as.detector.feature.source_1.3.0.v20120501-1742-CR1.jar">org.jboss.tools.runtime.as.detector.feature.source</a>
-</td>
-<td>
-<span style="font-size:x-small">1.3.0.v20120501-1742-CR1</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="features/org.jboss.tools.runtime.core.feature_1.3.0.v20120501-1742-CR1.jar">org.jboss.tools.runtime.core.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">1.3.0.v20120501-1742-CR1</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="features/org.jboss.tools.runtime.core.feature.source_1.3.0.v20120501-1742-CR1.jar">org.jboss.tools.runtime.core.feature.source</a>
-</td>
-<td>
-<span style="font-size:x-small">1.3.0.v20120501-1742-CR1</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="features/org.jboss.tools.runtime.seam.detector.feature_1.3.0.v20120501-1742-CR1.jar">org.jboss.tools.runtime.seam.detector.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">1.3.0.v20120501-1742-CR1</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="features/org.jboss.tools.runtime.seam.detector.feature.source_1.3.0.v20120501-1742-CR1.jar">org.jboss.tools.runtime.seam.detector.feature.source</a>
-</td>
-<td>
-<span style="font-size:x-small">1.3.0.v20120501-1742-CR1</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="features/org.jboss.tools.seam.feature_3.3.0.v20120501-1742-CR1.jar">org.jboss.tools.seam.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">3.3.0.v20120501-1742-CR1</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="features/org.jboss.tools.seam.feature.source_3.3.0.v20120501-1742-CR1.jar">org.jboss.tools.seam.feature.source</a>
-</td>
-<td>
-<span style="font-size:x-small">3.3.0.v20120501-1742-CR1</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="features/org.jboss.tools.struts.feature_3.3.0.v20120501-0233-H818-CR1.jar">org.jboss.tools.struts.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">3.3.0.v20120501-0233-H818-CR1</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="features/org.jboss.tools.struts.feature.source_3.3.0.v20120501-0233-H818-CR1.jar">org.jboss.tools.struts.feature.source</a>
-</td>
-<td>
-<span style="font-size:x-small">3.3.0.v20120501-0233-H818-CR1</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="features/org.jboss.tools.usage.feature_1.1.0.v20120501-1954-H711-CR1.jar">org.jboss.tools.usage.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">1.1.0.v20120501-1954-H711-CR1</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="features/org.jboss.tools.usage.feature.source_1.1.0.v20120501-1954-H711-CR1.jar">org.jboss.tools.usage.feature.source</a>
-</td>
-<td>
-<span style="font-size:x-small">1.1.0.v20120501-1954-H711-CR1</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="features/org.jboss.tools.vpe.browsersim.feature_3.3.0.v20120501-1742-CR1.jar">org.jboss.tools.vpe.browsersim.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">3.3.0.v20120501-1742-CR1</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="features/org.jboss.tools.vpe.browsersim.feature.source_3.3.0.v20120501-1742-CR1.jar">org.jboss.tools.vpe.browsersim.feature.source</a>
-</td>
-<td>
-<span style="font-size:x-small">3.3.0.v20120501-1742-CR1</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="features/org.jboss.tools.vpe.feature_3.3.0.v20120501-1742-CR1.jar">org.jboss.tools.vpe.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">3.3.0.v20120501-1742-CR1</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="features/org.jboss.tools.vpe.feature.source_3.3.0.v20120501-1742-CR1.jar">org.jboss.tools.vpe.feature.source</a>
-</td>
-<td>
-<span style="font-size:x-small">3.3.0.v20120501-1742-CR1</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="features/org.jboss.tools.ws.feature_1.2.2.v20120501-2054-H937-CR1.jar">org.jboss.tools.ws.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">1.2.2.v20120501-2054-H937-CR1</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="features/org.jboss.tools.ws.feature.source_1.2.2.v20120501-2054-H937-CR1.jar">org.jboss.tools.ws.feature.source</a>
-</td>
-<td>
-<span style="font-size:x-small">1.2.2.v20120501-2054-H937-CR1</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="features/org.jboss.tools.ws.jaxrs.feature_1.2.2.v20120501-2054-H937-CR1.jar">org.jboss.tools.ws.jaxrs.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">1.2.2.v20120501-2054-H937-CR1</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="features/org.jboss.tools.ws.jaxrs.feature.source_1.2.2.v20120501-2054-H937-CR1.jar">org.jboss.tools.ws.jaxrs.feature.source</a>
-</td>
-<td>
-<span style="font-size:x-small">1.2.2.v20120501-2054-H937-CR1</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="features/org.jboss.tools.xulrunner.feature_3.3.0.v20120501-1742-CR1.jar">org.jboss.tools.xulrunner.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">3.3.0.v20120501-1742-CR1</span>
-</td>
-<td/>
-</tr>
-<tr style="background-color:
- #EEEEEE
- ">
-<td class="rowLine">
-<a style="font-size:x-small" href="features/org.jboss.tools.xulrunner.feature.source_3.3.0.v20120501-1742-CR1.jar">org.jboss.tools.xulrunner.feature.source</a>
-</td>
-<td>
-<span style="font-size:x-small">3.3.0.v20120501-1742-CR1</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="features/org.hibernate.eclipse.feature_3.4.0.v20120501-2016-H943-CR1.jar">org.hibernate.eclipse.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">3.4.0.v20120501-2016-H943-CR1</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="features/org.hibernate.eclipse.feature.source_3.4.0.v20120501-2016-H943-CR1.jar">org.hibernate.eclipse.feature.source</a>
-</td>
-<td>
-<span style="font-size:x-small">3.4.0.v20120501-2016-H943-CR1</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="features/org.mozilla.xulrunner.feature_1.9.218.v20120426-1730-H146-Beta3.jar">org.mozilla.xulrunner.feature</a>
-</td>
-<td>
-<span style="font-size:x-small">1.9.218.v20120426-1730-H146-Beta3</span>
-</td>
-<td/>
-</tr>
-<tr style="background-color:
- #FFFFFF
- ">
-<td class="rowLine">
-<a style="font-size:x-small" href="features/org.mozilla.xulrunner.feature.source_1.9.218.v20120426-1730-H146-Beta3.jar">org.mozilla.xulrunner.feature.source</a>
-</td>
-<td>
-<span style="font-size:x-small">1.9.218.v20120426-1730-H146-Beta3</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="site.xml">site.xml</a>
- ::
- <a style="font-size:x-small" href="artifacts.jar">artifacts.jar</a>
- ::
- <a style="font-size:x-small" href="content.jar">content.jar</a>
-</td>
-<td colspan="1" class="rowLine">
- ::
- <a style="font-size:x-small" href="plugins/">plugins</a>
- ::
- <a style="font-size:x-small" href="features/">features</a>
-</td>
-<td colspan="1" class="rowLine">
- :: <a href="jbosstools-directory.xml" style="font-size:x-small">jbosstools-directory.xml</a>
- :: <a href="site.properties" 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>
Deleted: trunk/build/aggregate/site/jbosstools-directory.xml
===================================================================
--- trunk/build/aggregate/site/jbosstools-directory.xml 2012-08-23 15:29:55 UTC (rev 43197)
+++ trunk/build/aggregate/site/jbosstools-directory.xml 2012-08-23 15:33:04 UTC (rev 43198)
@@ -1,4 +0,0 @@
-<?xml version='1.0' encoding='UTF-8'?>
-<directory xmlns="http://www.eclipse.org/mylyn/discovery/directory/">
-<entry url="plugins/org.jboss.tools.central.discovery_1.0.0.v20120501-1931-CR1.jar" permitCategories="true"/>
-</directory>
Modified: trunk/build/aggregate/site/pom.xml
===================================================================
--- trunk/build/aggregate/site/pom.xml 2012-08-23 15:29:55 UTC (rev 43197)
+++ trunk/build/aggregate/site/pom.xml 2012-08-23 15:33:04 UTC (rev 43198)
@@ -10,10 +10,36 @@
<groupId>org.jboss.tools</groupId>
<artifactId>org.jboss.tools.site.core</artifactId>
<name>JBoss Tools - Core Site</name>
- <packaging>eclipse-update-site</packaging>
+ <packaging>eclipse-repository</packaging>
<build>
<plugins>
<plugin>
+ <groupId>org.jboss.tools.tycho-plugins</groupId>
+ <artifactId>repository-utils</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ <executions>
+ <execution>
+ <id>generate-facade</id>
+ <phase>package</phase>
+ <goals>
+ <goal>generate-repository-facade</goal>
+ </goals>
+ <configuration>
+ <symbols>
+ <update.site.name>JBoss Tools - Core</update.site.name>
+ <update.site.description>${update.site.description}</update.site.description>
+ <update.site.version>${JBT_VERSION} ${buildQualifier}</update.site.version>
+ <target.eclipse.version>${targetEclipseVersion}</target.eclipse.version>
+ </symbols>
+ <!-- TODO replace by a property from parent pom -->
+ <associateSites>
+ <param>http://download.jboss.org/jbosstools/updates/juno/SR0/</param>
+ </associateSites>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ <plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.7</version>
Deleted: trunk/build/aggregate/site/site.xml
===================================================================
--- trunk/build/aggregate/site/site.xml 2012-08-23 15:29:55 UTC (rev 43197)
+++ trunk/build/aggregate/site/site.xml 2012-08-23 15:33:04 UTC (rev 43198)
@@ -1,457 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<site>
- <description>JBoss Tools 3.4 (Juno) Updates - Core</description>
-
- <!-- PLEASE NOTE!
- When updating this file, please be sure that it parses as valid XML before committing it.
- To test, just run `mvn clean install` in this folder.
- -->
-
- <!-- only in JBDS
- <feature url="features/com.jboss.jbds.product.feature_0.0.0.jar" id="com.jboss.jbds.product.feature" version="0.0.0" patch="false">
- <category name="AbridgedTools" />
- </feature>
- <feature url="features/com.jboss.jbds.central.discovery.feature_0.0.0.jar" id="com.jboss.jbds.central.discovery.feature" version="0.0.0">
- </feature>
- -->
-
- <feature url="features/org.jboss.tools.central.feature_0.0.0.jar" id="org.jboss.tools.central.feature" version="0.0.0">
- </feature>
- <!-- only in JBT -->
- <feature url="features/org.jboss.tools.community.central.feature_0.0.0.jar" id="org.jboss.tools.community.central.feature" version="0.0.0">
- <category name="AbridgedTools" />
- <category name="GeneralTools" />
- </feature>
- <feature url="features/org.jboss.tools.central.discovery.feature_0.0.0.jar" id="org.jboss.tools.central.discovery.feature" version="0.0.0">
- </feature>
- <feature url="features/org.jboss.tools.richfaces.feature_0.0.0.jar" id="org.jboss.tools.richfaces.feature" version="0.0.0">
- <category name="AbridgedTools" />
- <category name="WebTools" />
- </feature>
- <feature url="features/org.jboss.tools.vpe.browsersim.feature_0.0.0.jar" id="org.jboss.tools.vpe.browsersim.feature" version="0.0.0">
- <category name="AbridgedTools" />
- <category name="WebTools" />
- </feature>
- <feature url="features/org.jboss.tools.jst.feature_0.0.0.jar" id="org.jboss.tools.jst.feature" version="0.0.0">
- <category name="AbridgedTools" />
- <category name="WebTools" />
- </feature>
- <feature url="features/org.jboss.tools.vpe.feature_0.0.0.jar" id="org.jboss.tools.vpe.feature" version="0.0.0">
- <category name="AbridgedTools" />
- <category name="WebTools" />
- </feature>
- <feature url="features/org.jboss.tools.jsf.feature_0.0.0.jar" id="org.jboss.tools.jsf.feature" version="0.0.0">
- <category name="AbridgedTools" />
- <category name="WebTools" />
- </feature>
- <!-- include but do not categorize -->
- <feature url="features/org.jboss.tools.xulrunner.feature_0.0.0.jar" id="org.jboss.tools.xulrunner.feature" version="0.0.0">
- </feature>
- <feature url="features/org.mozilla.xulrunner.feature_0.0.0.jar" id="org.mozilla.xulrunner.feature" version="0.0.0">
- </feature>
-
- <feature url="features/org.jboss.tools.seam.feature_0.0.0.jar" id="org.jboss.tools.seam.feature" version="0.0.0">
- <category name="AbridgedTools" />
- <category name="WebTools" />
- </feature>
- <feature url="features/org.jboss.tools.cdi.feature_0.0.0.jar" id="org.jboss.tools.cdi.feature" version="0.0.0">
- <category name="AbridgedTools" />
- <category name="WebTools" />
- <category name="GeneralTools" />
- </feature>
- <feature url="features/org.jboss.tools.cdi.seam.feature_0.0.0.jar" id="org.jboss.tools.cdi.seam.feature" version="0.0.0">
- <category name="AbridgedTools" />
- <category name="WebTools" />
- <category name="GeneralTools" />
- </feature>
- <feature url="features/org.jboss.tools.cdi.deltaspike.feature_0.0.0.jar" id="org.jboss.tools.cdi.deltaspike.feature" version="0.0.0">
- <category name="AbridgedTools" />
- <category name="WebTools" />
- <category name="GeneralTools" />
- </feature>
- <feature url="features/org.jboss.tools.jmx.feature_0.0.0.jar" id="org.jboss.tools.jmx.feature" version="0.0.0">
- <category name="AbridgedTools" />
- <category name="GeneralTools" />
- </feature>
- <feature url="features/org.jboss.ide.eclipse.as.feature_0.0.0.jar" id="org.jboss.ide.eclipse.as.feature" version="0.0.0">
- <category name="AbridgedTools" />
- <category name="WebTools" />
- </feature>
- <feature url="features/org.jboss.tools.openshift.express.feature_0.0.0.jar" id="org.jboss.tools.openshift.express.feature" version="0.0.0">
- <category name="AbridgedTools" />
- <category name="CloudTools" />
- </feature>
- <feature url="features/org.jboss.tools.openshift.egit.integration.feature_0.0.0.jar" id="org.jboss.tools.openshift.egit.integration.feature" version="0.0.0">
- <category name="AbridgedTools" />
- <category name="CloudTools" />
- </feature>
- <!-- only in JBDS
- <feature url="features/org.eclipse.egit_0.0.0.jar" id="org.eclipse.egit" version="0.0.0">
- </feature>
- <feature url="features/org.eclipse.jgit_0.0.0.jar" id="org.eclipse.jgit" version="0.0.0">
- </feature>
- -->
- <feature url="features/org.jboss.ide.eclipse.archives.feature_0.0.0.jar" id="org.jboss.ide.eclipse.archives.feature" version="0.0.0">
- <category name="AbridgedTools" />
- <category name="GeneralTools" />
- </feature>
- <feature url="features/org.hibernate.eclipse.feature_0.0.0.jar" id="org.hibernate.eclipse.feature" version="0.0.0">
- <category name="AbridgedTools" />
- <category name="WebTools" />
- <category name="DataTools" />
- <category name="GeneralTools" />
- </feature>
- <feature url="features/org.jboss.ide.eclipse.freemarker.feature_0.0.0.jar" id="org.jboss.ide.eclipse.freemarker.feature" version="0.0.0">
- <category name="AbridgedTools" />
- <category name="GeneralTools" />
- </feature>
- <feature url="features/org.jboss.tools.struts.feature_0.0.0.jar" id="org.jboss.tools.struts.feature" version="0.0.0">
- <category name="WebTools" />
- </feature>
- <feature url="features/org.jboss.tools.ws.feature_0.0.0.jar" id="org.jboss.tools.ws.feature" version="0.0.0">
- <category name="AbridgedTools" />
- <category name="WebTools" />
- </feature>
- <feature url="features/org.jboss.tools.ws.jaxrs.feature_0.0.0.jar" id="org.jboss.tools.ws.jaxrs.feature" version="0.0.0">
- <category name="AbridgedTools" />
- <category name="WebTools" />
- </feature>
- <feature url="features/org.jboss.tools.portlet.feature_0.0.0.jar" id="org.jboss.tools.portlet.feature" version="0.0.0">
- <category name="AbridgedTools" />
- <category name="WebTools" />
- </feature>
- <feature url="features/org.jboss.tools.forge.feature_0.0.0.jar" id="org.jboss.tools.forge.feature" version="0.0.0">
- <category name="AbridgedTools"/>
- <category name="WebTools" />
- </feature>
- <feature url="features/org.jboss.tools.project.examples.feature_0.0.0.jar" id="org.jboss.tools.project.examples.feature" version="0.0.0">
- <category name="AbridgedTools" />
- <category name="GeneralTools" />
- </feature>
-
- <!-- only in JBT -->
- <feature url="features/org.jboss.tools.community.project.examples.feature_0.0.0.jar" id="org.jboss.tools.community.project.examples.feature" version="0.0.0">
- <category name="AbridgedTools" />
- <category name="GeneralTools" />
- </feature>
- <feature url="features/org.jboss.tools.birt.feature_0.0.0.jar" id="org.jboss.tools.birt.feature" version="0.0.0">
- <category name="ReportTools" />
- </feature>
-
- <!-- only in JBDS
- <feature url="features/com.jboss.jbds.m2e.feature_0.0.0.jar" id="com.jboss.jbds.m2e.feature" version="0.0.0">
- <category name="AbridgedTools"/>
- <category name="MavenTools" />
- </feature>
- <feature url="features/org.eclipse.m2e.feature_0.0.0.jar" id="org.eclipse.m2e.feature" version="0.0.0">
- </feature>
- <feature url="features/org.maven.ide.eclipse.wtp.feature_0.0.0.jar" id="org.maven.ide.eclipse.wtp.feature" version="0.0.0">
- </feature>
- <feature url="features/org.sonatype.m2e.mavenarchiver.feature_0.0.0.jar" id="org.sonatype.m2e.mavenarchiver.feature" version="0.0.0">
- </feature>
- -->
- <feature url="features/org.jboss.tools.maven.feature_0.0.0.jar" id="org.jboss.tools.maven.feature" version="0.0.0">
- <category name="AbridgedTools" />
- <category name="MavenTools" />
- </feature>
- <feature url="features/org.jboss.tools.maven.cdi.feature_0.0.0.jar" id="org.jboss.tools.maven.cdi.feature" version="0.0.0">
- <category name="AbridgedTools" />
- <category name="MavenTools" />
- </feature>
- <feature url="features/org.jboss.tools.maven.hibernate.feature_0.0.0.jar" id="org.jboss.tools.maven.hibernate.feature" version="0.0.0">
- <category name="AbridgedTools" />
- <category name="MavenTools" />
- </feature>
- <feature url="features/org.jboss.tools.maven.jaxrs.feature_0.0.0.jar" id="org.jboss.tools.maven.jaxrs.feature" version="0.0.0">
- <category name="AbridgedTools" />
- <category name="MavenTools" />
- </feature>
- <feature url="features/org.jboss.tools.maven.jdt.feature_0.0.0.jar" id="org.jboss.tools.maven.jdt.feature" version="0.0.0">
- <category name="AbridgedTools" />
- <category name="MavenTools" />
- </feature>
- <feature url="features/org.jboss.tools.maven.jpa.feature_0.0.0.jar" id="org.jboss.tools.maven.jpa.feature" version="0.0.0">
- <category name="AbridgedTools" />
- <category name="MavenTools" />
- </feature>
- <feature url="features/org.jboss.tools.maven.jsf.feature_0.0.0.jar" id="org.jboss.tools.maven.jsf.feature" version="0.0.0">
- <category name="AbridgedTools" />
- <category name="MavenTools" />
- </feature>
- <feature url="features/org.jboss.tools.maven.portlet.feature_0.0.0.jar" id="org.jboss.tools.maven.portlet.feature" version="0.0.0">
- <category name="AbridgedTools" />
- <category name="MavenTools" />
- </feature>
- <feature url="features/org.jboss.tools.maven.profiles.feature_0.0.0.jar" id="org.jboss.tools.maven.profiles.feature" version="0.0.0">
- <category name="AbridgedTools" />
- <category name="MavenTools" />
- </feature>
- <feature url="features/org.jboss.tools.maven.project.examples.feature_0.0.0.jar" id="org.jboss.tools.maven.project.examples.feature" version="0.0.0">
- <category name="AbridgedTools" />
- <category name="MavenTools" />
- </feature>
- <feature url="features/org.jboss.tools.maven.seam.feature_0.0.0.jar" id="org.jboss.tools.maven.seam.feature" version="0.0.0">
- <category name="AbridgedTools" />
- <category name="MavenTools"/>
- </feature>
- <feature url="features/org.jboss.tools.maven.sourcelookup.feature_0.0.0.jar" id="org.jboss.tools.maven.sourcelookup.feature" version="0.0.0">
- <category name="AbridgedTools" />
- <category name="MavenTools" />
- </feature>
- <!-- only in JBT and JBDS Extras -->
- <feature url="features/org.jboss.tools.maven.jbosspackaging.feature_0.0.0.jar" id="org.jboss.tools.maven.jbosspackaging.feature" version="0.0.0">
- <category name="AbridgedTools" />
- <category name="MavenTools" />
- </feature>
- <feature url="features/org.jboss.tools.maven.gwt.feature_0.0.0.jar" id="org.jboss.tools.maven.gwt.feature" version="0.0.0">
- <category name="MavenTools" />
- </feature>
- <!-- only in JBT -->
- <feature url="features/org.jboss.tools.gwt.feature_0.0.0.jar" id="org.jboss.tools.gwt.feature" version="0.0.0">
- <category name="GeneralTools" />
- </feature>
- <feature url="features/org.jboss.tools.common.mylyn.feature_0.0.0.jar" id="org.jboss.tools.common.mylyn.feature" version="0.0.0">
- <category name="AbridgedTools" />
- <category name="GeneralTools"/>
- </feature>
-
- <feature url="features/org.jboss.tools.common.jdt.feature_0.0.0.jar" id="org.jboss.tools.common.jdt.feature" version="0.0.0">
- <category name="AbridgedTools" />
- <category name="GeneralTools"/>
- </feature>
-
- <!-- include but do not categorize -->
- <feature url="features/org.jboss.tools.common.feature_0.0.0.jar" id="org.jboss.tools.common.feature" version="0.0.0">
- </feature>
- <feature url="features/org.jboss.tools.common.core.feature_0.0.0.jar" id="org.jboss.tools.common.core.feature" version="0.0.0">
- </feature>
- <feature url="features/org.jboss.tools.common.text.ext.feature_0.0.0.jar" id="org.jboss.tools.common.text.ext.feature" version="0.0.0">
- </feature>
- <feature url="features/org.jboss.tools.common.ui.feature_0.0.0.jar" id="org.jboss.tools.common.ui.feature" version="0.0.0">
- </feature>
- <feature url="features/org.jboss.tools.common.verification.feature_0.0.0.jar" id="org.jboss.tools.common.verification.feature" version="0.0.0">
- </feature>
-
- <feature url="features/org.jboss.tools.runtime.core.feature_0.0.0.jar" id="org.jboss.tools.runtime.core.feature" version="0.0.0">
- <category name="AbridgedTools" />
- </feature>
- <feature url="features/org.jboss.tools.runtime.as.detector.feature_0.0.0.jar" id="org.jboss.tools.runtime.as.detector.feature" version="0.0.0">
- <category name="AbridgedTools" />
- <category name="WebTools" />
- </feature>
- <feature url="features/org.jboss.tools.runtime.seam.detector.feature_0.0.0.jar" id="org.jboss.tools.runtime.seam.detector.feature" version="0.0.0">
- <category name="AbridgedTools" />
- <category name="WebTools" />
- </feature>
-
- <feature url="features/org.jboss.tools.usage.feature_0.0.0.jar" id="org.jboss.tools.usage.feature" version="0.0.0">
- <category name="AbridgedTools" />
- <category name="GeneralTools"/>
- </feature>
-
-
- <!-- ####### -->
- <!-- SOURCES -->
- <!-- ####### -->
- <feature url="features/org.jboss.tools.central.feature.source_0.0.0.jar" id="org.jboss.tools.central.feature.source" version="0.0.0">
- </feature>
- <feature url="features/org.jboss.tools.community.central.feature.source_0.0.0.jar" id="org.jboss.tools.community.central.feature.source" version="0.0.0">
- <category name="AllSources" />
- </feature>
- <feature url="features/org.jboss.tools.central.discovery.feature.source_0.0.0.jar" id="org.jboss.tools.central.discovery.feature.source" version="0.0.0">
- </feature>
- <feature url="features/org.jboss.tools.richfaces.feature.source_0.0.0.jar" id="org.jboss.tools.richfaces.feature.source" version="0.0.0">
- <category name="AllSources" />
- </feature>
- <feature url="features/org.jboss.tools.vpe.browsersim.feature.source_0.0.0.jar" id="org.jboss.tools.vpe.browsersim.feature.source" version="0.0.0">
- <category name="AllSources" />
- </feature>
- <feature url="features/org.jboss.tools.jst.feature.source_0.0.0.jar" id="org.jboss.tools.jst.feature.source" version="0.0.0">
- <category name="AllSources" />
- </feature>
- <feature url="features/org.jboss.tools.vpe.feature.source_0.0.0.jar" id="org.jboss.tools.vpe.feature.source" version="0.0.0">
- <category name="AllSources" />
- </feature>
- <feature url="features/org.jboss.tools.jsf.feature.source_0.0.0.jar" id="org.jboss.tools.jsf.feature.source" version="0.0.0">
- <category name="AllSources" />
- </feature>
- <!-- include but do not categorize -->
- <feature url="features/org.jboss.tools.xulrunner.feature.source_0.0.0.jar" id="org.jboss.tools.xulrunner.feature.source" version="0.0.0">
- </feature>
- <feature url="features/org.mozilla.xulrunner.feature.source_0.0.0.jar" id="org.mozilla.xulrunner.feature.source" version="0.0.0">
- </feature>
-
- <feature url="features/org.jboss.tools.seam.feature.source_0.0.0.jar" id="org.jboss.tools.seam.feature.source" version="0.0.0">
- <category name="AllSources" />
- </feature>
- <feature url="features/org.jboss.tools.cdi.feature.source_0.0.0.jar" id="org.jboss.tools.cdi.feature.source" version="0.0.0">
- <category name="AllSources" />
- </feature>
- <feature url="features/org.jboss.tools.cdi.seam.feature.source_0.0.0.jar" id="org.jboss.tools.cdi.seam.feature.source" version="0.0.0">
- <category name="AllSources" />
- </feature>
- <feature url="features/org.jboss.tools.cdi.deltaspike.feature.source_0.0.0.jar" id="org.jboss.tools.cdi.deltaspike.feature.source" version="0.0.0">
- <category name="AllSources" />
- </feature>
- <feature url="features/org.jboss.tools.jmx.feature.source_0.0.0.jar" id="org.jboss.tools.jmx.feature.source" version="0.0.0">
- <category name="AllSources" />
- </feature>
- <feature url="features/org.jboss.ide.eclipse.as.feature.source_0.0.0.jar" id="org.jboss.ide.eclipse.as.feature.source" version="0.0.0">
- <category name="AllSources" />
- </feature>
- <feature url="features/org.jboss.tools.openshift.express.feature.source_0.0.0.jar" id="org.jboss.tools.openshift.express.feature.source" version="0.0.0">
- <category name="AllSources" />
- </feature>
- <feature url="features/org.jboss.tools.openshift.egit.integration.feature.source_0.0.0.jar" id="org.jboss.tools.openshift.egit.integration.feature.source" version="0.0.0">
- <category name="AllSources" />
- </feature>
- <feature url="features/org.jboss.ide.eclipse.archives.feature.source_0.0.0.jar" id="org.jboss.ide.eclipse.archives.feature.source" version="0.0.0">
- <category name="AllSources" />
- </feature>
- <feature url="features/org.hibernate.eclipse.feature.source_0.0.0.jar" id="org.hibernate.eclipse.feature.source" version="0.0.0">
- <category name="AllSources" />
- </feature>
- <feature url="features/org.jboss.ide.eclipse.freemarker.feature.source_0.0.0.jar" id="org.jboss.ide.eclipse.freemarker.feature.source" version="0.0.0">
- <category name="AllSources" />
- </feature>
- <feature url="features/org.jboss.tools.struts.feature.source_0.0.0.jar" id="org.jboss.tools.struts.feature.source" version="0.0.0">
- <category name="AllSources" />
- </feature>
- <feature url="features/org.jboss.tools.ws.feature.source_0.0.0.jar" id="org.jboss.tools.ws.feature.source" version="0.0.0">
- <category name="AllSources" />
- </feature>
- <feature url="features/org.jboss.tools.ws.jaxrs.feature.source_0.0.0.jar" id="org.jboss.tools.ws.jaxrs.feature.source" version="0.0.0">
- <category name="AllSources" />
- </feature>
- <feature url="features/org.jboss.tools.portlet.feature.source_0.0.0.jar" id="org.jboss.tools.portlet.feature.source" version="0.0.0">
- <category name="AllSources" />
- </feature>
- <feature url="features/org.jboss.tools.forge.feature.source_0.0.0.jar" id="org.jboss.tools.forge.feature.source" version="0.0.0">
- <category name="AllSources"/>
- </feature>
- <feature url="features/org.jboss.tools.project.examples.feature.source_0.0.0.jar" id="org.jboss.tools.project.examples.feature.source" version="0.0.0">
- <category name="AllSources" />
- </feature>
- <feature url="features/org.jboss.tools.community.project.examples.feature.source_0.0.0.jar" id="org.jboss.tools.community.project.examples.feature.source" version="0.0.0">
- <category name="AllSources" />
- </feature>
- <feature url="features/org.jboss.tools.birt.feature.source_0.0.0.jar" id="org.jboss.tools.birt.feature.source" version="0.0.0">
- <category name="AllSources" />
- </feature>
- <feature url="features/org.jboss.tools.maven.feature.source_0.0.0.jar" id="org.jboss.tools.maven.feature.source" version="0.0.0">
- <category name="AllSources" />
- </feature>
- <feature url="features/org.jboss.tools.maven.cdi.feature.source_0.0.0.jar" id="org.jboss.tools.maven.cdi.feature.source" version="0.0.0">
- <category name="AllSources" />
- </feature>
- <feature url="features/org.jboss.tools.maven.hibernate.feature.source_0.0.0.jar" id="org.jboss.tools.maven.hibernate.feature.source" version="0.0.0">
- <category name="AllSources" />
- </feature>
- <feature url="features/org.jboss.tools.maven.jsf.feature.source_0.0.0.jar" id="org.jboss.tools.maven.jsf.feature.source" version="0.0.0">
- <category name="AllSources" />
- </feature>
- <feature url="features/org.jboss.tools.maven.portlet.feature.source_0.0.0.jar" id="org.jboss.tools.maven.portlet.feature.source" version="0.0.0">
- <category name="AllSources" />
- </feature>
- <feature url="features/org.jboss.tools.maven.seam.feature.source_0.0.0.jar" id="org.jboss.tools.maven.seam.feature.source" version="0.0.0">
- <category name="AllSources" />
- </feature>
- <feature url="features/org.jboss.tools.maven.project.examples.feature.source_0.0.0.jar" id="org.jboss.tools.maven.project.examples.feature.source" version="0.0.0">
- <category name="AllSources" />
- </feature>
- <feature url="features/org.jboss.tools.maven.jaxrs.feature.source_0.0.0.jar" id="org.jboss.tools.maven.jaxrs.feature.source" version="0.0.0">
- <category name="AllSources" />
- </feature>
- <feature url="features/org.jboss.tools.maven.jpa.feature.source_0.0.0.jar" id="org.jboss.tools.maven.jpa.feature.source" version="0.0.0">
- <category name="AllSources" />
- </feature>
- <feature url="features/org.jboss.tools.maven.jdt.feature.source_0.0.0.jar" id="org.jboss.tools.maven.jdt.feature.source" version="0.0.0">
- <category name="AllSources" />
- </feature>
- <feature url="features/org.jboss.tools.maven.profiles.feature.source_0.0.0.jar" id="org.jboss.tools.maven.profiles.feature.source" version="0.0.0">
- <category name="AllSources" />
- </feature>
- <feature url="features/org.jboss.tools.maven.sourcelookup.feature.source_0.0.0.jar" id="org.jboss.tools.maven.sourcelookup.feature.source" version="0.0.0">
- <category name="AllSources" />
- </feature>
- <feature url="features/org.jboss.tools.runtime.core.featur.source_0.0.0.jar" id="org.jboss.tools.runtime.core.feature.source" version="0.0.0">
- <category name="AllSources" />
- </feature>
- <feature url="features/org.jboss.tools.runtime.as.detector.feature.source_0.0.0.jar" id="org.jboss.tools.runtime.as.detector.feature.source" version="0.0.0">
- <category name="AllSources" />
- </feature>
- <feature url="features/org.jboss.tools.runtime.seam.detector.feature.source_0.0.0.jar" id="org.jboss.tools.runtime.seam.detector.feature.source" version="0.0.0">
- <category name="AllSources" />
- </feature>
- <feature url="features/org.jboss.tools.usage.feature.source_0.0.0.jar" id="org.jboss.tools.usage.feature.source" version="0.0.0">
- <category name="AllSources" />
- </feature>
- <!-- only in JBT and JBDS Extras -->
- <feature url="features/org.jboss.tools.maven.jbosspackaging.feature.source_0.0.0.jar" id="org.jboss.tools.maven.jbosspackaging.feature.source" version="0.0.0">
- <category name="AllSources" />
- </feature>
- <feature url="features/org.jboss.tools.maven.gwt.feature.source_0.0.0.jar" id="org.jboss.tools.maven.gwt.feature.source" version="0.0.0">
- <category name="AllSources" />
- </feature>
- <!-- only in JBT -->
- <feature url="features/org.jboss.tools.gwt.feature.source_0.0.0.jar" id="org.jboss.tools.gwt.feature.source" version="0.0.0">
- <category name="AllSources" />
- </feature>
- <feature url="features/org.jboss.tools.common.mylyn.feature.source_0.0.0.jar" id="org.jboss.tools.common.mylyn.feature.source" version="0.0.0">
- <category name="AllSources"/>
- </feature>
- <feature url="features/org.jboss.tools.common.jdt.feature.source_0.0.0.jar" id="org.jboss.tools.common.jdt.feature.source" version="0.0.0">
- <category name="AllSources" />
- </feature>
- <feature url="features/org.jboss.tools.common.feature.source_0.0.0.jar" id="org.jboss.tools.common.feature.source" version="0.0.0">
- <category name="AllSources" />
- </feature>
- <!-- Not categorize -->
- <feature url="features/org.jboss.tools.common.core.feature.source_0.0.0.jar" id="org.jboss.tools.common.core.feature.source" version="0.0.0">
- <category name="AllSources" />
- </feature>
- <feature url="features/org.jboss.tools.common.text.ext.feature.source_0.0.0.jar" id="org.jboss.tools.common.text.ext.feature.source" version="0.0.0">
- <category name="AllSources" />
- </feature>
- <feature url="features/org.jboss.tools.common.ui.feature.source_0.0.0.jar" id="org.jboss.tools.common.ui.feature.source" version="0.0.0">
- <category name="AllSources" />
- </feature>
- <feature url="features/org.jboss.tools.common.verification.feature.source_0.0.0.jar" id="org.jboss.tools.common.verification.feature.source" version="0.0.0">
- <category name="AllSources" />
- </feature>
-
- <!-- ########## -->
- <!-- CATEGORIES -->
- <!-- ########## -->
- <category-def name="AbridgedTools" label="Abridged JBoss Tools 3.4">
- <description>Contains most of the JBoss Tools features. Excluded are those related to integration with 3rd party plugins. Selecting this category will give you all tools needed for Web and Seam Development.</description>
- </category-def>
-
- <category-def name="WebTools" label="JBoss Web and Java EE Development">
- <description>Tools to help create web and enterprise applications, using JSF, Facelets, Seam, Hibernate/JPA, CSS, Webservices and more.</description>
- </category-def>
-
- <category-def name="GeneralTools" label="JBoss Application Development">
- <description>Tools for general application development.</description>
- </category-def>
-
- <category-def name="DataTools" label="JBoss Data Services">
- <description>Tools related to data services such as persistence and transformation.</description>
- </category-def>
-
- <category-def name="MavenTools" label="JBoss Maven Support">
- <description>Plugins related to Maven and m2eclipse support. Use these to enable use of Maven.</description>
- </category-def>
- <category-def name="CloudTools" label="JBoss Cloud Development Tools">
- <description>Tools for Cloud Development.</description>
- </category-def>
- <!-- Only in JBT -->
- <category-def name="ReportTools" label="JBoss Business Intelligence, Reporting and Charting">
- <description>Business Intelligence, Reporting and Charting. Use these if you plan to integrate Hibernate or Seam with Eclipse BIRT.</description>
- </category-def>
-
- <category-def name="AllSources" label="Sources">
- <description>Source code for JBoss Tools features.</description>
- </category-def>
-
-</site>
12 years, 5 months
JBoss Tools SVN: r43197 - in trunk/maven/features: org.jboss.tools.maven.feature and 9 other directories.
by jbosstools-commits@lists.jboss.org
Author: fbricon
Date: 2012-08-23 11:29:55 -0400 (Thu, 23 Aug 2012)
New Revision: 43197
Modified:
trunk/maven/features/org.jboss.tools.maven.cdi.feature/feature.xml
trunk/maven/features/org.jboss.tools.maven.feature/feature.xml
trunk/maven/features/org.jboss.tools.maven.gwt.feature/feature.xml
trunk/maven/features/org.jboss.tools.maven.hibernate.feature/feature.xml
trunk/maven/features/org.jboss.tools.maven.jaxrs.feature/feature.xml
trunk/maven/features/org.jboss.tools.maven.jbosspackaging.feature/feature.xml
trunk/maven/features/org.jboss.tools.maven.jsf.feature/feature.xml
trunk/maven/features/org.jboss.tools.maven.portlet.feature/feature.xml
trunk/maven/features/org.jboss.tools.maven.project.examples.feature/feature.xml
trunk/maven/features/org.jboss.tools.maven.seam.feature/feature.xml
trunk/maven/features/org.jboss.tools.maven.sourcelookup.feature/feature.xml
Log:
JBIDE-12471 : remove ref to org.maven.ide.wtp
Modified: trunk/maven/features/org.jboss.tools.maven.cdi.feature/feature.xml
===================================================================
--- trunk/maven/features/org.jboss.tools.maven.cdi.feature/feature.xml 2012-08-23 13:26:48 UTC (rev 43196)
+++ trunk/maven/features/org.jboss.tools.maven.cdi.feature/feature.xml 2012-08-23 15:29:55 UTC (rev 43197)
@@ -20,7 +20,9 @@
<requires>
<import feature="org.eclipse.m2e.feature" version="1.1.0" match="greaterOrEqual"/>
- <import feature="org.maven.ide.eclipse.wtp.feature" version="0.15.0" match="greaterOrEqual"/>
+ <!--
+ <import feature="org.eclipse.m2e.wtp.feature" version="0.16.0" match="greaterOrEqual"/>
+ -->
</requires>
<plugin
Modified: trunk/maven/features/org.jboss.tools.maven.feature/feature.xml
===================================================================
--- trunk/maven/features/org.jboss.tools.maven.feature/feature.xml 2012-08-23 13:26:48 UTC (rev 43196)
+++ trunk/maven/features/org.jboss.tools.maven.feature/feature.xml 2012-08-23 15:29:55 UTC (rev 43197)
@@ -20,8 +20,10 @@
<requires>
<import feature="org.eclipse.m2e.feature" version="1.1.0" match="greaterOrEqual"/>
- <import feature="org.maven.ide.eclipse.wtp.feature" version="0.15.0" match="greaterOrEqual"/>
- </requires>
+ <!--
+ <import feature="org.eclipse.m2e.wtp.feature" version="0.16.0" match="greaterOrEqual"/>
+ -->
+ </requires>
<plugin
id="org.jboss.tools.maven.core"
Modified: trunk/maven/features/org.jboss.tools.maven.gwt.feature/feature.xml
===================================================================
--- trunk/maven/features/org.jboss.tools.maven.gwt.feature/feature.xml 2012-08-23 13:26:48 UTC (rev 43196)
+++ trunk/maven/features/org.jboss.tools.maven.gwt.feature/feature.xml 2012-08-23 15:29:55 UTC (rev 43197)
@@ -20,7 +20,9 @@
<requires>
<import feature="org.eclipse.m2e.feature" version="1.1.0" match="greaterOrEqual"/>
- <import feature="org.maven.ide.eclipse.wtp.feature" version="0.15.0" match="greaterOrEqual"/>
+ <!--
+ <import feature="org.eclipse.m2e.wtp.feature" version="0.16.0" match="greaterOrEqual"/>
+ -->
<import feature="com.google.gdt.eclipse.suite.e42.feature" version="3.0.1" match="greaterOrEqual"/>
</requires>
Modified: trunk/maven/features/org.jboss.tools.maven.hibernate.feature/feature.xml
===================================================================
--- trunk/maven/features/org.jboss.tools.maven.hibernate.feature/feature.xml 2012-08-23 13:26:48 UTC (rev 43196)
+++ trunk/maven/features/org.jboss.tools.maven.hibernate.feature/feature.xml 2012-08-23 15:29:55 UTC (rev 43197)
@@ -20,7 +20,6 @@
<requires>
<import feature="org.eclipse.m2e.feature" version="1.1.0" match="greaterOrEqual"/>
- <import feature="org.maven.ide.eclipse.wtp.feature" version="0.15.0" match="greaterOrEqual"/>
</requires>
<plugin
Modified: trunk/maven/features/org.jboss.tools.maven.jaxrs.feature/feature.xml
===================================================================
--- trunk/maven/features/org.jboss.tools.maven.jaxrs.feature/feature.xml 2012-08-23 13:26:48 UTC (rev 43196)
+++ trunk/maven/features/org.jboss.tools.maven.jaxrs.feature/feature.xml 2012-08-23 15:29:55 UTC (rev 43197)
@@ -20,7 +20,9 @@
<requires>
<import feature="org.eclipse.m2e.feature" version="1.1.0" match="greaterOrEqual"/>
- <import feature="org.maven.ide.eclipse.wtp.feature" version="0.15.0" match="greaterOrEqual"/>
+ <!--
+ <import feature="org.eclipse.m2e.wtp.feature" version="0.16.0" match="greaterOrEqual"/>
+ -->
</requires>
<plugin
Modified: trunk/maven/features/org.jboss.tools.maven.jbosspackaging.feature/feature.xml
===================================================================
--- trunk/maven/features/org.jboss.tools.maven.jbosspackaging.feature/feature.xml 2012-08-23 13:26:48 UTC (rev 43196)
+++ trunk/maven/features/org.jboss.tools.maven.jbosspackaging.feature/feature.xml 2012-08-23 15:29:55 UTC (rev 43197)
@@ -20,7 +20,9 @@
<requires>
<import feature="org.eclipse.m2e.feature" version="1.1.0" match="greaterOrEqual"/>
- <import feature="org.maven.ide.eclipse.wtp.feature" version="0.15.0" match="greaterOrEqual"/>
+ <!--
+ <import feature="org.eclipse.m2e.wtp.feature" version="0.16.0" match="greaterOrEqual"/>
+ -->
<import feature="org.jboss.ide.eclipse.as.feature" version="2.3.0" match="greaterOrEqual"/>
</requires>
Modified: trunk/maven/features/org.jboss.tools.maven.jsf.feature/feature.xml
===================================================================
--- trunk/maven/features/org.jboss.tools.maven.jsf.feature/feature.xml 2012-08-23 13:26:48 UTC (rev 43196)
+++ trunk/maven/features/org.jboss.tools.maven.jsf.feature/feature.xml 2012-08-23 15:29:55 UTC (rev 43197)
@@ -20,7 +20,10 @@
<requires>
<import feature="org.eclipse.m2e.feature" version="1.1.0" match="greaterOrEqual"/>
- <import feature="org.maven.ide.eclipse.wtp.feature" version="0.15.0" match="greaterOrEqual"/>
+ <!--
+ <import feature="org.eclipse.m2e.wtp.feature" version="0.16.0" match="greaterOrEqual"/>
+ -->
+
</requires>
<plugin
Modified: trunk/maven/features/org.jboss.tools.maven.portlet.feature/feature.xml
===================================================================
--- trunk/maven/features/org.jboss.tools.maven.portlet.feature/feature.xml 2012-08-23 13:26:48 UTC (rev 43196)
+++ trunk/maven/features/org.jboss.tools.maven.portlet.feature/feature.xml 2012-08-23 15:29:55 UTC (rev 43197)
@@ -20,7 +20,9 @@
<requires>
<import feature="org.eclipse.m2e.feature" version="1.1.0" match="greaterOrEqual"/>
- <import feature="org.maven.ide.eclipse.wtp.feature" version="0.15.0" match="greaterOrEqual"/>
+ <!--
+ <import feature="org.eclipse.m2e.wtp.feature" version="0.16.0" match="greaterOrEqual"/>
+ -->
</requires>
<plugin
Modified: trunk/maven/features/org.jboss.tools.maven.project.examples.feature/feature.xml
===================================================================
--- trunk/maven/features/org.jboss.tools.maven.project.examples.feature/feature.xml 2012-08-23 13:26:48 UTC (rev 43196)
+++ trunk/maven/features/org.jboss.tools.maven.project.examples.feature/feature.xml 2012-08-23 15:29:55 UTC (rev 43197)
@@ -20,7 +20,9 @@
<requires>
<import feature="org.eclipse.m2e.feature" version="1.1.0" match="greaterOrEqual"/>
- <import feature="org.maven.ide.eclipse.wtp.feature" version="0.15.0" match="greaterOrEqual"/>
+ <!--
+ <import feature="org.eclipse.m2e.wtp.feature" version="0.16.0" match="greaterOrEqual"/>
+ -->
<import feature="org.jboss.tools.project.examples.feature" version="1.2.0" match="greaterOrEqual"/>
</requires>
Modified: trunk/maven/features/org.jboss.tools.maven.seam.feature/feature.xml
===================================================================
--- trunk/maven/features/org.jboss.tools.maven.seam.feature/feature.xml 2012-08-23 13:26:48 UTC (rev 43196)
+++ trunk/maven/features/org.jboss.tools.maven.seam.feature/feature.xml 2012-08-23 15:29:55 UTC (rev 43197)
@@ -20,7 +20,9 @@
<requires>
<import feature="org.eclipse.m2e.feature" version="1.1.0" match="greaterOrEqual"/>
- <import feature="org.maven.ide.eclipse.wtp.feature" version="0.15.0" match="greaterOrEqual"/>
+ <!--
+ <import feature="org.eclipse.m2e.wtp.feature" version="0.16.0" match="greaterOrEqual"/>
+ -->
</requires>
<plugin
Modified: trunk/maven/features/org.jboss.tools.maven.sourcelookup.feature/feature.xml
===================================================================
--- trunk/maven/features/org.jboss.tools.maven.sourcelookup.feature/feature.xml 2012-08-23 13:26:48 UTC (rev 43196)
+++ trunk/maven/features/org.jboss.tools.maven.sourcelookup.feature/feature.xml 2012-08-23 15:29:55 UTC (rev 43197)
@@ -18,6 +18,10 @@
%license
</license>
+ <requires>
+ <import feature="org.eclipse.m2e.feature" version="1.1.0" match="greaterOrEqual"/>
+ </requires>
+
<plugin
id="org.jboss.tools.maven.sourcelookup.core"
download-size="0"
12 years, 5 months
JBoss Tools SVN: r43196 - trunk/download.jboss.org/jbosstools/examples.
by jbosstools-commits@lists.jboss.org
Author: fbricon
Date: 2012-08-23 09:26:48 -0400 (Thu, 23 Aug 2012)
New Revision: 43196
Modified:
trunk/download.jboss.org/jbosstools/examples/project-examples-shared-3.3....
Log:
JBIDE-12464 : Update html5 M5 archetype release in JBoss Central
Modified: trunk/download.jboss.org/jbosstools/examples/project-examples-shared-3.3....
===================================================================
--- trunk/download.jboss.org/jbosstools/examples/project-examples-shared-3.3.... 2012-08-23 12:44:39 UTC (rev 43195)
+++ trunk/download.jboss.org/jbosstools/examples/project-examples-shared-3.3.... 2012-08-23 13:26:48 UTC (rev 43196)
@@ -131,7 +131,7 @@
<priority>3</priority>
<description>An archetype that generates a Java EE 6 HTML5 Mobile Webapp project for JBoss Enterprise Application Platform 6 or JBoss Application Server 7.1
-This project is based on the org.jboss.aerogear.archetypes:jboss-html5-mobile-archetype:1.0.0.M4b Maven archetype.
+This project is based on the org.jboss.aerogear.archetypes:jboss-html5-mobile-archetype:1.0.0.M5 Maven archetype.
</description>
<size>165567</size>
<url/>
@@ -143,19 +143,19 @@
</fix>
<fix type="plugin">
<property name="id">org.eclipse.m2e.core</property>
- <property name="versions">[1.0.0,1.2.0)</property>
+ <property name="versions">[1.0.0,2.0)</property>
<property name="description">This project example requires m2e >= 1.0.</property>
<property name="connectorIds">org.eclipse.m2e.feature</property>
</fix>
<fix type="plugin">
<property name="id">org.maven.ide.eclipse.wtp</property>
- <property name="versions">[0.13.1,0.15.0)</property>
+ <property name="versions">[0.13.1,0.16.0)</property>
<property name="description">This project example requires m2eclipse-wtp >= 0.13.1.</property>
<property name="connectorIds">org.maven.ide.eclipse.wtp</property>
</fix>
<fix type="plugin">
<property name="id">org.jboss.tools.maven.core</property>
- <property name="versions">[1.3.0,1.4.0)</property>
+ <property name="versions">[1.3.0,1.5.0)</property>
<property name="description">This project example requires JBoss Maven Tools.</property>
<property name="connectorIds">org.jboss.tools.maven.feature,org.jboss.tools.maven.cdi.feature</property>
</fix>
@@ -166,7 +166,7 @@
<mavenArchetype>
<archetypeGroupId>org.jboss.aerogear.archetypes</archetypeGroupId>
<archetypeArtifactId>jboss-html5-mobile-archetype</archetypeArtifactId>
- <archetypeVersion>1.0.0.M4b</archetypeVersion>
+ <archetypeVersion>1.0.0.M5</archetypeVersion>
<!--
<archetypeRepository>http://anonsvn.jboss.org/repos/jbosstools/workspace/fred/repositories/sna...</archetypeRepository>
<archetypeRepository>http://repository.jboss.org/nexus/content/repositories/releases/</archetypeRepository>
12 years, 5 months
JBoss Tools SVN: r43195 - trunk/maven/plugins/org.jboss.tools.maven.core/META-INF.
by jbosstools-commits@lists.jboss.org
Author: fbricon
Date: 2012-08-23 08:44:39 -0400 (Thu, 23 Aug 2012)
New Revision: 43195
Modified:
trunk/maven/plugins/org.jboss.tools.maven.core/META-INF/MANIFEST.MF
Log:
JBIDE-12471 : remove ref to org.maven.ide.wtp
Modified: trunk/maven/plugins/org.jboss.tools.maven.core/META-INF/MANIFEST.MF
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.core/META-INF/MANIFEST.MF 2012-08-23 12:27:16 UTC (rev 43194)
+++ trunk/maven/plugins/org.jboss.tools.maven.core/META-INF/MANIFEST.MF 2012-08-23 12:44:39 UTC (rev 43195)
@@ -23,7 +23,6 @@
org.eclipse.ui.workbench;visibility:=reexport,
org.eclipse.m2e.model.edit;bundle-version="[1.0,2.0)";visibility:=reexport,
org.eclipse.core.expressions,
- org.maven.ide.eclipse.wtp;bundle-version="[0.13.0,0.16.0)";resolution:=optional;visibility:=reexport,
org.eclipse.jdt.ui;bundle-version="3.7.0",
org.eclipse.jpt.common.core;bundle-version="1.0.0",
org.eclipse.jpt.jpa.core,
12 years, 5 months
JBoss Tools SVN: r43194 - trunk/maven/plugins/org.jboss.tools.maven.gwt/META-INF.
by jbosstools-commits@lists.jboss.org
Author: fbricon
Date: 2012-08-23 08:27:16 -0400 (Thu, 23 Aug 2012)
New Revision: 43194
Modified:
trunk/maven/plugins/org.jboss.tools.maven.gwt/META-INF/MANIFEST.MF
Log:
JBIDE-12471 : Make maven gwt plugin compatible with m2e 1.2
Modified: trunk/maven/plugins/org.jboss.tools.maven.gwt/META-INF/MANIFEST.MF
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.gwt/META-INF/MANIFEST.MF 2012-08-23 12:26:47 UTC (rev 43193)
+++ trunk/maven/plugins/org.jboss.tools.maven.gwt/META-INF/MANIFEST.MF 2012-08-23 12:27:16 UTC (rev 43194)
@@ -5,12 +5,12 @@
Bundle-Version: 1.4.0.qualifier
Bundle-Activator: org.jboss.tools.maven.gwt.MavenGWTPlugin
Require-Bundle: org.eclipse.core.runtime;bundle-version="3.7.0",
- org.eclipse.m2e.core;bundle-version="[1.0.0,1.2.0)",
+ org.eclipse.m2e.core;bundle-version="1.0.0",
org.eclipse.core.resources;bundle-version="3.7.100",
com.google.gwt.eclipse.core;bundle-version="2.5.0",
org.eclipse.jdt.core;bundle-version="3.7.0",
org.slf4j.api;bundle-version="1.6.0",
- org.eclipse.m2e.maven.runtime;bundle-version="[1.0.0,1.2.0)",
+ org.eclipse.m2e.maven.runtime;bundle-version="1.0.0",
org.eclipse.jface;bundle-version="3.7.0",
org.jboss.tools.maven.ui;bundle-version="1.3.0",
org.eclipse.ui;bundle-version="3.7.0",
12 years, 5 months
JBoss Tools SVN: r43193 - in branches/jbosstools-3.3.x/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test: template and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: psuchy
Date: 2012-08-23 08:26:47 -0400 (Thu, 23 Aug 2012)
New Revision: 43193
Modified:
branches/jbosstools-3.3.x/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/dialog/preferences/SeamPreferencesDialog.java
branches/jbosstools-3.3.x/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/template/CheckSeamRuntimeTemplate.java
branches/jbosstools-3.3.x/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/template/RuntimeDetectionTestCase.java
Log:
debugging tests for Windows compatibility
Modified: branches/jbosstools-3.3.x/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/dialog/preferences/SeamPreferencesDialog.java
===================================================================
--- branches/jbosstools-3.3.x/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/dialog/preferences/SeamPreferencesDialog.java 2012-08-23 11:43:03 UTC (rev 43192)
+++ branches/jbosstools-3.3.x/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/dialog/preferences/SeamPreferencesDialog.java 2012-08-23 12:26:47 UTC (rev 43193)
@@ -51,8 +51,8 @@
e.printStackTrace();
}
robot.setAutoWaitForIdle(true);
- robot.keyPress(KeyEvent.VK_RIGHT);
- robot.keyRelease(KeyEvent.VK_RIGHT);
+ //robot.keyPress(KeyEvent.VK_RIGHT);
+ //robot.keyRelease(KeyEvent.VK_RIGHT);
robot.keyPress(KeyEvent.VK_ENTER);
robot.keyRelease(KeyEvent.VK_ENTER);
//KeyboardFactory.getAWTKeyboard().pressShortcut(Keystrokes.RIGHT, Keystrokes.CR, Keystrokes.LF);
Modified: branches/jbosstools-3.3.x/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/template/CheckSeamRuntimeTemplate.java
===================================================================
--- branches/jbosstools-3.3.x/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/template/CheckSeamRuntimeTemplate.java 2012-08-23 11:43:03 UTC (rev 43192)
+++ branches/jbosstools-3.3.x/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/template/CheckSeamRuntimeTemplate.java 2012-08-23 12:26:47 UTC (rev 43193)
@@ -23,5 +23,6 @@
@After
public void cleanup(){
removeAllSeamRuntimes();
+ assertSeamRuntimesNumber(0);
}
}
Modified: branches/jbosstools-3.3.x/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/template/RuntimeDetectionTestCase.java
===================================================================
--- branches/jbosstools-3.3.x/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/template/RuntimeDetectionTestCase.java 2012-08-23 11:43:03 UTC (rev 43192)
+++ branches/jbosstools-3.3.x/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/template/RuntimeDetectionTestCase.java 2012-08-23 12:26:47 UTC (rev 43193)
@@ -44,9 +44,7 @@
protected void removeAllSeamRuntimes(){
seamPreferences.open();
- System.err.println(seamPreferences.getRuntimes());
seamPreferences.removeAllRuntimes();
- assertThat(seamPreferences.getRuntimes().size(), is(0));
seamPreferences.ok();
}
12 years, 5 months
JBoss Tools SVN: r43192 - trunk/maven/plugins/org.jboss.tools.maven.sourcelookup.core/META-INF.
by jbosstools-commits@lists.jboss.org
Author: fbricon
Date: 2012-08-23 07:43:03 -0400 (Thu, 23 Aug 2012)
New Revision: 43192
Modified:
trunk/maven/plugins/org.jboss.tools.maven.sourcelookup.core/META-INF/MANIFEST.MF
Log:
Lift m2e version constraint
Modified: trunk/maven/plugins/org.jboss.tools.maven.sourcelookup.core/META-INF/MANIFEST.MF
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.sourcelookup.core/META-INF/MANIFEST.MF 2012-08-23 10:35:52 UTC (rev 43191)
+++ trunk/maven/plugins/org.jboss.tools.maven.sourcelookup.core/META-INF/MANIFEST.MF 2012-08-23 11:43:03 UTC (rev 43192)
@@ -10,9 +10,9 @@
org.jboss.ide.eclipse.as.core;visibility:=reexport,
org.eclipse.wst.server.core;bundle-version="1.1.302";visibility:=reexport,
org.eclipse.jdt.launching;bundle-version="3.6.0",
- org.eclipse.m2e.jdt;bundle-version="[1.0.0,1.2.0)";visibility:=reexport,
- org.eclipse.m2e.core;bundle-version="[1.0.0,1.2.0)";visibility:=reexport,
- org.eclipse.m2e.maven.runtime;bundle-version="[1.0.0,1.2.0)";visibility:=reexport,
+ org.eclipse.m2e.jdt;bundle-version="1.0.0";visibility:=reexport,
+ org.eclipse.m2e.core;bundle-version="1.0.0";visibility:=reexport,
+ org.eclipse.m2e.maven.runtime;bundle-version="1.0.0";visibility:=reexport,
org.apache.commons.codec;bundle-version="1.3.0",
org.eclipse.ui;bundle-version="3.7.0"
Bundle-ActivationPolicy: lazy
12 years, 5 months
JBoss Tools SVN: r43191 - in trunk/esb/tests: org.jboss.tools.esb.ui.bot.test and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: mickael_istria
Date: 2012-08-23 06:35:52 -0400 (Thu, 23 Aug 2012)
New Revision: 43191
Modified:
trunk/esb/tests/org.jboss.tools.esb.project.core.test/pom.xml
trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/pom.xml
Log:
JBIDE-12420: Added profiles to skip tests for esb, when skipPrivateRequirements or swtbot.test.skip is set to true.
Modified: trunk/esb/tests/org.jboss.tools.esb.project.core.test/pom.xml
===================================================================
--- trunk/esb/tests/org.jboss.tools.esb.project.core.test/pom.xml 2012-08-23 09:42:38 UTC (rev 43190)
+++ trunk/esb/tests/org.jboss.tools.esb.project.core.test/pom.xml 2012-08-23 10:35:52 UTC (rev 43191)
@@ -34,6 +34,7 @@
<url>http://repository.jboss.org/sourceforge/jboss-5.1.0.GA.zip</url>
<md5>78322c75ca0c13002a04418b4a8bc920</md5>
<unpack>true</unpack>
+ <skip>${skipPrivateRequirements}</skip>
</configuration>
</execution>
<execution>
@@ -46,6 +47,7 @@
<url>http://download.devel.redhat.com/released/JBossSOAP/4.3.0/CP05/soa-4.3.0....</url>
<md5>91ce2b24015178cda02878d0abe38ac7</md5>
<unpack>true</unpack>
+ <skip>${skipPrivateRequirements}</skip>
</configuration>
</execution>
<execution>
@@ -58,6 +60,7 @@
<url>http://jawa05.englab.brq.redhat.com/candidate/soa-5.3.0.ER5/soa-p-5.3.0.E...</url>
<md5>1c2e329498396762b8dad2c1621308bf</md5>
<unpack>true</unpack>
+ <skip>${skipPrivateRequirements}</skip>
</configuration>
</execution>
</executions>
@@ -66,6 +69,7 @@
<groupId>org.eclipse.tycho</groupId>
<artifactId>tycho-surefire-plugin</artifactId>
<configuration>
+ <skip>${skipPrivateRequirements}</skip>
<explodedBundles>
<bundle>org.jboss.tools.esb.project.core</bundle>
</explodedBundles>
Modified: trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/pom.xml
===================================================================
--- trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/pom.xml 2012-08-23 09:42:38 UTC (rev 43190)
+++ trunk/esb/tests/org.jboss.tools.esb.ui.bot.test/pom.xml 2012-08-23 10:35:52 UTC (rev 43191)
@@ -19,6 +19,36 @@
</systemProperties>
</properties>
+ <profiles>
+ <profile>
+ <id>skip-tests-privateReqs</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ <property>
+ <name>skipPrivateRequirements</name>
+ <value>true</value>
+ </property>
+ </activation>
+ <properties>
+ <esb.test.skip>true</esb.test.skip>
+ </properties>
+ </profile>
+ <profile>
+ <id>skip-swtbot</id>
+ <activation>
+ <activeByDefault>false</activeByDefault>
+ <property>
+ <name>swtbot.test.skip</name>
+ <value>true</value>
+ </property>
+ </activation>
+ <properties>
+ <esb.test.skip>true</esb.test.skip>
+ </properties>
+ </profile>
+ </profiles>
+
+
<build>
<plugins>
<plugin>
@@ -35,6 +65,7 @@
<url>http://jawa05.englab.brq.redhat.com/candidate/soa-5.3.0.ER5/soa-p-5.3.0.E...</url>
<md5>1c2e329498396762b8dad2c1621308bf</md5>
<unpack>true</unpack>
+ <skip>${esb.test.skip}</skip>
</configuration>
</execution>
<execution>
@@ -47,6 +78,7 @@
<url>http://download.jboss.org/jbossesb/4.11/binary/jbossesb-4.11.zip</url>
<md5>506bb7f42777cf0e524ccc37336aa137</md5>
<unpack>true</unpack>
+ <skip>${esb.test.skip}</skip>
</configuration>
</execution>
</executions>
@@ -56,7 +88,7 @@
<artifactId>tycho-surefire-plugin</artifactId>
<configuration>
<useUIThread>false</useUIThread>
- <skip>${swtbot.test.skip}</skip>
+ <skip>${esb.test.skip}</skip>
<testSuite>org.jboss.tools.esb.ui.bot.test</testSuite>
<testClass>org.jboss.tools.esb.ui.bot.tests.ESBAllBotTests</testClass>
<forkedProcessTimeoutInSeconds>7200</forkedProcessTimeoutInSeconds>
12 years, 5 months
JBoss Tools SVN: r43190 - in branches/jbosstools-3.3.x/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test: template and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: psuchy
Date: 2012-08-23 05:42:38 -0400 (Thu, 23 Aug 2012)
New Revision: 43190
Modified:
branches/jbosstools-3.3.x/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/dialog/preferences/SeamPreferencesDialog.java
branches/jbosstools-3.3.x/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/template/CheckSeamRuntimeTemplate.java
branches/jbosstools-3.3.x/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/template/RuntimeDetectionTestCase.java
Log:
debugging tests for Windows compatibility
Modified: branches/jbosstools-3.3.x/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/dialog/preferences/SeamPreferencesDialog.java
===================================================================
--- branches/jbosstools-3.3.x/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/dialog/preferences/SeamPreferencesDialog.java 2012-08-23 09:27:57 UTC (rev 43189)
+++ branches/jbosstools-3.3.x/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/dialog/preferences/SeamPreferencesDialog.java 2012-08-23 09:42:38 UTC (rev 43190)
@@ -50,6 +50,7 @@
} catch (AWTException e) {
e.printStackTrace();
}
+ robot.setAutoWaitForIdle(true);
robot.keyPress(KeyEvent.VK_RIGHT);
robot.keyRelease(KeyEvent.VK_RIGHT);
robot.keyPress(KeyEvent.VK_ENTER);
Modified: branches/jbosstools-3.3.x/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/template/CheckSeamRuntimeTemplate.java
===================================================================
--- branches/jbosstools-3.3.x/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/template/CheckSeamRuntimeTemplate.java 2012-08-23 09:27:57 UTC (rev 43189)
+++ branches/jbosstools-3.3.x/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/template/CheckSeamRuntimeTemplate.java 2012-08-23 09:42:38 UTC (rev 43190)
@@ -16,12 +16,6 @@
public void checkSeamRuntime(){
seamPreferences.open();
- System.err.println(seamPreferences.getRuntimes());
- System.err.println(seamPreferences.getRuntimes().get(0).getLocation().toString());
- System.err.println(seamPreferences.getRuntimes().get(0).getLocation().toPath().toString());
- System.err.println(seamPreferences.getRuntimes().get(1).getLocation().toString());
- System.err.println(seamPreferences.getRuntimes().get(1).getLocation().toPath().toString());
-
assertThat(seamPreferences.getRuntimes().size(), is(1));
assertThat(seamPreferences.getRuntimes().get(0), new RuntimeMatcher(getExpectedRuntime()));
}
Modified: branches/jbosstools-3.3.x/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/template/RuntimeDetectionTestCase.java
===================================================================
--- branches/jbosstools-3.3.x/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/template/RuntimeDetectionTestCase.java 2012-08-23 09:27:57 UTC (rev 43189)
+++ branches/jbosstools-3.3.x/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/template/RuntimeDetectionTestCase.java 2012-08-23 09:42:38 UTC (rev 43190)
@@ -44,7 +44,9 @@
protected void removeAllSeamRuntimes(){
seamPreferences.open();
+ System.err.println(seamPreferences.getRuntimes());
seamPreferences.removeAllRuntimes();
+ assertThat(seamPreferences.getRuntimes().size(), is(0));
seamPreferences.ok();
}
12 years, 5 months