Author: dgolovin
Date: 2010-12-29 19:03:06 -0500 (Wed, 29 Dec 2010)
New Revision: 27814
Added:
trunk/vpe/features/org.jboss.tools.vpe.test.feature/
trunk/vpe/features/org.jboss.tools.vpe.test.feature/.project
trunk/vpe/features/org.jboss.tools.vpe.test.feature/build.properties
trunk/vpe/features/org.jboss.tools.vpe.test.feature/feature.xml
trunk/vpe/features/org.jboss.tools.vpe.test.feature/pom.xml
Modified:
trunk/vpe/features/pom.xml
trunk/vpe/site/site.xml
Log:
https://issues.jboss.org/browse/JBIDE-8023 JSF component build missing test plugins from
JST and VPE components
Added: trunk/vpe/features/org.jboss.tools.vpe.test.feature/.project
===================================================================
--- trunk/vpe/features/org.jboss.tools.vpe.test.feature/.project
(rev 0)
+++ trunk/vpe/features/org.jboss.tools.vpe.test.feature/.project 2010-12-30 00:03:06 UTC
(rev 27814)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>org.jboss.tools.vpe.test.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/vpe/features/org.jboss.tools.vpe.test.feature/build.properties
===================================================================
--- trunk/vpe/features/org.jboss.tools.vpe.test.feature/build.properties
(rev 0)
+++ trunk/vpe/features/org.jboss.tools.vpe.test.feature/build.properties 2010-12-30
00:03:06 UTC (rev 27814)
@@ -0,0 +1 @@
+bin.includes = feature.xml
Added: trunk/vpe/features/org.jboss.tools.vpe.test.feature/feature.xml
===================================================================
--- trunk/vpe/features/org.jboss.tools.vpe.test.feature/feature.xml
(rev 0)
+++ trunk/vpe/features/org.jboss.tools.vpe.test.feature/feature.xml 2010-12-30 00:03:06
UTC (rev 27814)
@@ -0,0 +1,70 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+ id="org.jboss.tools.vpe.test.feature"
+ label="VPE Test Feature"
+ version="1.0.0.qualifier"
+ provider-name="JBoss by RedHat">
+
+ <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
url="http://www.example.com/license">
+ [Enter License Description here.]
+ </license>
+
+ <plugin
+ id="org.jboss.tools.vpe.base.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.vpe.spring.test"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
+
+ <plugin
+ id="org.jboss.tools.vpe.test"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"/>
+
+ <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.vpe.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"/>
+
+</feature>
Added: trunk/vpe/features/org.jboss.tools.vpe.test.feature/pom.xml
===================================================================
--- trunk/vpe/features/org.jboss.tools.vpe.test.feature/pom.xml
(rev 0)
+++ trunk/vpe/features/org.jboss.tools.vpe.test.feature/pom.xml 2010-12-30 00:03:06 UTC
(rev 27814)
@@ -0,0 +1,13 @@
+<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">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>org.jboss.tools.parent.pom</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.tools.vpe.features</groupId>
+ <artifactId>org.jboss.tools.vpe.test.feature</artifactId>
+ <version>1.0.0-SNAPSHOT</version>
+ <packaging>eclipse-feature</packaging>
+</project>
Modified: trunk/vpe/features/pom.xml
===================================================================
--- trunk/vpe/features/pom.xml 2010-12-29 23:47:57 UTC (rev 27813)
+++ trunk/vpe/features/pom.xml 2010-12-30 00:03:06 UTC (rev 27814)
@@ -14,6 +14,7 @@
<packaging>pom</packaging>
<modules>
<module>org.jboss.tools.vpe.feature</module>
+ <module>org.jboss.tools.vpe.test.feature</module>
<module>org.jboss.tools.xulrunner.feature</module>
</modules>
</project>
Modified: trunk/vpe/site/site.xml
===================================================================
--- trunk/vpe/site/site.xml 2010-12-29 23:47:57 UTC (rev 27813)
+++ trunk/vpe/site/site.xml 2010-12-30 00:03:06 UTC (rev 27814)
@@ -8,6 +8,9 @@
<feature url="features/org.jboss.tools.vpe.feature_0.0.0.jar"
id="org.jboss.tools.vpe.feature" version="0.0.0">
<category name="JBoss Tools vpe Nightly Build Update Site"/>
</feature>
+ <feature url="features/org.jboss.tools.vpe.test.feature_0.0.0.jar"
id="org.jboss.tools.vpe.test.feature" version="0.0.0">
+ <category name="JBoss Tools VPE Test Nightly Build Update Site"/>
+ </feature>
<feature url="features/org.mozilla.xulrunner.feature_0.0.0.jar"
id="org.mozilla.xulrunner.feature" version="0.0.0">
<category name="JBoss Tools vpe Nightly Build Update Site"/>
</feature>