JBoss Tools SVN: r24085 - trunk/build/aggregate/site.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-08-12 01:40:07 -0400 (Thu, 12 Aug 2010)
New Revision: 24085
Modified:
trunk/build/aggregate/site/build.xml
Log:
disable debug; fix path problems
Modified: trunk/build/aggregate/site/build.xml
===================================================================
--- trunk/build/aggregate/site/build.xml 2010-08-12 05:18:20 UTC (rev 24084)
+++ trunk/build/aggregate/site/build.xml 2010-08-12 05:40:07 UTC (rev 24085)
@@ -182,6 +182,7 @@
if found, load file and use ${ALL_ZIPS} to get list of relative path zips to fetch -->
<target name="collect.zips" description="collect zips from the sites we aggregated">
<property name="aggegate.zips.dir" value="${output.dir}/zips" />
+ <delete dir="${aggegate.zips.dir}" quiet="true" />
<mkdir dir="${aggegate.zips.dir}" />
<for list="${inputRepos}" delimiter=", " keepgoing="true" param="repoNum">
<sequential>
@@ -201,13 +202,13 @@
<sequential>
<propertyregex override="true"
property="relativePath"
- defaultvalue="@{zipPath}"
+ defaultvalue=""
input="@{zipPath}"
regexp="(.+)/([^/]+.zip)"
replace="\1" />
<mkdir dir="${aggegate.zips.dir}/${relativePath}" />
<!-- fetch zips to local dir -->
- <echo>repoNum = @{repoNum}
+ <echo level="debug">repoNum = @{repoNum}
relativePath = ${relativePath}
zipPath = @{zipPath}
URL = ${inputRepo@{repoNum}}/@{zipPath}
15 years, 8 months
JBoss Tools SVN: r24084 - trunk/build/aggregate/site.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-08-12 01:18:20 -0400 (Thu, 12 Aug 2010)
New Revision: 24084
Modified:
trunk/build/aggregate/site/build.xml
Log:
debug
Modified: trunk/build/aggregate/site/build.xml
===================================================================
--- trunk/build/aggregate/site/build.xml 2010-08-12 04:55:01 UTC (rev 24083)
+++ trunk/build/aggregate/site/build.xml 2010-08-12 05:18:20 UTC (rev 24084)
@@ -191,10 +191,12 @@
<available file="${aggegate.zips.dir}/zip.list.txt" type="file" />
<then>
<!-- load zip.list.txt file, get ALL_ZIPS list -->
+ <var unset="true" name="ALL_ZIPS" />
<property file="${aggegate.zips.dir}/zip.list.txt" />
<if>
<isset property="ALL_ZIPS" />
<then>
+ <var name="relativePath" unset="true" />
<for list="${ALL_ZIPS}" delimiter=", " keepgoing="true" param="zipPath">
<sequential>
<propertyregex override="true"
@@ -205,13 +207,19 @@
replace="\1" />
<mkdir dir="${aggegate.zips.dir}/${relativePath}" />
<!-- fetch zips to local dir -->
+ <echo>repoNum = @{repoNum}
+relativePath = ${relativePath}
+zipPath = @{zipPath}
+URL = ${inputRepo@{repoNum}}/@{zipPath}
+DEST = ${aggegate.zips.dir}/@{zipPath}
+</echo>
<get src="${inputRepo@{repoNum}}/@{zipPath}" dest="${aggegate.zips.dir}/@{zipPath}" />
- <var name="relativePath" unset="true" />
</sequential>
</for>
- <var unset="true" name="ALL_ZIPS" />
+ <var name="relativePath" unset="true" />
</then>
</if>
+ <var unset="true" name="ALL_ZIPS" />
<delete file="${aggegate.zips.dir}/zip.list.txt" quiet="true" />
</then>
</if>
15 years, 8 months
JBoss Tools SVN: r24083 - trunk/build/aggregate/site.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-08-12 00:55:01 -0400 (Thu, 12 Aug 2010)
New Revision: 24083
Modified:
trunk/build/aggregate/site/build.xml
Log:
fix regex
Modified: trunk/build/aggregate/site/build.xml
===================================================================
--- trunk/build/aggregate/site/build.xml 2010-08-12 04:48:51 UTC (rev 24082)
+++ trunk/build/aggregate/site/build.xml 2010-08-12 04:55:01 UTC (rev 24083)
@@ -201,7 +201,7 @@
property="relativePath"
defaultvalue="@{zipPath}"
input="@{zipPath}"
- regexp="(.+/)[^/]+"
+ regexp="(.+)/([^/]+.zip)"
replace="\1" />
<mkdir dir="${aggegate.zips.dir}/${relativePath}" />
<!-- fetch zips to local dir -->
15 years, 8 months
JBoss Tools SVN: r24082 - in trunk/build/aggregate: site and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-08-12 00:48:51 -0400 (Thu, 12 Aug 2010)
New Revision: 24082
Modified:
trunk/build/aggregate/pom.xml
trunk/build/aggregate/site/pom.xml
Log:
tweak pom.xml names
Modified: trunk/build/aggregate/pom.xml
===================================================================
--- trunk/build/aggregate/pom.xml 2010-08-12 04:42:43 UTC (rev 24081)
+++ trunk/build/aggregate/pom.xml 2010-08-12 04:48:51 UTC (rev 24082)
@@ -7,7 +7,8 @@
<version>0.0.1-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools</groupId>
-<artifactId>trunk</artifactId>
+<artifactId>org.jboss.tools.aggregate.site</artifactId>
+<name>JBoss Tools Aggregate Site Build</name>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<modules>
Modified: trunk/build/aggregate/site/pom.xml
===================================================================
--- trunk/build/aggregate/site/pom.xml 2010-08-12 04:42:43 UTC (rev 24081)
+++ trunk/build/aggregate/site/pom.xml 2010-08-12 04:48:51 UTC (rev 24082)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools</groupId>
<artifactId>org.jboss.tools.site.aggregate</artifactId>
- <name>org.jboss.tools.site</name>
+ <name>JBoss Tools Aggregate Site</name>
<version>0.0.1-SNAPSHOT</version>
<packaging>eclipse-update-site</packaging>
15 years, 8 months
JBoss Tools SVN: r24081 - trunk/build/aggregate/site.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-08-12 00:42:43 -0400 (Thu, 12 Aug 2010)
New Revision: 24081
Modified:
trunk/build/aggregate/site/build.xml
trunk/build/aggregate/site/pom.xml
Log:
fix variable ref to
Modified: trunk/build/aggregate/site/build.xml
===================================================================
--- trunk/build/aggregate/site/build.xml 2010-08-12 04:24:44 UTC (rev 24080)
+++ trunk/build/aggregate/site/build.xml 2010-08-12 04:42:43 UTC (rev 24081)
@@ -183,10 +183,10 @@
<target name="collect.zips" description="collect zips from the sites we aggregated">
<property name="aggegate.zips.dir" value="${output.dir}/zips" />
<mkdir dir="${aggegate.zips.dir}" />
- <for list="${inputRepos}" delimiter=", " keepgoing="true" param="repoURL">
+ <for list="${inputRepos}" delimiter=", " keepgoing="true" param="repoNum">
<sequential>
<!-- fetch zip.list.txt file, if available -->
- <get src="@{repoURL}/logs/zip.list.txt" dest="${aggegate.zips.dir}/zip.list.txt" ignoreerrors="true" />
+ <get src="${inputRepo(a){repoNum}}/logs/zip.list.txt" dest="${aggegate.zips.dir}/zip.list.txt" ignoreerrors="true" />
<if>
<available file="${aggegate.zips.dir}/zip.list.txt" type="file" />
<then>
@@ -205,7 +205,7 @@
replace="\1" />
<mkdir dir="${aggegate.zips.dir}/${relativePath}" />
<!-- fetch zips to local dir -->
- <get src="@{repoURL}/@{zipPath}" dest="${aggegate.zips.dir}/@{zipPath}" />
+ <get src="${inputRepo@{repoNum}}/@{zipPath}" dest="${aggegate.zips.dir}/@{zipPath}" />
<var name="relativePath" unset="true" />
</sequential>
</for>
Modified: trunk/build/aggregate/site/pom.xml
===================================================================
--- trunk/build/aggregate/site/pom.xml 2010-08-12 04:24:44 UTC (rev 24080)
+++ trunk/build/aggregate/site/pom.xml 2010-08-12 04:42:43 UTC (rev 24081)
@@ -20,7 +20,7 @@
<inputRepo2>http://download.jboss.org/jbosstools/builds/nightly/3.2.helios/jbosstools...</inputRepo2>
<inputRepo3>http://download.jboss.org/jbosstools/builds/nightly/3.2.helios/jbosstools...</inputRepo3>
<inputRepo4>http://download.jboss.org/jbosstools/builds/nightly/3.2.helios/jbosstools...</inputRepo4>
- <inputRepos>inputRepo1,inputRepo2,inputRepo3,inputRepo4</inputRepos>
+ <inputRepos>1,2,3,4</inputRepos>
</properties>
<build>
15 years, 8 months
JBoss Tools SVN: r24080 - trunk/build/aggregate/site.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-08-12 00:24:44 -0400 (Thu, 12 Aug 2010)
New Revision: 24080
Modified:
trunk/build/aggregate/site/pom.xml
Log:
update pom.xml from parent pom and pass maven vars thru to ant
Modified: trunk/build/aggregate/site/pom.xml
===================================================================
--- trunk/build/aggregate/site/pom.xml 2010-08-12 01:19:28 UTC (rev 24079)
+++ trunk/build/aggregate/site/pom.xml 2010-08-12 04:24:44 UTC (rev 24080)
@@ -36,9 +36,16 @@
<configuration>
<quiet>true</quiet>
<tasks>
+ <property name="inputRepo1" value="${inputRepo1}" />
+ <property name="inputRepo2" value="${inputRepo2}" />
+ <property name="inputRepo3" value="${inputRepo3}" />
+ <property name="inputRepo4" value="${inputRepo4}" />
+ <property name="inputRepos" value="${inputRepos}" />
+
<!-- called AFTER generating update site + zip to add in extra content -->
<ant antfile="build.xml" />
</tasks>
+
</configuration>
<goals>
<goal>run</goal>
@@ -115,9 +122,12 @@
<activeByDefault>true</activeByDefault>
</activation>
<repositories>
+ <!--repository> <id>helios</id> <url>http://download.eclipse.org/releases/helios/</url>
+ <layout>p2</layout> <snapshots> <enabled>true</enabled> </snapshots> <releases>
+ <enabled>true</enabled> </releases> </repository -->
<repository>
- <id>helios</id>
- <url>http://download.eclipse.org/releases/helios/</url>
+ <id>jboss-helios</id>
+ <url>http://download.jboss.org/jbosstools/updates/requirements/helios/</url>
<layout>p2</layout>
<snapshots>
<enabled>true</enabled>
@@ -126,9 +136,12 @@
<enabled>true</enabled>
</releases>
</repository>
+ <!--repository> <id>webtools32</id> <url>http://download.eclipse.org/webtools/repository/helios</url>
+ <layout>p2</layout> <snapshots> <enabled>true</enabled> </snapshots> <releases>
+ <enabled>true</enabled> </releases> </repository -->
<repository>
- <id>webtools32</id>
- <url>http://download.eclipse.org/webtools/repository/helios</url>
+ <id>jboss-webtools32</id>
+ <url>http://download.jboss.org/jbosstools/updates/requirements/webtools-3.2/</url>
<layout>p2</layout>
<snapshots>
<enabled>true</enabled>
@@ -138,8 +151,8 @@
</releases>
</repository>
<repository>
- <id>eclipse36</id>
- <url>http://download.eclipse.org/eclipse/updates/3.6/
+ <id>birt26</id>
+ <url>http://download.eclipse.org/birt/update-site/2.6/
</url>
<layout>p2</layout>
<snapshots>
@@ -149,9 +162,12 @@
<enabled>true</enabled>
</releases>
</repository>
+ <!--repository> <id>swtbot-helios</id> <url>http://download.eclipse.org/technology/swtbot/helios/dev-build/update-site/
+ </url> <layout>p2</layout> <snapshots> <enabled>true</enabled> </snapshots>
+ <releases> <enabled>true</enabled> </releases> </repository -->
<repository>
- <id>birt26</id>
- <url>http://download.eclipse.org/birt/update-site/2.6/
+ <id>jboss-swtbot-helios</id>
+ <url>http://download.jboss.org/jbosstools/updates/requirements/swtbot-helios/
</url>
<layout>p2</layout>
<snapshots>
@@ -162,9 +178,8 @@
</releases>
</repository>
<repository>
- <id>swtbot-helios</id>
- <url>http://download.eclipse.org/technology/swtbot/helios/dev-build/update-site/
- </url>
+ <id>m2eclipse</id>
+ <url>http://m2eclipse.sonatype.org/sites/m2e/</url>
<layout>p2</layout>
<snapshots>
<enabled>true</enabled>
@@ -174,8 +189,8 @@
</releases>
</repository>
<repository>
- <id>m2eclipse</id>
- <url>http://m2eclipse.sonatype.org/sites/m2e/</url>
+ <id>m2eclipse-extras</id>
+ <url>http://m2eclipse.sonatype.org/sites/m2e-extras/</url>
<layout>p2</layout>
<snapshots>
<enabled>true</enabled>
@@ -184,9 +199,13 @@
<enabled>true</enabled>
</releases>
</repository>
+ <!--repository> <id>jboss-orbit</id> <url>http://download.jboss.org/jbosstools/updates/requirements/orbit/R20100519...
+ </url> <layout>p2</layout> <snapshots> <enabled>true</enabled> </snapshots>
+ <releases> <enabled>true</enabled> </releases> </repository -->
<repository>
- <id>m2eclipse-extras</id>
- <url>http://m2eclipse.sonatype.org/sites/m2e-extras/</url>
+ <id>jboss-thirdparty</id>
+ <url>http://download.jboss.org/jbosstools/updates/requirements/thirdparty/
+ </url>
<layout>p2</layout>
<snapshots>
<enabled>true</enabled>
@@ -196,8 +215,8 @@
</releases>
</repository>
<repository>
- <id>orbit</id>
- <url>http://download.eclipse.org/tools/orbit/downloads/drops/R20100519200754/u...
+ <id>jboss-xulrunner-1.9.1.2</id>
+ <url>http://download.jboss.org/jbosstools/updates/requirements/xulrunner-1.9.1.2/
</url>
<layout>p2</layout>
<snapshots>
@@ -207,6 +226,20 @@
<enabled>true</enabled>
</releases>
</repository>
+ <!--repository> <id>jboss-xulrunner-1.9.2</id> <url>http://download.jboss.org/jbosstools/updates/requirements/xulrunner-1.9.2/
+ </url> <layout>p2</layout> <snapshots> <enabled>true</enabled> </snapshots>
+ <releases> <enabled>true</enabled> </releases> </repository -->
+ <repository>
+ <id>google eclipse plugins</id>
+ <url>http://dl.google.com/eclipse/plugin/3.6</url>
+ <layout>p2</layout>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ <releases>
+ <enabled>true</enabled>
+ </releases>
+ </repository>
</repositories>
</profile>
</profiles>
15 years, 8 months
JBoss Tools SVN: r24079 - trunk/maven/tests/org.jboss.tools.maven.ui.bot.test.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2010-08-11 21:19:28 -0400 (Wed, 11 Aug 2010)
New Revision: 24079
Modified:
trunk/maven/tests/org.jboss.tools.maven.ui.bot.test/pom.xml
Log:
groupId updated to right on in mavem swt bot tests plugin
Modified: trunk/maven/tests/org.jboss.tools.maven.ui.bot.test/pom.xml
===================================================================
--- trunk/maven/tests/org.jboss.tools.maven.ui.bot.test/pom.xml 2010-08-12 01:12:28 UTC (rev 24078)
+++ trunk/maven/tests/org.jboss.tools.maven.ui.bot.test/pom.xml 2010-08-12 01:19:28 UTC (rev 24079)
@@ -2,12 +2,11 @@
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>
- <relativePath>../../../parent-pom.xml</relativePath>
<groupId>org.jboss.tools</groupId>
<artifactId>org.jboss.tools.parent.pom</artifactId>
<version>0.0.1-SNAPSHOT</version>
</parent>
- <groupId>org.jboss.tools</groupId>
+ <groupId>org.jboss.tools.maven.tests</groupId>
<artifactId>org.jboss.tools.maven.ui.bot.test</artifactId>
<version>1.0.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
15 years, 8 months
JBoss Tools SVN: r24078 - trunk.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2010-08-11 21:12:28 -0400 (Wed, 11 Aug 2010)
New Revision: 24078
Modified:
trunk/pom.xml
Log:
runtime component included in root pom.xml aggregator project
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2010-08-12 01:11:16 UTC (rev 24077)
+++ trunk/pom.xml 2010-08-12 01:12:28 UTC (rev 24078)
@@ -49,7 +49,7 @@
<!-- IF YOU REMOVE A MODULE, be sure to also remove it from site/site.xml
and build/aggregate/site/site.xml or the build will break! -->
<module>drools</module>
-
+ <module>runtime</module>
<module>site</module>
</modules>
<profiles>
15 years, 8 months
JBoss Tools SVN: r24077 - in trunk: site and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2010-08-11 21:11:16 -0400 (Wed, 11 Aug 2010)
New Revision: 24077
Modified:
trunk/build/pom.xml
trunk/site/category.JBossTools.xml
trunk/site/site.xml
Log:
runtime component copied from jbds repo to jbosstools, included in build/pom.xml, in site/site.xml JBossTools All category and in category.JBossTools.xml in JBossTools All category as Runtime Initialization feature
Modified: trunk/build/pom.xml
===================================================================
--- trunk/build/pom.xml 2010-08-12 01:03:24 UTC (rev 24076)
+++ trunk/build/pom.xml 2010-08-12 01:11:16 UTC (rev 24077)
@@ -562,9 +562,7 @@
<profile>
<id>drools</id>
<activation>
- <property>
- <name>drools</name>
- </property>
+ <activeByDefault>true</activeByDefault>
</activation>
<modules>
<module>../drools</module>
@@ -572,14 +570,21 @@
</profile>
<profile>
+ <id>runtime</id>
+ <activation>
+ <activeByDefault>true</activeByDefault>
+ </activation>
+ <modules>
+ <module>../runtime</module>
+ </modules>
+ </profile>
+
+ <profile>
<id>site</id>
<activation>
- <property>
- <name>drools</name>
- </property>
+ <activeByDefault>true</activeByDefault>
</activation>
<modules>
- <module>../drools</module>
<module>../site</module>
</modules>
</profile>
Modified: trunk/site/category.JBossTools.xml
===================================================================
--- trunk/site/category.JBossTools.xml 2010-08-12 01:03:24 UTC (rev 24076)
+++ trunk/site/category.JBossTools.xml 2010-08-12 01:11:16 UTC (rev 24077)
@@ -1,271 +1,183 @@
<?xml version="1.0" encoding="UTF-8"?>
-<site pack200="true">
- <description>
- This is the ${update.site.description} Update Site for ${product.name} ${product.version}.
+<site>
+ <description>
+ This is the ${update.site.description} Update Site for ${product.name} ${product.version}.
</description>
-
- <!-- only in JBDS -->
- <!--
- <feature url="features/com.jboss.jbds.product.feature_${product.versionTag}.jar"
- id="com.jboss.jbds.product.feature"
- version="${product.versionTag}"
- patch="false"
- >
- <category name="AllTools" />
- </feature>
- <feature url="features/org.jboss.tools.runtime.feature_${runtime.versionTag}.jar"
- id="org.jboss.tools.runtime.feature"
- version="${runtime.versionTag}"
- patch="false"
- >
- <category name="AllTools" />
- </feature>
- -->
- <feature url="features/org.jboss.tools.richfaces.feature_0.0.0.jar"
- id="org.jboss.tools.richfaces.feature"
- version="0.0.0"
- >
- <category name="AllTools" />
- <category name="WebTools" />
- </feature>
- <feature url="features/org.jboss.tools.seam.feature_0.0.0.jar" id="org.jboss.tools.seam.feature" version="0.0.0">
- <category name="AllTools" />
- <category name="WebTools" />
- </feature>
- <feature url="features/org.jboss.tools.cdi.feature_0.0.0.jar" id="org.jboss.tools.cdi.feature" version="0.0.0">
- <category name="AllTools" />
- <category name="WebTools" />
- <category name="GeneralTools" />
- </feature>
- <feature url="features/org.jboss.tools.jmx.feature_0.0.0.jar" id="org.jboss.tools.jmx.feature" version="0.0.0">
- <category name="AllTools" />
- <category name="GeneralTools" />
- </feature>
- <feature url="features/org.jboss.ide.eclipse.as.feature_0.0.0.jar"
- id="org.jboss.ide.eclipse.as.feature"
- version="0.0.0"
- >
- <category name="AllTools" />
- <category name="WebTools" />
- </feature>
- <feature url="features/org.jboss.ide.eclipse.archives.feature_0.0.0.jar"
- id="org.jboss.ide.eclipse.archives.feature"
- version="0.0.0"
- >
- <category name="AllTools" />
- <category name="GeneralTools" />
- </feature>
- <feature url="features/org.hibernate.eclipse.feature_0.0.0.jar" id="org.hibernate.eclipse.feature" version="0.0.0">
- <category name="AllTools" />
- <category name="WebTools" />
- <category name="DataTools" />
- <category name="GeneralTools" />
- </feature>
- <feature url="features/org.jboss.ide.eclipse.freemarker.feature_0.0.0.jar"
- id="org.jboss.ide.eclipse.freemarker.feature"
- version="0.0.0"
- >
- <category name="AllTools" />
- <category name="GeneralTools" />
- </feature>
- <feature url="features/org.jboss.tools.struts.feature_0.0.0.jar"
- id="org.jboss.tools.struts.feature"
- version="0.0.0"
- >
- <category name="AllTools" />
- <category name="WebTools" />
- </feature>
- <feature url="features/org.jboss.tools.esb.feature_0.0.0.jar" id="org.jboss.tools.esb.feature" version="0.0.0">
- <category name="AllTools" />
- <category name="SOATools" />
- </feature>
- <feature url="features/org.jboss.tools.ws.feature_0.0.0.jar" id="org.jboss.tools.ws.feature" version="0.0.0">
- <category name="AllTools" />
- <category name="SOATools" />
- </feature>
- <feature url="features/org.jboss.tools.portlet.feature_0.0.0.jar"
- id="org.jboss.tools.portlet.feature"
- version="0.0.0"
- >
- <category name="AllTools" />
- <category name="WebTools" />
- </feature>
- <feature url="features/org.jboss.tools.tptp.feature_0.0.0.jar" id="org.jboss.tools.tptp.feature" version="0.0.0">
- <category name="TestPerfTools" />
- </feature>
- <feature url="features/org.jboss.tools.smooks.feature_0.0.0.jar"
- id="org.jboss.tools.smooks.feature"
- version="0.0.0"
- >
- <category name="AllTools" />
- <category name="SOATools" />
- <category name="DataTools" />
- <category name="GeneralTools" />
- </feature>
- <feature url="features/org.drools.eclipse.feature_0.0.0.jar" id="org.drools.eclipse.feature" version="0.0.0">
- <category name="AllTools" />
- <category name="SOATools" />
- <category name="GeneralTools" />
- </feature>
- <feature url="features/org.drools.eclipse.task.feature_0.0.0.jar"
- id="org.drools.eclipse.task.feature"
- version="0.0.0"
- >
- <category name="AllTools" />
- <category name="SOATools" />
- </feature>
- <feature url="features/org.guvnor.tools.feature_0.0.0.jar" id="org.guvnor.tools.feature" version="0.0.0">
- <category name="AllTools" />
- <category name="SOATools" />
- </feature>
- <feature url="features/org.jboss.tools.project.examples.feature_0.0.0.jar"
- id="org.jboss.tools.project.examples.feature"
- version="0.0.0"
- >
- <category name="AllTools" />
- <category name="GeneralTools" />
- </feature>
-
- <!-- DISABLED for now -->
- <!--
- <feature url="features/org.jboss.tools.profiler.feature_0.0.0.jar" id="org.jboss.tools.profiler.feature" version="0.0.0">
- <category name="AllTools"/>
- </feature>
- -->
-
- <!-- only in JBT -->
- <feature url="features/org.jboss.tools.community.project.examples.feature_0.0.0.jar"
- id="org.jboss.tools.community.project.examples.feature"
- version="0.0.0"
- >
- <category name="AllTools" />
- <category name="GeneralTools" />
- </feature>
- <feature url="features/org.jboss.tools.birt.feature_0.0.0.jar" id="org.jboss.tools.birt.feature" version="0.0.0">
- <category name="ReportTools" />
- </feature>
- <feature url="features/org.jboss.tools.maven.feature_0.0.0.jar" id="org.jboss.tools.maven.feature" version="0.0.0">
- <category name="MavenTools" />
- </feature>
- <feature url="features/org.jboss.tools.maven.seam.feature_0.0.0.jar"
- id="org.jboss.tools.maven.seam.feature"
- version="0.0.0"
- >
- <category name="MavenTools" />
- </feature>
- <feature url="features/org.jboss.tools.xulrunner.feature_0.0.0.jar"
- id="org.jboss.tools.xulrunner.feature"
- version="0.0.0"
- >
- <category name="AllTools" />
- <category name="WebTools" />
- </feature>
-
- <!-- TODO: enable SDK features once we can build source plugins w/ Tycho -->
- <!-- <feature url="features/org.jboss.tools.jmx.sdk.feature_0.0.0.jar" id="org.jboss.tools.jmx.sdk.feature"
- version="0.0.0"> <category name="SDKTools"/> </feature> <feature url="features/org.jboss.ide.eclipse.freemarker.sdk.feature_0.0.0.jar"
- id="org.jboss.ide.eclipse.freemarker.sdk.feature" version="0.0.0"> <category
- name="SDKTools"/> </feature> -->
- <!-- TODO: enable SDK features once we can build source plugins w/ Tycho -->
- <!-- Only in JBT -->
- <!--
- <feature url="features/org.jboss.tools.bpel.sdk.feature_0.0.0.jar"
- id="org.jboss.tools.bpel.sdk.feature" version="0.0.0"> <category name="AllTools"/>
- <category name="SOATools"/> </feature> <feature url="features/org.jboss.tools.maven.sdk.feature_0.0.0.jar"
- id="org.jboss.tools.maven.sdk.feature" version="0.0.0"> <category name="SDKTools"/>
- </feature>
- -->
-
- <!-- jBPM Tools & Flow features -->
- <feature url="features/org.jboss.tools.jbpm.convert.feature_0.0.0.jar"
- id="org.jboss.tools.jbpm.convert.feature"
- version="0.0.0"
- >
- <category name="AllTools" />
- <category name="SOATools" />
- </feature>
- <feature url="features/org.jboss.tools.jbpm.common.feature_0.0.0.jar"
- id="org.jboss.tools.jbpm.common.feature"
- version="0.0.0"
- >
- <category name="AllTools" />
- <category name="SOATools" />
- </feature>
- <feature url="features/org.jboss.tools.jbpm3.feature_0.0.0.jar" id="org.jboss.tools.jbpm3.feature" version="0.0.0">
- <category name="AllTools" />
- <category name="SOATools" />
- </feature>
- <feature url="features/org.jboss.tools.jbpm4.feature_0.0.0.jar" id="org.jboss.tools.jbpm4.feature" version="0.0.0">
- <category name="AllTools" />
- <category name="SOATools" />
- </feature>
-
- <feature url="features/org.jboss.tools.bpel.feature_0.0.0.jar" id="org.jboss.tools.bpel.feature" version="0.0.0">
- <category name="AllTools" />
- <category name="SOATools" />
- </feature>
-
- <!-- categories - see also ../../../common/aggregateRepos.*.properties -->
- <category-def name="SDKTools" label="${product.name} SDK">
- <description>${product.name} SDK contains plugins where an SDK package
- exists. These contain both source and runtimes. Use these if you want
- to debug and/or provide patches to ${product.name} plugins.
- </description>
- </category-def>
-
- <category-def name="AllTools" label="All ${product.name} ${product.version}">
- <description>
- Contains ALL the plugins that are available from
- ${product.name} except those
- related to integration with 3rd party
- plugins. Selecting this
- category will give you all tools needed for
- both Web, Seam and SOA
- Development.
+ <feature url="features/org.jboss.tools.richfaces.feature_0.0.0.jar" id="org.jboss.tools.richfaces.feature" version="0.0.0">
+ <category name="AllTools"/>
+ <category name="WebTools"/>
+ </feature>
+ <feature url="features/org.jboss.tools.seam.feature_0.0.0.jar" id="org.jboss.tools.seam.feature" version="0.0.0">
+ <category name="AllTools"/>
+ <category name="WebTools"/>
+ </feature>
+ <feature url="features/org.jboss.tools.cdi.feature_0.0.0.jar" id="org.jboss.tools.cdi.feature" version="0.0.0">
+ <category name="AllTools"/>
+ <category name="WebTools"/>
+ <category name="GeneralTools"/>
+ </feature>
+ <feature url="features/org.jboss.tools.jmx.feature_0.0.0.jar" id="org.jboss.tools.jmx.feature" version="0.0.0">
+ <category name="AllTools"/>
+ <category name="GeneralTools"/>
+ </feature>
+ <feature url="features/org.jboss.ide.eclipse.as.feature_0.0.0.jar" id="org.jboss.ide.eclipse.as.feature" version="0.0.0">
+ <category name="AllTools"/>
+ <category name="WebTools"/>
+ </feature>
+ <feature url="features/org.jboss.ide.eclipse.archives.feature_0.0.0.jar" id="org.jboss.ide.eclipse.archives.feature" version="0.0.0">
+ <category name="AllTools"/>
+ <category name="GeneralTools"/>
+ </feature>
+ <feature url="features/org.hibernate.eclipse.feature_0.0.0.jar" id="org.hibernate.eclipse.feature" version="0.0.0">
+ <category name="AllTools"/>
+ <category name="WebTools"/>
+ <category name="DataTools"/>
+ <category name="GeneralTools"/>
+ </feature>
+ <feature url="features/org.jboss.ide.eclipse.freemarker.feature_0.0.0.jar" id="org.jboss.ide.eclipse.freemarker.feature" version="0.0.0">
+ <category name="AllTools"/>
+ <category name="GeneralTools"/>
+ </feature>
+ <feature url="features/org.jboss.tools.struts.feature_0.0.0.jar" id="org.jboss.tools.struts.feature" version="0.0.0">
+ <category name="AllTools"/>
+ <category name="WebTools"/>
+ </feature>
+ <feature url="features/org.jboss.tools.esb.feature_0.0.0.jar" id="org.jboss.tools.esb.feature" version="0.0.0">
+ <category name="AllTools"/>
+ <category name="SOATools"/>
+ </feature>
+ <feature url="features/org.jboss.tools.ws.feature_0.0.0.jar" id="org.jboss.tools.ws.feature" version="0.0.0">
+ <category name="AllTools"/>
+ <category name="SOATools"/>
+ </feature>
+ <feature url="features/org.jboss.tools.portlet.feature_0.0.0.jar" id="org.jboss.tools.portlet.feature" version="0.0.0">
+ <category name="AllTools"/>
+ <category name="WebTools"/>
+ </feature>
+ <feature url="features/org.jboss.tools.tptp.feature_0.0.0.jar" id="org.jboss.tools.tptp.feature" version="0.0.0">
+ <category name="TestPerfTools"/>
+ </feature>
+ <feature url="features/org.jboss.tools.smooks.feature_0.0.0.jar" id="org.jboss.tools.smooks.feature" version="0.0.0">
+ <category name="AllTools"/>
+ <category name="SOATools"/>
+ <category name="DataTools"/>
+ <category name="GeneralTools"/>
+ </feature>
+ <feature url="features/org.drools.eclipse.feature_0.0.0.jar" id="org.drools.eclipse.feature" version="0.0.0">
+ <category name="AllTools"/>
+ <category name="SOATools"/>
+ <category name="GeneralTools"/>
+ </feature>
+ <feature url="features/org.drools.eclipse.task.feature_0.0.0.jar" id="org.drools.eclipse.task.feature" version="0.0.0">
+ <category name="AllTools"/>
+ <category name="SOATools"/>
+ </feature>
+ <feature url="features/org.guvnor.tools.feature_0.0.0.jar" id="org.guvnor.tools.feature" version="0.0.0">
+ <category name="AllTools"/>
+ <category name="SOATools"/>
+ </feature>
+ <feature url="features/org.jboss.tools.project.examples.feature_0.0.0.jar" id="org.jboss.tools.project.examples.feature" version="0.0.0">
+ <category name="AllTools"/>
+ <category name="GeneralTools"/>
+ </feature>
+ <feature url="features/org.jboss.tools.community.project.examples.feature_0.0.0.jar" id="org.jboss.tools.community.project.examples.feature" version="0.0.0">
+ <category name="AllTools"/>
+ <category name="GeneralTools"/>
+ </feature>
+ <feature url="features/org.jboss.tools.birt.feature_0.0.0.jar" id="org.jboss.tools.birt.feature" version="0.0.0">
+ <category name="ReportTools"/>
+ </feature>
+ <feature url="features/org.jboss.tools.maven.feature_0.0.0.jar" id="org.jboss.tools.maven.feature" version="0.0.0">
+ <category name="MavenTools"/>
+ </feature>
+ <feature url="features/org.jboss.tools.maven.seam.feature_0.0.0.jar" id="org.jboss.tools.maven.seam.feature" version="0.0.0">
+ <category name="MavenTools"/>
+ </feature>
+ <feature url="features/org.jboss.tools.xulrunner.feature_0.0.0.jar" id="org.jboss.tools.xulrunner.feature" version="0.0.0">
+ <category name="AllTools"/>
+ <category name="WebTools"/>
+ </feature>
+ <feature url="features/org.jboss.tools.jbpm.convert.feature_0.0.0.jar" id="org.jboss.tools.jbpm.convert.feature" version="0.0.0">
+ <category name="AllTools"/>
+ <category name="SOATools"/>
+ </feature>
+ <feature url="features/org.jboss.tools.jbpm.common.feature_0.0.0.jar" id="org.jboss.tools.jbpm.common.feature" version="0.0.0">
+ <category name="AllTools"/>
+ <category name="SOATools"/>
+ </feature>
+ <feature url="features/org.jboss.tools.jbpm3.feature_0.0.0.jar" id="org.jboss.tools.jbpm3.feature" version="0.0.0">
+ <category name="AllTools"/>
+ <category name="SOATools"/>
+ </feature>
+ <feature url="features/org.jboss.tools.jbpm4.feature_0.0.0.jar" id="org.jboss.tools.jbpm4.feature" version="0.0.0">
+ <category name="AllTools"/>
+ <category name="SOATools"/>
+ </feature>
+ <feature url="features/org.jboss.tools.bpel.feature_0.0.0.jar" id="org.jboss.tools.bpel.feature" version="0.0.0">
+ <category name="AllTools"/>
+ <category name="SOATools"/>
+ </feature>
+ <feature url="features/org.jboss.tools.runtime.feature_0.0.0.jar" id="org.jboss.tools.runtime.feature" version="0.0.0">
+ <category name="AllTools"/>
+ </feature>
+ <category-def name="SDKTools" label="${product.name} SDK">
+ <description>
+ ${product.name} SDK contains plugins where an SDK package
+ exists. These contain both source and runtimes. Use these if you want
+ to debug and/or provide patches to ${product.name} plugins.
</description>
- </category-def>
-
- <category-def name="SOATools" label="SOA Development">
- <description>
- Tools to help create SOA applications. Use these if you
- work with jBPM,
- Drools, JBoss ESB, JBoss WebServices or Smooks.
- </description>
- </category-def>
-
- <category-def name="WebTools" label="Web and Java EE Development">
- <description>
- Tools to help create web and enterprise applications,
- using JSF, Facelets,
- Seam, Hibernate/JPA, CSS, Webservices and more.
- </description>
- </category-def>
-
- <category-def name="GeneralTools" label="Application Development">
- <description>Tools for general application development.</description>
- </category-def>
-
- <category-def name="DataTools" label="Data Services">
- <description>Tools related to data services such as persistence and
- transformation.</description>
- </category-def>
-
- <!-- Only in JBT -->
- <category-def name="MavenTools" label="Maven Support">
- <description>Plugins related to Maven and m2eclipse support. Use these
- to enable use of Maven.</description>
- </category-def>
-
- <!-- Only in JBT -->
- <category-def name="ReportTools" label="Business Intelligence, Reporting and Charting">
- <description>Business Intelligence, Reporting and Charting. Use these
- if you plan to integrate Hibernate or Seam with Eclipse BIRT.
- </description>
- </category-def>
-
- <category-def name="TestPerfTools" label="Test and Performance">
- <description>Tools used to improve testing and performance.
- </description>
- </category-def>
-
+ </category-def>
+ <category-def name="AllTools" label="All ${product.name} ${product.version}">
+ <description>
+ Contains ALL the plugins that are available from
+ ${product.name} except those
+ related to integration with 3rd party
+ plugins. Selecting this
+ category will give you all tools needed for
+ both Web, Seam and SOA
+ Development.
+ </description>
+ </category-def>
+ <category-def name="SOATools" label="SOA Development">
+ <description>
+ Tools to help create SOA applications. Use these if you
+ work with jBPM,
+ Drools, JBoss ESB, JBoss WebServices or Smooks.
+ </description>
+ </category-def>
+ <category-def name="WebTools" label="Web and Java EE Development">
+ <description>
+ Tools to help create web and enterprise applications,
+ using JSF, Facelets,
+ Seam, Hibernate/JPA, CSS, Webservices and more.
+ </description>
+ </category-def>
+ <category-def name="GeneralTools" label="Application Development">
+ <description>
+ Tools for general application development.
+ </description>
+ </category-def>
+ <category-def name="DataTools" label="Data Services">
+ <description>
+ Tools related to data services such as persistence and
+ transformation.
+ </description>
+ </category-def>
+ <category-def name="MavenTools" label="Maven Support">
+ <description>
+ Plugins related to Maven and m2eclipse support. Use these
+ to enable use of Maven.
+ </description>
+ </category-def>
+ <category-def name="ReportTools" label="Business Intelligence, Reporting and Charting">
+ <description>
+ Business Intelligence, Reporting and Charting. Use these
+ if you plan to integrate Hibernate or Seam with Eclipse BIRT.
+ </description>
+ </category-def>
+ <category-def name="TestPerfTools" label="Test and Performance">
+ <description>
+ Tools used to improve testing and performance.
+ </description>
+ </category-def>
</site>
Modified: trunk/site/site.xml
===================================================================
--- trunk/site/site.xml 2010-08-12 01:03:24 UTC (rev 24076)
+++ trunk/site/site.xml 2010-08-12 01:11:16 UTC (rev 24077)
@@ -1,312 +1,199 @@
<?xml version="1.0" encoding="UTF-8"?>
-<site pack200="true">
- <description>
- This is the Nightly Build Update Site for JBoss Tools 3.2.0.
+<site>
+ <description>
+ This is the Nightly Build Update Site for JBoss Tools 3.2.0.
</description>
-
- <!-- only in JBDS -->
- <!--
- <feature url="features/com.jboss.jbds.product.feature_0.0.0.jar"
- id="com.jboss.jbds.product.feature"
- version="0.0.0"
- patch="false"
- >
- <category name="AllTools" />
- </feature>
- <feature url="features/org.jboss.tools.runtime.feature_0.0.0.jar"
- id="org.jboss.tools.runtime.feature"
- version="0.0.0"
- patch="false"
- >
- <category name="AllTools" />
- </feature>
- -->
- <feature url="features/org.jboss.tools.richfaces.feature_0.0.0.jar"
- id="org.jboss.tools.richfaces.feature"
- version="0.0.0"
- >
- <category name="AllTools" />
- <category name="WebTools" />
- </feature>
- <feature url="features/org.jboss.tools.seam.feature_0.0.0.jar" id="org.jboss.tools.seam.feature" version="0.0.0">
- <category name="AllTools" />
- <category name="WebTools" />
- </feature>
- <feature url="features/org.jboss.tools.cdi.feature_0.0.0.jar" id="org.jboss.tools.cdi.feature" version="0.0.0">
- <category name="AllTools" />
- <category name="WebTools" />
- <category name="GeneralTools" />
- </feature>
- <feature url="features/org.jboss.tools.jmx.feature_0.0.0.jar" id="org.jboss.tools.jmx.feature" version="0.0.0">
- <category name="AllTools" />
- <category name="GeneralTools" />
- </feature>
- <feature url="features/org.jboss.ide.eclipse.as.feature_0.0.0.jar"
- id="org.jboss.ide.eclipse.as.feature"
- version="0.0.0"
- >
- <category name="AllTools" />
- <category name="WebTools" />
- </feature>
- <feature url="features/org.jboss.ide.eclipse.archives.feature_0.0.0.jar"
- id="org.jboss.ide.eclipse.archives.feature"
- version="0.0.0"
- >
- <category name="AllTools" />
- <category name="GeneralTools" />
- </feature>
- <feature url="features/org.hibernate.eclipse.feature_0.0.0.jar" id="org.hibernate.eclipse.feature" version="0.0.0">
- <category name="AllTools" />
- <category name="WebTools" />
- <category name="DataTools" />
- <category name="GeneralTools" />
- </feature>
- <feature url="features/org.jboss.ide.eclipse.freemarker.feature_0.0.0.jar"
- id="org.jboss.ide.eclipse.freemarker.feature"
- version="0.0.0"
- >
- <category name="AllTools" />
- <category name="GeneralTools" />
- </feature>
- <feature url="features/org.jboss.tools.struts.feature_0.0.0.jar"
- id="org.jboss.tools.struts.feature"
- version="0.0.0"
- >
- <category name="AllTools" />
- <category name="WebTools" />
- </feature>
- <feature url="features/org.jboss.tools.esb.feature_0.0.0.jar" id="org.jboss.tools.esb.feature" version="0.0.0">
- <category name="AllTools" />
- <category name="SOATools" />
- </feature>
- <feature url="features/org.jboss.tools.ws.feature_0.0.0.jar" id="org.jboss.tools.ws.feature" version="0.0.0">
- <category name="AllTools" />
- <category name="SOATools" />
- </feature>
- <feature url="features/org.jboss.tools.portlet.feature_0.0.0.jar"
- id="org.jboss.tools.portlet.feature"
- version="0.0.0"
- >
- <category name="AllTools" />
- <category name="WebTools" />
- </feature>
- <feature url="features/org.jboss.tools.tptp.feature_0.0.0.jar" id="org.jboss.tools.tptp.feature" version="0.0.0">
- <category name="TestPerfTools" />
- </feature>
- <feature url="features/org.jboss.tools.smooks.feature_0.0.0.jar"
- id="org.jboss.tools.smooks.feature"
- version="0.0.0"
- >
- <category name="AllTools" />
- <category name="SOATools" />
- <category name="DataTools" />
- <category name="GeneralTools" />
- </feature>
- <feature url="features/org.drools.eclipse.feature_0.0.0.jar" id="org.drools.eclipse.feature" version="0.0.0">
- <category name="AllTools" />
- <category name="SOATools" />
- <category name="GeneralTools" />
- </feature>
- <feature url="features/org.drools.eclipse.task.feature_0.0.0.jar"
- id="org.drools.eclipse.task.feature"
- version="0.0.0"
- >
- <category name="AllTools" />
- <category name="SOATools" />
- </feature>
- <feature url="features/org.guvnor.tools.feature_0.0.0.jar" id="org.guvnor.tools.feature" version="0.0.0">
- <category name="AllTools" />
- <category name="SOATools" />
- </feature>
- <feature url="features/org.jboss.tools.project.examples.feature_0.0.0.jar"
- id="org.jboss.tools.project.examples.feature"
- version="0.0.0"
- >
- <category name="AllTools" />
- <category name="GeneralTools" />
- </feature>
-
- <!-- DISABLED for now -->
- <!--
- <feature url="features/org.jboss.tools.profiler.feature_0.0.0.jar" id="org.jboss.tools.profiler.feature" version="0.0.0">
- <category name="AllTools"/>
- </feature>
- -->
-
- <!-- only in JBT -->
- <feature url="features/org.jboss.tools.community.project.examples.feature_0.0.0.jar"
- id="org.jboss.tools.community.project.examples.feature"
- version="0.0.0"
- >
- <category name="AllTools" />
- <category name="GeneralTools" />
- </feature>
- <feature url="features/org.jboss.tools.birt.feature_0.0.0.jar" id="org.jboss.tools.birt.feature" version="0.0.0">
- <category name="ReportTools" />
- </feature>
- <feature url="features/org.jboss.tools.maven.feature_0.0.0.jar" id="org.jboss.tools.maven.feature" version="0.0.0">
- <category name="MavenTools" />
- </feature>
- <feature url="features/org.jboss.tools.maven.seam.feature_0.0.0.jar"
- id="org.jboss.tools.maven.seam.feature"
- version="0.0.0"
- >
- <category name="MavenTools" />
- </feature>
- <feature url="features/org.jboss.tools.maven.jsf.feature_0.0.0.jar"
- id="org.jboss.tools.maven.jsf.feature"
- version="0.0.0"
- >
- <category name="MavenTools" />
- </feature>
- <feature url="features/org.jboss.tools.maven.cdi.feature_0.0.0.jar"
- id="org.jboss.tools.maven.cdi.feature"
- version="0.0.0">
- <category name="MavenTools" />
- </feature>
- <feature url="features/org.jboss.tools.maven.hibernate.feature_0.0.0.jar"
- id="org.jboss.tools.maven.hibernate.feature"
- version="0.0.0">
- <category name="MavenTools" />
- </feature>
- <feature url="features/org.jboss.tools.maven.portlet.feature_0.0.0.jar"
- id="org.jboss.tools.maven.portlet.feature"
- version="0.0.0">
- <category name="MavenTools" />
- </feature>
-
- <feature url="features/org.jboss.tools.xulrunner.feature_0.0.0.jar"
- id="org.jboss.tools.xulrunner.feature"
- version="0.0.0"
- >
- <category name="AllTools" />
- <category name="WebTools" />
- </feature>
-
- <!-- TODO: enable SDK features once we can build source plugins w/ Tycho -->
- <!-- <feature url="features/org.jboss.tools.jmx.sdk.feature_0.0.0.jar" id="org.jboss.tools.jmx.sdk.feature"
- version="0.0.0"> <category name="SDKTools"/> </feature> <feature url="features/org.jboss.ide.eclipse.freemarker.sdk.feature_0.0.0.jar"
- id="org.jboss.ide.eclipse.freemarker.sdk.feature" version="0.0.0"> <category
- name="SDKTools"/> </feature> -->
- <!-- TODO: enable SDK features once we can build source plugins w/ Tycho -->
- <!-- Only in JBT -->
- <!--
- <feature url="features/org.jboss.tools.bpel.sdk.feature_0.0.0.jar"
- id="org.jboss.tools.bpel.sdk.feature" version="0.0.0"> <category name="AllTools"/>
- <category name="SOATools"/> </feature> <feature url="features/org.jboss.tools.maven.sdk.feature_0.0.0.jar"
- id="org.jboss.tools.maven.sdk.feature" version="0.0.0"> <category name="SDKTools"/>
- </feature>
- -->
-
- <!-- jBPM Tools & Flow features -->
- <feature url="features/org.jboss.tools.jbpm.convert.feature_0.0.0.jar"
- id="org.jboss.tools.jbpm.convert.feature"
- version="0.0.0"
- >
- <category name="AllTools" />
- <category name="SOATools" />
- </feature>
- <feature url="features/org.jboss.tools.jbpm.common.feature_0.0.0.jar"
- id="org.jboss.tools.jbpm.common.feature"
- version="0.0.0"
- >
- <category name="AllTools" />
- <category name="SOATools" />
- </feature>
- <feature url="features/org.jboss.tools.jbpm3.feature_0.0.0.jar" id="org.jboss.tools.jbpm3.feature" version="0.0.0">
- <category name="AllTools" />
- <category name="SOATools" />
- </feature>
- <feature url="features/org.jboss.tools.jbpm4.feature_0.0.0.jar" id="org.jboss.tools.jbpm4.feature" version="0.0.0">
- <category name="AllTools" />
- <category name="SOATools" />
- </feature>
-
- <feature url="features/org.jboss.tools.bpel.feature_0.0.0.jar" id="org.jboss.tools.bpel.feature" version="0.0.0">
- <category name="AllTools" />
- <category name="SOATools" />
- </feature>
-
- <feature url="features/org.jboss.tools.modeshape.rest.feature_0.0.0.jar" id="org.jboss.tools.modeshape.rest.feature" version="0.0.0">
- <category name="AllTools" />
- <category name="GeneralTools" />
- </feature>
-
- <!-- categories - see also ../../../common/aggregateRepos.*.properties -->
- <category-def name="SDKTools" label="JBoss Tools SDK">
- <description>JBoss Tools SDK contains plugins where an SDK package
- exists. These contain both source and runtimes. Use these if you want
- to debug and/or provide patches to JBoss Tools plugins.
- </description>
- </category-def>
-
- <category-def name="AllTools" label="All JBoss Tools 3.2.0">
- <description>
- Contains ALL the plugins that are available from
- JBoss Tools except those
- related to integration with 3rd party
- plugins. Selecting this
- category will give you all tools needed for
- both Web, Seam and SOA
- Development.
+ <feature url="features/org.jboss.tools.richfaces.feature_0.0.0.jar" id="org.jboss.tools.richfaces.feature" version="0.0.0">
+ <category name="AllTools"/>
+ <category name="WebTools"/>
+ </feature>
+ <feature url="features/org.jboss.tools.seam.feature_0.0.0.jar" id="org.jboss.tools.seam.feature" version="0.0.0">
+ <category name="AllTools"/>
+ <category name="WebTools"/>
+ </feature>
+ <feature url="features/org.jboss.tools.cdi.feature_0.0.0.jar" id="org.jboss.tools.cdi.feature" version="0.0.0">
+ <category name="AllTools"/>
+ <category name="WebTools"/>
+ <category name="GeneralTools"/>
+ </feature>
+ <feature url="features/org.jboss.tools.jmx.feature_0.0.0.jar" id="org.jboss.tools.jmx.feature" version="0.0.0">
+ <category name="AllTools"/>
+ <category name="GeneralTools"/>
+ </feature>
+ <feature url="features/org.jboss.ide.eclipse.as.feature_0.0.0.jar" id="org.jboss.ide.eclipse.as.feature" version="0.0.0">
+ <category name="AllTools"/>
+ <category name="WebTools"/>
+ </feature>
+ <feature url="features/org.jboss.ide.eclipse.archives.feature_0.0.0.jar" id="org.jboss.ide.eclipse.archives.feature" version="0.0.0">
+ <category name="AllTools"/>
+ <category name="GeneralTools"/>
+ </feature>
+ <feature url="features/org.hibernate.eclipse.feature_0.0.0.jar" id="org.hibernate.eclipse.feature" version="0.0.0">
+ <category name="AllTools"/>
+ <category name="WebTools"/>
+ <category name="DataTools"/>
+ <category name="GeneralTools"/>
+ </feature>
+ <feature url="features/org.jboss.ide.eclipse.freemarker.feature_0.0.0.jar" id="org.jboss.ide.eclipse.freemarker.feature" version="0.0.0">
+ <category name="AllTools"/>
+ <category name="GeneralTools"/>
+ </feature>
+ <feature url="features/org.jboss.tools.struts.feature_0.0.0.jar" id="org.jboss.tools.struts.feature" version="0.0.0">
+ <category name="AllTools"/>
+ <category name="WebTools"/>
+ </feature>
+ <feature url="features/org.jboss.tools.esb.feature_0.0.0.jar" id="org.jboss.tools.esb.feature" version="0.0.0">
+ <category name="AllTools"/>
+ <category name="SOATools"/>
+ </feature>
+ <feature url="features/org.jboss.tools.ws.feature_0.0.0.jar" id="org.jboss.tools.ws.feature" version="0.0.0">
+ <category name="AllTools"/>
+ <category name="SOATools"/>
+ </feature>
+ <feature url="features/org.jboss.tools.portlet.feature_0.0.0.jar" id="org.jboss.tools.portlet.feature" version="0.0.0">
+ <category name="AllTools"/>
+ <category name="WebTools"/>
+ </feature>
+ <feature url="features/org.jboss.tools.tptp.feature_0.0.0.jar" id="org.jboss.tools.tptp.feature" version="0.0.0">
+ <category name="TestPerfTools"/>
+ </feature>
+ <feature url="features/org.jboss.tools.smooks.feature_0.0.0.jar" id="org.jboss.tools.smooks.feature" version="0.0.0">
+ <category name="AllTools"/>
+ <category name="SOATools"/>
+ <category name="DataTools"/>
+ <category name="GeneralTools"/>
+ </feature>
+ <feature url="features/org.drools.eclipse.feature_0.0.0.jar" id="org.drools.eclipse.feature" version="0.0.0">
+ <category name="AllTools"/>
+ <category name="SOATools"/>
+ <category name="GeneralTools"/>
+ </feature>
+ <feature url="features/org.drools.eclipse.task.feature_0.0.0.jar" id="org.drools.eclipse.task.feature" version="0.0.0">
+ <category name="AllTools"/>
+ <category name="SOATools"/>
+ </feature>
+ <feature url="features/org.guvnor.tools.feature_0.0.0.jar" id="org.guvnor.tools.feature" version="0.0.0">
+ <category name="AllTools"/>
+ <category name="SOATools"/>
+ </feature>
+ <feature url="features/org.jboss.tools.project.examples.feature_0.0.0.jar" id="org.jboss.tools.project.examples.feature" version="0.0.0">
+ <category name="AllTools"/>
+ <category name="GeneralTools"/>
+ </feature>
+ <feature url="features/org.jboss.tools.community.project.examples.feature_0.0.0.jar" id="org.jboss.tools.community.project.examples.feature" version="0.0.0">
+ <category name="AllTools"/>
+ <category name="GeneralTools"/>
+ </feature>
+ <feature url="features/org.jboss.tools.birt.feature_0.0.0.jar" id="org.jboss.tools.birt.feature" version="0.0.0">
+ <category name="ReportTools"/>
+ </feature>
+ <feature url="features/org.jboss.tools.maven.feature_0.0.0.jar" id="org.jboss.tools.maven.feature" version="0.0.0">
+ <category name="MavenTools"/>
+ </feature>
+ <feature url="features/org.jboss.tools.maven.seam.feature_0.0.0.jar" id="org.jboss.tools.maven.seam.feature" version="0.0.0">
+ <category name="MavenTools"/>
+ </feature>
+ <feature url="features/org.jboss.tools.maven.jsf.feature_0.0.0.jar" id="org.jboss.tools.maven.jsf.feature" version="0.0.0">
+ <category name="MavenTools"/>
+ </feature>
+ <feature url="features/org.jboss.tools.maven.cdi.feature_0.0.0.jar" id="org.jboss.tools.maven.cdi.feature" version="0.0.0">
+ <category name="MavenTools"/>
+ </feature>
+ <feature url="features/org.jboss.tools.maven.hibernate.feature_0.0.0.jar" id="org.jboss.tools.maven.hibernate.feature" version="0.0.0">
+ <category name="MavenTools"/>
+ </feature>
+ <feature url="features/org.jboss.tools.maven.portlet.feature_0.0.0.jar" id="org.jboss.tools.maven.portlet.feature" version="0.0.0">
+ <category name="MavenTools"/>
+ </feature>
+ <feature url="features/org.jboss.tools.xulrunner.feature_0.0.0.jar" id="org.jboss.tools.xulrunner.feature" version="0.0.0">
+ <category name="AllTools"/>
+ <category name="WebTools"/>
+ </feature>
+ <feature url="features/org.jboss.tools.jbpm.convert.feature_0.0.0.jar" id="org.jboss.tools.jbpm.convert.feature" version="0.0.0">
+ <category name="AllTools"/>
+ <category name="SOATools"/>
+ </feature>
+ <feature url="features/org.jboss.tools.jbpm.common.feature_0.0.0.jar" id="org.jboss.tools.jbpm.common.feature" version="0.0.0">
+ <category name="AllTools"/>
+ <category name="SOATools"/>
+ </feature>
+ <feature url="features/org.jboss.tools.jbpm3.feature_0.0.0.jar" id="org.jboss.tools.jbpm3.feature" version="0.0.0">
+ <category name="AllTools"/>
+ <category name="SOATools"/>
+ </feature>
+ <feature url="features/org.jboss.tools.jbpm4.feature_0.0.0.jar" id="org.jboss.tools.jbpm4.feature" version="0.0.0">
+ <category name="AllTools"/>
+ <category name="SOATools"/>
+ </feature>
+ <feature url="features/org.jboss.tools.bpel.feature_0.0.0.jar" id="org.jboss.tools.bpel.feature" version="0.0.0">
+ <category name="AllTools"/>
+ <category name="SOATools"/>
+ </feature>
+ <feature url="features/org.jboss.tools.modeshape.rest.feature_0.0.0.jar" id="org.jboss.tools.modeshape.rest.feature" version="0.0.0">
+ <category name="AllTools"/>
+ <category name="GeneralTools"/>
+ </feature>
+ <feature url="features/org.jboss.tools.runtime.feature_0.0.0.jar" id="org.jboss.tools.runtime.feature" version="0.0.0">
+ <category name="AllTools"/>
+ </feature>
+ <category-def name="SDKTools" label="JBoss Tools SDK">
+ <description>
+ JBoss Tools SDK contains plugins where an SDK package
+ exists. These contain both source and runtimes. Use these if you want
+ to debug and/or provide patches to JBoss Tools plugins.
</description>
- </category-def>
-
- <category-def name="SOATools" label="SOA Development">
- <description>
- Tools to help create SOA applications. Use these if you
- work with jBPM,
- Drools, JBoss ESB, JBoss WebServices or Smooks.
- </description>
- </category-def>
-
- <category-def name="WebTools" label="Web and Java EE Development">
- <description>
- Tools to help create web and enterprise applications,
- using JSF, Facelets,
- Seam, Hibernate/JPA, CSS, Webservices and more.
- </description>
- </category-def>
-
- <category-def name="GeneralTools" label="Application Development">
- <description>Tools for general application development.</description>
- </category-def>
-
- <category-def name="DataTools" label="Data Services">
- <description>Tools related to data services such as persistence and
- transformation.</description>
- </category-def>
-
- <!-- Only in JBT -->
- <category-def name="MavenTools" label="Maven Support">
- <description>Plugins related to Maven and m2eclipse support. Use these
- to enable use of Maven.</description>
- </category-def>
-
- <!-- Only in JBT -->
- <category-def name="ReportTools" label="Business Intelligence, Reporting and Charting">
- <description>Business Intelligence, Reporting and Charting. Use these
- if you plan to integrate Hibernate or Seam with Eclipse BIRT.
- </description>
- </category-def>
-
- <category-def name="TestPerfTools" label="Test and Performance">
- <description>Tools used to improve testing and performance.
- </description>
- </category-def>
-
- <!-- removed temporarily because teiid doesn't work w/ Eclipse 3.6. yet.
- <feature url="features/org.teiid.datatools.connectivity.feature_0.0.0.jar" id="org.teiid.datatools.connectivity.feature" version="0.0.0">
- <category name="AllTools" />
- <category name="DataTools" />
- </feature>
- <feature url="features/org.teiid.designer.feature_0.0.0.jar" id="org.teiid.designer.feature" version="0.0.0">
- <category name="AllTools" />
- <category name="DataTools" />
- </feature>
- <feature url="features/org.teiid.designer.runtime.feature_0.0.0.jar" id="org.teiid.designer.runtime.feature" version="0.0.0">
- <category name="AllTools" />
- <category name="DataTools" />
- </feature>
- -->
+ </category-def>
+ <category-def name="AllTools" label="All JBoss Tools 3.2.0">
+ <description>
+ Contains ALL the plugins that are available from
+ JBoss Tools except those
+ related to integration with 3rd party
+ plugins. Selecting this
+ category will give you all tools needed for
+ both Web, Seam and SOA
+ Development.
+ </description>
+ </category-def>
+ <category-def name="SOATools" label="SOA Development">
+ <description>
+ Tools to help create SOA applications. Use these if you
+ work with jBPM,
+ Drools, JBoss ESB, JBoss WebServices or Smooks.
+ </description>
+ </category-def>
+ <category-def name="WebTools" label="Web and Java EE Development">
+ <description>
+ Tools to help create web and enterprise applications,
+ using JSF, Facelets,
+ Seam, Hibernate/JPA, CSS, Webservices and more.
+ </description>
+ </category-def>
+ <category-def name="GeneralTools" label="Application Development">
+ <description>
+ Tools for general application development.
+ </description>
+ </category-def>
+ <category-def name="DataTools" label="Data Services">
+ <description>
+ Tools related to data services such as persistence and
+ transformation.
+ </description>
+ </category-def>
+ <category-def name="MavenTools" label="Maven Support">
+ <description>
+ Plugins related to Maven and m2eclipse support. Use these
+ to enable use of Maven.
+ </description>
+ </category-def>
+ <category-def name="ReportTools" label="Business Intelligence, Reporting and Charting">
+ <description>
+ Business Intelligence, Reporting and Charting. Use these
+ if you plan to integrate Hibernate or Seam with Eclipse BIRT.
+ </description>
+ </category-def>
+ <category-def name="TestPerfTools" label="Test and Performance">
+ <description>
+ Tools used to improve testing and performance.
+ </description>
+ </category-def>
</site>
15 years, 8 months
JBoss Tools SVN: r24076 - trunk/build.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2010-08-11 21:03:24 -0400 (Wed, 11 Aug 2010)
New Revision: 24076
Modified:
trunk/build/pom.xml
Log:
build/pom.xml errors are fixed:
-profiler and struts profiles included modules
Modified: trunk/build/pom.xml
===================================================================
--- trunk/build/pom.xml 2010-08-11 23:09:56 UTC (rev 24075)
+++ trunk/build/pom.xml 2010-08-12 01:03:24 UTC (rev 24076)
@@ -272,7 +272,7 @@
<activeByDefault>true</activeByDefault>
</activation>
<modules>
- <module>../jsf</module>
+ <module>../struts</module>
</modules>
</profile>
@@ -294,7 +294,7 @@
<activeByDefault>true</activeByDefault>
</activation>
<modules>
- <module>../portlet</module>
+ <module>../profiler</module>
</modules>
</profile>
@@ -463,7 +463,7 @@
<activeByDefault>true</activeByDefault>
</activation>
<modules>
- <module>../ws</module>
+ <module>../tptp</module>
</modules>
</profile>
15 years, 8 months