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>