JBoss Tools SVN: r35491 - in trunk/cdi: tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/quickfixes and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: dazarov
Date: 2011-10-07 18:41:33 -0400 (Fri, 07 Oct 2011)
New Revision: 35491
Added:
trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/quickfixes/beans.xml
Modified:
trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/marker/CreateCDIElementMarkerResolution.java
trunk/cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test/marker/CDIMarkerResolutionTest.java
Log:
Quick fixes for problem markers in beans.xml https://issues.jboss.org/browse/JBIDE-9833
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/marker/CreateCDIElementMarkerResolution.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/marker/CreateCDIElementMarkerResolution.java 2011-10-07 22:31:09 UTC (rev 35490)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/marker/CreateCDIElementMarkerResolution.java 2011-10-07 22:41:33 UTC (rev 35491)
@@ -28,7 +28,7 @@
import org.jboss.tools.cdi.ui.wizard.NewStereotypeCreationWizard;
import org.jboss.tools.common.model.ui.wizards.NewTypeWizardAdapter;
-public class CreateCDIElementMarkerResolution implements IMarkerResolution2{
+public class CreateCDIElementMarkerResolution implements IMarkerResolution2, TestableResolutionWithDialog{
private static final String OBJECT = "java.lang.Object";
public static final int CREATE_BEAN_CLASS = 1;
@@ -61,8 +61,16 @@
return "";
}
+ public void run(IMarker marker){
+ internal_run(marker, false);
+ }
+
@Override
- public void run(IMarker marker) {
+ public void runForTest(IMarker marker) {
+ internal_run(marker, true);
+ }
+
+ private void internal_run(IMarker marker, boolean test) {
Shell shell = PlatformUI.getWorkbench().getActiveWorkbenchWindow().getShell();
NewCDIElementWizard wizard = null;
switch(id){
@@ -90,7 +98,16 @@
wizard.init(PlatformUI.getWorkbench(), new StructuredSelection(new Object[]{}));
WizardDialog dialog = new WizardDialog(shell, wizard);
+ if(test){
+ dialog.setBlockOnOpen(false);
+ }
+
dialog.open();
+
+ if(test){
+ wizard.performFinish();
+ dialog.close();
+ }
}
@Override
@@ -103,4 +120,5 @@
return CDIImages.QUICKFIX_EDIT;
}
+
}
Added: trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/quickfixes/beans.xml
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/quickfixes/beans.xml (rev 0)
+++ trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/quickfixes/beans.xml 2011-10-07 22:41:33 UTC (rev 35491)
@@ -0,0 +1,16 @@
+<?xml version="1.0"?>
+<beans xmlns="http://java.sun.com/xml/ns/javaee"
+ xmlns:weld="http://jboss.org/schema/weld/beans"
+ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation=" http://java.sun.com/xml/ns/javaee http://jboss.org/schema/cdi/beans_1_0.xsd http://jboss.org/schema/weld/beans http://jboss.org/schema/weld/beans_1_1.xsd">
+ <interceptors>
+ <class>org.jboss.jsr299.tck.tests.jbt.quickfixes.MyFirstInterceptor</class>
+ </interceptors>
+ <weld:scan/>
+ <decorators>
+ <class>org.jboss.jsr299.tck.tests.jbt.quickfixes.MyFirstDecorator</class>
+ </decorators>
+ <alternatives>
+ <class>org.jboss.jsr299.tck.tests.jbt.quickfixes.MyFirstBean</class>
+ <stereotype>org.jboss.jsr299.tck.tests.jbt.quickfixes.MyFirstStereotype</stereotype>
+ </alternatives>
+</beans>
Property changes on: trunk/cdi/tests/org.jboss.tools.cdi.core.test/resources/tck/tests/jbt/quickfixes/beans.xml
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Modified: trunk/cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test/marker/CDIMarkerResolutionTest.java
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test/marker/CDIMarkerResolutionTest.java 2011-10-07 22:31:09 UTC (rev 35490)
+++ trunk/cdi/tests/org.jboss.tools.cdi.ui.test/src/org/jboss/tools/cdi/ui/test/marker/CDIMarkerResolutionTest.java 2011-10-07 22:41:33 UTC (rev 35491)
@@ -33,12 +33,14 @@
import org.jboss.tools.cdi.ui.marker.AddSerializableInterfaceMarkerResolution;
import org.jboss.tools.cdi.ui.marker.AddTargetAnnotationMarkerResolution;
import org.jboss.tools.cdi.ui.marker.ChangeAnnotationMarkerResolution;
+import org.jboss.tools.cdi.ui.marker.CreateCDIElementMarkerResolution;
import org.jboss.tools.cdi.ui.marker.DeleteAllDisposerDuplicantMarkerResolution;
import org.jboss.tools.cdi.ui.marker.DeleteAllInjectedConstructorsMarkerResolution;
import org.jboss.tools.cdi.ui.marker.DeleteAnnotationMarkerResolution;
import org.jboss.tools.cdi.ui.marker.MakeFieldStaticMarkerResolution;
import org.jboss.tools.cdi.ui.marker.MakeMethodBusinessMarkerResolution;
import org.jboss.tools.cdi.ui.marker.MakeMethodPublicMarkerResolution;
+import org.jboss.tools.cdi.ui.marker.TestableResolutionWithDialog;
import org.jboss.tools.cdi.ui.marker.TestableResolutionWithRefactoringProcessor;
import org.jboss.tools.common.base.test.validation.TestUtil;
import org.jboss.tools.common.util.FileUtil;
@@ -102,6 +104,8 @@
CompositeChange rootChange = (CompositeChange)processor.createChange(new NullProgressMonitor());
rootChange.perform(new NullProgressMonitor());
+ } else if(resolution instanceof TestableResolutionWithDialog){
+ ((TestableResolutionWithDialog) resolution).runForTest(marker);
} else {
resolution.run(marker);
}
@@ -945,4 +949,37 @@
CDIValidationErrorManager.SESSION_BEAN_ANNOTATED_INTERCEPTOR_ID,
DeleteAnnotationMarkerResolution.class);
}
+
+ public void testCreateBeanClassResolution() throws CoreException{
+ checkResolution(tckProject,
+ new String[]{
+ "JavaSource/org/jboss/jsr299/tck/tests/jbt/quickfixes/beans.xml"
+ },
+ CDICoreValidator.PROBLEM_TYPE,
+ CDIValidationErrorManager.MESSAGE_ID_ATTRIBUTE_NAME,
+ CDIValidationErrorManager.UNKNOWN_ALTERNATIVE_BEAN_CLASS_NAME_ID,
+ CreateCDIElementMarkerResolution.class);
+ }
+
+ public void testCreateStereotypeResolution() throws CoreException{
+ checkResolution(tckProject,
+ new String[]{
+ "JavaSource/org/jboss/jsr299/tck/tests/jbt/quickfixes/beans.xml"
+ },
+ CDICoreValidator.PROBLEM_TYPE,
+ CDIValidationErrorManager.MESSAGE_ID_ATTRIBUTE_NAME,
+ CDIValidationErrorManager.UNKNOWN_ALTERNATIVE_ANNOTATION_NAME_ID,
+ CreateCDIElementMarkerResolution.class);
+ }
+
+ public void testCreateInterceptorResolution() throws CoreException{
+ checkResolution(tckProject,
+ new String[]{
+ "JavaSource/org/jboss/jsr299/tck/tests/jbt/quickfixes/beans.xml"
+ },
+ CDICoreValidator.PROBLEM_TYPE,
+ CDIValidationErrorManager.MESSAGE_ID_ATTRIBUTE_NAME,
+ CDIValidationErrorManager.UNKNOWN_INTERCEPTOR_CLASS_NAME_ID,
+ CreateCDIElementMarkerResolution.class);
+ }
}
\ No newline at end of file
13 years, 3 months
JBoss Tools SVN: r35490 - trunk/as/features/org.jboss.ide.eclipse.as.source.feature.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-10-07 18:31:09 -0400 (Fri, 07 Oct 2011)
New Revision: 35490
Modified:
trunk/as/features/org.jboss.ide.eclipse.as.source.feature/pom.xml
Log:
fix version of features/org.jboss.ide.eclipse.as.source.feature/pom.xml
Modified: trunk/as/features/org.jboss.ide.eclipse.as.source.feature/pom.xml
===================================================================
--- trunk/as/features/org.jboss.ide.eclipse.as.source.feature/pom.xml 2011-10-07 22:21:50 UTC (rev 35489)
+++ trunk/as/features/org.jboss.ide.eclipse.as.source.feature/pom.xml 2011-10-07 22:31:09 UTC (rev 35490)
@@ -9,7 +9,5 @@
</parent>
<groupId>org.jboss.ide.eclipse.as.features</groupId>
<artifactId>org.jboss.ide.eclipse.as.source.feature</artifactId>
- <version>1.0.0-SNAPSHOT</version>
-
<packaging>eclipse-feature</packaging>
</project>
13 years, 3 months
JBoss Tools SVN: r35489 - in trunk/common: features/org.jboss.tools.common.all.feature and 9 other directories.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-10-07 18:21:50 -0400 (Fri, 07 Oct 2011)
New Revision: 35489
Added:
trunk/common/features/org.jboss.tools.common.all.source.feature/
trunk/common/features/org.jboss.tools.common.all.source.feature/.project
trunk/common/features/org.jboss.tools.common.all.source.feature/build.properties
trunk/common/features/org.jboss.tools.common.all.source.feature/feature.properties
trunk/common/features/org.jboss.tools.common.all.source.feature/feature.xml
trunk/common/features/org.jboss.tools.common.all.source.feature/license.html
trunk/common/features/org.jboss.tools.common.all.source.feature/pom.xml
trunk/common/features/org.jboss.tools.common.all.test.source.feature/
trunk/common/features/org.jboss.tools.common.all.test.source.feature/.project
trunk/common/features/org.jboss.tools.common.all.test.source.feature/build.properties
trunk/common/features/org.jboss.tools.common.all.test.source.feature/feature.properties
trunk/common/features/org.jboss.tools.common.all.test.source.feature/feature.xml
trunk/common/features/org.jboss.tools.common.all.test.source.feature/license.html
trunk/common/features/org.jboss.tools.common.all.test.source.feature/pom.xml
trunk/common/features/org.jboss.tools.common.jdt.source.feature/
trunk/common/features/org.jboss.tools.common.jdt.source.feature/.project
trunk/common/features/org.jboss.tools.common.jdt.source.feature/build.properties
trunk/common/features/org.jboss.tools.common.jdt.source.feature/feature.properties
trunk/common/features/org.jboss.tools.common.jdt.source.feature/feature.xml
trunk/common/features/org.jboss.tools.common.jdt.source.feature/license.html
trunk/common/features/org.jboss.tools.common.jdt.source.feature/pom.xml
Removed:
trunk/common/features/org.jboss.tools.common.all.feature/sourceTemplateFeature/build.properties
trunk/common/features/org.jboss.tools.common.all.feature/sourceTemplateFeature/feature.properties
trunk/common/features/org.jboss.tools.common.all.feature/sourceTemplateFeature/license.html
trunk/common/features/org.jboss.tools.common.all.feature/sourceTemplatePlugin/about.ini
trunk/common/features/org.jboss.tools.common.all.feature/sourceTemplatePlugin/about.mappings
trunk/common/features/org.jboss.tools.common.all.feature/sourceTemplatePlugin/about.properties
trunk/common/features/org.jboss.tools.common.all.feature/sourceTemplatePlugin/build.properties
trunk/common/features/org.jboss.tools.common.all.feature/sourceTemplatePlugin/plugin.properties
trunk/common/features/org.jboss.tools.common.all.sdk.feature/.project
trunk/common/features/org.jboss.tools.common.all.sdk.feature/build.properties
trunk/common/features/org.jboss.tools.common.all.sdk.feature/feature.properties
trunk/common/features/org.jboss.tools.common.all.sdk.feature/feature.xml
trunk/common/features/org.jboss.tools.common.all.sdk.feature/license.html
trunk/common/features/org.jboss.tools.common.all.test.feature/sourceTemplatePlugin/about.ini
trunk/common/features/org.jboss.tools.common.all.test.feature/sourceTemplatePlugin/about.mappings
trunk/common/features/org.jboss.tools.common.all.test.feature/sourceTemplatePlugin/about.properties
trunk/common/features/org.jboss.tools.common.all.test.feature/sourceTemplatePlugin/build.properties
trunk/common/features/org.jboss.tools.common.all.test.feature/sourceTemplatePlugin/plugin.properties
Modified:
trunk/common/features/org.jboss.tools.common.all.feature/feature.xml
trunk/common/features/org.jboss.tools.common.all.feature/pom.xml
trunk/common/features/org.jboss.tools.common.all.test.feature/build.properties
trunk/common/features/org.jboss.tools.common.all.test.feature/feature.xml
trunk/common/features/pom.xml
trunk/common/site/site.xml
Log:
JBIDE-8838 add source plugins/features to common component
Modified: trunk/common/features/org.jboss.tools.common.all.feature/feature.xml
===================================================================
--- trunk/common/features/org.jboss.tools.common.all.feature/feature.xml 2011-10-07 22:21:25 UTC (rev 35488)
+++ trunk/common/features/org.jboss.tools.common.all.feature/feature.xml 2011-10-07 22:21:50 UTC (rev 35489)
@@ -21,6 +21,7 @@
<includes id="org.jboss.tools.common.text.ext.feature" version="0.0.0" />
<includes id="org.jboss.tools.common.ui.feature" version="0.0.0" />
<includes id="org.jboss.tools.common.verification.feature" version="0.0.0" />
+
<plugin id="org.jboss.tools.common.el.core" download-size="0" install-size="0" version="0.0.0" />
<plugin id="org.jboss.tools.common.el.ui" download-size="0" install-size="0" version="0.0.0" />
<plugin id="org.jboss.tools.common.meta.ui" download-size="0" install-size="0" version="0.0.0" />
Modified: trunk/common/features/org.jboss.tools.common.all.feature/pom.xml
===================================================================
--- trunk/common/features/org.jboss.tools.common.all.feature/pom.xml 2011-10-07 22:21:25 UTC (rev 35488)
+++ trunk/common/features/org.jboss.tools.common.all.feature/pom.xml 2011-10-07 22:21:50 UTC (rev 35489)
@@ -8,6 +8,5 @@
</parent>
<groupId>org.jboss.tools.common.features</groupId>
<artifactId>org.jboss.tools.common.all.feature</artifactId>
-
<packaging>eclipse-feature</packaging>
</project>
Deleted: trunk/common/features/org.jboss.tools.common.all.feature/sourceTemplateFeature/build.properties
===================================================================
--- trunk/common/features/org.jboss.tools.common.all.feature/sourceTemplateFeature/build.properties 2011-10-07 22:21:25 UTC (rev 35488)
+++ trunk/common/features/org.jboss.tools.common.all.feature/sourceTemplateFeature/build.properties 2011-10-07 22:21:50 UTC (rev 35489)
@@ -1,15 +0,0 @@
-###############################################################################
-# Copyright (c) 2010 JBoss by Red Hat, and others.
-# All rights reserved. This program and the accompanying materials
-# are made available under the terms of the Eclipse Public License v1.0
-# which accompanies this distribution, and is available at
-# http://www.eclipse.org/legal/epl-v10.html
-#
-# Contributors:
-# Red Hat - initial API and implementation
-###############################################################################
-
-bin.includes = feature.*,\
- license.html
-
-
Deleted: trunk/common/features/org.jboss.tools.common.all.feature/sourceTemplateFeature/feature.properties
===================================================================
--- trunk/common/features/org.jboss.tools.common.all.feature/sourceTemplateFeature/feature.properties 2011-10-07 22:21:25 UTC (rev 35488)
+++ trunk/common/features/org.jboss.tools.common.all.feature/sourceTemplateFeature/feature.properties 2011-10-07 22:21:50 UTC (rev 35489)
@@ -1,26 +0,0 @@
-featureName=JBoss Tools Commons Source
-featureProvider=JBoss by Red Hat
-
-# "updateSiteName" property - label for the update site
-updateSiteName=JBossTools Update Site
-
-# "description" property - description of the feature
-description=Sources for Common functionality on which other plugins and features depend
-
-# "licenseURL" property - URL of the "Feature License"
-# do not translate value - just change to point to a locale-specific HTML page
-licenseURL=license.html
-
-# START NON-TRANSLATABLE
-# "license" property - text of the "Feature Update License"
-# should be plain text version of license agreement pointed to be "licenseURL"
-license=Red Hat, Inc. licenses these features and plugins to you under \
-certain open source licenses (or aggregations of such licenses), which \
-in a particular case may include the Eclipse Public License, the GNU \
-Lesser General Public License, and/or certain other open source \
-licenses. For precise licensing details, consult the corresponding \
-source code, or contact Red Hat Legal Affairs, 1801 Varsity Drive, \
-Raleigh NC 27606 USA.
-# END NON-TRANSLATABLE
-########### end of license property ##########################################
-
\ No newline at end of file
Deleted: trunk/common/features/org.jboss.tools.common.all.feature/sourceTemplateFeature/license.html
===================================================================
--- trunk/common/features/org.jboss.tools.common.all.feature/sourceTemplateFeature/license.html 2011-10-07 22:21:25 UTC (rev 35488)
+++ trunk/common/features/org.jboss.tools.common.all.feature/sourceTemplateFeature/license.html 2011-10-07 22:21:50 UTC (rev 35489)
@@ -1,14 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
-<html>
-
-<body>
-<p>Red Hat, Inc. licenses these features and plugins to you under
-certain open source licenses (or aggregations of such licenses), which
-in a particular case may include the Eclipse Public License, the GNU
-Lesser General Public License, and/or certain other open source
-licenses. For precise licensing details, consult the corresponding
-source code, or contact Red Hat Legal Affairs, 1801 Varsity Drive,
-Raleigh NC 27606 USA.
-</p>
-</body>
-</html>
\ No newline at end of file
Deleted: trunk/common/features/org.jboss.tools.common.all.feature/sourceTemplatePlugin/about.ini
===================================================================
--- trunk/common/features/org.jboss.tools.common.all.feature/sourceTemplatePlugin/about.ini 2011-10-07 22:21:25 UTC (rev 35488)
+++ trunk/common/features/org.jboss.tools.common.all.feature/sourceTemplatePlugin/about.ini 2011-10-07 22:21:50 UTC (rev 35489)
@@ -1,29 +0,0 @@
-# about.ini
-# contains information about a feature
-# java.io.Properties file (ISO 8859-1 with "\" escapes)
-# "%key" are externalized strings defined in about.properties
-# This file does not need to be translated.
-
-# Property "aboutText" contains blurb for "About" dialog (translated)
-aboutText=%blurb
-
-# Property "windowImage" contains path to window icon (16x16)
-# needed for primary features only
-
-# Property "featureImage" contains path to feature image (32x32)
-#featureImage=eclipse32.png
-
-# Property "aboutImage" contains path to product image (500x330 or 115x164)
-# needed for primary features only
-
-# Property "appName" contains name of the application (translated)
-# needed for primary features only
-
-# Property "welcomePage" contains path to welcome page (special XML-based format)
-# optional
-
-# Property "welcomePerspective" contains the id of the perspective in which the
-# welcome page is to be opened.
-# optional
-
-
Deleted: trunk/common/features/org.jboss.tools.common.all.feature/sourceTemplatePlugin/about.mappings
===================================================================
--- trunk/common/features/org.jboss.tools.common.all.feature/sourceTemplatePlugin/about.mappings 2011-10-07 22:21:25 UTC (rev 35488)
+++ trunk/common/features/org.jboss.tools.common.all.feature/sourceTemplatePlugin/about.mappings 2011-10-07 22:21:50 UTC (rev 35489)
@@ -1,6 +0,0 @@
-# about.mappings
-# contains fill-ins for about.properties
-# java.io.Properties file (ISO 8859-1 with "\" escapes)
-# This file does not need to be translated.
-
-0=@build@
\ No newline at end of file
Deleted: trunk/common/features/org.jboss.tools.common.all.feature/sourceTemplatePlugin/about.properties
===================================================================
--- trunk/common/features/org.jboss.tools.common.all.feature/sourceTemplatePlugin/about.properties 2011-10-07 22:21:25 UTC (rev 35488)
+++ trunk/common/features/org.jboss.tools.common.all.feature/sourceTemplatePlugin/about.properties 2011-10-07 22:21:50 UTC (rev 35489)
@@ -1,7 +0,0 @@
-blurb=JBoss Tools Commons Source\n\
-\n\
-Version: {featureVersion}\n\
-Build id: {0}\n\
-\n\
-(c) Copyright 2010 JBoss by Red Hat, and others. Initial contribution by Jeff Mesnil, http://jmesnil.net. All rights reserved.\n\
-Visit http://www.jboss.org/tools
Deleted: trunk/common/features/org.jboss.tools.common.all.feature/sourceTemplatePlugin/build.properties
===================================================================
--- trunk/common/features/org.jboss.tools.common.all.feature/sourceTemplatePlugin/build.properties 2011-10-07 22:21:25 UTC (rev 35488)
+++ trunk/common/features/org.jboss.tools.common.all.feature/sourceTemplatePlugin/build.properties 2011-10-07 22:21:50 UTC (rev 35489)
@@ -1,5 +0,0 @@
-bin.includes = plugin.*,\
- about.*,\
- src/,\
- META-INF/
-sourcePlugin = true
Deleted: trunk/common/features/org.jboss.tools.common.all.feature/sourceTemplatePlugin/plugin.properties
===================================================================
--- trunk/common/features/org.jboss.tools.common.all.feature/sourceTemplatePlugin/plugin.properties 2011-10-07 22:21:25 UTC (rev 35488)
+++ trunk/common/features/org.jboss.tools.common.all.feature/sourceTemplatePlugin/plugin.properties 2011-10-07 22:21:50 UTC (rev 35489)
@@ -1,3 +0,0 @@
-pluginName = JBoss Tools Commons Source
-providerName = JBoss by Red Hat
-
Deleted: trunk/common/features/org.jboss.tools.common.all.sdk.feature/.project
===================================================================
--- trunk/common/features/org.jboss.tools.common.all.sdk.feature/.project 2011-10-07 22:21:25 UTC (rev 35488)
+++ trunk/common/features/org.jboss.tools.common.all.sdk.feature/.project 2011-10-07 22:21:50 UTC (rev 35489)
@@ -1,17 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<projectDescription>
- <name>org.jboss.tools.common.all.sdk.feature</name>
- <comment></comment>
- <projects>
- </projects>
- <buildSpec>
- <buildCommand>
- <name>org.eclipse.pde.FeatureBuilder</name>
- <arguments>
- </arguments>
- </buildCommand>
- </buildSpec>
- <natures>
- <nature>org.eclipse.pde.FeatureNature</nature>
- </natures>
-</projectDescription>
Deleted: trunk/common/features/org.jboss.tools.common.all.sdk.feature/build.properties
===================================================================
--- trunk/common/features/org.jboss.tools.common.all.sdk.feature/build.properties 2011-10-07 22:21:25 UTC (rev 35488)
+++ trunk/common/features/org.jboss.tools.common.all.sdk.feature/build.properties 2011-10-07 22:21:50 UTC (rev 35489)
@@ -1,4 +0,0 @@
-bin.includes = feature.xml,\
- feature.properties,\
- license.html
-generate.feature(a)org.jboss.tools.common.all.source.feature=org.jboss.tools.common.all.feature
Deleted: trunk/common/features/org.jboss.tools.common.all.sdk.feature/feature.properties
===================================================================
--- trunk/common/features/org.jboss.tools.common.all.sdk.feature/feature.properties 2011-10-07 22:21:25 UTC (rev 35488)
+++ trunk/common/features/org.jboss.tools.common.all.sdk.feature/feature.properties 2011-10-07 22:21:50 UTC (rev 35489)
@@ -1,25 +0,0 @@
-featureName=JBoss Tools Commons SDK
-featureProvider=JBoss by Red Hat
-
-# "updateSiteName" property - label for the update site
-updateSiteName=JBossTools Update Site
-
-# "description" property - description of the feature
-description=Common functionality on which other plugins and features depend. Includes sources
-
-# "licenseURL" property - URL of the "Feature License"
-# do not translate value - just change to point to a locale-specific HTML page
-licenseURL=license.html
-
-# START NON-TRANSLATABLE
-# "license" property - text of the "Feature Update License"
-# should be plain text version of license agreement pointed to be "licenseURL"
-license=Red Hat, Inc. licenses these features and plugins to you under \
-certain open source licenses (or aggregations of such licenses), which \
-in a particular case may include the Eclipse Public License, the GNU \
-Lesser General Public License, and/or certain other open source \
-licenses. For precise licensing details, consult the corresponding \
-source code, or contact Red Hat Legal Affairs, 1801 Varsity Drive, \
-Raleigh NC 27606 USA.
-# END NON-TRANSLATABLE
-########### end of license property ##########################################
Deleted: trunk/common/features/org.jboss.tools.common.all.sdk.feature/feature.xml
===================================================================
--- trunk/common/features/org.jboss.tools.common.all.sdk.feature/feature.xml 2011-10-07 22:21:25 UTC (rev 35488)
+++ trunk/common/features/org.jboss.tools.common.all.sdk.feature/feature.xml 2011-10-07 22:21:50 UTC (rev 35489)
@@ -1,31 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<feature
- id="org.jboss.tools.common.all.sdk.feature"
- label="%featureName"
- version="1.0.0.qualifier"
- provider-name="%featureProvider">
-
- <description>
- %description
- </description>
-
- <copyright>
- JBoss, Home of Professional Open Source
-Copyright (c) 2006-2011 Red Hat, Inc., and individual contributors as indicated
-by the @authors tag. See the copyright.txt in the distribution
-for a full listing of individual contributors.
- </copyright>
-
- <license url="%licenseURL">
- %license
- </license>
-
- <includes
- id="org.jboss.tools.common.all.feature"
- version="0.0.0"/>
-
- <includes
- id="org.jboss.tools.common.all.source.feature"
- version="0.0.0"/>
-
-</feature>
Deleted: trunk/common/features/org.jboss.tools.common.all.sdk.feature/license.html
===================================================================
--- trunk/common/features/org.jboss.tools.common.all.sdk.feature/license.html 2011-10-07 22:21:25 UTC (rev 35488)
+++ trunk/common/features/org.jboss.tools.common.all.sdk.feature/license.html 2011-10-07 22:21:50 UTC (rev 35489)
@@ -1,14 +0,0 @@
-<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
-<html>
-
-<body>
-<p>Red Hat, Inc. licenses these features and plugins to you under
-certain open source licenses (or aggregations of such licenses), which
-in a particular case may include the Eclipse Public License, the GNU
-Lesser General Public License, and/or certain other open source
-licenses. For precise licensing details, consult the corresponding
-source code, or contact Red Hat Legal Affairs, 1801 Varsity Drive,
-Raleigh NC 27606 USA.
-</p>
-</body>
-</html>
\ No newline at end of file
Copied: trunk/common/features/org.jboss.tools.common.all.source.feature/.project (from rev 35488, trunk/common/features/org.jboss.tools.common.all.sdk.feature/.project)
===================================================================
--- trunk/common/features/org.jboss.tools.common.all.source.feature/.project (rev 0)
+++ trunk/common/features/org.jboss.tools.common.all.source.feature/.project 2011-10-07 22:21:50 UTC (rev 35489)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>org.jboss.tools.common.all.source.feature</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.pde.FeatureBuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.pde.FeatureNature</nature>
+ </natures>
+</projectDescription>
Added: trunk/common/features/org.jboss.tools.common.all.source.feature/build.properties
===================================================================
--- trunk/common/features/org.jboss.tools.common.all.source.feature/build.properties (rev 0)
+++ trunk/common/features/org.jboss.tools.common.all.source.feature/build.properties 2011-10-07 22:21:50 UTC (rev 35489)
@@ -0,0 +1,3 @@
+bin.includes = feature.xml,\
+ feature.properties,\
+ license.html
Copied: trunk/common/features/org.jboss.tools.common.all.source.feature/feature.properties (from rev 35488, trunk/common/features/org.jboss.tools.common.all.sdk.feature/feature.properties)
===================================================================
--- trunk/common/features/org.jboss.tools.common.all.source.feature/feature.properties (rev 0)
+++ trunk/common/features/org.jboss.tools.common.all.source.feature/feature.properties 2011-10-07 22:21:50 UTC (rev 35489)
@@ -0,0 +1,44 @@
+###############################################################################
+# Copyright (c) 2010-2011 Red Hat, Inc. and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# JBoss by Red Hat - Initial implementation.
+##############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName=JBoss Tools Commons source
+featureProvider=JBoss by Red Hat
+
+# "updateSiteName" property - label for the update site
+updateSiteName=JBossTools Update Site
+
+# "description" property - description of the feature
+description=Common functionality on which other plugins and features depend
+
+copyright=JBoss, Home of Professional Open Source\nCopyright JBoss by Red Hat, and individual contributors as indicated\nby the @authors tag, 2006-2011. See the copyright.txt in the distribution\nfor a full listing of individual contributors.
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# START NON-TRANSLATABLE
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=Red Hat, Inc. licenses these features and plugins to you under \
+certain open source licenses (or aggregations of such licenses), which \
+in a particular case may include the Eclipse Public License, the GNU \
+Lesser General Public License, and/or certain other open source \
+licenses. For precise licensing details, consult the corresponding \
+source code, or contact Red Hat Legal Affairs, 1801 Varsity Drive, \
+Raleigh NC 27606 USA.
+# END NON-TRANSLATABLE
+########### end of license property ##########################################
Added: trunk/common/features/org.jboss.tools.common.all.source.feature/feature.xml
===================================================================
--- trunk/common/features/org.jboss.tools.common.all.source.feature/feature.xml (rev 0)
+++ trunk/common/features/org.jboss.tools.common.all.source.feature/feature.xml 2011-10-07 22:21:50 UTC (rev 35489)
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature id="org.jboss.tools.common.all.source.feature" label="%featureName" version="3.3.0.qualifier" provider-name="%featureProvider">
+
+ <description>
+ %description
+ </description>
+
+ <copyright>
+ JBoss, Home of Professional Open Source
+Copyright (c) 2011 Red Hat, Inc., and individual contributors as indicated
+by the @authors tag. See the copyright.txt in the distribution
+for a full listing of individual contributors.
+ </copyright>
+
+ <license url="%licenseURL">
+ %license
+ </license>
+
+ <plugin id="org.jboss.tools.common.source" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.common.model.source" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.common.projecttemplates.source" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.common.el.core.source" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.common.el.ui.source" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.common.validation.source" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.common.resref.core.source" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.common.resref.ui.source" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.common.text.ext.source" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.common.text.xml.source" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.common.gef.source" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.common.ui.source" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.common.model.ui.source" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.common.model.ui.capabilities.source" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.common.verification.source" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.common.verification.ui.source" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.common.meta.ui.source" download-size="0" install-size="0" version="0.0.0" />
+</feature>
Copied: trunk/common/features/org.jboss.tools.common.all.source.feature/license.html (from rev 35488, trunk/common/features/org.jboss.tools.common.all.feature/sourceTemplateFeature/license.html)
===================================================================
--- trunk/common/features/org.jboss.tools.common.all.source.feature/license.html (rev 0)
+++ trunk/common/features/org.jboss.tools.common.all.source.feature/license.html 2011-10-07 22:21:50 UTC (rev 35489)
@@ -0,0 +1,14 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
+<html>
+
+<body>
+<p>Red Hat, Inc. licenses these features and plugins to you under
+certain open source licenses (or aggregations of such licenses), which
+in a particular case may include the Eclipse Public License, the GNU
+Lesser General Public License, and/or certain other open source
+licenses. For precise licensing details, consult the corresponding
+source code, or contact Red Hat Legal Affairs, 1801 Varsity Drive,
+Raleigh NC 27606 USA.
+</p>
+</body>
+</html>
\ No newline at end of file
Copied: trunk/common/features/org.jboss.tools.common.all.source.feature/pom.xml (from rev 35488, trunk/common/features/org.jboss.tools.common.all.feature/pom.xml)
===================================================================
--- trunk/common/features/org.jboss.tools.common.all.source.feature/pom.xml (rev 0)
+++ trunk/common/features/org.jboss.tools.common.all.source.feature/pom.xml 2011-10-07 22:21:50 UTC (rev 35489)
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.jboss.tools.common</groupId>
+ <artifactId>features</artifactId>
+ <version>3.3.0-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.tools.common.features</groupId>
+ <artifactId>org.jboss.tools.common.all.source.feature</artifactId>
+ <packaging>eclipse-feature</packaging>
+</project>
Modified: trunk/common/features/org.jboss.tools.common.all.test.feature/build.properties
===================================================================
--- trunk/common/features/org.jboss.tools.common.all.test.feature/build.properties 2011-10-07 22:21:25 UTC (rev 35488)
+++ trunk/common/features/org.jboss.tools.common.all.test.feature/build.properties 2011-10-07 22:21:50 UTC (rev 35489)
@@ -1,11 +1,3 @@
bin.includes = feature.xml,\
feature.properties,\
license.html
-generate.plugin(a)org.jboss.tools.common.el.core.test.source=org.jboss.tools.common.el.core.test
-generate.plugin(a)org.jboss.tools.common.model.test.source=org.jboss.tools.common.model.test
-generate.plugin(a)org.jboss.tools.common.model.ui.test.source=org.jboss.tools.common.model.ui.test
-generate.plugin(a)org.jboss.tools.common.test.source=org.jboss.tools.common.test
-generate.plugin(a)org.jboss.tools.common.text.ext.test.source=org.jboss.tools.common.text.ext.test
-generate.plugin(a)org.jboss.tools.common.verification.test.source=org.jboss.tools.common.verification.test
-generate.plugin(a)org.jboss.tools.common.verification.ui.test.source=org.jboss.tools.common.verification.ui.test
-
Modified: trunk/common/features/org.jboss.tools.common.all.test.feature/feature.xml
===================================================================
--- trunk/common/features/org.jboss.tools.common.all.test.feature/feature.xml 2011-10-07 22:21:25 UTC (rev 35488)
+++ trunk/common/features/org.jboss.tools.common.all.test.feature/feature.xml 2011-10-07 22:21:50 UTC (rev 35489)
@@ -1,85 +1,35 @@
<?xml version="1.0" encoding="UTF-8"?>
-<feature
- id="org.jboss.tools.common.all.test.feature"
- label="%featureName"
- version="3.3.0.qualifier"
- provider-name="%featureProvider"
- image="eclipse_update_120.jpg">
+<feature id="org.jboss.tools.common.all.test.feature" label="%featureName" version="3.3.0.qualifier" provider-name="%featureProvider" image="eclipse_update_120.jpg">
- <description>
+ <description>
%description
</description>
- <copyright>
+ <copyright>
%copyright
</copyright>
- <license url="%licenseURL">
+ <license url="%licenseURL">
%license
</license>
- <requires>
- <import plugin="org.junit" version="3.8.1" match="greaterOrEqual"/>
- <import plugin="org.eclipse.core.runtime" version="3.3.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.core.resources" version="3.3.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.ant.core" version="3.1.100" match="greaterOrEqual"/>
- <import plugin="org.eclipse.core.resources" version="3.2.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.core.runtime" version="3.2.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.debug.core" version="3.2.0" match="greaterOrEqual"/>
- </requires>
+ <requires>
+ <import plugin="org.junit" version="3.8.1" match="greaterOrEqual" />
+ <import plugin="org.eclipse.core.runtime" version="3.3.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.core.resources" version="3.3.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.ant.core" version="3.1.100" match="greaterOrEqual" />
+ <import plugin="org.eclipse.core.resources" version="3.2.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.core.runtime" version="3.2.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.debug.core" version="3.2.0" match="greaterOrEqual" />
+ </requires>
- <plugin
- id="org.jboss.tools.tests"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.tools.common.el.core.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.tools.common.model.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.tools.common.model.ui.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.tools.common.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.tools.common.base.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.tools.common.validation.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.tools.common.verification.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.tools.common.verification.ui.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
+ <plugin id="org.jboss.tools.tests" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.common.el.core.test" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.common.model.test" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.common.model.ui.test" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.common.test" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.common.base.test" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.common.validation.test" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.common.verification.test" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.common.verification.ui.test" download-size="0" install-size="0" version="0.0.0" />
</feature>
Deleted: trunk/common/features/org.jboss.tools.common.all.test.feature/sourceTemplatePlugin/about.ini
===================================================================
--- trunk/common/features/org.jboss.tools.common.all.test.feature/sourceTemplatePlugin/about.ini 2011-10-07 22:21:25 UTC (rev 35488)
+++ trunk/common/features/org.jboss.tools.common.all.test.feature/sourceTemplatePlugin/about.ini 2011-10-07 22:21:50 UTC (rev 35489)
@@ -1,29 +0,0 @@
-# about.ini
-# contains information about a feature
-# java.io.Properties file (ISO 8859-1 with "\" escapes)
-# "%key" are externalized strings defined in about.properties
-# This file does not need to be translated.
-
-# Property "aboutText" contains blurb for "About" dialog (translated)
-aboutText=%blurb
-
-# Property "windowImage" contains path to window icon (16x16)
-# needed for primary features only
-
-# Property "featureImage" contains path to feature image (32x32)
-#featureImage=eclipse32.png
-
-# Property "aboutImage" contains path to product image (500x330 or 115x164)
-# needed for primary features only
-
-# Property "appName" contains name of the application (translated)
-# needed for primary features only
-
-# Property "welcomePage" contains path to welcome page (special XML-based format)
-# optional
-
-# Property "welcomePerspective" contains the id of the perspective in which the
-# welcome page is to be opened.
-# optional
-
-
Deleted: trunk/common/features/org.jboss.tools.common.all.test.feature/sourceTemplatePlugin/about.mappings
===================================================================
--- trunk/common/features/org.jboss.tools.common.all.test.feature/sourceTemplatePlugin/about.mappings 2011-10-07 22:21:25 UTC (rev 35488)
+++ trunk/common/features/org.jboss.tools.common.all.test.feature/sourceTemplatePlugin/about.mappings 2011-10-07 22:21:50 UTC (rev 35489)
@@ -1,6 +0,0 @@
-# about.mappings
-# contains fill-ins for about.properties
-# java.io.Properties file (ISO 8859-1 with "\" escapes)
-# This file does not need to be translated.
-
-0=@build@
\ No newline at end of file
Deleted: trunk/common/features/org.jboss.tools.common.all.test.feature/sourceTemplatePlugin/about.properties
===================================================================
--- trunk/common/features/org.jboss.tools.common.all.test.feature/sourceTemplatePlugin/about.properties 2011-10-07 22:21:25 UTC (rev 35488)
+++ trunk/common/features/org.jboss.tools.common.all.test.feature/sourceTemplatePlugin/about.properties 2011-10-07 22:21:50 UTC (rev 35489)
@@ -1,7 +0,0 @@
-blurb=JBoss Tools Commons Tests Source\n\
-\n\
-Version: {featureVersion}\n\
-Build id: {0}\n\
-\n\
-(c) Copyright 2010 JBoss by Red Hat, and others. Initial contribution by Jeff Mesnil, http://jmesnil.net All rights reserved.\n\
-Visit http://www.jboss.org/tools
Deleted: trunk/common/features/org.jboss.tools.common.all.test.feature/sourceTemplatePlugin/build.properties
===================================================================
--- trunk/common/features/org.jboss.tools.common.all.test.feature/sourceTemplatePlugin/build.properties 2011-10-07 22:21:25 UTC (rev 35488)
+++ trunk/common/features/org.jboss.tools.common.all.test.feature/sourceTemplatePlugin/build.properties 2011-10-07 22:21:50 UTC (rev 35489)
@@ -1,5 +0,0 @@
-bin.includes = plugin.*,\
- about.*,\
- src/,\
- META-INF/
-sourcePlugin = true
Deleted: trunk/common/features/org.jboss.tools.common.all.test.feature/sourceTemplatePlugin/plugin.properties
===================================================================
--- trunk/common/features/org.jboss.tools.common.all.test.feature/sourceTemplatePlugin/plugin.properties 2011-10-07 22:21:25 UTC (rev 35488)
+++ trunk/common/features/org.jboss.tools.common.all.test.feature/sourceTemplatePlugin/plugin.properties 2011-10-07 22:21:50 UTC (rev 35489)
@@ -1,3 +0,0 @@
-pluginName = JBoss Tools Commons Tests Source
-providerName = JBoss by Red Hat
-
Copied: trunk/common/features/org.jboss.tools.common.all.test.source.feature/.project (from rev 35488, trunk/common/features/org.jboss.tools.common.all.sdk.feature/.project)
===================================================================
--- trunk/common/features/org.jboss.tools.common.all.test.source.feature/.project (rev 0)
+++ trunk/common/features/org.jboss.tools.common.all.test.source.feature/.project 2011-10-07 22:21:50 UTC (rev 35489)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>org.jboss.tools.common.all.test.source.feature</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.pde.FeatureBuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.pde.FeatureNature</nature>
+ </natures>
+</projectDescription>
Added: trunk/common/features/org.jboss.tools.common.all.test.source.feature/build.properties
===================================================================
--- trunk/common/features/org.jboss.tools.common.all.test.source.feature/build.properties (rev 0)
+++ trunk/common/features/org.jboss.tools.common.all.test.source.feature/build.properties 2011-10-07 22:21:50 UTC (rev 35489)
@@ -0,0 +1,3 @@
+bin.includes = feature.xml,\
+ feature.properties,\
+ license.html
Added: trunk/common/features/org.jboss.tools.common.all.test.source.feature/feature.properties
===================================================================
--- trunk/common/features/org.jboss.tools.common.all.test.source.feature/feature.properties (rev 0)
+++ trunk/common/features/org.jboss.tools.common.all.test.source.feature/feature.properties 2011-10-07 22:21:50 UTC (rev 35489)
@@ -0,0 +1,47 @@
+###############################################################################
+# Copyright (c) 2010-2011 Red Hat, Inc. and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# JBoss by Red Hat - Initial implementation.
+##############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName=JBoss Tools - Tests - Commons source
+featureProvider=JBoss by Red Hat
+
+# "updateSiteName" property - label for the update site
+updateSiteName=JBossTools Update Site
+
+# "description" property - description of the feature
+description=Tests for Common functionality on which other plugins and features depend
+
+copyright=JBoss, Home of Professional Open Source\n\
+Copyright JBoss by Red Hat, and individual contributors as indicated\n\
+by the @authors tag, 2006-2011. See the copyright.txt in the distribution\n\
+for a full listing of individual contributors.
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# START NON-TRANSLATABLE
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=Red Hat, Inc. licenses these features and plugins to you under \
+certain open source licenses (or aggregations of such licenses), which \
+in a particular case may include the Eclipse Public License, the GNU \
+Lesser General Public License, and/or certain other open source \
+licenses. For precise licensing details, consult the corresponding \
+source code, or contact Red Hat Legal Affairs, 1801 Varsity Drive, \
+Raleigh NC 27606 USA.
+# END NON-TRANSLATABLE
+########### end of license property ##########################################
Added: trunk/common/features/org.jboss.tools.common.all.test.source.feature/feature.xml
===================================================================
--- trunk/common/features/org.jboss.tools.common.all.test.source.feature/feature.xml (rev 0)
+++ trunk/common/features/org.jboss.tools.common.all.test.source.feature/feature.xml 2011-10-07 22:21:50 UTC (rev 35489)
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature id="org.jboss.tools.common.all.test.source.feature" label="%featureName" version="3.3.0.qualifier" provider-name="%featureProvider">
+
+ <description>
+ %description
+ </description>
+
+ <copyright>
+ JBoss, Home of Professional Open Source
+Copyright (c) 2011 Red Hat, Inc., and individual contributors as indicated
+by the @authors tag. See the copyright.txt in the distribution
+for a full listing of individual contributors.
+ </copyright>
+
+ <license url="%licenseURL">
+ %license
+ </license>
+
+ <plugin id="org.jboss.tools.tests.source" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.common.el.core.test.source" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.common.model.test.source" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.common.model.ui.test.source" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.common.test.source" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.common.base.test.source" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.common.validation.test.source" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.common.verification.test.source" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.common.verification.ui.test.source" download-size="0" install-size="0" version="0.0.0" />
+</feature>
Copied: trunk/common/features/org.jboss.tools.common.all.test.source.feature/license.html (from rev 35488, trunk/common/features/org.jboss.tools.common.all.sdk.feature/license.html)
===================================================================
--- trunk/common/features/org.jboss.tools.common.all.test.source.feature/license.html (rev 0)
+++ trunk/common/features/org.jboss.tools.common.all.test.source.feature/license.html 2011-10-07 22:21:50 UTC (rev 35489)
@@ -0,0 +1,14 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
+<html>
+
+<body>
+<p>Red Hat, Inc. licenses these features and plugins to you under
+certain open source licenses (or aggregations of such licenses), which
+in a particular case may include the Eclipse Public License, the GNU
+Lesser General Public License, and/or certain other open source
+licenses. For precise licensing details, consult the corresponding
+source code, or contact Red Hat Legal Affairs, 1801 Varsity Drive,
+Raleigh NC 27606 USA.
+</p>
+</body>
+</html>
\ No newline at end of file
Copied: trunk/common/features/org.jboss.tools.common.all.test.source.feature/pom.xml (from rev 35488, trunk/common/features/org.jboss.tools.common.all.feature/pom.xml)
===================================================================
--- trunk/common/features/org.jboss.tools.common.all.test.source.feature/pom.xml (rev 0)
+++ trunk/common/features/org.jboss.tools.common.all.test.source.feature/pom.xml 2011-10-07 22:21:50 UTC (rev 35489)
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.jboss.tools.common</groupId>
+ <artifactId>features</artifactId>
+ <version>3.3.0-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.tools.common.features</groupId>
+ <artifactId>org.jboss.tools.common.all.test.source.feature</artifactId>
+ <packaging>eclipse-feature</packaging>
+</project>
Copied: trunk/common/features/org.jboss.tools.common.jdt.source.feature/.project (from rev 35488, trunk/common/features/org.jboss.tools.common.all.sdk.feature/.project)
===================================================================
--- trunk/common/features/org.jboss.tools.common.jdt.source.feature/.project (rev 0)
+++ trunk/common/features/org.jboss.tools.common.jdt.source.feature/.project 2011-10-07 22:21:50 UTC (rev 35489)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>org.jboss.tools.common.jdt.source.feature</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.pde.FeatureBuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.pde.FeatureNature</nature>
+ </natures>
+</projectDescription>
Added: trunk/common/features/org.jboss.tools.common.jdt.source.feature/build.properties
===================================================================
--- trunk/common/features/org.jboss.tools.common.jdt.source.feature/build.properties (rev 0)
+++ trunk/common/features/org.jboss.tools.common.jdt.source.feature/build.properties 2011-10-07 22:21:50 UTC (rev 35489)
@@ -0,0 +1,3 @@
+bin.includes = feature.xml,\
+ feature.properties,\
+ license.html
Added: trunk/common/features/org.jboss.tools.common.jdt.source.feature/feature.properties
===================================================================
--- trunk/common/features/org.jboss.tools.common.jdt.source.feature/feature.properties (rev 0)
+++ trunk/common/features/org.jboss.tools.common.jdt.source.feature/feature.properties 2011-10-07 22:21:50 UTC (rev 35489)
@@ -0,0 +1,48 @@
+###############################################################################
+# Copyright (c) 2011 Red Hat, Inc. and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# JBoss by Red Hat - Initial implementation.
+##############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName=JBoss Tools JDT Extensions source
+featureProvider=JBoss by Red Hat
+
+# "updateSiteName" property - label for the update site
+updateSiteName=JBossTools Update Site
+
+# "description" property - description of the feature
+description=Extensions for Eclipse JDT tooling, provides features such as easily connecting the debugger to remote Java application.
+gets incrementally updated allowing for fluent deployment for any type of Eclipse project.
+
+copyright=JBoss, Home of Professional Open Source\n\
+Copyright JBoss by Red Hat, and individual contributors as indicated\n\
+by the @authors tag, 2011. See the copyright.txt in the distribution\n\
+for a full listing of individual contributors.
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# START NON-TRANSLATABLE
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=Red Hat, Inc. licenses these features and plugins to you under \
+certain open source licenses (or aggregations of such licenses), which \
+in a particular case may include the Eclipse Public License, the GNU \
+Lesser General Public License, and/or certain other open source \
+licenses. For precise licensing details, consult the corresponding \
+source code, or contact Red Hat Legal Affairs, 1801 Varsity Drive, \
+Raleigh NC 27606 USA.
+# END NON-TRANSLATABLE
+########### end of license property ##########################################
Added: trunk/common/features/org.jboss.tools.common.jdt.source.feature/feature.xml
===================================================================
--- trunk/common/features/org.jboss.tools.common.jdt.source.feature/feature.xml (rev 0)
+++ trunk/common/features/org.jboss.tools.common.jdt.source.feature/feature.xml 2011-10-07 22:21:50 UTC (rev 35489)
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature id="org.jboss.tools.common.jdt.source.feature" label="%featureName" version="3.3.0.qualifier" provider-name="%featureProvider">
+
+ <description>
+ %description
+ </description>
+
+ <copyright>
+ JBoss, Home of Professional Open Source
+Copyright (c) 2011 Red Hat, Inc., and individual contributors as indicated
+by the @authors tag. See the copyright.txt in the distribution
+for a full listing of individual contributors.
+ </copyright>
+
+ <license url="%licenseURL">
+ %license
+ </license>
+
+ <plugin id="org.jboss.tools.common.jdt.debug.source" download-size="0" install-size="0" version="0.0.0" unpack="false" />
+ <plugin id="org.jboss.tools.common.jdt.debug.ui.source" download-size="0" install-size="0" version="0.0.0" unpack="false" />
+ <plugin id="org.jboss.tools.common.jdt.source" download-size="0" install-size="0" version="0.0.0" unpack="false" />
+ <plugin id="org.jboss.tools.common.jdt.ui.source" download-size="0" install-size="0" version="0.0.0" unpack="false" />
+</feature>
Copied: trunk/common/features/org.jboss.tools.common.jdt.source.feature/license.html (from rev 35488, trunk/common/features/org.jboss.tools.common.all.feature/sourceTemplateFeature/license.html)
===================================================================
--- trunk/common/features/org.jboss.tools.common.jdt.source.feature/license.html (rev 0)
+++ trunk/common/features/org.jboss.tools.common.jdt.source.feature/license.html 2011-10-07 22:21:50 UTC (rev 35489)
@@ -0,0 +1,14 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
+<html>
+
+<body>
+<p>Red Hat, Inc. licenses these features and plugins to you under
+certain open source licenses (or aggregations of such licenses), which
+in a particular case may include the Eclipse Public License, the GNU
+Lesser General Public License, and/or certain other open source
+licenses. For precise licensing details, consult the corresponding
+source code, or contact Red Hat Legal Affairs, 1801 Varsity Drive,
+Raleigh NC 27606 USA.
+</p>
+</body>
+</html>
\ No newline at end of file
Copied: trunk/common/features/org.jboss.tools.common.jdt.source.feature/pom.xml (from rev 35488, trunk/common/features/org.jboss.tools.common.all.feature/pom.xml)
===================================================================
--- trunk/common/features/org.jboss.tools.common.jdt.source.feature/pom.xml (rev 0)
+++ trunk/common/features/org.jboss.tools.common.jdt.source.feature/pom.xml 2011-10-07 22:21:50 UTC (rev 35489)
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.jboss.tools.common</groupId>
+ <artifactId>features</artifactId>
+ <version>3.3.0-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.tools.common.features</groupId>
+ <artifactId>org.jboss.tools.common.jdt.source.feature</artifactId>
+ <packaging>eclipse-feature</packaging>
+</project>
Modified: trunk/common/features/pom.xml
===================================================================
--- trunk/common/features/pom.xml 2011-10-07 22:21:25 UTC (rev 35488)
+++ trunk/common/features/pom.xml 2011-10-07 22:21:50 UTC (rev 35489)
@@ -13,13 +13,16 @@
<packaging>pom</packaging>
<modules>
<module>org.jboss.tools.common.all.feature</module>
+ <module>org.jboss.tools.common.all.source.feature</module>
<module>org.jboss.tools.common.all.test.feature</module>
+ <module>org.jboss.tools.common.all.test.source.feature</module>
<module>org.jboss.tools.common.core.feature</module>
<module>org.jboss.tools.common.feature</module>
<module>org.jboss.tools.common.text.ext.feature</module>
<module>org.jboss.tools.common.ui.feature</module>
<module>org.jboss.tools.common.verification.feature</module>
<module>org.jboss.tools.common.jdt.feature</module>
+ <module>org.jboss.tools.common.jdt.source.feature</module>
</modules>
</project>
Modified: trunk/common/site/site.xml
===================================================================
--- trunk/common/site/site.xml 2011-10-07 22:21:25 UTC (rev 35488)
+++ trunk/common/site/site.xml 2011-10-07 22:21:50 UTC (rev 35489)
@@ -8,6 +8,10 @@
<feature url="features/org.jboss.tools.common.all.feature_0.0.0.jar" id="org.jboss.tools.common.all.feature" version="0.0.0">
<category name="JBoss Tools common Nightly Build Update Site"/>
</feature>
+ <feature url="features/org.jboss.tools.common.all.source.feature_0.0.0.jar" id="org.jboss.tools.common.all.source.feature" version="0.0.0">
+ <category name="JBoss Tools common Nightly Build Update Site"/>
+ </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">
<category name="JBoss Tools common Nightly Build Update Site"/>
</feature>
@@ -23,13 +27,19 @@
<feature url="features/org.jboss.tools.common.verification.feature_0.0.0.jar" id="org.jboss.tools.common.verification.feature" version="0.0.0">
<category name="JBoss Tools common Nightly Build Update Site"/>
</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="JBoss Tools common Nightly Build Update Site"/>
</feature>
+ <feature url="features/org.jboss.tools.common.jdt.source.feature_0.0.0.jar" id="org.jboss.tools.common.jdt.source.feature" version="0.0.0">
+ <category name="JBoss Tools common Nightly Build Update Site"/>
+ </feature>
- <!-- add tests plugins since downstream projects like ESB depend on them -->
<feature url="features/org.jboss.tools.common.all.test.feature_0.0.0.jar" id="org.jboss.tools.common.all.test.feature" version="0.0.0">
<category name="JBoss Tools common Nightly Build Update Site"/>
</feature>
+ <feature url="features/org.jboss.tools.common.all.test.source.feature_0.0.0.jar" id="org.jboss.tools.common.all.test.source.feature" version="0.0.0">
+ <category name="JBoss Tools common Nightly Build Update Site"/>
+ </feature>
</site>
13 years, 3 months
JBoss Tools SVN: r35488 - trunk/archives/features/org.jboss.ide.eclipse.archives.source.feature.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-10-07 18:21:25 -0400 (Fri, 07 Oct 2011)
New Revision: 35488
Modified:
trunk/archives/features/org.jboss.ide.eclipse.archives.source.feature/feature.xml
Log:
reformat file
Modified: trunk/archives/features/org.jboss.ide.eclipse.archives.source.feature/feature.xml
===================================================================
--- trunk/archives/features/org.jboss.ide.eclipse.archives.source.feature/feature.xml 2011-10-07 21:54:51 UTC (rev 35487)
+++ trunk/archives/features/org.jboss.ide.eclipse.archives.source.feature/feature.xml 2011-10-07 22:21:25 UTC (rev 35488)
@@ -1,22 +1,18 @@
<?xml version="1.0" encoding="UTF-8"?>
-<feature
- id="org.jboss.ide.eclipse.archives.source.feature"
- label="%featureName"
- version="3.2.1.qualifier"
- provider-name="%featureProvider">
+<feature id="org.jboss.ide.eclipse.archives.source.feature" label="%featureName" version="3.2.1.qualifier" provider-name="%featureProvider">
- <description>
+ <description>
%description
</description>
- <copyright>
+ <copyright>
JBoss, Home of Professional Open Source
Copyright (c) 2011 Red Hat, Inc., and individual contributors as indicated
by the @authors tag. See the copyright.txt in the distribution
for a full listing of individual contributors.
</copyright>
- <license url="%licenseURL">
+ <license url="%licenseURL">
%license
</license>
13 years, 3 months
JBoss Tools SVN: r35487 - in trunk/tests: features/org.jboss.tools.test.feature and 3 other directories.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-10-07 17:54:51 -0400 (Fri, 07 Oct 2011)
New Revision: 35487
Added:
trunk/tests/features/org.jboss.tools.test.source.feature/
trunk/tests/features/org.jboss.tools.test.source.feature/build.properties
trunk/tests/features/org.jboss.tools.test.source.feature/feature.properties
trunk/tests/features/org.jboss.tools.test.source.feature/feature.xml
trunk/tests/features/org.jboss.tools.test.source.feature/license.html
trunk/tests/features/org.jboss.tools.test.source.feature/pom.xml
Removed:
trunk/tests/features/org.jboss.tools.test.sdk.feature/.project
trunk/tests/features/org.jboss.tools.test.sdk.feature/build.properties
trunk/tests/features/org.jboss.tools.test.sdk.feature/feature.xml
Modified:
trunk/tests/features/org.jboss.tools.test.feature/feature.xml
trunk/tests/features/org.jboss.tools.test.feature/pom.xml
trunk/tests/features/pom.xml
trunk/tests/site/site.xml
Log:
JBIDE-8838 add source plugins/features to tests component
Modified: trunk/tests/features/org.jboss.tools.test.feature/feature.xml
===================================================================
--- trunk/tests/features/org.jboss.tools.test.feature/feature.xml 2011-10-07 21:36:58 UTC (rev 35486)
+++ trunk/tests/features/org.jboss.tools.test.feature/feature.xml 2011-10-07 21:54:51 UTC (rev 35487)
@@ -1,14 +1,11 @@
<?xml version="1.0" encoding="UTF-8"?>
-<feature
- id="org.jboss.tools.test.feature"
- label="JBoss Tools - Tests - Tests Framework"
- version="3.2.0.qualifier">
+<feature id="org.jboss.tools.test.feature" label="JBoss Tools - Tests - Tests Framework" version="3.2.0.qualifier">
- <description url="http://www.jboss.org/tools">
+ <description url="http://www.jboss.org/tools">
JBoss Tools - Tests - Tests Framework
</description>
- <copyright>
+ <copyright>
Copyright (c) 2007-2011 Exadel, Inc and Red Hat, Inc.
Distributed under license by Red Hat, Inc. All rights reserved.
This program is made available under the terms of the
@@ -18,7 +15,7 @@
Exadel, Inc. and Red Hat, Inc. - initial API and implementation
</copyright>
- <license>
+ <license>
Red Hat, Inc. licenses these features and plugins to you under
certain open source licenses (or aggregations of such licenses), which
in a particular case may include the Eclipse Public License, the GNU
@@ -28,22 +25,7 @@
Raleigh NC 27606 USA.
</license>
- <plugin
- id="org.jboss.tools.tests"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.tools.ui.bot.ext"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.tools.ui.bot.ext.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
+ <plugin id="org.jboss.tools.tests" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.ui.bot.ext" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.ui.bot.ext.test" download-size="0" install-size="0" version="0.0.0" />
</feature>
Modified: trunk/tests/features/org.jboss.tools.test.feature/pom.xml
===================================================================
--- trunk/tests/features/org.jboss.tools.test.feature/pom.xml 2011-10-07 21:36:58 UTC (rev 35486)
+++ trunk/tests/features/org.jboss.tools.test.feature/pom.xml 2011-10-07 21:54:51 UTC (rev 35487)
@@ -8,6 +8,5 @@
</parent>
<groupId>org.jboss.tools.tests.features</groupId>
<artifactId>org.jboss.tools.test.feature</artifactId>
-
<packaging>eclipse-feature</packaging>
</project>
Deleted: trunk/tests/features/org.jboss.tools.test.sdk.feature/.project
===================================================================
--- trunk/tests/features/org.jboss.tools.test.sdk.feature/.project 2011-10-07 21:36:58 UTC (rev 35486)
+++ trunk/tests/features/org.jboss.tools.test.sdk.feature/.project 2011-10-07 21:54:51 UTC (rev 35487)
@@ -1,17 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<projectDescription>
- <name>org.jboss.tools.test.sdk.feature</name>
- <comment></comment>
- <projects>
- </projects>
- <buildSpec>
- <buildCommand>
- <name>org.eclipse.pde.FeatureBuilder</name>
- <arguments>
- </arguments>
- </buildCommand>
- </buildSpec>
- <natures>
- <nature>org.eclipse.pde.FeatureNature</nature>
- </natures>
-</projectDescription>
Deleted: trunk/tests/features/org.jboss.tools.test.sdk.feature/build.properties
===================================================================
--- trunk/tests/features/org.jboss.tools.test.sdk.feature/build.properties 2011-10-07 21:36:58 UTC (rev 35486)
+++ trunk/tests/features/org.jboss.tools.test.sdk.feature/build.properties 2011-10-07 21:54:51 UTC (rev 35487)
@@ -1 +0,0 @@
-bin.includes = feature.xml
Deleted: trunk/tests/features/org.jboss.tools.test.sdk.feature/feature.xml
===================================================================
--- trunk/tests/features/org.jboss.tools.test.sdk.feature/feature.xml 2011-10-07 21:36:58 UTC (rev 35486)
+++ trunk/tests/features/org.jboss.tools.test.sdk.feature/feature.xml 2011-10-07 21:54:51 UTC (rev 35487)
@@ -1,351 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<feature
- id="org.jboss.tools.test.sdk.feature"
- label="JBoss Tools - Tests - All JBossTools Tests (Deprecated?)"
- version="3.2.0.qualifier">
-
- <description url="http://www.example.com/description">
- [Enter Feature Description here.]
- </description>
-
- <copyright url="http://www.example.com/copyright">
- [Enter Copyright Description here.]
- </copyright>
-
- <license>
- Red Hat, Inc. licenses these features and plugins to you under
-certain open source licenses (or aggregations of such licenses), which
-in a particular case may include the Eclipse Public License, the GNU
-Lesser General Public License, and/or certain other open source
-licenses. For precise licensing details, consult the corresponding
-source code, or contact Red Hat Legal Affairs, 1801 Varsity Drive,
-Raleigh NC 27606 USA.
- </license>
-
- <plugin
- id="org.eclipse.ant.optional.junit"
- download-size="0"
- install-size="0"
- version="0.0.0"
- fragment="true"/>
-
- <plugin
- id="org.eclipse.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.tools.common.model.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.tools.common.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.tools.common.verification.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.tools.jsf.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.tools.jsf.text.ext.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.tools.jsf.verification.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.tools.jst.web.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.tools.vpe.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.tools.vpe.base.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.tools.jst.web.ui.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.tools.seam.core.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.tools.seam.ui.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.tools.vpe.xulrunner.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.tools.jsf.vpe.richfaces.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.tools.jsf.vpe.facelets.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.tools.jsf.vpe.jsf.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.tools.jsf.vpe.seam.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.tools.struts.vpe.struts.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.tools.common.model.ui.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.tools.jst.jsp.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.tools.vpe.ui.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.tools.vpe.html.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.tools.vpe.jsp.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.tools.jsf.vpe.myfaces.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.tools.common.el.core.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.tools.ws.core.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.tools.ws.ui.test"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
-
- <plugin
- id="org.jboss.tools.ws.ui.bot.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.tools.jmx.core.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.tools.jsf.ui.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.tools.seam.pages.xml.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.tools.common.verification.ui.test"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
-
- <plugin
- id="org.jboss.tools.jsf.vpe.jstl.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.tools.jmx.ui.test"
- download-size="0"
- install-size="0"
- version="0.0.0"
- fragment="true"/>
-
- <plugin
- id="org.jboss.tools.jst.web.kb.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.tools.jst.css.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.tools.jsf.ui.bot.test"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
-
- <plugin
- id="org.jboss.tools.jst.ui.bot.test"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
-
- <plugin
- id="org.jboss.tools.seam.ui.bot.test"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
-
- <plugin
- id="org.jboss.tools.vpe.ui.bot.test"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
-
- <plugin
- id="org.jboss.tools.jst.ui.firstrun.bot.test"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
-
- <plugin
- id="org.jboss.tools.ui.bot.ext"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
-
- <plugin
- id="org.jboss.tools.ui.bot.ext.test"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
-
- <plugin
- id="org.jboss.tools.struts.ui.bot.test"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
-
- <plugin
- id="org.jboss.tools.cdi.core.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.tools.cdi.text.ext.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.tools.cdi.ui.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.tools.jsf.vpe.jbpm.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.tools.jst.jsp.base.test"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
-
- <plugin
- id="org.jboss.tools.seam.base.test"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
-
-</feature>
Added: trunk/tests/features/org.jboss.tools.test.source.feature/build.properties
===================================================================
--- trunk/tests/features/org.jboss.tools.test.source.feature/build.properties (rev 0)
+++ trunk/tests/features/org.jboss.tools.test.source.feature/build.properties 2011-10-07 21:54:51 UTC (rev 35487)
@@ -0,0 +1,3 @@
+bin.includes = feature.xml,\
+ feature.properties,\
+ license.html
Added: trunk/tests/features/org.jboss.tools.test.source.feature/feature.properties
===================================================================
--- trunk/tests/features/org.jboss.tools.test.source.feature/feature.properties (rev 0)
+++ trunk/tests/features/org.jboss.tools.test.source.feature/feature.properties 2011-10-07 21:54:51 UTC (rev 35487)
@@ -0,0 +1,47 @@
+###############################################################################
+# Copyright (c) 2010-2011 Red Hat, Inc. and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# JBoss by Red Hat - Initial implementation.
+##############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName= JBoss Tools - Tests - Tests Framework source
+featureProvider=JBoss by Red Hat
+
+# "updateSiteName" property - label for the update site
+updateSiteName=JBossTools Update Site
+
+# "description" property - description of the feature
+description= JBoss Tools - Tests - Tests Framework source
+
+copyright=JBoss, Home of Professional Open Source\n\
+Copyright JBoss by Red Hat, and individual contributors as indicated\n\
+by the @authors tag, 2011. See the copyright.txt in the distribution\n\
+for a full listing of individual contributors.
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# START NON-TRANSLATABLE
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=Red Hat, Inc. licenses these features and plugins to you under \
+certain open source licenses (or aggregations of such licenses), which \
+in a particular case may include the Eclipse Public License, the GNU \
+Lesser General Public License, and/or certain other open source \
+licenses. For precise licensing details, consult the corresponding \
+source code, or contact Red Hat Legal Affairs, 1801 Varsity Drive, \
+Raleigh NC 27606 USA.
+# END NON-TRANSLATABLE
+########### end of license property ##########################################
Added: trunk/tests/features/org.jboss.tools.test.source.feature/feature.xml
===================================================================
--- trunk/tests/features/org.jboss.tools.test.source.feature/feature.xml (rev 0)
+++ trunk/tests/features/org.jboss.tools.test.source.feature/feature.xml 2011-10-07 21:54:51 UTC (rev 35487)
@@ -0,0 +1,22 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature id="org.jboss.tools.test.source.feature" label="%featureName" version="3.2.0.qualifier" provider-name="%featureProvider">
+
+ <description>
+ %description
+ </description>
+
+ <copyright>
+ JBoss, Home of Professional Open Source
+Copyright (c) 2011 Red Hat, Inc., and individual contributors as indicated
+by the @authors tag. See the copyright.txt in the distribution
+for a full listing of individual contributors.
+ </copyright>
+
+ <license url="%licenseURL">
+ %license
+ </license>
+
+ <plugin id="org.jboss.tools.tests.source" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.ui.bot.ext.source" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.ui.bot.ext.test.source" download-size="0" install-size="0" version="0.0.0" />
+</feature>
Added: trunk/tests/features/org.jboss.tools.test.source.feature/license.html
===================================================================
--- trunk/tests/features/org.jboss.tools.test.source.feature/license.html (rev 0)
+++ trunk/tests/features/org.jboss.tools.test.source.feature/license.html 2011-10-07 21:54:51 UTC (rev 35487)
@@ -0,0 +1,14 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
+<html>
+
+<body>
+<p>Red Hat, Inc. licenses these features and plugins to you under
+certain open source licenses (or aggregations of such licenses), which
+in a particular case may include the Eclipse Public License, the GNU
+Lesser General Public License, and/or certain other open source
+licenses. For precise licensing details, consult the corresponding
+source code, or contact Red Hat Legal Affairs, 1801 Varsity Drive,
+Raleigh NC 27606 USA.
+</p>
+</body>
+</html>
\ No newline at end of file
Copied: trunk/tests/features/org.jboss.tools.test.source.feature/pom.xml (from rev 35486, trunk/tests/features/org.jboss.tools.test.feature/pom.xml)
===================================================================
--- trunk/tests/features/org.jboss.tools.test.source.feature/pom.xml (rev 0)
+++ trunk/tests/features/org.jboss.tools.test.source.feature/pom.xml 2011-10-07 21:54:51 UTC (rev 35487)
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.jboss.tools.tests</groupId>
+ <artifactId>features</artifactId>
+ <version>3.2.0-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.tools.tests.features</groupId>
+ <artifactId>org.jboss.tools.test.source.feature</artifactId>
+ <packaging>eclipse-feature</packaging>
+</project>
Modified: trunk/tests/features/pom.xml
===================================================================
--- trunk/tests/features/pom.xml 2011-10-07 21:36:58 UTC (rev 35486)
+++ trunk/tests/features/pom.xml 2011-10-07 21:54:51 UTC (rev 35487)
@@ -13,5 +13,6 @@
<packaging>pom</packaging>
<modules>
<module>org.jboss.tools.test.feature</module>
+ <module>org.jboss.tools.test.source.feature</module>
</modules>
</project>
Modified: trunk/tests/site/site.xml
===================================================================
--- trunk/tests/site/site.xml 2011-10-07 21:36:58 UTC (rev 35486)
+++ trunk/tests/site/site.xml 2011-10-07 21:54:51 UTC (rev 35487)
@@ -8,5 +8,8 @@
<feature url="features/org.jboss.tools.test.feature_0.0.0.jar" id="org.jboss.tools.test.feature" version="0.0.0">
<category name="JBoss Tools tests Nightly Build Update Site"/>
</feature>
+ <feature url="features/org.jboss.tools.test.source.feature_0.0.0.jar" id="org.jboss.tools.test.source.feature" version="0.0.0">
+ <category name="JBoss Tools tests Nightly Build Update Site"/>
+ </feature>
</site>
13 years, 3 months
JBoss Tools SVN: r35486 - in trunk/as: features/org.jboss.ide.eclipse.as.archives.integration.feature and 13 other directories.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-10-07 17:36:58 -0400 (Fri, 07 Oct 2011)
New Revision: 35486
Added:
trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.source.feature/
trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.source.feature/.project
trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.source.feature/build.properties
trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.source.feature/feature.properties
trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.source.feature/feature.xml
trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.source.feature/license.html
trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.source.feature/pom.xml
trunk/as/features/org.jboss.ide.eclipse.as.source.feature/
trunk/as/features/org.jboss.ide.eclipse.as.source.feature/.project
trunk/as/features/org.jboss.ide.eclipse.as.source.feature/build.properties
trunk/as/features/org.jboss.ide.eclipse.as.source.feature/feature.properties
trunk/as/features/org.jboss.ide.eclipse.as.source.feature/feature.xml
trunk/as/features/org.jboss.ide.eclipse.as.source.feature/license.html
trunk/as/features/org.jboss.ide.eclipse.as.source.feature/pom.xml
trunk/as/features/org.jboss.ide.eclipse.as.test.source.feature/
trunk/as/features/org.jboss.ide.eclipse.as.test.source.feature/.project
trunk/as/features/org.jboss.ide.eclipse.as.test.source.feature/build.properties
trunk/as/features/org.jboss.ide.eclipse.as.test.source.feature/feature.properties
trunk/as/features/org.jboss.ide.eclipse.as.test.source.feature/feature.xml
trunk/as/features/org.jboss.ide.eclipse.as.test.source.feature/license.html
trunk/as/features/org.jboss.ide.eclipse.as.test.source.feature/pom.xml
trunk/as/features/org.jboss.tools.openshift.express.source.feature/
trunk/as/features/org.jboss.tools.openshift.express.source.feature/.project
trunk/as/features/org.jboss.tools.openshift.express.source.feature/build.properties
trunk/as/features/org.jboss.tools.openshift.express.source.feature/feature.properties
trunk/as/features/org.jboss.tools.openshift.express.source.feature/feature.xml
trunk/as/features/org.jboss.tools.openshift.express.source.feature/license.html
trunk/as/features/org.jboss.tools.openshift.express.source.feature/pom.xml
Modified:
trunk/as/features/org.jboss.ide.eclipse.as.archives.integration.feature/feature.xml
trunk/as/features/org.jboss.ide.eclipse.as.feature/feature.xml
trunk/as/features/org.jboss.ide.eclipse.as.jmx.integration.feature/feature.xml
trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.feature/feature.xml
trunk/as/features/org.jboss.ide.eclipse.as.server.rse.integration.feature/feature.xml
trunk/as/features/org.jboss.ide.eclipse.as.serverAdapter.wtp.feature/feature.xml
trunk/as/features/org.jboss.ide.eclipse.as.test.feature/feature.xml
trunk/as/features/org.jboss.tools.openshift.express.feature/feature.xml
trunk/as/features/pom.xml
trunk/as/site/site.xml
trunk/as/tests/pom.xml
Log:
JBIDE-8838 add source plugins/features to as
Modified: trunk/as/features/org.jboss.ide.eclipse.as.archives.integration.feature/feature.xml
===================================================================
--- trunk/as/features/org.jboss.ide.eclipse.as.archives.integration.feature/feature.xml 2011-10-07 21:36:36 UTC (rev 35485)
+++ trunk/as/features/org.jboss.ide.eclipse.as.archives.integration.feature/feature.xml 2011-10-07 21:36:58 UTC (rev 35486)
@@ -1,20 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
-<feature
- id="org.jboss.ide.eclipse.as.archives.integration.feature"
- label="%featureName"
- version="2.3.0.qualifier"
- provider-name="%providerName"
- plugin="org.jboss.ide.eclipse.as.ui">
+<feature id="org.jboss.ide.eclipse.as.archives.integration.feature" label="%featureName" version="2.3.0.qualifier" provider-name="%providerName" plugin="org.jboss.ide.eclipse.as.ui">
- <description url="http://www.jboss.org/tools">
+ <description url="http://www.jboss.org/tools">
%description
</description>
- <copyright>
+ <copyright>
%copyright
</copyright>
- <license url="license.html">
+ <license url="license.html">
Red Hat, Inc. licenses these features and plugins to you under
certain open source licenses (or aggregations of such licenses),
which in a particular case may include the Eclipse Public License,
@@ -24,47 +19,36 @@
Raleigh NC 27606 USA.
</license>
- <includes
- id="org.jboss.ide.eclipse.as.serverAdapter.wtp.feature"
- version="0.0.0"/>
+ <requires>
+ <import plugin="org.eclipse.ui" version="3.7.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.core.runtime" version="3.7.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.wst.common.emfworkbench.integration" version="1.2.100" match="greaterOrEqual" />
+ <import plugin="org.eclipse.wst.server.core" version="1.1.302" match="greaterOrEqual" />
+ <import plugin="org.eclipse.wst.server.ui" version="1.1.305" match="greaterOrEqual" />
+ <import plugin="org.eclipse.core.resources" version="3.7.100" match="greaterOrEqual" />
+ <import plugin="org.eclipse.jdt.core" version="3.7.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.jst.server.core" version="1.2.101" match="greaterOrEqual" />
+ <import plugin="org.eclipse.jem.util" version="2.1.2" match="greaterOrEqual" />
+ <import plugin="org.eclipse.wst.common.modulecore" version="1.2.100" match="greaterOrEqual" />
+ <import plugin="org.apache.ant" version="1.7.1" match="greaterOrEqual" />
+ <import plugin="org.eclipse.ui.ide" version="3.7.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.core.filesystem" version="1.3.100" match="greaterOrEqual" />
+ <import plugin="org.eclipse.ui.navigator" version="3.5.0" match="greaterOrEqual" />
+ <import plugin="org.jboss.tools.jmx.core" />
+ <import plugin="org.eclipse.core.variables" version="3.2.500" match="greaterOrEqual" />
+ <import plugin="org.jboss.ide.eclipse.as.wtp.core" version="1.0.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.emf.common" version="2.7.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.emf.ecore" version="2.7.0" match="greaterOrEqual" />
+ <import plugin="org.jboss.ide.eclipse.archives.core" />
+ <import plugin="org.jboss.ide.eclipse.archives.ui" />
+ <import plugin="org.jboss.ide.eclipse.as.core" />
+ <import plugin="org.jboss.ide.eclipse.as.ui" />
+ <import plugin="org.jboss.ide.eclipse.as.wtp.ui" />
+ <import plugin="org.eclipse.wst.common.modulecore.ui" version="1.0.100" match="greaterOrEqual" />
+ </requires>
- <includes
- id="org.jboss.ide.eclipse.archives.feature"
- version="0.0.0"/>
+ <includes id="org.jboss.ide.eclipse.as.serverAdapter.wtp.feature" version="0.0.0" />
+ <includes id="org.jboss.ide.eclipse.archives.feature" version="0.0.0" />
- <requires>
- <import plugin="org.eclipse.ui" version="3.7.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.core.runtime" version="3.7.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.wst.common.emfworkbench.integration" version="1.2.100" match="greaterOrEqual"/>
- <import plugin="org.eclipse.wst.server.core" version="1.1.302" match="greaterOrEqual"/>
- <import plugin="org.eclipse.wst.server.ui" version="1.1.305" match="greaterOrEqual"/>
- <import plugin="org.eclipse.core.resources" version="3.7.100" match="greaterOrEqual"/>
- <import plugin="org.eclipse.jdt.core" version="3.7.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.jst.server.core" version="1.2.101" match="greaterOrEqual"/>
- <import plugin="org.eclipse.jem.util" version="2.1.2" match="greaterOrEqual"/>
- <import plugin="org.eclipse.wst.common.modulecore" version="1.2.100" match="greaterOrEqual"/>
- <import plugin="org.apache.ant" version="1.7.1" match="greaterOrEqual"/>
- <import plugin="org.eclipse.ui.ide" version="3.7.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.core.filesystem" version="1.3.100" match="greaterOrEqual"/>
- <import plugin="org.eclipse.ui.navigator" version="3.5.0" match="greaterOrEqual"/>
- <import plugin="org.jboss.tools.jmx.core"/>
- <import plugin="org.eclipse.core.variables" version="3.2.500" match="greaterOrEqual"/>
- <import plugin="org.jboss.ide.eclipse.as.wtp.core" version="1.0.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.emf.common" version="2.7.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.emf.ecore" version="2.7.0" match="greaterOrEqual"/>
- <import plugin="org.jboss.ide.eclipse.archives.core"/>
- <import plugin="org.jboss.ide.eclipse.archives.ui"/>
- <import plugin="org.jboss.ide.eclipse.as.core"/>
- <import plugin="org.jboss.ide.eclipse.as.ui"/>
- <import plugin="org.jboss.ide.eclipse.as.wtp.ui"/>
- <import plugin="org.eclipse.wst.common.modulecore.ui" version="1.0.100" match="greaterOrEqual"/>
- </requires>
-
- <plugin
- id="org.jboss.ide.eclipse.archives.webtools"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
-
+ <plugin id="org.jboss.ide.eclipse.archives.webtools" download-size="0" install-size="0" version="0.0.0" unpack="false" />
</feature>
Modified: trunk/as/features/org.jboss.ide.eclipse.as.feature/feature.xml
===================================================================
--- trunk/as/features/org.jboss.ide.eclipse.as.feature/feature.xml 2011-10-07 21:36:36 UTC (rev 35485)
+++ trunk/as/features/org.jboss.ide.eclipse.as.feature/feature.xml 2011-10-07 21:36:58 UTC (rev 35486)
@@ -1,20 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
-<feature
- id="org.jboss.ide.eclipse.as.feature"
- label="%featureName"
- version="2.3.0.qualifier"
- provider-name="%providerName"
- plugin="org.jboss.ide.eclipse.as.ui">
+<feature id="org.jboss.ide.eclipse.as.feature" label="%featureName" version="2.3.0.qualifier" provider-name="%providerName" plugin="org.jboss.ide.eclipse.as.ui">
- <description url="http://www.jboss.org/tools">
+ <description url="http://www.jboss.org/tools">
%description
</description>
- <copyright>
+ <copyright>
%copyright
</copyright>
- <license url="license.html">
+ <license url="license.html">
Red Hat, Inc. licenses these features and plugins to you under
certain open source licenses (or aggregations of such licenses),
which in a particular case may include the Eclipse Public License,
@@ -24,98 +19,71 @@
Raleigh NC 27606 USA.
</license>
- <requires>
- <import plugin="org.eclipse.core.runtime"/>
- <import plugin="org.eclipse.debug.core"/>
- <import plugin="org.eclipse.core.resources"/>
- <import plugin="org.eclipse.jdt.launching"/>
- <import plugin="org.eclipse.jdt.core"/>
- <import plugin="org.eclipse.jst.server.core" version="1.0.102" match="greaterOrEqual"/>
- <import plugin="org.eclipse.wst.server.core" version="1.0.102" match="greaterOrEqual"/>
- <import plugin="org.eclipse.core.boot"/>
- <import plugin="org.eclipse.jst.j2ee"/>
- <import plugin="org.eclipse.jst.j2ee.core" version="1.1.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.wst.common.project.facet.core" version="1.1.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.jst.common.project.facet.core" version="1.1.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.wst.xml.core" version="1.1.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.ui"/>
- <import plugin="org.eclipse.ui.forms"/>
- <import plugin="org.eclipse.jst.server.ui"/>
- <import plugin="org.eclipse.wst.server.ui" version="1.0.102" match="greaterOrEqual"/>
- <import plugin="org.eclipse.wst.server.ui.doc.user"/>
- <import plugin="org.eclipse.jst.server.generic.core" version="1.0.100" match="greaterOrEqual"/>
- <import plugin="org.eclipse.jst.server.generic.ui"/>
- <import plugin="org.eclipse.jdt.debug"/>
- <import plugin="org.eclipse.jdt.debug.ui"/>
- <import plugin="org.eclipse.ui.console"/>
- <import plugin="org.eclipse.text"/>
- <import plugin="org.eclipse.jface.text"/>
- <import plugin="org.eclipse.debug.ui"/>
- <import plugin="org.eclipse.ui.views"/>
- <import plugin="org.eclipse.ui.editors"/>
- <import plugin="org.eclipse.wst.xml.ui"/>
- <import plugin="org.eclipse.wst.sse.ui"/>
- <import plugin="org.eclipse.wst.sse.core" version="1.1.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.jdt.ui" version="3.2.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.core.filesystem"/>
- <import plugin="org.eclipse.jst.server.tomcat.core"/>
- <import plugin="org.eclipse.jst.servlet.ui"/>
- <import plugin="org.eclipse.jst.j2ee.ui"/>
- <import plugin="org.eclipse.wst.web.ui"/>
- <import plugin="org.eclipse.wst.common.frameworks.ui"/>
- <import plugin="org.eclipse.jst.server.tomcat.ui"/>
- <import plugin="org.eclipse.core.variables"/>
- <import plugin="org.eclipse.search"/>
- <import plugin="org.eclipse.jst.ws"/>
- <import plugin="org.eclipse.jst.ws.ui"/>
- <import plugin="org.eclipse.jst.ws.consumption"/>
- <import plugin="org.eclipse.jst.ws.consumption.ui"/>
- <import plugin="org.eclipse.jst.ws.axis.creation.ui"/>
- <import plugin="org.eclipse.wst.ws"/>
- <import plugin="org.eclipse.wst.ws.ui"/>
- <import plugin="org.jboss.ide.eclipse.archives.core"/>
- <import plugin="org.apache.ant"/>
- <import plugin="org.jboss.ide.eclipse.archives.ui"/>
- <import plugin="org.eclipse.jdt"/>
- <import plugin="org.eclipse.wst.xml.ui.infopop"/>
- <import plugin="org.jboss.ide.eclipse.archives.webtools"/>
- </requires>
+ <requires>
+ <import plugin="org.eclipse.core.runtime" />
+ <import plugin="org.eclipse.debug.core" />
+ <import plugin="org.eclipse.core.resources" />
+ <import plugin="org.eclipse.jdt.launching" />
+ <import plugin="org.eclipse.jdt.core" />
+ <import plugin="org.eclipse.jst.server.core" version="1.0.102" match="greaterOrEqual" />
+ <import plugin="org.eclipse.wst.server.core" version="1.0.102" match="greaterOrEqual" />
+ <import plugin="org.eclipse.core.boot" />
+ <import plugin="org.eclipse.jst.j2ee" />
+ <import plugin="org.eclipse.jst.j2ee.core" version="1.1.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.wst.common.project.facet.core" version="1.1.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.jst.common.project.facet.core" version="1.1.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.wst.xml.core" version="1.1.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.ui" />
+ <import plugin="org.eclipse.ui.forms" />
+ <import plugin="org.eclipse.jst.server.ui" />
+ <import plugin="org.eclipse.wst.server.ui" version="1.0.102" match="greaterOrEqual" />
+ <import plugin="org.eclipse.wst.server.ui.doc.user" />
+ <import plugin="org.eclipse.jst.server.generic.core" version="1.0.100" match="greaterOrEqual" />
+ <import plugin="org.eclipse.jst.server.generic.ui" />
+ <import plugin="org.eclipse.jdt.debug" />
+ <import plugin="org.eclipse.jdt.debug.ui" />
+ <import plugin="org.eclipse.ui.console" />
+ <import plugin="org.eclipse.text" />
+ <import plugin="org.eclipse.jface.text" />
+ <import plugin="org.eclipse.debug.ui" />
+ <import plugin="org.eclipse.ui.views" />
+ <import plugin="org.eclipse.ui.editors" />
+ <import plugin="org.eclipse.wst.xml.ui" />
+ <import plugin="org.eclipse.wst.sse.ui" />
+ <import plugin="org.eclipse.wst.sse.core" version="1.1.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.jdt.ui" version="3.2.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.core.filesystem" />
+ <import plugin="org.eclipse.jst.server.tomcat.core" />
+ <import plugin="org.eclipse.jst.servlet.ui" />
+ <import plugin="org.eclipse.jst.j2ee.ui" />
+ <import plugin="org.eclipse.wst.web.ui" />
+ <import plugin="org.eclipse.wst.common.frameworks.ui" />
+ <import plugin="org.eclipse.jst.server.tomcat.ui" />
+ <import plugin="org.eclipse.core.variables" />
+ <import plugin="org.eclipse.search" />
+ <import plugin="org.eclipse.jst.ws" />
+ <import plugin="org.eclipse.jst.ws.ui" />
+ <import plugin="org.eclipse.jst.ws.consumption" />
+ <import plugin="org.eclipse.jst.ws.consumption.ui" />
+ <import plugin="org.eclipse.jst.ws.axis.creation.ui" />
+ <import plugin="org.eclipse.wst.ws" />
+ <import plugin="org.eclipse.wst.ws.ui" />
+ <import plugin="org.jboss.ide.eclipse.archives.core" />
+ <import plugin="org.apache.ant" />
+ <import plugin="org.jboss.ide.eclipse.archives.ui" />
+ <import plugin="org.eclipse.jdt" />
+ <import plugin="org.eclipse.wst.xml.ui.infopop" />
+ <import plugin="org.jboss.ide.eclipse.archives.webtools" />
+ </requires>
- <plugin
- id="org.jboss.ide.eclipse.as.ui.mbeans"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
+ <includes id="org.jboss.ide.eclipse.archives.feature" version="0.0.0" />
+ <includes id="org.jboss.ide.eclipse.as.archives.integration.feature" version="0.0.0" />
+ <includes id="org.jboss.ide.eclipse.as.jmx.integration.feature" version="0.0.0" />
+ <includes id="org.jboss.ide.eclipse.as.server.rse.integration.feature" version="0.0.0" />
+ <includes id="org.jboss.ide.eclipse.as.serverAdapter.wtp.feature" version="0.0.0" />
+ <includes id="org.jboss.tools.jmx.feature" version="0.0.0" />
+ <includes id="org.jboss.ide.eclipse.archives.feature" version="0.0.0" />
+ <!-- JBIDE-9549: org.jboss.ide.eclipse.as.server.egit.integration.feature is NOT included here because it would cause eGit to become a Core dependency in JBDS instead of an Extra; therefore keep the egit feature SEPARATE for now -->
- <includes
- id="org.jboss.ide.eclipse.archives.feature"
- version="0.0.0"/>
-
- <includes
- id="org.jboss.ide.eclipse.as.archives.integration.feature"
- version="0.0.0"/>
-
- <includes
- id="org.jboss.ide.eclipse.as.jmx.integration.feature"
- version="0.0.0"/>
-
- <includes
- id="org.jboss.ide.eclipse.as.server.rse.integration.feature"
- version="0.0.0"/>
-
- <includes
- id="org.jboss.ide.eclipse.as.serverAdapter.wtp.feature"
- version="0.0.0"/>
-
- <includes
- id="org.jboss.tools.jmx.feature"
- version="0.0.0"/>
-
- <includes
- id="org.jboss.ide.eclipse.archives.feature"
- version="0.0.0"/>
-
- <!-- JBIDE-9549: org.jboss.ide.eclipse.as.server.egit.integration.feature is NOT included here because it would cause eGit to become a Core dependency in JBDS instead of an Extra; therefore keep the egit feature SEPARATE for now -->
-
+ <plugin id="org.jboss.ide.eclipse.as.ui.mbeans" download-size="0" install-size="0" version="0.0.0" unpack="false" />
</feature>
Modified: trunk/as/features/org.jboss.ide.eclipse.as.jmx.integration.feature/feature.xml
===================================================================
--- trunk/as/features/org.jboss.ide.eclipse.as.jmx.integration.feature/feature.xml 2011-10-07 21:36:36 UTC (rev 35485)
+++ trunk/as/features/org.jboss.ide.eclipse.as.jmx.integration.feature/feature.xml 2011-10-07 21:36:58 UTC (rev 35486)
@@ -1,20 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
-<feature
- id="org.jboss.ide.eclipse.as.jmx.integration.feature"
- label="%featureName"
- version="2.3.0.qualifier"
- provider-name="%providerName"
- plugin="org.jboss.ide.eclipse.as.ui">
+<feature id="org.jboss.ide.eclipse.as.jmx.integration.feature" label="%featureName" version="2.3.0.qualifier" provider-name="%providerName" plugin="org.jboss.ide.eclipse.as.ui">
- <description url="http://www.jboss.org/tools">
+ <description url="http://www.jboss.org/tools">
%description
</description>
- <copyright>
+ <copyright>
%copyright
</copyright>
- <license url="license.html">
+ <license url="license.html">
Red Hat, Inc. licenses these features and plugins to you under
certain open source licenses (or aggregations of such licenses),
which in a particular case may include the Eclipse Public License,
@@ -24,52 +19,41 @@
Raleigh NC 27606 USA.
</license>
- <includes
- id="org.jboss.ide.eclipse.as.serverAdapter.wtp.feature"
- version="0.0.0"/>
+ <requires>
+ <import plugin="org.eclipse.core.runtime" version="3.7.0" match="greaterOrEqual" />
+ <import plugin="org.jboss.ide.eclipse.as.wtp.core" version="1.0.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.wst.server.core" version="1.1.302" match="greaterOrEqual" />
+ <import plugin="org.eclipse.wst.common.project.facet.core" version="1.4.200" match="greaterOrEqual" />
+ <import plugin="org.eclipse.core.resources" version="3.7.100" match="greaterOrEqual" />
+ <import plugin="org.eclipse.wst.common.modulecore" version="1.2.100" match="greaterOrEqual" />
+ <import plugin="org.eclipse.wst.common.emfworkbench.integration" version="1.2.100" match="greaterOrEqual" />
+ <import plugin="org.eclipse.jem.util" version="2.1.2" match="greaterOrEqual" />
+ <import plugin="org.eclipse.debug.core" version="3.7.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.jdt.launching" version="3.6.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.ui" version="3.7.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.wst.server.ui" version="1.1.305" match="greaterOrEqual" />
+ <import plugin="org.eclipse.debug.ui" version="3.7.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.rse.core" version="3.1.200" match="greaterOrEqual" />
+ <import plugin="org.eclipse.rse.subsystems.files.core" version="3.2.100" match="greaterOrEqual" />
+ <import plugin="org.eclipse.rse.services" version="3.2.100" match="greaterOrEqual" />
+ <import plugin="org.eclipse.rse.services.files.ftp" version="3.0.300" match="greaterOrEqual" />
+ <import plugin="org.eclipse.rse.services.local" version="2.1.300" match="greaterOrEqual" />
+ <import plugin="org.eclipse.rse.services.ssh" version="3.1.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.rse.subsystems.shells.core" version="3.1.200" match="greaterOrEqual" />
+ <import plugin="org.jboss.ide.eclipse.as.core" />
+ <import plugin="org.jboss.ide.eclipse.archives.webtools" />
+ <import plugin="org.eclipse.tm.terminal" version="3.1.0" match="greaterOrEqual" />
+ <import plugin="org.jboss.ide.eclipse.as.ui" />
+ <import plugin="org.eclipse.rse.files.ui" version="3.2.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.rse.ui" version="3.2.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.rse.subsystems.shells.dstore" version="2.1.300" match="greaterOrEqual" />
+ <import plugin="org.eclipse.rse.subsystems.shells.local" version="2.1.300" match="greaterOrEqual" />
+ <import plugin="org.eclipse.rse.subsystems.shells.ssh" version="2.1.300" match="greaterOrEqual" />
+ <import plugin="org.eclipse.rse.subsystems.shells.telnet" version="1.2.200" match="greaterOrEqual" />
+ </requires>
- <includes
- id="org.jboss.tools.jmx.feature"
- version="0.0.0"/>
+ <includes id="org.jboss.ide.eclipse.as.serverAdapter.wtp.feature" version="0.0.0" />
+ <includes id="org.jboss.tools.jmx.feature" version="0.0.0" />
- <requires>
- <import plugin="org.eclipse.core.runtime" version="3.7.0" match="greaterOrEqual"/>
- <import plugin="org.jboss.ide.eclipse.as.wtp.core" version="1.0.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.wst.server.core" version="1.1.302" match="greaterOrEqual"/>
- <import plugin="org.eclipse.wst.common.project.facet.core" version="1.4.200" match="greaterOrEqual"/>
- <import plugin="org.eclipse.core.resources" version="3.7.100" match="greaterOrEqual"/>
- <import plugin="org.eclipse.wst.common.modulecore" version="1.2.100" match="greaterOrEqual"/>
- <import plugin="org.eclipse.wst.common.emfworkbench.integration" version="1.2.100" match="greaterOrEqual"/>
- <import plugin="org.eclipse.jem.util" version="2.1.2" match="greaterOrEqual"/>
- <import plugin="org.eclipse.debug.core" version="3.7.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.jdt.launching" version="3.6.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.ui" version="3.7.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.wst.server.ui" version="1.1.305" match="greaterOrEqual"/>
- <import plugin="org.eclipse.debug.ui" version="3.7.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.rse.core" version="3.1.200" match="greaterOrEqual"/>
- <import plugin="org.eclipse.rse.subsystems.files.core" version="3.2.100" match="greaterOrEqual"/>
- <import plugin="org.eclipse.rse.services" version="3.2.100" match="greaterOrEqual"/>
- <import plugin="org.eclipse.rse.services.files.ftp" version="3.0.300" match="greaterOrEqual"/>
- <import plugin="org.eclipse.rse.services.local" version="2.1.300" match="greaterOrEqual"/>
- <import plugin="org.eclipse.rse.services.ssh" version="3.1.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.rse.subsystems.shells.core" version="3.1.200" match="greaterOrEqual"/>
- <import plugin="org.jboss.ide.eclipse.as.core"/>
- <import plugin="org.jboss.ide.eclipse.archives.webtools"/>
- <import plugin="org.eclipse.tm.terminal" version="3.1.0" match="greaterOrEqual"/>
- <import plugin="org.jboss.ide.eclipse.as.ui"/>
- <import plugin="org.eclipse.rse.files.ui" version="3.2.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.rse.ui" version="3.2.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.rse.subsystems.shells.dstore" version="2.1.300" match="greaterOrEqual"/>
- <import plugin="org.eclipse.rse.subsystems.shells.local" version="2.1.300" match="greaterOrEqual"/>
- <import plugin="org.eclipse.rse.subsystems.shells.ssh" version="2.1.300" match="greaterOrEqual"/>
- <import plugin="org.eclipse.rse.subsystems.shells.telnet" version="1.2.200" match="greaterOrEqual"/>
- </requires>
-
- <plugin
- id="org.jboss.ide.eclipse.as.jmx.integration"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
-
+ <plugin id="org.jboss.ide.eclipse.as.jmx.integration" download-size="0" install-size="0" version="0.0.0" unpack="false" />
</feature>
Modified: trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.feature/feature.xml
===================================================================
--- trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.feature/feature.xml 2011-10-07 21:36:36 UTC (rev 35485)
+++ trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.feature/feature.xml 2011-10-07 21:36:58 UTC (rev 35486)
@@ -1,19 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
-<feature
- id="org.jboss.ide.eclipse.as.server.egit.integration.feature"
- label="%featureName"
- version="0.0.1.qualifier"
- provider-name="%providerName">
+<feature id="org.jboss.ide.eclipse.as.server.egit.integration.feature" label="%featureName" version="0.0.1.qualifier" provider-name="%providerName">
- <description url="http://www.jboss.org/tools">
+ <description url="http://www.jboss.org/tools">
%description
</description>
- <copyright>
+ <copyright>
%copyright
</copyright>
- <license url="license.html">
+ <license url="license.html">
Red Hat, Inc. licenses these features and plugins to you under
certain open source licenses (or aggregations of such licenses),
which in a particular case may include the Eclipse Public License,
@@ -23,18 +19,6 @@
Raleigh NC 27606 USA.
</license>
- <plugin
- id="org.jboss.ide.eclipse.as.egit.core"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
-
- <plugin
- id="org.jboss.ide.eclipse.as.egit.ui"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
-
+ <plugin id="org.jboss.ide.eclipse.as.egit.core" download-size="0" install-size="0" version="0.0.0" unpack="false" />
+ <plugin id="org.jboss.ide.eclipse.as.egit.ui" download-size="0" install-size="0" version="0.0.0" unpack="false" />
</feature>
Added: trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.source.feature/.project
===================================================================
--- trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.source.feature/.project (rev 0)
+++ trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.source.feature/.project 2011-10-07 21:36:58 UTC (rev 35486)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>org.jboss.ide.eclipse.as.source.feature</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.pde.FeatureBuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.pde.FeatureNature</nature>
+ </natures>
+</projectDescription>
Added: trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.source.feature/build.properties
===================================================================
--- trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.source.feature/build.properties (rev 0)
+++ trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.source.feature/build.properties 2011-10-07 21:36:58 UTC (rev 35486)
@@ -0,0 +1,3 @@
+bin.includes = feature.xml,\
+ feature.properties,\
+ license.html
Added: trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.source.feature/feature.properties
===================================================================
--- trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.source.feature/feature.properties (rev 0)
+++ trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.source.feature/feature.properties 2011-10-07 21:36:58 UTC (rev 35486)
@@ -0,0 +1,42 @@
+###############################################################################
+# Copyright (c) 2010-2011 Red Hat, Inc. and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# JBoss by Red Hat - Initial implementation.
+##############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName=JBossAS Tools Server / EGit Integration (Experimental) source
+featureProvider=JBoss by Red Hat
+
+# "updateSiteName" property - label for the update site
+updateSiteName=JBossTools Update Site
+
+# "description" property - description of the feature
+description=Provides integration points between AS Server tooling and the Git tooling of Eclipse (EGit)
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# START NON-TRANSLATABLE
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=Red Hat, Inc. licenses these features and plugins to you under \
+certain open source licenses (or aggregations of such licenses), which \
+in a particular case may include the Eclipse Public License, the GNU \
+Lesser General Public License, and/or certain other open source \
+licenses. For precise licensing details, consult the corresponding \
+source code, or contact Red Hat Legal Affairs, 1801 Varsity Drive, \
+Raleigh NC 27606 USA.
+# END NON-TRANSLATABLE
+########### end of license property ##########################################
Added: trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.source.feature/feature.xml
===================================================================
--- trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.source.feature/feature.xml (rev 0)
+++ trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.source.feature/feature.xml 2011-10-07 21:36:58 UTC (rev 35486)
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+ id="org.jboss.ide.eclipse.as.server.egit.integration.source.feature"
+ label="%featureName"
+ version="0.0.1.qualifier"
+ provider-name="%featureProvider">
+
+ <description>
+ %description
+ </description>
+
+ <copyright>
+ JBoss, Home of Professional Open Source
+Copyright (c) 2011 Red Hat, Inc., and individual contributors as indicated
+by the @authors tag. See the copyright.txt in the distribution
+for a full listing of individual contributors.
+ </copyright>
+
+ <license url="%licenseURL">
+ %license
+ </license>
+
+ <plugin id="org.jboss.ide.eclipse.as.egit.core.source" download-size="0" install-size="0" version="0.0.0" unpack="false"/>
+ <plugin id="org.jboss.ide.eclipse.as.egit.ui.source" download-size="0" install-size="0" version="0.0.0" unpack="false"/>
+</feature>
Added: trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.source.feature/license.html
===================================================================
--- trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.source.feature/license.html (rev 0)
+++ trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.source.feature/license.html 2011-10-07 21:36:58 UTC (rev 35486)
@@ -0,0 +1,14 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
+<html>
+
+<body>
+<p>Red Hat, Inc. licenses these features and plugins to you under
+certain open source licenses (or aggregations of such licenses), which
+in a particular case may include the Eclipse Public License, the GNU
+Lesser General Public License, and/or certain other open source
+licenses. For precise licensing details, consult the corresponding
+source code, or contact Red Hat Legal Affairs, 1801 Varsity Drive,
+Raleigh NC 27606 USA.
+</p>
+</body>
+</html>
\ No newline at end of file
Added: trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.source.feature/pom.xml
===================================================================
--- trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.source.feature/pom.xml (rev 0)
+++ trunk/as/features/org.jboss.ide.eclipse.as.server.egit.integration.source.feature/pom.xml 2011-10-07 21:36:58 UTC (rev 35486)
@@ -0,0 +1,13 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.jboss.tools.as</groupId>
+ <artifactId>features</artifactId>
+ <version>2.3.0-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.tools.as.features</groupId>
+ <artifactId>org.jboss.ide.eclipse.as.server.egit.integration.source.feature</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ <packaging>eclipse-feature</packaging>
+</project>
Modified: trunk/as/features/org.jboss.ide.eclipse.as.server.rse.integration.feature/feature.xml
===================================================================
--- trunk/as/features/org.jboss.ide.eclipse.as.server.rse.integration.feature/feature.xml 2011-10-07 21:36:36 UTC (rev 35485)
+++ trunk/as/features/org.jboss.ide.eclipse.as.server.rse.integration.feature/feature.xml 2011-10-07 21:36:58 UTC (rev 35486)
@@ -1,20 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
-<feature
- id="org.jboss.ide.eclipse.as.server.rse.integration.feature"
- label="%featureName"
- version="2.3.0.qualifier"
- provider-name="%providerName"
- plugin="org.jboss.ide.eclipse.as.ui">
+<feature id="org.jboss.ide.eclipse.as.server.rse.integration.feature" label="%featureName" version="2.3.0.qualifier" provider-name="%providerName" plugin="org.jboss.ide.eclipse.as.ui">
- <description url="http://www.jboss.org/tools">
+ <description url="http://www.jboss.org/tools">
%description
</description>
- <copyright>
+ <copyright>
%copyright
</copyright>
- <license url="license.html">
+ <license url="license.html">
Red Hat, Inc. licenses these features and plugins to you under
certain open source licenses (or aggregations of such licenses),
which in a particular case may include the Eclipse Public License,
@@ -24,51 +19,39 @@
Raleigh NC 27606 USA.
</license>
- <requires>
- <import plugin="org.eclipse.core.runtime" version="3.7.0" match="greaterOrEqual"/>
- <import plugin="org.jboss.ide.eclipse.as.wtp.core" version="1.0.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.wst.server.core" version="1.1.302" match="greaterOrEqual"/>
- <import plugin="org.eclipse.wst.common.project.facet.core" version="1.4.200" match="greaterOrEqual"/>
- <import plugin="org.eclipse.core.resources" version="3.7.100" match="greaterOrEqual"/>
- <import plugin="org.eclipse.wst.common.modulecore" version="1.2.100" match="greaterOrEqual"/>
- <import plugin="org.eclipse.wst.common.emfworkbench.integration" version="1.2.100" match="greaterOrEqual"/>
- <import plugin="org.eclipse.jem.util" version="2.1.2" match="greaterOrEqual"/>
- <import plugin="org.eclipse.debug.core" version="3.7.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.jdt.launching" version="3.6.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.ui" version="3.7.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.wst.server.ui" version="1.1.305" match="greaterOrEqual"/>
- <import plugin="org.eclipse.debug.ui" version="3.7.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.rse.core" version="3.1.200" match="greaterOrEqual"/>
- <import plugin="org.eclipse.rse.subsystems.files.core" version="3.2.100" match="greaterOrEqual"/>
- <import plugin="org.eclipse.rse.services" version="3.2.100" match="greaterOrEqual"/>
- <import plugin="org.eclipse.rse.services.files.ftp" version="3.0.300" match="greaterOrEqual"/>
- <import plugin="org.eclipse.rse.services.local" version="2.1.300" match="greaterOrEqual"/>
- <import plugin="org.eclipse.rse.services.ssh" version="3.1.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.rse.subsystems.shells.core" version="3.1.200" match="greaterOrEqual"/>
- <import plugin="org.jboss.ide.eclipse.as.core"/>
- <import plugin="org.jboss.ide.eclipse.archives.webtools"/>
- <import plugin="org.eclipse.tm.terminal" version="3.1.0" match="greaterOrEqual"/>
- <import plugin="org.jboss.ide.eclipse.as.ui"/>
- <import plugin="org.eclipse.rse.files.ui" version="3.2.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.rse.ui" version="3.2.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.rse.subsystems.shells.dstore" version="2.1.300" match="greaterOrEqual"/>
- <import plugin="org.eclipse.rse.subsystems.shells.local" version="2.1.300" match="greaterOrEqual"/>
- <import plugin="org.eclipse.rse.subsystems.shells.ssh" version="2.1.300" match="greaterOrEqual"/>
- <import plugin="org.eclipse.rse.subsystems.shells.telnet" version="1.2.200" match="greaterOrEqual"/>
- </requires>
+ <requires>
+ <import plugin="org.eclipse.core.runtime" version="3.7.0" match="greaterOrEqual" />
+ <import plugin="org.jboss.ide.eclipse.as.wtp.core" version="1.0.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.wst.server.core" version="1.1.302" match="greaterOrEqual" />
+ <import plugin="org.eclipse.wst.common.project.facet.core" version="1.4.200" match="greaterOrEqual" />
+ <import plugin="org.eclipse.core.resources" version="3.7.100" match="greaterOrEqual" />
+ <import plugin="org.eclipse.wst.common.modulecore" version="1.2.100" match="greaterOrEqual" />
+ <import plugin="org.eclipse.wst.common.emfworkbench.integration" version="1.2.100" match="greaterOrEqual" />
+ <import plugin="org.eclipse.jem.util" version="2.1.2" match="greaterOrEqual" />
+ <import plugin="org.eclipse.debug.core" version="3.7.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.jdt.launching" version="3.6.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.ui" version="3.7.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.wst.server.ui" version="1.1.305" match="greaterOrEqual" />
+ <import plugin="org.eclipse.debug.ui" version="3.7.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.rse.core" version="3.1.200" match="greaterOrEqual" />
+ <import plugin="org.eclipse.rse.subsystems.files.core" version="3.2.100" match="greaterOrEqual" />
+ <import plugin="org.eclipse.rse.services" version="3.2.100" match="greaterOrEqual" />
+ <import plugin="org.eclipse.rse.services.files.ftp" version="3.0.300" match="greaterOrEqual" />
+ <import plugin="org.eclipse.rse.services.local" version="2.1.300" match="greaterOrEqual" />
+ <import plugin="org.eclipse.rse.services.ssh" version="3.1.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.rse.subsystems.shells.core" version="3.1.200" match="greaterOrEqual" />
+ <import plugin="org.jboss.ide.eclipse.as.core" />
+ <import plugin="org.jboss.ide.eclipse.archives.webtools" />
+ <import plugin="org.eclipse.tm.terminal" version="3.1.0" match="greaterOrEqual" />
+ <import plugin="org.jboss.ide.eclipse.as.ui" />
+ <import plugin="org.eclipse.rse.files.ui" version="3.2.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.rse.ui" version="3.2.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.rse.subsystems.shells.dstore" version="2.1.300" match="greaterOrEqual" />
+ <import plugin="org.eclipse.rse.subsystems.shells.local" version="2.1.300" match="greaterOrEqual" />
+ <import plugin="org.eclipse.rse.subsystems.shells.ssh" version="2.1.300" match="greaterOrEqual" />
+ <import plugin="org.eclipse.rse.subsystems.shells.telnet" version="1.2.200" match="greaterOrEqual" />
+ </requires>
- <plugin
- id="org.jboss.ide.eclipse.as.rse.core"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
-
- <plugin
- id="org.jboss.ide.eclipse.as.rse.ui"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
-
+ <plugin id="org.jboss.ide.eclipse.as.rse.core" download-size="0" install-size="0" version="0.0.0" unpack="false" />
+ <plugin id="org.jboss.ide.eclipse.as.rse.ui" download-size="0" install-size="0" version="0.0.0" unpack="false" />
</feature>
Modified: trunk/as/features/org.jboss.ide.eclipse.as.serverAdapter.wtp.feature/feature.xml
===================================================================
--- trunk/as/features/org.jboss.ide.eclipse.as.serverAdapter.wtp.feature/feature.xml 2011-10-07 21:36:36 UTC (rev 35485)
+++ trunk/as/features/org.jboss.ide.eclipse.as.serverAdapter.wtp.feature/feature.xml 2011-10-07 21:36:58 UTC (rev 35486)
@@ -1,18 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
-<feature
- id="org.jboss.ide.eclipse.as.serverAdapter.wtp.feature"
- label="%featureName"
- version="2.3.0.qualifier">
+<feature id="org.jboss.ide.eclipse.as.serverAdapter.wtp.feature" label="%featureName" version="2.3.0.qualifier">
- <description url="http://www.jboss.org/tools">
+ <description url="http://www.jboss.org/tools">
%description
</description>
- <copyright>
+ <copyright>
%copyright
</copyright>
- <license url="license.html">
+ <license url="license.html">
Red Hat, Inc. licenses these features and plugins to you under
certain open source licenses (or aggregations of such licenses),
which in a particular case may include the Eclipse Public License,
@@ -22,116 +19,74 @@
Raleigh NC 27606 USA.
</license>
- <requires>
- <import plugin="org.eclipse.core.runtime" version="3.7.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.debug.core" version="3.7.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.jdt.launching" version="3.6.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.jdt.core" version="3.7.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.jst.server.core" version="1.2.101" match="greaterOrEqual"/>
- <import plugin="org.eclipse.wst.server.core" version="1.1.302" match="greaterOrEqual"/>
- <import plugin="org.eclipse.jst.j2ee" version="1.1.500" match="greaterOrEqual"/>
- <import plugin="org.eclipse.wst.xml.core" version="1.1.600" match="greaterOrEqual"/>
- <import plugin="org.apache.ant" version="1.7.1" match="greaterOrEqual"/>
- <import plugin="org.eclipse.core.variables" version="3.2.500" match="greaterOrEqual"/>
- <import plugin="org.eclipse.jem.util" version="2.1.2" match="greaterOrEqual"/>
- <import plugin="org.eclipse.wst.common.emfworkbench.integration" version="1.2.100" match="greaterOrEqual"/>
- <import plugin="org.eclipse.wst.common.project.facet.core" version="1.4.200" match="greaterOrEqual"/>
- <import plugin="org.eclipse.wst.common.frameworks" version="1.2.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.jst.jee" version="1.0.401" match="greaterOrEqual"/>
- <import plugin="org.eclipse.core.commands" version="3.6.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.ui.ide" version="3.7.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.jface.text" version="3.7.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.ui.workbench.texteditor" version="3.7.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.ui.editors" version="3.7.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.ui" version="3.7.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.core.filebuffers" version="3.5.200" match="greaterOrEqual"/>
- <import plugin="org.eclipse.core.expressions" version="3.4.200" match="greaterOrEqual"/>
- <import plugin="org.eclipse.debug.ui" version="3.7.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.jdt.debug" version="3.7.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.jdt.ui" version="3.7.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.ltk.core.refactoring" version="3.5.200" match="greaterOrEqual"/>
- <import plugin="org.eclipse.ui.console" version="3.5.100" match="greaterOrEqual"/>
- <import plugin="org.eclipse.jdt.core.manipulation" version="1.3.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.search" version="3.6.100" match="greaterOrEqual"/>
- <import plugin="org.eclipse.ui.forms" version="3.5.100" match="greaterOrEqual"/>
- <import plugin="org.eclipse.core.resources" version="3.7.100" match="greaterOrEqual"/>
- <import plugin="org.eclipse.jface" version="3.7.0" match="greaterOrEqual"/>
- <import plugin="com.ibm.icu" version="4.2.1" match="greaterOrEqual"/>
- <import plugin="org.eclipse.jst.server.ui" version="1.1.201" match="greaterOrEqual"/>
- <import plugin="org.eclipse.wst.server.ui" version="1.1.305" match="greaterOrEqual"/>
- <import plugin="org.eclipse.wst.server.ui.doc.user" version="1.1.300" match="greaterOrEqual"/>
- <import plugin="org.eclipse.jdt.debug.ui" version="3.6.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.text" version="3.5.100" match="greaterOrEqual"/>
- <import plugin="org.eclipse.ui.views" version="3.6.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.wst.xml.ui" version="1.1.200" match="greaterOrEqual"/>
- <import plugin="org.eclipse.wst.sse.ui" version="1.3.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.wst.sse.core" version="1.1.600" match="greaterOrEqual"/>
- <import plugin="org.eclipse.core.filesystem" version="1.3.100" match="greaterOrEqual"/>
- <import plugin="org.eclipse.jst.servlet.ui" version="1.1.500" match="greaterOrEqual"/>
- <import plugin="org.eclipse.jst.j2ee.ui" version="1.1.500" match="greaterOrEqual"/>
- <import plugin="org.eclipse.wst.web.ui" version="1.1.400" match="greaterOrEqual"/>
- <import plugin="org.eclipse.wst.common.frameworks.ui" version="1.2.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.ui.navigator" version="3.5.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.ui.views.log" version="1.0.200" match="greaterOrEqual"/>
- <import plugin="org.eclipse.jst.j2ee.core" version="1.2.100" match="greaterOrEqual"/>
- <import plugin="org.eclipse.jst.common.project.facet.core" version="1.4.200" match="greaterOrEqual"/>
- <import plugin="org.eclipse.wst.common.modulecore" version="1.2.100" match="greaterOrEqual"/>
- <import plugin="org.eclipse.emf.common" version="2.7.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.emf.ecore" version="2.7.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.wst.web" version="1.1.500" match="greaterOrEqual"/>
- <import plugin="org.eclipse.jst.common.frameworks" version="1.1.500" match="greaterOrEqual"/>
- <import plugin="org.eclipse.wst.common.core" version="1.2.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.jdt" version="3.7.0" match="greaterOrEqual"/>
- <import plugin="org.jboss.ide.eclipse.as.wtp.core" version="1.0.0" match="greaterOrEqual"/>
- </requires>
+ <requires>
+ <import plugin="org.eclipse.core.runtime" version="3.7.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.debug.core" version="3.7.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.jdt.launching" version="3.6.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.jdt.core" version="3.7.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.jst.server.core" version="1.2.101" match="greaterOrEqual" />
+ <import plugin="org.eclipse.wst.server.core" version="1.1.302" match="greaterOrEqual" />
+ <import plugin="org.eclipse.jst.j2ee" version="1.1.500" match="greaterOrEqual" />
+ <import plugin="org.eclipse.wst.xml.core" version="1.1.600" match="greaterOrEqual" />
+ <import plugin="org.apache.ant" version="1.7.1" match="greaterOrEqual" />
+ <import plugin="org.eclipse.core.variables" version="3.2.500" match="greaterOrEqual" />
+ <import plugin="org.eclipse.jem.util" version="2.1.2" match="greaterOrEqual" />
+ <import plugin="org.eclipse.wst.common.emfworkbench.integration" version="1.2.100" match="greaterOrEqual" />
+ <import plugin="org.eclipse.wst.common.project.facet.core" version="1.4.200" match="greaterOrEqual" />
+ <import plugin="org.eclipse.wst.common.frameworks" version="1.2.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.jst.jee" version="1.0.401" match="greaterOrEqual" />
+ <import plugin="org.eclipse.core.commands" version="3.6.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.ui.ide" version="3.7.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.jface.text" version="3.7.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.ui.workbench.texteditor" version="3.7.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.ui.editors" version="3.7.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.ui" version="3.7.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.core.filebuffers" version="3.5.200" match="greaterOrEqual" />
+ <import plugin="org.eclipse.core.expressions" version="3.4.200" match="greaterOrEqual" />
+ <import plugin="org.eclipse.debug.ui" version="3.7.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.jdt.debug" version="3.7.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.jdt.ui" version="3.7.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.ltk.core.refactoring" version="3.5.200" match="greaterOrEqual" />
+ <import plugin="org.eclipse.ui.console" version="3.5.100" match="greaterOrEqual" />
+ <import plugin="org.eclipse.jdt.core.manipulation" version="1.3.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.search" version="3.6.100" match="greaterOrEqual" />
+ <import plugin="org.eclipse.ui.forms" version="3.5.100" match="greaterOrEqual" />
+ <import plugin="org.eclipse.core.resources" version="3.7.100" match="greaterOrEqual" />
+ <import plugin="org.eclipse.jface" version="3.7.0" match="greaterOrEqual" />
+ <import plugin="com.ibm.icu" version="4.2.1" match="greaterOrEqual" />
+ <import plugin="org.eclipse.jst.server.ui" version="1.1.201" match="greaterOrEqual" />
+ <import plugin="org.eclipse.wst.server.ui" version="1.1.305" match="greaterOrEqual" />
+ <import plugin="org.eclipse.wst.server.ui.doc.user" version="1.1.300" match="greaterOrEqual" />
+ <import plugin="org.eclipse.jdt.debug.ui" version="3.6.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.text" version="3.5.100" match="greaterOrEqual" />
+ <import plugin="org.eclipse.ui.views" version="3.6.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.wst.xml.ui" version="1.1.200" match="greaterOrEqual" />
+ <import plugin="org.eclipse.wst.sse.ui" version="1.3.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.wst.sse.core" version="1.1.600" match="greaterOrEqual" />
+ <import plugin="org.eclipse.core.filesystem" version="1.3.100" match="greaterOrEqual" />
+ <import plugin="org.eclipse.jst.servlet.ui" version="1.1.500" match="greaterOrEqual" />
+ <import plugin="org.eclipse.jst.j2ee.ui" version="1.1.500" match="greaterOrEqual" />
+ <import plugin="org.eclipse.wst.web.ui" version="1.1.400" match="greaterOrEqual" />
+ <import plugin="org.eclipse.wst.common.frameworks.ui" version="1.2.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.ui.navigator" version="3.5.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.ui.views.log" version="1.0.200" match="greaterOrEqual" />
+ <import plugin="org.eclipse.jst.j2ee.core" version="1.2.100" match="greaterOrEqual" />
+ <import plugin="org.eclipse.jst.common.project.facet.core" version="1.4.200" match="greaterOrEqual" />
+ <import plugin="org.eclipse.wst.common.modulecore" version="1.2.100" match="greaterOrEqual" />
+ <import plugin="org.eclipse.emf.common" version="2.7.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.emf.ecore" version="2.7.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.wst.web" version="1.1.500" match="greaterOrEqual" />
+ <import plugin="org.eclipse.jst.common.frameworks" version="1.1.500" match="greaterOrEqual" />
+ <import plugin="org.eclipse.wst.common.core" version="1.2.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.jdt" version="3.7.0" match="greaterOrEqual" />
+ <import plugin="org.jboss.ide.eclipse.as.wtp.core" version="1.0.0" match="greaterOrEqual" />
+ </requires>
- <plugin
- id="org.jboss.ide.eclipse.as.core"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
-
- <plugin
- id="org.jboss.ide.eclipse.as.management.as7"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
-
- <plugin
- id="org.jboss.ide.eclipse.as.ui"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
-
- <plugin
- id="org.jboss.ide.eclipse.as.classpath.core"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
-
- <plugin
- id="org.jboss.ide.eclipse.as.classpath.ui"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
-
- <plugin
- id="org.jboss.ide.eclipse.as.wtp.core"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
-
- <plugin
- id="org.jboss.ide.eclipse.as.wtp.ui"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
-
+ <plugin id="org.jboss.ide.eclipse.as.core" download-size="0" install-size="0" version="0.0.0" unpack="false" />
+ <plugin id="org.jboss.ide.eclipse.as.management.as7" download-size="0" install-size="0" version="0.0.0" unpack="false" />
+ <plugin id="org.jboss.ide.eclipse.as.ui" download-size="0" install-size="0" version="0.0.0" unpack="false" />
+ <plugin id="org.jboss.ide.eclipse.as.classpath.core" download-size="0" install-size="0" version="0.0.0" unpack="false" />
+ <plugin id="org.jboss.ide.eclipse.as.classpath.ui" download-size="0" install-size="0" version="0.0.0" unpack="false" />
+ <plugin id="org.jboss.ide.eclipse.as.wtp.core" download-size="0" install-size="0" version="0.0.0" unpack="false" />
+ <plugin id="org.jboss.ide.eclipse.as.wtp.ui" download-size="0" install-size="0" version="0.0.0" unpack="false" />
</feature>
Added: trunk/as/features/org.jboss.ide.eclipse.as.source.feature/.project
===================================================================
--- trunk/as/features/org.jboss.ide.eclipse.as.source.feature/.project (rev 0)
+++ trunk/as/features/org.jboss.ide.eclipse.as.source.feature/.project 2011-10-07 21:36:58 UTC (rev 35486)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>org.jboss.ide.eclipse.as.source.feature</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.pde.FeatureBuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.pde.FeatureNature</nature>
+ </natures>
+</projectDescription>
Added: trunk/as/features/org.jboss.ide.eclipse.as.source.feature/build.properties
===================================================================
--- trunk/as/features/org.jboss.ide.eclipse.as.source.feature/build.properties (rev 0)
+++ trunk/as/features/org.jboss.ide.eclipse.as.source.feature/build.properties 2011-10-07 21:36:58 UTC (rev 35486)
@@ -0,0 +1,3 @@
+bin.includes = feature.xml,\
+ feature.properties,\
+ license.html
Added: trunk/as/features/org.jboss.ide.eclipse.as.source.feature/feature.properties
===================================================================
--- trunk/as/features/org.jboss.ide.eclipse.as.source.feature/feature.properties (rev 0)
+++ trunk/as/features/org.jboss.ide.eclipse.as.source.feature/feature.properties 2011-10-07 21:36:58 UTC (rev 35486)
@@ -0,0 +1,42 @@
+###############################################################################
+# Copyright (c) 2010-2011 Red Hat, Inc. and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# JBoss by Red Hat - Initial implementation.
+##############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName=JBossAS Tools source
+featureProvider=JBoss by Red Hat
+
+# "updateSiteName" property - label for the update site
+updateSiteName=JBossTools Update Site
+
+# "description" property - description of the feature
+description=Provides WTP server adapters for JBoss installations. These adapters are capable of deployment and providing classpaths for projects. Zipped or exploded deployments, JMX integration, and other extensions are included.
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# START NON-TRANSLATABLE
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=Red Hat, Inc. licenses these features and plugins to you under \
+certain open source licenses (or aggregations of such licenses), which \
+in a particular case may include the Eclipse Public License, the GNU \
+Lesser General Public License, and/or certain other open source \
+licenses. For precise licensing details, consult the corresponding \
+source code, or contact Red Hat Legal Affairs, 1801 Varsity Drive, \
+Raleigh NC 27606 USA.
+# END NON-TRANSLATABLE
+########### end of license property ##########################################
Added: trunk/as/features/org.jboss.ide.eclipse.as.source.feature/feature.xml
===================================================================
--- trunk/as/features/org.jboss.ide.eclipse.as.source.feature/feature.xml (rev 0)
+++ trunk/as/features/org.jboss.ide.eclipse.as.source.feature/feature.xml 2011-10-07 21:36:58 UTC (rev 35486)
@@ -0,0 +1,39 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+ id="org.jboss.ide.eclipse.as.source.feature"
+ label="%featureName"
+ version="2.3.0.qualifier"
+ provider-name="%featureProvider">
+
+ <description>
+ %description
+ </description>
+
+ <copyright>
+ JBoss, Home of Professional Open Source
+Copyright (c) 2011 Red Hat, Inc., and individual contributors as indicated
+by the @authors tag. See the copyright.txt in the distribution
+for a full listing of individual contributors.
+ </copyright>
+
+ <license url="%licenseURL">
+ %license
+ </license>
+
+ <!-- because as.feature contains all the child features, so too as.source.feature contains all plugins
+ except egit (JBIDE-9549) and openshift (moving to own component)
+ -->
+ <plugin id="org.jboss.ide.eclipse.archives.webtools.source" download-size="0" install-size="0" version="0.0.0" unpack="false"/>
+ <plugin id="org.jboss.ide.eclipse.as.classpath.core.source" download-size="0" install-size="0" version="0.0.0" unpack="false"/>
+ <plugin id="org.jboss.ide.eclipse.as.classpath.ui.source" download-size="0" install-size="0" version="0.0.0" unpack="false"/>
+ <plugin id="org.jboss.ide.eclipse.as.core.source" download-size="0" install-size="0" version="0.0.0" unpack="false"/>
+ <plugin id="org.jboss.ide.eclipse.as.doc.user.source" download-size="0" install-size="0" version="0.0.0" unpack="false"/>
+ <plugin id="org.jboss.ide.eclipse.as.jmx.integration.source" download-size="0" install-size="0" version="0.0.0" unpack="false"/>
+ <plugin id="org.jboss.ide.eclipse.as.management.as7.source" download-size="0" install-size="0" version="0.0.0" unpack="false"/>
+ <plugin id="org.jboss.ide.eclipse.as.rse.core.source" download-size="0" install-size="0" version="0.0.0" unpack="false"/>
+ <plugin id="org.jboss.ide.eclipse.as.rse.ui.source" download-size="0" install-size="0" version="0.0.0" unpack="false"/>
+ <plugin id="org.jboss.ide.eclipse.as.ui.source" download-size="0" install-size="0" version="0.0.0" unpack="false"/>
+ <plugin id="org.jboss.ide.eclipse.as.ui.mbeans.source" download-size="0" install-size="0" version="0.0.0" unpack="false"/>
+ <plugin id="org.jboss.ide.eclipse.as.wtp.core.source" download-size="0" install-size="0" version="0.0.0" unpack="false"/>
+ <plugin id="org.jboss.ide.eclipse.as.wtp.ui.source" download-size="0" install-size="0" version="0.0.0" unpack="false"/>
+</feature>
Added: trunk/as/features/org.jboss.ide.eclipse.as.source.feature/license.html
===================================================================
--- trunk/as/features/org.jboss.ide.eclipse.as.source.feature/license.html (rev 0)
+++ trunk/as/features/org.jboss.ide.eclipse.as.source.feature/license.html 2011-10-07 21:36:58 UTC (rev 35486)
@@ -0,0 +1,14 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
+<html>
+
+<body>
+<p>Red Hat, Inc. licenses these features and plugins to you under
+certain open source licenses (or aggregations of such licenses), which
+in a particular case may include the Eclipse Public License, the GNU
+Lesser General Public License, and/or certain other open source
+licenses. For precise licensing details, consult the corresponding
+source code, or contact Red Hat Legal Affairs, 1801 Varsity Drive,
+Raleigh NC 27606 USA.
+</p>
+</body>
+</html>
\ No newline at end of file
Added: trunk/as/features/org.jboss.ide.eclipse.as.source.feature/pom.xml
===================================================================
--- trunk/as/features/org.jboss.ide.eclipse.as.source.feature/pom.xml (rev 0)
+++ trunk/as/features/org.jboss.ide.eclipse.as.source.feature/pom.xml 2011-10-07 21:36:58 UTC (rev 35486)
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.jboss.tools.as</groupId>
+ <artifactId>features</artifactId>
+ <version>2.3.0-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.ide.eclipse.as.features</groupId>
+ <artifactId>org.jboss.ide.eclipse.as.source.feature</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+
+ <packaging>eclipse-feature</packaging>
+</project>
Modified: trunk/as/features/org.jboss.ide.eclipse.as.test.feature/feature.xml
===================================================================
--- trunk/as/features/org.jboss.ide.eclipse.as.test.feature/feature.xml 2011-10-07 21:36:36 UTC (rev 35485)
+++ trunk/as/features/org.jboss.ide.eclipse.as.test.feature/feature.xml 2011-10-07 21:36:58 UTC (rev 35486)
@@ -1,53 +1,21 @@
<?xml version="1.0" encoding="UTF-8"?>
-<feature
- id="org.jboss.ide.eclipse.as.test.feature"
- label="%featureName"
- version="2.3.0.qualifier"
- provider-name="%providerName">
+<feature id="org.jboss.ide.eclipse.as.test.feature" label="%featureName" version="2.3.0.qualifier" provider-name="%providerName">
- <description url="%descriptionURL">
+ <description url="%descriptionURL">
%description
</description>
- <copyright>
+ <copyright>
%copyright
</copyright>
- <license url="%licenseURL">
+ <license url="%licenseURL">
%license
</license>
- <plugin
- id="org.jboss.ide.eclipse.as.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.tools.jmx.core.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.ide.eclipse.as.ui.test"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
-
- <plugin
- id="org.jboss.ide.eclipse.as.archives.integration.test"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
-
- <plugin
- id="org.jboss.ide.eclipse.as.management.as7.tests"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
-
+ <plugin id="org.jboss.ide.eclipse.as.test" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.tools.jmx.core.test" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.ide.eclipse.as.ui.test" download-size="0" install-size="0" version="0.0.0" unpack="false" />
+ <plugin id="org.jboss.ide.eclipse.as.archives.integration.test" download-size="0" install-size="0" version="0.0.0" unpack="false" />
+ <plugin id="org.jboss.ide.eclipse.as.management.as7.tests" download-size="0" install-size="0" version="0.0.0" unpack="false" />
</feature>
Added: trunk/as/features/org.jboss.ide.eclipse.as.test.source.feature/.project
===================================================================
--- trunk/as/features/org.jboss.ide.eclipse.as.test.source.feature/.project (rev 0)
+++ trunk/as/features/org.jboss.ide.eclipse.as.test.source.feature/.project 2011-10-07 21:36:58 UTC (rev 35486)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>org.jboss.ide.eclipse.as.test.source.feature</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.pde.FeatureBuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.pde.FeatureNature</nature>
+ </natures>
+</projectDescription>
Added: trunk/as/features/org.jboss.ide.eclipse.as.test.source.feature/build.properties
===================================================================
--- trunk/as/features/org.jboss.ide.eclipse.as.test.source.feature/build.properties (rev 0)
+++ trunk/as/features/org.jboss.ide.eclipse.as.test.source.feature/build.properties 2011-10-07 21:36:58 UTC (rev 35486)
@@ -0,0 +1,3 @@
+bin.includes = feature.xml,\
+ feature.properties,\
+ license.html
Added: trunk/as/features/org.jboss.ide.eclipse.as.test.source.feature/feature.properties
===================================================================
--- trunk/as/features/org.jboss.ide.eclipse.as.test.source.feature/feature.properties (rev 0)
+++ trunk/as/features/org.jboss.ide.eclipse.as.test.source.feature/feature.properties 2011-10-07 21:36:58 UTC (rev 35486)
@@ -0,0 +1,42 @@
+###############################################################################
+# Copyright (c) 2010-2011 Red Hat, Inc. and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# JBoss by Red Hat - Initial implementation.
+##############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName=JBossAS Tools test source
+featureProvider=JBoss by Red Hat
+
+# "updateSiteName" property - label for the update site
+updateSiteName=JBossTools Update Site
+
+# "description" property - description of the feature
+description=Provides WTP server adapters for JBoss installations. These adapters are capable of deployment and providing classpaths for projects. Zipped or exploded deployments, JMX integration, and other extensions are included.
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# START NON-TRANSLATABLE
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=Red Hat, Inc. licenses these features and plugins to you under \
+certain open source licenses (or aggregations of such licenses), which \
+in a particular case may include the Eclipse Public License, the GNU \
+Lesser General Public License, and/or certain other open source \
+licenses. For precise licensing details, consult the corresponding \
+source code, or contact Red Hat Legal Affairs, 1801 Varsity Drive, \
+Raleigh NC 27606 USA.
+# END NON-TRANSLATABLE
+########### end of license property ##########################################
Added: trunk/as/features/org.jboss.ide.eclipse.as.test.source.feature/feature.xml
===================================================================
--- trunk/as/features/org.jboss.ide.eclipse.as.test.source.feature/feature.xml (rev 0)
+++ trunk/as/features/org.jboss.ide.eclipse.as.test.source.feature/feature.xml 2011-10-07 21:36:58 UTC (rev 35486)
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+ id="org.jboss.ide.eclipse.as.test.source.feature"
+ label="%featureName"
+ version="1.0.0.qualifier"
+ provider-name="%featureProvider">
+
+ <description>
+ %description
+ </description>
+
+ <copyright>
+ JBoss, Home of Professional Open Source
+Copyright (c) 2006-2011 Red Hat, Inc., and individual contributors as indicated
+by the @authors tag. See the copyright.txt in the distribution
+for a full listing of individual contributors.
+ </copyright>
+
+ <license url="%licenseURL">
+ %license
+ </license>
+
+ <plugin id="org.jboss.ide.eclipse.as.archives.integration.test.source" download-size="0" install-size="0" version="0.0.0" unpack="false"/>
+ <plugin id="org.jboss.ide.eclipse.as.test.source" download-size="0" install-size="0" version="0.0.0" unpack="false"/>
+ <plugin id="org.jboss.ide.eclipse.as.ui.test.source" download-size="0" install-size="0" version="0.0.0" unpack="false"/>
+ <plugin id="org.jboss.ide.eclipse.as.management.as7.tests.source" download-size="0" install-size="0" version="0.0.0" unpack="false"/>
+
+ <!-- JBIDE-9871 :: TODO: add to ../pom.xml
+ <plugin id="org.jboss.ide.eclipse.as.egit.test.source" download-size="0" install-size="0" version="0.0.0" unpack="false"/>
+ -->
+
+ <!-- JBIDE-9871 :: TODO: add to ../pom.xml
+ <plugin id="org.jboss.tools.openshift.express.client.test.source" download-size="0" install-size="0" version="0.0.0" unpack="false"/>
+ <plugin id="org.jboss.ide.eclipse.as.openshift.test.source" download-size="0" install-size="0" version="0.0.0" unpack="false"/>
+ -->
+</feature>
Added: trunk/as/features/org.jboss.ide.eclipse.as.test.source.feature/license.html
===================================================================
--- trunk/as/features/org.jboss.ide.eclipse.as.test.source.feature/license.html (rev 0)
+++ trunk/as/features/org.jboss.ide.eclipse.as.test.source.feature/license.html 2011-10-07 21:36:58 UTC (rev 35486)
@@ -0,0 +1,14 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
+<html>
+
+<body>
+<p>Red Hat, Inc. licenses these features and plugins to you under
+certain open source licenses (or aggregations of such licenses), which
+in a particular case may include the Eclipse Public License, the GNU
+Lesser General Public License, and/or certain other open source
+licenses. For precise licensing details, consult the corresponding
+source code, or contact Red Hat Legal Affairs, 1801 Varsity Drive,
+Raleigh NC 27606 USA.
+</p>
+</body>
+</html>
\ No newline at end of file
Added: trunk/as/features/org.jboss.ide.eclipse.as.test.source.feature/pom.xml
===================================================================
--- trunk/as/features/org.jboss.ide.eclipse.as.test.source.feature/pom.xml (rev 0)
+++ trunk/as/features/org.jboss.ide.eclipse.as.test.source.feature/pom.xml 2011-10-07 21:36:58 UTC (rev 35486)
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.jboss.tools.as</groupId>
+ <artifactId>features</artifactId>
+ <version>2.3.0-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.ide.eclipse.as.features</groupId>
+ <artifactId>org.jboss.ide.eclipse.as.test.source.feature</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+
+ <packaging>eclipse-feature</packaging>
+</project>
Modified: trunk/as/features/org.jboss.tools.openshift.express.feature/feature.xml
===================================================================
--- trunk/as/features/org.jboss.tools.openshift.express.feature/feature.xml 2011-10-07 21:36:36 UTC (rev 35485)
+++ trunk/as/features/org.jboss.tools.openshift.express.feature/feature.xml 2011-10-07 21:36:58 UTC (rev 35486)
@@ -1,20 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
-<feature
- id="org.jboss.tools.openshift.express.feature"
- label="%featureName"
- version="2.3.0.qualifier"
- provider-name="%providerName"
- plugin="org.jboss.tools.openshift.express.ui">
+<feature id="org.jboss.tools.openshift.express.feature" label="%featureName" version="2.3.0.qualifier" provider-name="%providerName" plugin="org.jboss.tools.openshift.express.ui">
- <description url="http://www.jboss.org/tools">
+ <description url="http://www.jboss.org/tools">
%description
</description>
- <copyright>
+ <copyright>
%copyright
</copyright>
- <license url="license.html">
+ <license url="license.html">
Red Hat, Inc. licenses these features and plugins to you under
certain open source licenses (or aggregations of such licenses),
which in a particular case may include the Eclipse Public License,
@@ -24,18 +19,6 @@
Raleigh NC 27606 USA.
</license>
- <plugin
- id="org.jboss.tools.openshift.express.ui"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
-
- <plugin
- id="org.jboss.tools.openshift.express.client"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
-
+ <plugin id="org.jboss.tools.openshift.express.ui" download-size="0" install-size="0" version="0.0.0" unpack="false" />
+ <plugin id="org.jboss.tools.openshift.express.client" download-size="0" install-size="0" version="0.0.0" unpack="false" />
</feature>
Added: trunk/as/features/org.jboss.tools.openshift.express.source.feature/.project
===================================================================
--- trunk/as/features/org.jboss.tools.openshift.express.source.feature/.project (rev 0)
+++ trunk/as/features/org.jboss.tools.openshift.express.source.feature/.project 2011-10-07 21:36:58 UTC (rev 35486)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>org.jboss.ide.eclipse.as.source.feature</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.pde.FeatureBuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.pde.FeatureNature</nature>
+ </natures>
+</projectDescription>
Added: trunk/as/features/org.jboss.tools.openshift.express.source.feature/build.properties
===================================================================
--- trunk/as/features/org.jboss.tools.openshift.express.source.feature/build.properties (rev 0)
+++ trunk/as/features/org.jboss.tools.openshift.express.source.feature/build.properties 2011-10-07 21:36:58 UTC (rev 35486)
@@ -0,0 +1,3 @@
+bin.includes = feature.xml,\
+ feature.properties,\
+ license.html
Added: trunk/as/features/org.jboss.tools.openshift.express.source.feature/feature.properties
===================================================================
--- trunk/as/features/org.jboss.tools.openshift.express.source.feature/feature.properties (rev 0)
+++ trunk/as/features/org.jboss.tools.openshift.express.source.feature/feature.properties 2011-10-07 21:36:58 UTC (rev 35486)
@@ -0,0 +1,42 @@
+###############################################################################
+# Copyright (c) 2010-2011 Red Hat, Inc. and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# JBoss by Red Hat - Initial implementation.
+##############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName=JBoss Openshift Express Tools source
+featureProvider=JBoss by Red Hat
+
+# "updateSiteName" property - label for the update site
+updateSiteName=JBossTools Update Site
+
+# "description" property - description of the feature
+description=Provides Tooling to deal with Openshift Express. It will allow you to sign into your Openshift Express account, create a domain and manage applications. It will furthermore allow you to setup an Eclipse WTP server adapter that would be able to publish projects to the Openshift Express PaaS platform..
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# START NON-TRANSLATABLE
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=Red Hat, Inc. licenses these features and plugins to you under \
+certain open source licenses (or aggregations of such licenses), which \
+in a particular case may include the Eclipse Public License, the GNU \
+Lesser General Public License, and/or certain other open source \
+licenses. For precise licensing details, consult the corresponding \
+source code, or contact Red Hat Legal Affairs, 1801 Varsity Drive, \
+Raleigh NC 27606 USA.
+# END NON-TRANSLATABLE
+########### end of license property ##########################################
Added: trunk/as/features/org.jboss.tools.openshift.express.source.feature/feature.xml
===================================================================
--- trunk/as/features/org.jboss.tools.openshift.express.source.feature/feature.xml (rev 0)
+++ trunk/as/features/org.jboss.tools.openshift.express.source.feature/feature.xml 2011-10-07 21:36:58 UTC (rev 35486)
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+ id="org.jboss.tools.openshift.express.source.feature"
+ label="%featureName"
+ version="2.3.0.qualifier"
+ provider-name="%featureProvider">
+
+ <description>
+ %description
+ </description>
+
+ <copyright>
+ JBoss, Home of Professional Open Source
+Copyright (c) 2011 Red Hat, Inc., and individual contributors as indicated
+by the @authors tag. See the copyright.txt in the distribution
+for a full listing of individual contributors.
+ </copyright>
+
+ <license url="%licenseURL">
+ %license
+ </license>
+
+ <plugin id="org.jboss.tools.openshift.express.ui.source" download-size="0" install-size="0" version="0.0.0" unpack="false"/>
+ <plugin id="org.jboss.tools.openshift.express.client.source" download-size="0" install-size="0" version="0.0.0" unpack="false"/>
+</feature>
Added: trunk/as/features/org.jboss.tools.openshift.express.source.feature/license.html
===================================================================
--- trunk/as/features/org.jboss.tools.openshift.express.source.feature/license.html (rev 0)
+++ trunk/as/features/org.jboss.tools.openshift.express.source.feature/license.html 2011-10-07 21:36:58 UTC (rev 35486)
@@ -0,0 +1,14 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
+<html>
+
+<body>
+<p>Red Hat, Inc. licenses these features and plugins to you under
+certain open source licenses (or aggregations of such licenses), which
+in a particular case may include the Eclipse Public License, the GNU
+Lesser General Public License, and/or certain other open source
+licenses. For precise licensing details, consult the corresponding
+source code, or contact Red Hat Legal Affairs, 1801 Varsity Drive,
+Raleigh NC 27606 USA.
+</p>
+</body>
+</html>
\ No newline at end of file
Added: trunk/as/features/org.jboss.tools.openshift.express.source.feature/pom.xml
===================================================================
--- trunk/as/features/org.jboss.tools.openshift.express.source.feature/pom.xml (rev 0)
+++ trunk/as/features/org.jboss.tools.openshift.express.source.feature/pom.xml 2011-10-07 21:36:58 UTC (rev 35486)
@@ -0,0 +1,12 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.jboss.tools.as</groupId>
+ <artifactId>features</artifactId>
+ <version>2.3.0-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.tools.as.features</groupId>
+ <artifactId>org.jboss.tools.openshift.express.source.feature</artifactId>
+ <packaging>eclipse-feature</packaging>
+</project>
Modified: trunk/as/features/pom.xml
===================================================================
--- trunk/as/features/pom.xml 2011-10-07 21:36:36 UTC (rev 35485)
+++ trunk/as/features/pom.xml 2011-10-07 21:36:58 UTC (rev 35486)
@@ -1,5 +1,6 @@
<project
-xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"
+ xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.jboss.tools</groupId>
@@ -11,14 +12,20 @@
<name>as.features</name>
<packaging>pom</packaging>
<modules>
- <module>org.jboss.ide.eclipse.as.serverAdapter.wtp.feature</module>
- <module>org.jboss.ide.eclipse.as.archives.integration.feature</module>
- <module>org.jboss.ide.eclipse.as.jmx.integration.feature</module>
- <module>org.jboss.ide.eclipse.as.server.rse.integration.feature</module>
+ <module>org.jboss.ide.eclipse.as.serverAdapter.wtp.feature</module>
+ <module>org.jboss.ide.eclipse.as.archives.integration.feature</module>
+ <module>org.jboss.ide.eclipse.as.jmx.integration.feature</module>
+ <module>org.jboss.ide.eclipse.as.server.rse.integration.feature</module>
+
<module>org.jboss.ide.eclipse.as.feature</module>
+ <module>org.jboss.ide.eclipse.as.source.feature</module>
<module>org.jboss.ide.eclipse.as.test.feature</module>
+ <module>org.jboss.ide.eclipse.as.test.source.feature</module>
+
<module>org.jboss.ide.eclipse.as.server.egit.integration.feature</module>
+ <module>org.jboss.ide.eclipse.as.server.egit.integration.source.feature</module>
<module>org.jboss.tools.openshift.express.feature</module>
+ <module>org.jboss.tools.openshift.express.source.feature</module>
</modules>
</project>
Modified: trunk/as/site/site.xml
===================================================================
--- trunk/as/site/site.xml 2011-10-07 21:36:36 UTC (rev 35485)
+++ trunk/as/site/site.xml 2011-10-07 21:36:58 UTC (rev 35486)
@@ -5,17 +5,31 @@
<category-def label="JBoss Tools as Nightly Build Update Site" name="JBoss Tools as Nightly Build Update Site">
<description>JBoss Tools as Nightly Build Update Site: contains all features in this build.</description>
</category-def>
+ <feature url="features/org.jboss.ide.eclipse.as.server.egit.integration.feature_0.0.0.jar" id="org.jboss.ide.eclipse.as.server.egit.integration.feature" version="0.0.0">
+ <category name="JBoss Tools as Nightly Build Update Site" />
+ </feature>
+ <feature url="features/org.jboss.ide.eclipse.as.server.egit.integration.source.feature_0.0.0.jar" id="org.jboss.ide.eclipse.as.server.egit.integration.source.feature" version="0.0.0">
+ <category name="JBoss Tools as Nightly Build Update Site" />
+ </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="JBoss Tools as Nightly Build Update Site" />
+ </feature>
+ <feature url="features/org.jboss.tools.openshift.express.source.feature_0.0.0.jar" id="org.jboss.tools.openshift.express.source.feature" version="0.0.0">
+ <category name="JBoss Tools as Nightly Build Update Site" />
+ </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="JBoss Tools as Nightly Build Update Site"/>
+ <category name="JBoss Tools as Nightly Build Update Site" />
</feature>
- <feature url="features/org.jboss.ide.eclipse.as.server.egit.integration.feature_0.0.0.jar" id="org.jboss.ide.eclipse.as.server.egit.integration.feature" version="0.0.0">
- <category name="JBoss Tools as Nightly Build Update Site"/>
+ <feature url="features/org.jboss.ide.eclipse.as.source.feature_0.0.0.jar" id="org.jboss.ide.eclipse.as.source.feature" version="0.0.0">
+ <category name="JBoss Tools as Nightly Build Update Site" />
</feature>
+
<feature url="features/org.jboss.ide.eclipse.as.test.feature_0.0.0.jar" id="org.jboss.ide.eclipse.as.test.feature" version="0.0.0">
- <category name="JBoss Tools as Nightly Build Update Site"/>
+ <category name="JBoss Tools as Nightly Build Update Site" />
</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="JBoss Tools as Nightly Build Update Site"/>
- </feature>
-
+ <feature url="features/org.jboss.ide.eclipse.as.test.source.feature_0.0.0.jar" id="org.jboss.ide.eclipse.as.test.source.feature" version="0.0.0">
+ <category name="JBoss Tools as Nightly Build Update Site" />
+ </feature>
</site>
Modified: trunk/as/tests/pom.xml
===================================================================
--- trunk/as/tests/pom.xml 2011-10-07 21:36:36 UTC (rev 35485)
+++ trunk/as/tests/pom.xml 2011-10-07 21:36:58 UTC (rev 35486)
@@ -15,7 +15,15 @@
<module>org.jboss.ide.eclipse.as.test</module>
<module>org.jboss.ide.eclipse.as.ui.test</module>
<module>org.jboss.ide.eclipse.as.management.as7.tests</module>
- <!-- <module>org.jboss.ide.eclipse.as.egit.test</module> -->
+
+ <!-- JBIDE-9871 :: TODO: enable
+ <module>org.jboss.ide.eclipse.as.egit.test</module>
+ -->
+
+ <!-- JBIDE-9871 :: TODO: enable (or move to new component?)
+ <module>org.jboss.ide.eclipse.as.openshift.test</module>
+ <module>org.jboss.tools.openshift.express.client.test</module>
+ -->
</modules>
</project>
13 years, 3 months
JBoss Tools SVN: r35485 - in trunk/archives/features: org.jboss.ide.eclipse.archives.test.source.feature and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-10-07 17:36:36 -0400 (Fri, 07 Oct 2011)
New Revision: 35485
Modified:
trunk/archives/features/org.jboss.ide.eclipse.archives.source.feature/feature.xml
trunk/archives/features/org.jboss.ide.eclipse.archives.source.feature/pom.xml
trunk/archives/features/org.jboss.ide.eclipse.archives.test.source.feature/feature.xml
trunk/archives/features/org.jboss.ide.eclipse.archives.test.source.feature/pom.xml
Log:
fix versions of source features
Modified: trunk/archives/features/org.jboss.ide.eclipse.archives.source.feature/feature.xml
===================================================================
--- trunk/archives/features/org.jboss.ide.eclipse.archives.source.feature/feature.xml 2011-10-07 21:36:25 UTC (rev 35484)
+++ trunk/archives/features/org.jboss.ide.eclipse.archives.source.feature/feature.xml 2011-10-07 21:36:36 UTC (rev 35485)
@@ -2,7 +2,7 @@
<feature
id="org.jboss.ide.eclipse.archives.source.feature"
label="%featureName"
- version="1.0.0.qualifier"
+ version="3.2.1.qualifier"
provider-name="%featureProvider">
<description>
@@ -11,7 +11,7 @@
<copyright>
JBoss, Home of Professional Open Source
-Copyright (c) 2006-2011 Red Hat, Inc., and individual contributors as indicated
+Copyright (c) 2011 Red Hat, Inc., and individual contributors as indicated
by the @authors tag. See the copyright.txt in the distribution
for a full listing of individual contributors.
</copyright>
Modified: trunk/archives/features/org.jboss.ide.eclipse.archives.source.feature/pom.xml
===================================================================
--- trunk/archives/features/org.jboss.ide.eclipse.archives.source.feature/pom.xml 2011-10-07 21:36:25 UTC (rev 35484)
+++ trunk/archives/features/org.jboss.ide.eclipse.archives.source.feature/pom.xml 2011-10-07 21:36:36 UTC (rev 35485)
@@ -9,7 +9,5 @@
</parent>
<groupId>org.jboss.ide.eclipse.archives.features</groupId>
<artifactId>org.jboss.ide.eclipse.archives.source.feature</artifactId>
- <version>1.0.0-SNAPSHOT</version>
-
<packaging>eclipse-feature</packaging>
</project>
Modified: trunk/archives/features/org.jboss.ide.eclipse.archives.test.source.feature/feature.xml
===================================================================
--- trunk/archives/features/org.jboss.ide.eclipse.archives.test.source.feature/feature.xml 2011-10-07 21:36:25 UTC (rev 35484)
+++ trunk/archives/features/org.jboss.ide.eclipse.archives.test.source.feature/feature.xml 2011-10-07 21:36:36 UTC (rev 35485)
@@ -2,7 +2,7 @@
<feature
id="org.jboss.ide.eclipse.archives.test.source.feature"
label="%featureName"
- version="1.0.0.qualifier"
+ version="3.2.1.qualifier"
provider-name="%featureProvider">
<description>
@@ -11,7 +11,7 @@
<copyright>
JBoss, Home of Professional Open Source
-Copyright (c) 2006-2011 Red Hat, Inc., and individual contributors as indicated
+Copyright (c) 2011 Red Hat, Inc., and individual contributors as indicated
by the @authors tag. See the copyright.txt in the distribution
for a full listing of individual contributors.
</copyright>
Modified: trunk/archives/features/org.jboss.ide.eclipse.archives.test.source.feature/pom.xml
===================================================================
--- trunk/archives/features/org.jboss.ide.eclipse.archives.test.source.feature/pom.xml 2011-10-07 21:36:25 UTC (rev 35484)
+++ trunk/archives/features/org.jboss.ide.eclipse.archives.test.source.feature/pom.xml 2011-10-07 21:36:36 UTC (rev 35485)
@@ -9,7 +9,5 @@
</parent>
<groupId>org.jboss.ide.eclipse.archives.features</groupId>
<artifactId>org.jboss.ide.eclipse.archives.test.source.feature</artifactId>
- <version>1.0.0-SNAPSHOT</version>
-
<packaging>eclipse-feature</packaging>
</project>
13 years, 3 months
JBoss Tools SVN: r35484 - in trunk/archives: features/org.jboss.ide.eclipse.archives.feature and 4 other directories.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2011-10-07 17:36:25 -0400 (Fri, 07 Oct 2011)
New Revision: 35484
Added:
trunk/archives/features/org.jboss.ide.eclipse.archives.source.feature/
trunk/archives/features/org.jboss.ide.eclipse.archives.source.feature/.project
trunk/archives/features/org.jboss.ide.eclipse.archives.source.feature/build.properties
trunk/archives/features/org.jboss.ide.eclipse.archives.source.feature/feature.properties
trunk/archives/features/org.jboss.ide.eclipse.archives.source.feature/feature.xml
trunk/archives/features/org.jboss.ide.eclipse.archives.source.feature/license.html
trunk/archives/features/org.jboss.ide.eclipse.archives.source.feature/pom.xml
trunk/archives/features/org.jboss.ide.eclipse.archives.test.source.feature/
trunk/archives/features/org.jboss.ide.eclipse.archives.test.source.feature/.project
trunk/archives/features/org.jboss.ide.eclipse.archives.test.source.feature/build.properties
trunk/archives/features/org.jboss.ide.eclipse.archives.test.source.feature/feature.properties
trunk/archives/features/org.jboss.ide.eclipse.archives.test.source.feature/feature.xml
trunk/archives/features/org.jboss.ide.eclipse.archives.test.source.feature/license.html
trunk/archives/features/org.jboss.ide.eclipse.archives.test.source.feature/pom.xml
Modified:
trunk/archives/features/org.jboss.ide.eclipse.archives.feature/feature.xml
trunk/archives/features/org.jboss.ide.eclipse.archives.test.feature/feature.xml
trunk/archives/features/pom.xml
trunk/archives/site/site.xml
Log:
JBIDE-8838 add source plugins/features to archives
Modified: trunk/archives/features/org.jboss.ide.eclipse.archives.feature/feature.xml
===================================================================
--- trunk/archives/features/org.jboss.ide.eclipse.archives.feature/feature.xml 2011-10-07 20:39:11 UTC (rev 35483)
+++ trunk/archives/features/org.jboss.ide.eclipse.archives.feature/feature.xml 2011-10-07 21:36:25 UTC (rev 35484)
@@ -1,57 +1,35 @@
<?xml version="1.0" encoding="UTF-8"?>
-<feature
- id="org.jboss.ide.eclipse.archives.feature"
- label="%featureName"
- version="3.2.1.qualifier"
- provider-name="%providerName"
- plugin="org.jboss.ide.eclipse.archives.ui">
+<feature id="org.jboss.ide.eclipse.archives.feature" label="%featureName" version="3.2.1.qualifier" provider-name="%providerName" plugin="org.jboss.ide.eclipse.archives.ui">
- <description url="http://www.jboss.org/tools">
+ <description url="http://www.jboss.org/tools">
%description
</description>
- <copyright>
+ <copyright>
%copyright
</copyright>
- <license url="license.html">
+ <license url="license.html">
%license
</license>
- <requires>
- <import plugin="org.apache.ant"/>
- <import plugin="org.eclipse.core.commands"/>
- <import plugin="org.eclipse.core.filesystem"/>
- <import plugin="org.eclipse.core.resources"/>
- <import plugin="org.eclipse.core.runtime"/>
- <import plugin="org.eclipse.core.variables"/>
- <import plugin="org.eclipse.jdt.core"/>
- <import plugin="org.eclipse.ui"/>
- <import plugin="org.eclipse.ui.ide"/>
- <import plugin="org.eclipse.jdt.ui" version="3.4.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.debug.ui" version="3.4.0" match="greaterOrEqual"/>
- <import plugin="org.eclipse.core.variables" version="3.2.100" match="greaterOrEqual"/>
- <import plugin="org.eclipse.ui.navigator" version="3.3.100" match="greaterOrEqual"/>
- </requires>
+ <requires>
+ <import plugin="org.apache.ant" />
+ <import plugin="org.eclipse.core.commands" />
+ <import plugin="org.eclipse.core.filesystem" />
+ <import plugin="org.eclipse.core.resources" />
+ <import plugin="org.eclipse.core.runtime" />
+ <import plugin="org.eclipse.core.variables" />
+ <import plugin="org.eclipse.jdt.core" />
+ <import plugin="org.eclipse.ui" />
+ <import plugin="org.eclipse.ui.ide" />
+ <import plugin="org.eclipse.jdt.ui" version="3.4.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.debug.ui" version="3.4.0" match="greaterOrEqual" />
+ <import plugin="org.eclipse.core.variables" version="3.2.100" match="greaterOrEqual" />
+ <import plugin="org.eclipse.ui.navigator" version="3.3.100" match="greaterOrEqual" />
+ </requires>
- <plugin
- id="org.jboss.ide.eclipse.archives.core"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.ide.eclipse.archives.ui"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
-
- <plugin
- id="org.jboss.ide.eclipse.archives.jdt.integration"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
-
+ <plugin id="org.jboss.ide.eclipse.archives.core" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.ide.eclipse.archives.ui" download-size="0" install-size="0" version="0.0.0" unpack="false" />
+ <plugin id="org.jboss.ide.eclipse.archives.jdt.integration" download-size="0" install-size="0" version="0.0.0" unpack="false" />
</feature>
Added: trunk/archives/features/org.jboss.ide.eclipse.archives.source.feature/.project
===================================================================
--- trunk/archives/features/org.jboss.ide.eclipse.archives.source.feature/.project (rev 0)
+++ trunk/archives/features/org.jboss.ide.eclipse.archives.source.feature/.project 2011-10-07 21:36:25 UTC (rev 35484)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>org.jboss.ide.eclipse.archives.source.feature</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.pde.FeatureBuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.pde.FeatureNature</nature>
+ </natures>
+</projectDescription>
Added: trunk/archives/features/org.jboss.ide.eclipse.archives.source.feature/build.properties
===================================================================
--- trunk/archives/features/org.jboss.ide.eclipse.archives.source.feature/build.properties (rev 0)
+++ trunk/archives/features/org.jboss.ide.eclipse.archives.source.feature/build.properties 2011-10-07 21:36:25 UTC (rev 35484)
@@ -0,0 +1,3 @@
+bin.includes = feature.xml,\
+ feature.properties,\
+ license.html
Added: trunk/archives/features/org.jboss.ide.eclipse.archives.source.feature/feature.properties
===================================================================
--- trunk/archives/features/org.jboss.ide.eclipse.archives.source.feature/feature.properties (rev 0)
+++ trunk/archives/features/org.jboss.ide.eclipse.archives.source.feature/feature.properties 2011-10-07 21:36:25 UTC (rev 35484)
@@ -0,0 +1,48 @@
+###############################################################################
+# Copyright (c) 2010-2011 Red Hat, Inc. and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# JBoss by Red Hat - Initial implementation.
+##############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName=JBoss Archives Tools source
+featureProvider=JBoss by Red Hat
+
+# "updateSiteName" property - label for the update site
+updateSiteName=JBossTools Update Site
+
+# "description" property - description of the feature
+description=Project Archives provides a way to define archives based on include/exclude filesets which then\n\
+gets incrementally updated allowing for fluent deployment for any type of Eclipse project.
+
+copyright=JBoss, Home of Professional Open Source\n\
+Copyright JBoss by Red Hat, and individual contributors as indicated\n\
+by the @authors tag, 2006-2011. See the copyright.txt in the distribution\n\
+for a full listing of individual contributors.
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# START NON-TRANSLATABLE
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=Red Hat, Inc. licenses these features and plugins to you under \
+certain open source licenses (or aggregations of such licenses), which \
+in a particular case may include the Eclipse Public License, the GNU \
+Lesser General Public License, and/or certain other open source \
+licenses. For precise licensing details, consult the corresponding \
+source code, or contact Red Hat Legal Affairs, 1801 Varsity Drive, \
+Raleigh NC 27606 USA.
+# END NON-TRANSLATABLE
+########### end of license property ##########################################
Added: trunk/archives/features/org.jboss.ide.eclipse.archives.source.feature/feature.xml
===================================================================
--- trunk/archives/features/org.jboss.ide.eclipse.archives.source.feature/feature.xml (rev 0)
+++ trunk/archives/features/org.jboss.ide.eclipse.archives.source.feature/feature.xml 2011-10-07 21:36:25 UTC (rev 35484)
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+ id="org.jboss.ide.eclipse.archives.source.feature"
+ label="%featureName"
+ version="1.0.0.qualifier"
+ provider-name="%featureProvider">
+
+ <description>
+ %description
+ </description>
+
+ <copyright>
+ JBoss, Home of Professional Open Source
+Copyright (c) 2006-2011 Red Hat, Inc., and individual contributors as indicated
+by the @authors tag. See the copyright.txt in the distribution
+for a full listing of individual contributors.
+ </copyright>
+
+ <license url="%licenseURL">
+ %license
+ </license>
+
+ <plugin id="org.jboss.ide.eclipse.archives.core.source" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.ide.eclipse.archives.ui.source" download-size="0" install-size="0" version="0.0.0" unpack="false" />
+ <plugin id="org.jboss.ide.eclipse.archives.jdt.integration.source" download-size="0" install-size="0" version="0.0.0" unpack="false" />
+</feature>
Added: trunk/archives/features/org.jboss.ide.eclipse.archives.source.feature/license.html
===================================================================
--- trunk/archives/features/org.jboss.ide.eclipse.archives.source.feature/license.html (rev 0)
+++ trunk/archives/features/org.jboss.ide.eclipse.archives.source.feature/license.html 2011-10-07 21:36:25 UTC (rev 35484)
@@ -0,0 +1,14 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
+<html>
+
+<body>
+<p>Red Hat, Inc. licenses these features and plugins to you under
+certain open source licenses (or aggregations of such licenses), which
+in a particular case may include the Eclipse Public License, the GNU
+Lesser General Public License, and/or certain other open source
+licenses. For precise licensing details, consult the corresponding
+source code, or contact Red Hat Legal Affairs, 1801 Varsity Drive,
+Raleigh NC 27606 USA.
+</p>
+</body>
+</html>
\ No newline at end of file
Added: trunk/archives/features/org.jboss.ide.eclipse.archives.source.feature/pom.xml
===================================================================
--- trunk/archives/features/org.jboss.ide.eclipse.archives.source.feature/pom.xml (rev 0)
+++ trunk/archives/features/org.jboss.ide.eclipse.archives.source.feature/pom.xml 2011-10-07 21:36:25 UTC (rev 35484)
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.jboss.tools.archives</groupId>
+ <artifactId>features</artifactId>
+ <version>3.2.1-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.ide.eclipse.archives.features</groupId>
+ <artifactId>org.jboss.ide.eclipse.archives.source.feature</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+
+ <packaging>eclipse-feature</packaging>
+</project>
Modified: trunk/archives/features/org.jboss.ide.eclipse.archives.test.feature/feature.xml
===================================================================
--- trunk/archives/features/org.jboss.ide.eclipse.archives.test.feature/feature.xml 2011-10-07 20:39:11 UTC (rev 35483)
+++ trunk/archives/features/org.jboss.ide.eclipse.archives.test.feature/feature.xml 2011-10-07 21:36:25 UTC (rev 35484)
@@ -1,19 +1,15 @@
<?xml version="1.0" encoding="UTF-8"?>
-<feature
- id="org.jboss.ide.eclipse.archives.test.feature"
- label="JBoss Tools - Tests - Archives"
- version="3.2.1.qualifier"
- provider-name="JBoss by Red Hat">
+<feature id="org.jboss.ide.eclipse.archives.test.feature" label="JBoss Tools - Tests - Archives" version="3.2.1.qualifier" provider-name="JBoss by Red Hat">
- <description url="http://www.jboss.org/tools">
+ <description url="http://www.jboss.org/tools">
%description
</description>
- <copyright>
+ <copyright>
%copyright
</copyright>
- <license url="license.html">
+ <license url="license.html">
Red Hat, Inc. licenses these features and plugins to you under
certain open source licenses (or aggregations of such licenses), which
in a particular case may include the Eclipse Public License, the GNU
@@ -23,16 +19,6 @@
Raleigh NC 27606 USA.
</license>
- <plugin
- id="org.jboss.ide.eclipse.archives.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
- <plugin
- id="org.jboss.ide.eclipse.archives.ui.test"
- download-size="0"
- install-size="0"
- version="0.0.0"/>
-
+ <plugin id="org.jboss.ide.eclipse.archives.test" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.ide.eclipse.archives.ui.test" download-size="0" install-size="0" version="0.0.0" />
</feature>
Added: trunk/archives/features/org.jboss.ide.eclipse.archives.test.source.feature/.project
===================================================================
--- trunk/archives/features/org.jboss.ide.eclipse.archives.test.source.feature/.project (rev 0)
+++ trunk/archives/features/org.jboss.ide.eclipse.archives.test.source.feature/.project 2011-10-07 21:36:25 UTC (rev 35484)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>org.jboss.ide.eclipse.archives.test.source.feature</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ <buildCommand>
+ <name>org.eclipse.pde.FeatureBuilder</name>
+ <arguments>
+ </arguments>
+ </buildCommand>
+ </buildSpec>
+ <natures>
+ <nature>org.eclipse.pde.FeatureNature</nature>
+ </natures>
+</projectDescription>
Added: trunk/archives/features/org.jboss.ide.eclipse.archives.test.source.feature/build.properties
===================================================================
--- trunk/archives/features/org.jboss.ide.eclipse.archives.test.source.feature/build.properties (rev 0)
+++ trunk/archives/features/org.jboss.ide.eclipse.archives.test.source.feature/build.properties 2011-10-07 21:36:25 UTC (rev 35484)
@@ -0,0 +1,3 @@
+bin.includes = feature.xml,\
+ feature.properties,\
+ license.html
Added: trunk/archives/features/org.jboss.ide.eclipse.archives.test.source.feature/feature.properties
===================================================================
--- trunk/archives/features/org.jboss.ide.eclipse.archives.test.source.feature/feature.properties (rev 0)
+++ trunk/archives/features/org.jboss.ide.eclipse.archives.test.source.feature/feature.properties 2011-10-07 21:36:25 UTC (rev 35484)
@@ -0,0 +1,48 @@
+###############################################################################
+# Copyright (c) 2010-2011 Red Hat, Inc. and others.
+# All rights reserved. This program and the accompanying materials
+# are made available under the terms of the Eclipse Public License v1.0
+# which accompanies this distribution, and is available at
+# http://www.eclipse.org/legal/epl-v10.html
+#
+# Contributors:
+# JBoss by Red Hat - Initial implementation.
+##############################################################################
+# feature.properties
+# contains externalized strings for feature.xml
+# "%foo" in feature.xml corresponds to the key "foo" in this file
+# java.io.Properties file (ISO 8859-1 with "\" escapes)
+# This file should be translated.
+
+# "featureName" property - name of the feature
+featureName=JBoss Archives Tools test source
+featureProvider=JBoss by Red Hat
+
+# "updateSiteName" property - label for the update site
+updateSiteName=JBossTools Update Site
+
+# "description" property - description of the feature
+description=Project Archives provides a way to define archives based on include/exclude filesets which then\n\
+gets incrementally updated allowing for fluent deployment for any type of Eclipse project.
+
+copyright=JBoss, Home of Professional Open Source\n\
+Copyright JBoss by Red Hat, and individual contributors as indicated\n\
+by the @authors tag, 2006-2011. See the copyright.txt in the distribution\n\
+for a full listing of individual contributors.
+
+# "licenseURL" property - URL of the "Feature License"
+# do not translate value - just change to point to a locale-specific HTML page
+licenseURL=license.html
+
+# START NON-TRANSLATABLE
+# "license" property - text of the "Feature Update License"
+# should be plain text version of license agreement pointed to be "licenseURL"
+license=Red Hat, Inc. licenses these features and plugins to you under \
+certain open source licenses (or aggregations of such licenses), which \
+in a particular case may include the Eclipse Public License, the GNU \
+Lesser General Public License, and/or certain other open source \
+licenses. For precise licensing details, consult the corresponding \
+source code, or contact Red Hat Legal Affairs, 1801 Varsity Drive, \
+Raleigh NC 27606 USA.
+# END NON-TRANSLATABLE
+########### end of license property ##########################################
Added: trunk/archives/features/org.jboss.ide.eclipse.archives.test.source.feature/feature.xml
===================================================================
--- trunk/archives/features/org.jboss.ide.eclipse.archives.test.source.feature/feature.xml (rev 0)
+++ trunk/archives/features/org.jboss.ide.eclipse.archives.test.source.feature/feature.xml 2011-10-07 21:36:25 UTC (rev 35484)
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+ id="org.jboss.ide.eclipse.archives.test.source.feature"
+ label="%featureName"
+ version="1.0.0.qualifier"
+ provider-name="%featureProvider">
+
+ <description>
+ %description
+ </description>
+
+ <copyright>
+ JBoss, Home of Professional Open Source
+Copyright (c) 2006-2011 Red Hat, Inc., and individual contributors as indicated
+by the @authors tag. See the copyright.txt in the distribution
+for a full listing of individual contributors.
+ </copyright>
+
+ <license url="%licenseURL">
+ %license
+ </license>
+
+ <plugin id="org.jboss.ide.eclipse.archives.test.source" download-size="0" install-size="0" version="0.0.0" />
+ <plugin id="org.jboss.ide.eclipse.archives.ui.test.source" download-size="0" install-size="0" version="0.0.0" />
+</feature>
Added: trunk/archives/features/org.jboss.ide.eclipse.archives.test.source.feature/license.html
===================================================================
--- trunk/archives/features/org.jboss.ide.eclipse.archives.test.source.feature/license.html (rev 0)
+++ trunk/archives/features/org.jboss.ide.eclipse.archives.test.source.feature/license.html 2011-10-07 21:36:25 UTC (rev 35484)
@@ -0,0 +1,14 @@
+<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0//EN">
+<html>
+
+<body>
+<p>Red Hat, Inc. licenses these features and plugins to you under
+certain open source licenses (or aggregations of such licenses), which
+in a particular case may include the Eclipse Public License, the GNU
+Lesser General Public License, and/or certain other open source
+licenses. For precise licensing details, consult the corresponding
+source code, or contact Red Hat Legal Affairs, 1801 Varsity Drive,
+Raleigh NC 27606 USA.
+</p>
+</body>
+</html>
\ No newline at end of file
Added: trunk/archives/features/org.jboss.ide.eclipse.archives.test.source.feature/pom.xml
===================================================================
--- trunk/archives/features/org.jboss.ide.eclipse.archives.test.source.feature/pom.xml (rev 0)
+++ trunk/archives/features/org.jboss.ide.eclipse.archives.test.source.feature/pom.xml 2011-10-07 21:36:25 UTC (rev 35484)
@@ -0,0 +1,15 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.jboss.tools.archives</groupId>
+ <artifactId>features</artifactId>
+ <version>3.2.1-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.ide.eclipse.archives.features</groupId>
+ <artifactId>org.jboss.ide.eclipse.archives.test.source.feature</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+
+ <packaging>eclipse-feature</packaging>
+</project>
Modified: trunk/archives/features/pom.xml
===================================================================
--- trunk/archives/features/pom.xml 2011-10-07 20:39:11 UTC (rev 35483)
+++ trunk/archives/features/pom.xml 2011-10-07 21:36:25 UTC (rev 35484)
@@ -12,7 +12,9 @@
<packaging>pom</packaging>
<modules>
<module>org.jboss.ide.eclipse.archives.feature</module>
+ <module>org.jboss.ide.eclipse.archives.source.feature</module>
<module>org.jboss.ide.eclipse.archives.test.feature</module>
+ <module>org.jboss.ide.eclipse.archives.test.source.feature</module>
</modules>
</project>
Modified: trunk/archives/site/site.xml
===================================================================
--- trunk/archives/site/site.xml 2011-10-07 20:39:11 UTC (rev 35483)
+++ trunk/archives/site/site.xml 2011-10-07 21:36:25 UTC (rev 35484)
@@ -8,8 +8,14 @@
<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="JBoss Tools archives Nightly Build Update Site"/>
</feature>
+ <feature url="features/org.jboss.ide.eclipse.archives.source.feature_0.0.0.jar" id="org.jboss.ide.eclipse.archives.source.feature" version="0.0.0">
+ <category name="JBoss Tools archives Nightly Build Update Site"/>
+ </feature>
<feature url="features/org.jboss.ide.eclipse.archives.test.feature_0.0.0.jar" id="org.jboss.ide.eclipse.archives.test.feature" version="0.0.0">
<category name="JBoss Tools archives Nightly Build Update Site"/>
</feature>
+ <feature url="features/org.jboss.ide.eclipse.archives.test.source.feature_0.0.0.jar" id="org.jboss.ide.eclipse.archives.test.source.feature" version="0.0.0">
+ <category name="JBoss Tools archives Nightly Build Update Site"/>
+ </feature>
</site>
13 years, 3 months
JBoss Tools SVN: r35483 - trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/src/org/jboss/tools/cdi/seam/config/core/test.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2011-10-07 16:39:11 -0400 (Fri, 07 Oct 2011)
New Revision: 35483
Added:
trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/src/org/jboss/tools/cdi/seam/config/core/test/ParserTest.java
Modified:
trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/src/org/jboss/tools/cdi/seam/config/core/test/CDISeamConfigCoreAllTests.java
Log:
JBIDE-9855
https://issues.jboss.org/browse/JBIDE-9855
Test added to seam config parser.
Modified: trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/src/org/jboss/tools/cdi/seam/config/core/test/CDISeamConfigCoreAllTests.java
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/src/org/jboss/tools/cdi/seam/config/core/test/CDISeamConfigCoreAllTests.java 2011-10-07 20:38:21 UTC (rev 35482)
+++ trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/src/org/jboss/tools/cdi/seam/config/core/test/CDISeamConfigCoreAllTests.java 2011-10-07 20:39:11 UTC (rev 35483)
@@ -38,6 +38,7 @@
TestSuite suite31 = new TestSuite("CDI Config Core 3.1 Tests");
TestSuite suiteCore = new TestSuite("CDI Config Model Tests");
+ suiteCore.addTestSuite(ParserTest.class);
suiteCore.addTestSuite(ExtensionTest.class);
suiteCore.addTestSuite(SeamDefinitionsTest.class);
suiteCore.addTestSuite(SeamBeansTest.class);
@@ -48,10 +49,10 @@
suiteValidation.addTestSuite(SeamConfigValidationTest.class);
suite31.addTest(new SeamConfigValidationTestSetup(suiteValidation));
+ suiteAll.addTest(suite31);
+
suiteAll.addTestSuite(ValidationExceptionTest.class); // This test should be added last!
- suiteAll.addTest(suite31);
-
return suiteAll;
}
}
\ No newline at end of file
Added: trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/src/org/jboss/tools/cdi/seam/config/core/test/ParserTest.java
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/src/org/jboss/tools/cdi/seam/config/core/test/ParserTest.java (rev 0)
+++ trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/src/org/jboss/tools/cdi/seam/config/core/test/ParserTest.java 2011-10-07 20:39:11 UTC (rev 35483)
@@ -0,0 +1,34 @@
+package org.jboss.tools.cdi.seam.config.core.test;
+
+import java.io.ByteArrayInputStream;
+
+import org.eclipse.jface.text.Document;
+import org.eclipse.jface.text.IDocument;
+import org.jboss.tools.cdi.seam.config.core.xml.SAXElement;
+import org.jboss.tools.cdi.seam.config.core.xml.SAXParser;
+
+import junit.framework.TestCase;
+
+public class ParserTest extends TestCase {
+
+ public void testIncorrectXML() throws Exception {
+ String text = "<?xml version=\"1.0\" encoding=\"UTF-8\"?>\n</";
+ IDocument document = new Document();
+ document.set(text);
+
+ SAXParser parser = new SAXParser();
+ parser.setSupperssedFatalErrorLimit(11);
+ ByteArrayInputStream s = new ByteArrayInputStream(text.getBytes());
+ SAXElement root = parser.parse(s, document);
+ assertEquals(12, parser.getErrors().size());
+
+ parser = new SAXParser();
+ parser.setSupperssedFatalErrorLimit(0);
+ s = new ByteArrayInputStream(text.getBytes());
+ root = parser.parse(s, document);
+ assertEquals(1, parser.getErrors().size());
+
+
+ }
+
+}
Property changes on: trunk/cdi/tests/org.jboss.tools.cdi.seam.config.core.test/src/org/jboss/tools/cdi/seam/config/core/test/ParserTest.java
___________________________________________________________________
Added: svn:mime-type
+ text/plain
13 years, 3 months
JBoss Tools SVN: r35482 - trunk/cdi/plugins/org.jboss.tools.cdi.seam.config.core/src/org/jboss/tools/cdi/seam/config/core/xml.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2011-10-07 16:38:21 -0400 (Fri, 07 Oct 2011)
New Revision: 35482
Modified:
trunk/cdi/plugins/org.jboss.tools.cdi.seam.config.core/src/org/jboss/tools/cdi/seam/config/core/xml/SAXParser.java
Log:
JBIDE-9855
https://issues.jboss.org/browse/JBIDE-9855
Test added to seam config parser.
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.seam.config.core/src/org/jboss/tools/cdi/seam/config/core/xml/SAXParser.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.seam.config.core/src/org/jboss/tools/cdi/seam/config/core/xml/SAXParser.java 2011-10-07 20:14:37 UTC (rev 35481)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.seam.config.core/src/org/jboss/tools/cdi/seam/config/core/xml/SAXParser.java 2011-10-07 20:38:21 UTC (rev 35482)
@@ -38,8 +38,12 @@
* secured against making a mistake.
*
*/
- static int SUPPRESSED_FATAL_ERROR_LIMIT = 0;
+ int supperssedFatalErrorLimit = 0;
+ public void setSupperssedFatalErrorLimit(int c) {
+ supperssedFatalErrorLimit = c;
+ }
+
/**
*
* @param handler
@@ -57,7 +61,7 @@
setFeature(parserInstance, VALIDATION_SCHEMA_FEATURE_ID, true);
setFeature(parserInstance, VALIDATION_SCHEMA_CHECKING_FEATURE_ID, false);
setFeature(parserInstance, VALIDATION_DYNAMIC_FEATURE_ID, false);
- setFeature(parserInstance, FATAL_ERROR_PROCESSING_FEATURE_ID, SUPPRESSED_FATAL_ERROR_LIMIT > 0);
+ setFeature(parserInstance, FATAL_ERROR_PROCESSING_FEATURE_ID, supperssedFatalErrorLimit > 0);
try {
parserInstance.setProperty(ENTITY_RESOLVER_PROPERTY_ID, new XMLEntityResolverImpl());
@@ -73,6 +77,7 @@
}
private String errorMessage = null;
+ List<String> errors = new ArrayList<String>();
public SAXElement parse(InputStream input, IDocument document) {
InputSource s = new InputSource(input);
@@ -94,9 +99,15 @@
//ignore, that is user data error that will be shown as error marker.
}
+ errors = handler.errors;
+
return handler.getRootElement();
}
+ public List<String> getErrors() {
+ return errors;
+ }
+
class ConfigHanlder extends DefaultHandler {
SAXElement root = null;
IDocument document;
@@ -215,7 +226,7 @@
public void fatalError(SAXParseException e) throws SAXException {
String message = e.getMessage();
errors.add(message);
- if(errors.size() > SUPPRESSED_FATAL_ERROR_LIMIT) throw e;
+ if(errors.size() > supperssedFatalErrorLimit) throw e;
}
/**
13 years, 3 months