JBoss Tools SVN: r44621 - trunk/build/scripts.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2012-10-26 16:37:23 -0400 (Fri, 26 Oct 2012)
New Revision: 44621
Removed:
trunk/build/scripts/checkout.sh
Log:
remove checkout.sh script -- moved to https://github.com/jbosstools/jbosstools-build/blob/master/scripts/checko...
Deleted: trunk/build/scripts/checkout.sh
===================================================================
--- trunk/build/scripts/checkout.sh 2012-10-25 05:24:14 UTC (rev 44620)
+++ trunk/build/scripts/checkout.sh 2012-10-26 20:37:23 UTC (rev 44621)
@@ -1,100 +0,0 @@
-#!/bin/bash
-
-if [[ $# -lt 1 ]]; then
- echo "Usage: $0 <moduleName> [-b branch (assumes master if omitted)] [-n|--no-upstream]"
- echo "Example: $0 openshift"
- echo "Example: $0 openshift -b jbosstools-4.0.x -n"
- exit 1;
-fi
-
-dbg=":" # debug off
-#dbg="echo -e" # debug on
-debug ()
-{
- $dbg "${grey}${1}${norm}"
-}
-
-moduleName=""
-branch="master"
-noUpstreamClone=0
-
-# colours!
-norm="\033[0;39m";
-grey="\033[1;30m";
-green="\033[1;32m";
-brown="\033[0;33m";
-yellow="\033[1;33m";
-blue="\033[1;34m";
-cyan="\033[1;36m";
-red="\033[1;31m";
-
-# read commandline args
-while [[ "$#" -gt 0 ]]; do
- case $1 in
- '-n'|'--no-upstream') noUpstreamClone=1;;
- '-b') branch="$2"; shift 1;;
- *) moduleName="$1";;
- esac
- shift 1
-done
-
-# TODO: make this actually delete or update; rather than just echoing
-readOp ()
-{
- echo -e "There is already a folder in this directory called ${blue}${module}${norm}. Would you like to ${red}DELETE${norm} (d), ${yellow}UPDATE${norm} (u), or ${green}SKIP${norm} (s)?"
- read op
- case $op in
- 'd'|'DELETE') echo " >> rm -fr ./${module}; git clone git@github.com:jbosstools/jbosstools-${module}.git";;
- 'u'|'UPDATE') echo " >> cd ${module}; git pull; git checkout ${branch}; cd -";;
- 's'|'SKIP') debug "Module ${module} skipped.";;
- *) readOp;;
- esac
-}
-
-# TODO: make this actually fetch instead of just echoing
-gitClone ()
-{
- module=$1
- if [[ -d ${module} ]]; then
- readOp;
- else
- echo " >> git clone git@github.com:jbosstools/jbosstools-${module}.git"
- fi
-
-}
-
-# parse
-gitCloneUpstream ()
-{
- if [[ -f ${moduleName}/pom.xml ]]; then
- SEQ=/usr/bin/seq
- a=( $( cat ${moduleName}/pom.xml ) )
- for i in $($SEQ 0 $((${#a[@]} - 1))); do
- line="${a[$i]}"
- if [[ ${line//<id>bootstrap<\/id>} != $line ]]; then # begin processing actual content
- #debug "Found bootstrap entry on line $i: $line"
- i=$(( $i + 1 )); nextLine="${a[$i]}";
- while [[ ${nextLine//\/modules} == ${nextLine} ]]; do # collect upstream repos
- nextModule=$nextLine
- if [[ ${nextModule//module>} != ${nextModule} ]]; then # want this one
- nextModule=$(echo ${nextModule} | sed -e "s#<module>../\(.\+\)</module>#\1#")
- gitClone $nextModule
- fi
- i=$(( $i + 1 )); nextLine="${a[$i]}"
- done
- fi
- done
- else
- debug "File ${moduleName}/pom.xml not found in current directory. Did the previous step fail to git clone?"
- fi
-}
-
-if [[ ${noUpstreamClone} == "1" ]]; then
- debug "Fetching module ${moduleName} from branch ${branch} (no upstream modules will be fetched) ..."
- gitClone ${moduleName}
-else
- debug "Fetching module ${moduleName} from branch ${branch} (and upstream modules) ..."
- gitClone ${moduleName}
- # next step will only do something useful if the previous step completed; without it there's no ${moduleName}/pom.xml to parse
- gitCloneUpstream ${moduleName}
-fi
12 years, 1 month
JBoss Tools SVN: r44620 - in trunk: build and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2012-10-25 01:24:14 -0400 (Thu, 25 Oct 2012)
New Revision: 44620
Removed:
trunk/bootstrap-pom.xml
trunk/build.xml
trunk/build/pom-soa-tooling.xml
trunk/build/pom.xml
trunk/pom.xml
Log:
purge deprecated cruft (JBIDE-12475)
Deleted: trunk/bootstrap-pom.xml
===================================================================
--- trunk/bootstrap-pom.xml 2012-10-25 05:19:24 UTC (rev 44619)
+++ trunk/bootstrap-pom.xml 2012-10-25 05:24:14 UTC (rev 44620)
@@ -1,30 +0,0 @@
-<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>
- <groupId>org.jboss.tools</groupId>
- <artifactId>bootstrap</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <packaging>pom</packaging>
- <scm>
- <connection>scm:svn:https://anonsvn.jboss.org/repos/jbosstools/trunk</connection>
- <developerConnection>scm:svn:https://svn.jboss.org/repos/jbosstools/trunk</developerConnection>
- <url>https://anonsvn.jboss.org/repos/jbosstools/trunk</url>
- </scm>
- <properties>
-
- </properties>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-scm-plugin</artifactId>
- <version>1.3</version>
- <configuration>
- <checkoutDirectory>${basedir}/sources</checkoutDirectory>
- <goals>clean,install</goals>
- <profiles>helios-no-target</profiles>
- </configuration>
- </plugin>
- </plugins>
- </build>
-</project>
Deleted: trunk/build/pom-soa-tooling.xml
===================================================================
--- trunk/build/pom-soa-tooling.xml 2012-10-25 05:19:24 UTC (rev 44619)
+++ trunk/build/pom-soa-tooling.xml 2012-10-25 05:24:14 UTC (rev 44620)
@@ -1,297 +0,0 @@
-<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>parent</artifactId>
- <version>4.0.0.Beta1-SNAPSHOT</version>
- <relativePath>../build/parent/pom.xml</relativePath>
- </parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>org.jboss.tools.build</artifactId>
- <name>org.jboss.tools.build</name>
- <version>0.0.2</version>
- <packaging>pom</packaging>
-
- <profiles>
- <!-- for bootstrapping the parent and target-platform poms via Mead, we need to be able to fetch from this folder and run
- this profile (excluding all others); currently parent pom includes target-platform build too, so only need to build the parent
-
- mvn clean install -P parent,\!libs,\!tests,\!jmx,\!archives,\!common \
- -P \!smooks,\!bpel,\!esb,\!jst,\!modeshape,\!jbpm,\!usage,\!aggregate-coverage
-
- -->
- <profile>
- <id>parent</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <modules>
- <module>parent</module>
- </modules>
- </profile>
-
- <profile>
- <id>libs</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <modules>
- <module>libs</module>
- </modules>
- </profile>
-
- <profile>
- <id>tests</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- <property>
- <name>as-bootstrap</name>
- </property>
- </activation>
- <modules>
- <module>../tests</module>
- </modules>
- </profile>
-
- <profile>
- <id>jmx</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <modules>
- <module>../jmx</module>
- </modules>
- </profile>
-
- <profile>
- <id>jmx-bootstrap</id>
- <modules>
- <module>../tests</module>
- <module>../jmx</module>
- <module>../usage</module>
- </modules>
- </profile>
-
- <profile>
- <id>archives</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- <property>
- <name>as-bootstrap</name>
- </property>
- </activation>
- <modules>
- <module>../archives</module>
- </modules>
- </profile>
-
- <profile>
- <id>archives-bootstrap</id>
- <modules>
- <module>../tests</module>
- <module>../archives</module>
- <module>../usage</module>
- </modules>
- </profile>
-
- <profile>
- <id>common</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <modules>
- <module>../common</module>
- </modules>
- </profile>
-
- <profile>
- <id>common-bootstrap</id>
- <modules>
- <module>../tests</module>
- <module>../common</module>
- </modules>
- </profile>
-
- <profile>
- <id>jst</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <modules>
- <module>../jst</module>
- </modules>
- </profile>
-
- <profile>
- <id>jst-bootstrap</id>
- <modules>
- <module>../tests</module>
- <module>../common</module>
- <module>../jst</module>
- <module>../usage</module>
- </modules>
- </profile>
-
- <profile>
- <id>runtime-soa</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <modules>
- <module>../runtime-soa</module>
- </modules>
- </profile>
-
- <profile>
- <id>runtime-soa-bootstrap</id>
- <modules>
- <module>../tests</module>
- <module>../common</module>
- <module>../jmx</module>
- <module>../archives</module>
- <module>../as</module>
- <module>../hibernatetools</module>
- <module>../jst</module>
- <module>../xulrunner</module>
- <module>../vpe</module>
- <module>../jsf</module>
- <module>../seam</module>
- <module>../usage</module>
- <module>../runtime</module>
- <module>../esb</module>
- <module>../jbpm</module>
- <module>../examples</module>
- <!-- also needs drools but that's only available as binary upstream so be sure to build it first and resolve from composite staging site -->
- <module>../runtime-soa</module>
- </modules>
- </profile>
-
- <profile>
- <id>smooks</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <modules>
- <module>../smooks</module>
- </modules>
- </profile>
-
- <profile>
- <id>smooks-bootstrap</id>
- <modules>
- <module>../tests</module>
- <module>../common</module>
- <module>../smooks</module>
- <module>../usage</module>
- </modules>
- </profile>
-
- <profile>
- <id>bpel</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <modules>
- <module>../bpel</module>
- </modules>
- </profile>
-
- <profile>
- <id>bpel-bootstrap</id>
- <modules>
- <module>../tests</module>
- <module>../common</module>
- <module>../jmx</module>
- <module>../archives</module>
- <module>../as</module>
- <module>../bpel</module>
- <module>../usage</module>
- </modules>
- </profile>
-
- <profile>
- <id>esb</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <modules>
- <module>../esb</module>
- </modules>
- </profile>
-
- <profile>
- <id>esb-bootstrap</id>
- <modules>
- <module>../tests</module>
- <module>../common</module>
- <module>../esb</module>
- <module>../usage</module>
- </modules>
- </profile>
-
- <profile>
- <id>modeshape</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <modules>
- <module>../modeshape</module>
- </modules>
- </profile>
-
- <profile>
- <id>modeshape-bootstrap</id>
- <modules>
- <module>../tests</module>
- <module>../modeshape</module>
- <module>../usage</module>
- </modules>
- </profile>
-
- <profile>
- <id>jbpm</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <modules>
- <module>../jbpm</module>
- </modules>
- </profile>
-
- <profile>
- <id>jbpm-bootstrap</id>
- <modules>
- <module>../tests</module>
- <module>../usage</module>
- <module>../jbpm</module>
- </modules>
- </profile>
-
- <profile>
- <id>usage</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <modules>
- <module>../usage</module>
- </modules>
- </profile>
-
- <profile>
- <id>aggregate-coverage</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- <property>
- <name>coverage</name>
- </property>
- </activation>
- <modules>
- <module>reports/emma-coverage</module>
- </modules>
- </profile>
- </profiles>
-
-</project>
-
Deleted: trunk/build/pom.xml
===================================================================
--- trunk/build/pom.xml 2012-10-25 05:19:24 UTC (rev 44619)
+++ trunk/build/pom.xml 2012-10-25 05:24:14 UTC (rev 44620)
@@ -1,610 +0,0 @@
-<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>parent</artifactId>
- <version>4.0.0.Beta2-SNAPSHOT</version>
- <relativePath>../build/parent/pom.xml</relativePath>
- </parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>org.jboss.tools.build</artifactId>
- <name>org.jboss.tools.build</name>
- <packaging>pom</packaging>
-
- <profiles>
- <!-- for bootstrapping the parent and target-platform poms via Mead, we need to be able to fetch from this folder and run
- this profile (excluding all others); currently parent pom includes target-platform build too, so only need to build the parent
-
- mvn clean install -P parent,\!emma/lib,\!tests,\!jmx,\!archives,\!as,\!common,\!jst,\!xulrunner,\!vpe \
- -P \!jsf,\!freemarker,\!hibernatetools,\!portlet,\!struts,\!cdi,\!birt,\!seam,\!examples \
- -P \!maven,\!ws,\!gwt,\!runtime,\!usage,\!central,\!aggregate-coverage
-
- -->
- <profile>
- <id>parent</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <modules>
- <module>parent</module>
- </modules>
- </profile>
-
- <profile>
- <id>tests</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <modules>
- <module>../tests</module>
- </modules>
- </profile>
-
- <profile>
- <id>jmx</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <modules>
- <module>../jmx</module>
- </modules>
- </profile>
-
- <profile>
- <id>jmx-bootstrap</id>
- <modules>
- <module>../tests</module>
- <module>../common</module>
- <module>../jmx</module>
- <module>../usage</module>
- </modules>
- </profile>
-
- <profile>
- <id>archives</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <modules>
- <module>../archives</module>
- </modules>
- </profile>
-
- <profile>
- <id>archives-bootstrap</id>
- <modules>
- <module>../tests</module>
- <module>../archives</module>
- <module>../usage</module>
- </modules>
- </profile>
-
- <profile>
- <id>as</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <modules>
- <module>../as</module>
- </modules>
- </profile>
-
- <profile>
- <id>as-bootstrap</id>
- <modules>
- <module>../tests</module>
- <module>../common</module>
- <module>../runtime</module>
- <module>../archives</module>
- <module>../jmx</module>
- <module>../as</module>
- <module>../usage</module>
- </modules>
- </profile>
-
- <profile>
- <id>openshift</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <modules>
- <module>../openshift</module>
- </modules>
- </profile>
-
- <profile>
- <id>openshift-bootstrap</id>
- <modules>
- <module>../tests</module>
- <module>../common</module>
- <module>../archives</module>
- <module>../jmx</module>
- <module>../as</module>
- <module>../openshift</module>
- <module>../usage</module>
- </modules>
- </profile>
-
- <profile>
- <id>common</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <modules>
- <module>../common</module>
- </modules>
- </profile>
-
- <profile>
- <id>common-bootstrap</id>
- <modules>
- <module>../tests</module>
- <module>../common</module>
- </modules>
- </profile>
-
- <profile>
- <id>jst</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <modules>
- <module>../jst</module>
- </modules>
- </profile>
-
- <profile>
- <id>jst-bootstrap</id>
- <modules>
- <module>../tests</module>
- <module>../common</module>
- <module>../jst</module>
- <module>../usage</module>
- </modules>
- </profile>
-
- <profile>
- <id>xulrunner</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <modules>
- <module>../xulrunner</module>
- <module>../usage</module>
- </modules>
- </profile>
-
- <profile>
- <id>xulrunner-bootstrap</id>
- <modules>
- <module>../xulrunner</module>
- </modules>
- </profile>
-
- <profile>
- <id>vpe</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <modules>
- <module>../vpe</module>
- </modules>
- </profile>
-
- <profile>
- <id>vpe-bootstrap</id>
- <modules>
- <module>../tests</module>
- <module>../common</module>
- <module>../jst</module>
- <module>../xulrunner</module>
- <module>../vpe</module>
- <module>../usage</module>
- </modules>
- </profile>
-
- <profile>
- <id>jsf</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <modules>
- <module>../jsf</module>
- </modules>
- </profile>
-
- <profile>
- <id>jsf-bootstrap</id>
- <modules>
- <module>../tests</module>
- <module>../common</module>
- <module>../jst</module>
- <module>../xulrunner</module>
- <module>../vpe</module>
- <module>../jsf</module>
- <module>../usage</module>
- </modules>
- </profile>
-
- <profile>
- <id>freemarker</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <modules>
- <module>../freemarker</module>
- </modules>
- </profile>
-
- <profile>
- <id>freemarker-bootstrap</id>
- <modules>
- <module>../tests</module>
- <module>../freemarker</module>
- <module>../usage</module>
- </modules>
- </profile>
-
- <profile>
- <id>hibernatetools</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <modules>
- <module>../hibernatetools</module>
- </modules>
- </profile>
-
- <profile>
- <id>hibernatetools-bootstrap</id>
- <modules>
- <module>../tests</module>
- <module>../freemarker</module>
- <module>../hibernatetools</module>
- <module>../usage</module>
- </modules>
- </profile>
-
- <profile>
- <id>portlet</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <modules>
- <module>../portlet</module>
- </modules>
- </profile>
-
- <profile>
- <id>portlet-bootstrap</id>
- <modules>
- <module>../tests</module>
- <module>../jmx</module>
- <module>../archives</module>
- <module>../as</module>
- <module>../hibernatetools</module>
- <module>../common</module>
- <module>../jst</module>
- <module>../xulrunner</module>
- <module>../vpe</module>
- <module>../jsf</module>
- <module>../usage</module>
- <module>../seam</module>
- <module>../portlet</module>
- </modules>
- </profile>
-
- <profile>
- <id>struts</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <modules>
- <module>../struts</module>
- </modules>
- </profile>
-
- <profile>
- <id>struts-bootstrap</id>
- <modules>
- <module>../tests</module>
- <module>../common</module>
- <module>../jst</module>
- <module>../xulrunner</module>
- <module>../vpe</module>
- <module>../struts</module>
- <module>../usage</module>
- </modules>
- </profile>
-
- <profile>
- <id>forge</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <modules>
- <module>../forge</module>
- </modules>
- </profile>
-
- <profile>
- <id>forge-bootstrap</id>
- <modules>
- <module>../forge</module>
- <module>../usage</module>
- </modules>
- </profile>
-
- <profile>
- <id>cdi</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <modules>
- <module>../cdi</module>
- </modules>
- </profile>
-
- <profile>
- <id>cdi-tests</id>
- <modules>
- <module>../cdi/tests</module>
- </modules>
- </profile>
-
- <profile>
- <id>cdi-bootstrap</id>
- <modules>
- <module>../tests</module>
- <module>../common</module>
- <module>../jst</module>
- <module>../cdi</module>
- <module>../usage</module>
- </modules>
- </profile>
-
- <profile>
- <id>birt</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <modules>
- <module>../birt</module>
- </modules>
- </profile>
-
- <profile>
- <id>birt-bootstrap</id>
- <modules>
- <module>../tests</module>
- <module>../birt</module>
- <module>../usage</module>
- </modules>
- </profile>
-
- <profile>
- <id>seam</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <modules>
- <module>../seam</module>
- </modules>
- </profile>
-
- <profile>
- <id>seam-bootstrap</id>
- <modules>
- <module>../tests</module>
- <module>../jmx</module>
- <module>../archives</module>
- <module>../as</module>
- <module>../hibernatetools</module>
- <module>../common</module>
- <module>../runtime</module>
- <module>../jst</module>
- <module>../xulrunner</module>
- <module>../vpe</module>
- <module>../jsf</module>
- <module>../seam</module>
- <module>../usage</module>
- </modules>
- </profile>
-
- <profile>
- <id>examples</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <modules>
- <module>../examples</module>
- </modules>
- </profile>
-
- <profile>
- <id>examples-bootstrap</id>
- <modules>
- <module>../tests</module>
- <module>../common</module>
- <module>../runtime</module>
- <module>../jmx</module>
- <module>../archives</module>
- <module>../portlet</module>
- <module>../hibernatetools</module>
- <module>../xulrunner</module>
- <module>../vpe</module>
- <module>../jsf</module>
- <module>../seam</module>
- <module>../jst</module>
- <module>../as</module>
- <module>../usage</module>
- <module>../examples</module>
- </modules>
- </profile>
-
- <profile>
- <id>maven</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <modules>
- <module>../maven</module>
- </modules>
- </profile>
-
- <profile>
- <id>maven-bootstrap</id>
- <modules>
- <module>../tests</module>
- <module>../jmx</module>
- <module>../archives</module>
- <module>../as</module>
- <module>../hibernatetools</module>
- <module>../common</module>
- <module>../runtime</module>
- <module>../examples</module>
- <module>../portlet</module>
- <module>../jst</module>
- <module>../xulrunner</module>
- <module>../vpe</module>
- <module>../jsf</module>
- <module>../seam</module>
- <module>../usage</module>
- <module>../cdi</module>
- <module>../maven</module>
- </modules>
- </profile>
-
- <profile>
- <id>ws</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <modules>
- <module>../ws</module>
- </modules>
- </profile>
-
- <profile>
- <id>ws-bootstrap</id>
- <modules>
- <module>../tests</module>
- <module>../common</module>
- <module>../as</module>
- <module>../ws</module>
- <module>../usage</module>
- </modules>
- </profile>
-
- <profile>
- <id>gwt</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <modules>
- <module>../gwt</module>
- </modules>
- </profile>
-
- <profile>
- <id>gwt-bootstrap</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <modules>
- <module>../tests</module>
- <module>../gwt</module>
- <module>../usage</module>
- </modules>
- </profile>
-
- <profile>
- <id>runtime</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <modules>
- <module>../runtime</module>
- </modules>
- </profile>
-
- <profile>
- <id>runtime-bootstrap</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <modules>
- <module>../tests</module>
- <module>../common</module>
- <module>../usage</module>
- <module>../runtime</module>
- </modules>
- </profile>
-
- <profile>
- <id>richfaces</id>
- <activation>
- <activeByDefault>false</activeByDefault>
- </activation>
- <modules>
- <module>../tests</module>
- <module>../common</module>
- <module>../jst</module>
- <module>../vpe</module>
- <module>../jsf</module>
- <module>../usage</module>
- </modules>
- </profile>
-
- <profile>
- <id>usage</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <modules>
- <module>../usage</module>
- </modules>
- </profile>
-
- <profile>
- <id>central</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <modules>
- <module>../central</module>
- </modules>
- </profile>
-
- <profile>
- <id>central-bootstrap</id>
- <activation>
- <activeByDefault>true</activeByDefault>
- </activation>
- <modules>
- <module>../tests</module>
- <module>../common</module>
- <module>../runtime</module>
- <module>../freemarker</module>
- <module>../hibernatetools</module>
- <module>../usage</module>
- <module>../jst</module>
- <module>../vpe</module>
- <module>../jsf</module>
- <module>../jmx</module>
- <module>../archives</module>
- <module>../as</module>
- <module>../seam</module>
- <module>../portlet</module>
- <module>../examples</module>
- <module>../maven</module>
- <module>../cdi</module>
- <module>../central</module>
- </modules>
- </profile>
- </profiles>
-
-</project>
-
Deleted: trunk/build.xml
===================================================================
--- trunk/build.xml 2012-10-25 05:19:24 UTC (rev 44619)
+++ trunk/build.xml 2012-10-25 05:24:14 UTC (rev 44620)
@@ -1,17 +0,0 @@
-<project default="run" basedir="." name="jbosstools build.xml">
-
-<!--
- This script is provided here for convenience if building entire tree already on disk.
- Generally, you would this instead to self-bootstrap the process:
-
- svn co http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build/build/
- cd build
- ant
-
- See build/build.xml for usage details, commandline flag overrides, etc.
- See also genpom.xml for how to generate missing pom.xml files.
--->
- <target name="run">
- <ant antfile="build/build.xml" inheritall="true" inheritrefs="true" />
- </target>
-</project>
Deleted: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2012-10-25 05:19:24 UTC (rev 44619)
+++ trunk/pom.xml 2012-10-25 05:24:14 UTC (rev 44620)
@@ -1,15 +0,0 @@
-<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>
- <groupId>org.jboss</groupId>
- <artifactId>jbosstools</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <packaging>pom</packaging>
- <modules>
- <module>build/parent</module>
- <module>build</module>
- </modules>
-<!--test-->
-</project>
-
12 years, 2 months
JBoss Tools SVN: r44619 - trunk/build/target-platform.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2012-10-25 01:19:24 -0400 (Thu, 25 Oct 2012)
New Revision: 44619
Added:
trunk/build/target-platform/README
Removed:
trunk/build/target-platform/README.txt
trunk/build/target-platform/build.xml
trunk/build/target-platform/contentXml2artifactVersions.xsl
trunk/build/target-platform/getArch.sh
trunk/build/target-platform/jbds.target
trunk/build/target-platform/jbds.target.p2mirror.xml
trunk/build/target-platform/local.target
trunk/build/target-platform/multiple.target
trunk/build/target-platform/multiple.target.p2mirror.xml
trunk/build/target-platform/pom-local.xml
trunk/build/target-platform/pom.xml
trunk/build/target-platform/publish.sh
trunk/build/target-platform/target2p2mirror.xml
trunk/build/target-platform/target2p2mirrorXml.xsl
trunk/build/target-platform/target2targetTemplate.xsl
trunk/build/target-platform/targetUpdateFromRepo.xml
trunk/build/target-platform/unified.target
trunk/build/target-platform/unified.target.p2mirror.xml
Log:
replace old target-platform stuff w/ README pointing at https://github.com/jbosstools/jbosstools-build/ (JBIDE-12475)
Added: trunk/build/target-platform/README
===================================================================
--- trunk/build/target-platform/README (rev 0)
+++ trunk/build/target-platform/README 2012-10-25 05:19:24 UTC (rev 44619)
@@ -0,0 +1,5 @@
+This project have moved to https://github.com/jbosstools/jbosstools-build
+
+If you got questions regarding this project move and/or think you need maintance work done on these sources contact jbosstools-dev(a)lists.jboss.org
+
+Thank you!
Deleted: trunk/build/target-platform/README.txt
===================================================================
--- trunk/build/target-platform/README.txt 2012-10-25 05:15:38 UTC (rev 44618)
+++ trunk/build/target-platform/README.txt 2012-10-25 05:19:24 UTC (rev 44619)
@@ -1,79 +0,0 @@
-== HOWTO: Download the contents of a .target file to a local p2 repo on disk ==
-
-1. Run target2p2mirror.xml at a target file, eg.
-
- ant -f target2p2mirror.xml -DtargetFile=mutiple.target
-
-2. Run the resulting *.p2mirror.xml, eg., mutiple.target.p2mirror.xml
-
- /abs/path/to/eclipse -vm /opt/jdk1.6.0/bin/java -nosplash -data \
- /tmp/workspace -consolelog -application \
- org.eclipse.ant.core.antRunner -f mutiple.target.p2mirror.xml \
- -Ddebug=true \
- -DfollowStrict=true \
- -Drepo.dir=/tmp/REPO/
-
-3. Resulting repo can be added to Eclipse and from there, *uncategorized* features can be installed.
-
-
-== HOWTO: Publish local p2 repo (generated from .target) to download.jboss.org ==
-
-1. Zip the repo
-
- cd /tmp/REPO; zip -9r mutiple.target.zip * &
-
-2. Push to qa01
-
- rsync -aPrz mutiple.target.zip nboldt@qa01:~/ &
-
-3. Ssh to qa01; sudo to hudson; unpack and push contents + zip to download.jboss.org
-
- sudo su - hudson
- unzip /home/nboldt/mutiple.target.zip -d /tmp/mutiple.target &
- rsync -aPrz --delete --rsh=ssh /tmp/mutiple.target/* \
- tools@filemgmt.jboss.org:/downloads_htdocs/tools/updates/target-platform_3.3.indigo/latest/ &
- rsync -aPrz --rsh=ssh /home/nboldt/mutiple.target.zip \
- tools@filemgmt.jboss.org:/downloads_htdocs/tools/updates/target-platform_3.3.indigo/ &
-
-4. Alternatively, see publish.sh for when repo is built in JBoss Hudson.
-
-
-== HOWTO: Publish local p2 repo (generated from .target) to shared location in Hudson for use in builds ==
-
-1. You can reference http://download.jboss.org/jbosstools/updates/target-platform_3.3.indigo/l...,
- but a local path reference is faster.
-
-2. So, continuing from previous HOWTO, copy from /tmp/mutiple.target into
- file:///home/hudson/static_build_env/jbds/target-platform_3.3.indigo/mutiple.target/
-
- rsync -aPrz --delete /tmp/mutiple.target/* \
- /home/hudson/static_build_env/jbds/target-platform_3.3.indigo/mutiple.target/ &
-
-3. Alternatively, see publish.sh for when repo is built in JBoss Hudson.
-
-
-== HOWTO: Update an existing .target file from newer versions of IUs in a repo ==
-
-1. Run targetUpdateFromRepo.xml against a given repo folder on disk, eg.
-
- ant -v -f targetUpdateFromRepo.xml -DtargetFile=mutiple.target -DrepoDir=./REPO
-
-2. Resulting targetFile will be overwritten with updated version values from what was found in the
- repo's content.xml file.
-
-
-== HOWTO: Generate a local.target file from an existing multiple.target file ==
-
-1. Run targetUpdateFromRepo.xml against a given repo folder on disk, eg.
-
- ant -f targetUpdateFromRepo.xml -DrepoDir=/path/to/my/REPO local.target
-
-2. Resulting local.target file will be created (or overwritten) with a new local file:// URL for all
- the listed update sites, pointing at your local repo. It will otherwise be identical to the
- multiple.target file
-
-
-== HOWTO: Install the contents of a repo into Eclipse (via script) ==
-
-1. See ../installation/README.txt
-
Deleted: trunk/build/target-platform/build.xml
===================================================================
--- trunk/build/target-platform/build.xml 2012-10-25 05:15:38 UTC (rev 44618)
+++ trunk/build/target-platform/build.xml 2012-10-25 05:19:24 UTC (rev 44619)
@@ -1,350 +0,0 @@
-<project default="build.local.target.platform.repo" name="jbosstools target platform p2.mirror generator - ant script for Hudson">
- <property name="targetFile" value="multiple.target" />
-
- <!-- if useLatest = true, omit versions from p2.mirror script to fetch latest version available;
- if useLatest = false, include versions and fetch specific versions requested. -->
- <property name="useLatest" value="false" />
-
- <property name="tmpdir" value="${java.io.tmpdir}/target-platform-build" />
-
- <condition property="WORKINGDIR" value="/home/hudson/static_build_env/jbds/tools/sources" else="${basedir}">
- <available file="/home/hudson/static_build_env/jbds" type="dir" />
- </condition>
- <mkdir dir="${WORKINGDIR}" />
-
- <condition property="COMMON_TOOLS" value="/home/hudson/static_build_env/jbds/tools" else="${java.io.tmpdir}">
- <available file="/home/hudson/static_build_env/jbds" type="dir" />
- </condition>
- <mkdir dir="${COMMON_TOOLS}" />
-
- <property name="repoDir" value="${WORKINGDIR}/REPO" />
-
- <!-- ********************************************************************************** -->
-
- <target name="help">
- <echo>This script, if run in its entirety, will:
-
- a) download features, plugins, binaries, and metadata from the site(s) specified
- in a given target platform, and create a local p2 repo
- b) generate a local.target file, which points at the generated local p2 repo
-
-After running this script, publish this pom and *.target files to your local ~/.m2 repo:
- mvn clean install -f .../target-platform/pom.xml -P use.local.target
-
-Then you can then refer to it in downstream builds using:
- mvn install -P local.target
-
-------------------
-
-Default target is:
-
- * build.local.target.platform.repo
-
-Can also attempt to:
-
- * install.local.target.platform.repo
-
-There are also integration tests (will build JBT using platform repo or platform installed base):
-
- * test.local.target.platform.repo
- * test.local.target.platform.installed.base (deprecated)
-
-Thus, default operation is this (if run w/ these options or NO options):
-
- $ ant -DtargetFile=multiple.target build.local.target.platform.repo
-
-You can also call the jbds or jbt targets, which are equivalent to these:
-
- $ ant -DtargetFile=jbds.target -DrepoDir=${WORKINGDIR}/JBDS_REPO/
- $ ant jbds
- $ ant -DtargetFile=multiple.target -DrepoDir=${WORKINGDIR}/JBT_REPO/
- $ ant jbt
-
-Or if you want to update the .target files too:
-
- $ ant build.local.target.platform.repo update.target.file -DtargetFile=jbds.target -DrepoDir=${WORKINGDIR}/JBDS_REPO/ -DuseLatest=true
- $ ant jbds-update
- $ ant build.local.target.platform.repo update.target.file -DtargetFile=multiple.target -DrepoDir=${WORKINGDIR}/JBT_REPO/ -DuseLatest=true
- $ ant jbt-update
-
-To run for JBDS target file WHILE JBT target file is being run:
-
- $ ant jbds -DWORKINGDIR=${basedir}
-
-To build an alternate target platform (eg., Juno) for JBT:
-
- $ ant -DtargetFile=multiple.target -DrepoDir=${WORKINGDIR}/JBT_REPO/ -Declipse.version=4.2 -Declipse.type=platform -Declipse.URL=http://www.eclipse.org/downloads/download.php?r=1\&file=/eclipse/downloads/drops4/R-4.2-201206081400/ -Dunified.URL=http://download.jboss.org/jbosstools/updates/target-platform_4.0.juno.SR1/latest/
-
-To build an alternate target platform (eg., Juno) for JBDS:
-
- $ ant -DtargetFile=jbds.target -DrepoDir=${WORKINGDIR}/JBDS_REPO/ -Declipse.version=4.2 -Declipse.type=platform -Declipse.URL=http://www.eclipse.org/downloads/download.php?r=1\&file=/eclipse/downloads/drops4/R-4.2-201206081400/
-
-</echo>
- </target>
-
-
- <!-- do everything but tests -->
- <target name="all" depends="install" />
-
- <target name="tests" depends="install, test.local.target.platform.repo" />
-
- <!-- to install from the target platform repo, first build the repo, then install using p2.director -->
- <target name="install" depends="build.local.target.platform.repo, install.local.target.platform.repo" />
-
- <target name="jbt" description="default local build of multiple.target in ./JBDT_REPO/" depends="init">
- <var name="targetFile" unset="true" />
- <var name="targetFile" value="multiple.target" />
- <var name="repoDir" unset="true" />
- <var name="repoDir" value="${WORKINGDIR}/JBT_REPO" />
- <antcall target="build.local.target.platform.repo" />
- </target>
-
- <target name="jbds" description="default local build of jbds.target in ./JBDS_REPO/" depends="init">
- <var name="targetFile" unset="true" />
- <var name="targetFile" value="jbds.target" />
- <var name="repoDir" unset="true" />
- <var name="repoDir" value="${WORKINGDIR}/JBDS_REPO" />
- <antcall target="build.local.target.platform.repo" />
- </target>
-
- <target name="jbt-update" description="default local build of multiple.target in ./JBT_REPO/, with useLatest=true to update target file" depends="init">
- <var name="useLatest" value="true"/>
- <antcall target="jbt"/>
- <antcall target="update.target.file"/>
- </target>
-
- <target name="jbds-update" description="default local build of jbds.target in ./JBDS_REPO/, with useLatest=true to update target file" depends="init">
- <var name="useLatest" value="true"/>
- <antcall target="jbds"/>
- <antcall target="update.target.file"/>
- </target>
-
- <target name="build.local.target.platform.repo" depends="init, get.arch, get.eclipse, gen.p2mirror.script, run.p2mirror.script, cleanup" />
-
- <!-- ********************************************************************************** -->
-
- <target name="init">
- <available file="${COMMON_TOOLS}/ant-contrib.jar" type="file" property="ant-contrib.jar.exists" />
- <antcall target="get.ant-contrib" />
- <taskdef resource="net/sf/antcontrib/antlib.xml">
- <classpath>
- <pathelement location="${COMMON_TOOLS}/ant-contrib.jar" />
- </classpath>
- </taskdef>
- </target>
-
-
- <target name="get.ant-contrib" unless="ant-contrib.jar.exists">
- <property name="ANTCONTRIB_MIRROR" value="http://sourceforge.net/projects/ant-contrib/files/ant-contrib/ant-contrib..." />
- <get usetimestamp="true" dest="${COMMON_TOOLS}/ant-contrib-1.0b2-bin.zip" src="${ANTCONTRIB_MIRROR}/ant-contrib-1.0b2-bin.zip/download" />
- <touch file="${COMMON_TOOLS}/ant-contrib-1.0b2-bin.zip" />
- <mkdir dir="${java.io.tmpdir}/ant-contrib-1.0b2-bin.zip_" />
- <unzip src="${COMMON_TOOLS}/ant-contrib-1.0b2-bin.zip" dest="${java.io.tmpdir}/ant-contrib-1.0b2-bin.zip_" overwrite="true" />
- <copy file="${java.io.tmpdir}/ant-contrib-1.0b2-bin.zip_/ant-contrib/lib/ant-contrib.jar" tofile="${COMMON_TOOLS}/ant-contrib.jar" failonerror="true" />
- <delete dir="${java.io.tmpdir}/ant-contrib-1.0b2-bin.zip_" includeemptydirs="true" quiet="true" />
- </target>
-
- <target name="get.arch">
- <condition property="ext" value="tar.gz" else="zip">
- <os family="unix" />
- </condition>
- <condition property="os1" value="linux-gtk" else="win32">
- <os family="unix" />
- </condition>
- <condition property="os" value="macosx-cocoa" else="${os1}">
- <os family="mac" />
- </condition>
- <if>
- <os family="unix" />
- <then>
- <!-- Ant thinks that ${os.arch} == i386 for x86_64, so use `uname` instead -->
- <exec executable="bash" outputproperty="arch">
- <arg line="getArch.sh" />
- </exec>
- </then>
- <else>
- <condition property="arch" value="x86_64" else="">
- <os arch="amd64" />
- </condition>
- </else>
- </if>
- </target>
-
- <!-- should work on osx-cocoa32, win32, lin32, lin64 -->
- <target name="get.eclipse">
- <!-- NOTE: must use same platform (50M) or SDK (103M - 168M) version as feature version on target platform, or will get install/update conflicts -->
- <!-- don't forget to increment these files when moving up a version:
- build.xml, *.target*, publish.sh, target2p2mirror.xml -->
- <!-- also jbds/trunk/releng/org.jboss.ide.eclipse.releng/requirements/jbds-target-platform/build.properties
- also all devstudio-5.0_*.updatesite jobs (4) need to be pointed at the new Target Platform URL
- -->
- <!-- http://download.eclipse.org/eclipse/downloads/drops/M20120201-1336/downlo... -->
- <!-- http://mirror.csclub.uwaterloo.ca/eclipse/eclipse/downloads/drops4/R-4.2-... -->
- <!-- eclipse-platform-3.8M6-linux-gtk-x86_64.tar.gz -->
- <!-- eclipse-platform-3.7.2-linux-gtk-x86_64.tar.gz -->
- <property name="eclipse.version" value="4.2.1" />
- <property name="eclipse.type" value="platform" />
- <property name="eclipse.URL" value="http://www.eclipse.org/downloads/download.php?r=1&file=/eclipse/downl..."/>
- <!-- <property name="eclipse.version" value="M20120829-1000" />
- <property name="eclipse.type" value="platform" />
- <property name="eclipse.URL" value="http://www.eclipse.org/downloads/download.php?r=1&file=/eclipse/downl..."/> -->
-
- <if>
- <equals arg1="${arch}" arg2="x86" />
- <then>
- <property name="eclipse.file" value="eclipse-${eclipse.type}-${eclipse.version}-${os}.${ext}" />
- </then>
- <else>
- <property name="eclipse.file" value="eclipse-${eclipse.type}-${eclipse.version}-${os}-${arch}.${ext}" />
- </else>
- </if>
-
- <if>
- <not>
- <available file="${WORKINGDIR}/${eclipse.file}" type="file" />
- </not>
- <then>
- <get src="${eclipse.URL}/${eclipse.file}" dest="${WORKINGDIR}/${eclipse.file}" />
- </then>
- </if>
-
- <!-- purge previous eclipse install to avoid conflicts w/ Eclipse feature versions -->
- <delete dir="${WORKINGDIR}/eclipse-${eclipse.version}" includeemptydirs="true" quiet="true" />
-
- <untar compression="gzip" dest="${WORKINGDIR}/eclipse-${eclipse.version}" src="${WORKINGDIR}/${eclipse.file}" overwrite="true" />
-
- <!-- add 70M delta pack, eg. http://download.eclipse.org/eclipse/downloads/drops/M20101006-0936/downlo... -->
- <!-- ONLY need deltapack if using -Dtycho.targetPlatform, which is now depredated
- <property name="deltapack.file" value="eclipse-${eclipse.version}-delta-pack.zip"/>
- <if>
- <not>
- <available file="${WORKINGDIR}/${deltapack.file}" type="file" />
- </not>
- <then>
- <get src="${eclipse.URL}/${deltapack.file}" dest="${WORKINGDIR}/${deltapack.file}" />
- </then>
- </if>
- <unzip src="${WORKINGDIR}/${deltapack.file}" dest="${WORKINGDIR}" overwrite="true"/>
- -->
-
- <!-- make eclipse executable -->
- <chmod perm="+x" file="${WORKINGDIR}/eclipse-${eclipse.version}/eclipse/eclipse" />
-
- </target>
-
- <target name="gen.p2mirror.script" description="use XSLT to generate a p2.mirror script from .target">
- <ant antfile="target2p2mirror.xml" />
- </target>
-
- <!-- /abs/path/to/eclipse -vm /opt/jdk1.6.0/bin/java -nosplash -data /tmp/workspace -consolelog -application
- org.eclipse.ant.core.antRunner -f *.target.p2mirror.xml -Ddebug=true -DfollowStrict=true -DrepoDir=/tmp/REPO/ -->
- <target name="run.p2mirror.script" description="build target update site using p2.mirror">
- <java classname="org.eclipse.equinox.launcher.Main" fork="true" dir="${basedir}" failonerror="true">
- <classpath>
- <fileset dir="${WORKINGDIR}/eclipse-${eclipse.version}/eclipse/plugins" includes="org.eclipse.equinox.launcher_*.jar"/>
- </classpath>
- <arg line=" -nosplash -data ${tmpdir}/workspace -consolelog -application org.eclipse.ant.core.antRunner" />
- <arg line=" -f ${targetFile}.p2mirror.xml -DfollowStrict=true -DrepoDir=${repoDir}" />
- <arg line=" -Ddebug=true -vmargs -Dosgi.locking=none" />
- </java>
- </target>
-
- <target name="update.target.file" description="optional step: use XSLT to update .target file from contents of local repo">
-<!-- <echo>
-This step - calling targetUpdateFromRepo.xml - is no longer enabled to prevent the .target
-file from being stripped of duplicate IUs. Instead, generation is a one-way process:
-
-1. Manually update .target file
-2. Generate .p2mirror.xml file, with useLatest=false
-3. ...
-4. Profit!</echo> -->
- <ant antfile="targetUpdateFromRepo.xml" />
- </target>
-
- <target name="cleanup">
- <delete dir="${tmpdir}" quiet="true" includeemptydirs="true" />
- </target>
-
- <target name="test.local.target.platform.repo" description="test target platform completeness by running a build against its update site">
- <exec executable="/opt/maven3/bin/mvn" dir="${WORKINGDIR}">
- <arg line=" -f ../parent/pom.xml clean install -B -U -fae -e -P helios-local-target,!helios -Dmaven.test.skip -Dtarget.platorm.URL=file://${repoDir}" />
- </exec>
- <exec executable="/opt/maven3/bin/mvn" dir="${WORKINGDIR}">
- <arg line=" -f ../pom.xml clean install -B -U -fae -e -P helios-local-target,!helios -Dmaven.test.skip -Dtarget.platorm.URL=file://${repoDir}" />
- </exec>
- </target>
-
- <target name="test.local.target.platform.installed.base" description="test target platform completeness by running a build against its installed eclipse base - Dtycho.targetPlatform to be removed in Tycho 0.11 so this test is deprecated">
- <!--
- <exec executable="/opt/maven3/bin/mvn" dir="${WORKINGDIR}">
- <arg line=" -f ../parent/pom.xml clean install -B -U -fae -e -P helios-local-target,!helios -Dmaven.test.skip -Dtarget.platorm.URL=file://${repoDir}" />
- </exec>
- <exec executable="/opt/maven3/bin/mvn" dir="${WORKINGDIR}">
- <arg line=" -f ../pom.xml clean install -B -U -fae -e -Dmaven.test.skip -Dtycho.targetPlatform=${WORKINGDIR}/eclipse" />
- </exec>
- -->
- </target>
-
- <target name="install.local.target.platform.repo" depends="init" description="use p2.director to install target platform into local eclipse">
- <!-- collect features to install -->
- <var name="install" value="" />
- <for param="featureJar">
- <path>
- <fileset dir="${repoDir}/features" includes="*.jar" />
- </path>
- <sequential>
- <var name="feature.jarfile" unset="true" />
- <var name="feature.id" unset="true" />
- <propertyregex property="feature.jarfile" defaultvalue="@{featureJar}" input="@{featureJar}" regexp=".+/features/([^/]+\.jar)" replace="\1" override="true" />
- <propertyregex property="feature.id" defaultvalue="${feature.jarfile}" input="${feature.jarfile}" regexp="([^_]+)_(\d+\.\d+\.\d+\..+)\.jar" replace="\1" override="true" />
- <propertyregex property="feature.id" defaultvalue="${feature.id}" input="${feature.id}" regexp="([^_]+)_(\d+\.\d+\.\d+)\.jar" replace="\1" override="true" />
- <var name="install" value="${install},${feature.id}.feature.group" />
- <var name="feature.jarfile" unset="true" />
- <var name="feature.id" unset="true" />
- </sequential>
- </for>
- <!-- trim prefix "," -->
- <propertyregex property="install" input="${install}" defaultvalue="${install}" regexp=",(.+)" replace="\1" override="true" />
-
- <!-- do install -->
- <antcall target="run.director">
- <param name="p2.director.installIU" value="${install}" />
- <param name="p2.director.install.path" value="${WORKINGDIR}/eclipse" />
- <param name="p2.director.input.repo" value="file://${repoDir}/" />
- </antcall>
- </target>
-
- <target name="run.director">
- <property name="p2.director.extraArgs" value="" />
- <property name="p2.director.installIU" value="${install}" />
- <property name="p2.director.install.path" value="${targetDir}" />
- <property name="p2.director.input.repo" value="jar:file://${sourceZip}!/" />
- <echo>
-Source Repo(s): ${p2.director.input.repo}
-Install Path: ${p2.director.install.path}
-Feature(s) or Plugin(s) to Install:
-${install}
- </echo>
-
- <mkdir dir="${p2.director.install.path}" />
- <chmod perm="+x" file="${p2.director.install.path}/eclipse" />
- <exec executable="${p2.director.install.path}/eclipse" failonerror="true" dir="${p2.director.install.path}" timeout="900000" taskname="p2.dir">
- <arg line=" -application org.eclipse.equinox.p2.director" />
- <arg line=" -nosplash" />
- <arg line=" --launcher.suppressErrors" />
- <arg line=" -consoleLog" />
- <arg line=" -flavor tooling" />
- <arg line=" -roaming" />
- <arg line=" -profile SDKProfile" />
- <arg line=" -destination ${p2.director.install.path}" />
- <arg line=" -bundlepool ${p2.director.install.path}" />
- <arg line=" -installIU ${p2.director.installIU}" />
- <arg line=" -metadataRepository ${p2.director.input.repo},file://${p2.director.install.path}/p2/org.eclipse.equinox.p2.engine/profileRegistry/SDKProfile.profile" />
- <arg line=" -artifactRepository ${p2.director.input.repo},file://${p2.director.install.path}" />
- <arg line=" -profileProperties org.eclipse.update.install.features=true" />
- <arg line=" -vmargs" />
- <arg line=" -Declipse.p2.data.area=${p2.director.install.path}/p2" />
- <arg line=" -Declipse.p2.MD5Check=false" />
- </exec>
- </target>
-</project>
Deleted: trunk/build/target-platform/contentXml2artifactVersions.xsl
===================================================================
--- trunk/build/target-platform/contentXml2artifactVersions.xsl 2012-10-25 05:15:38 UTC (rev 44618)
+++ trunk/build/target-platform/contentXml2artifactVersions.xsl 2012-10-25 05:19:24 UTC (rev 44619)
@@ -1,19 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" ?>
-<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
-<!--
- This XSLT is used by targetUpdateFromRepo.xml to update the versions on IUs in a .target file
- CAUTION: do not auto-format this file or line breaks will appear where they should not be!
--->
-<xsl:output method="text" indent="no" encoding="UTF-8" version="1.0" />
-<xsl:template match="repository">
-<xsl:apply-templates select="//unit" />
-</xsl:template>
-<xsl:template match="/"><xsl:for-each select="//unit">
-<xsl:sort select="@id" order="ascending" case-order="lower-first"/><xsl:sort select="@version" order="descending" case-order="lower-first" data-type="qname"/><xsl:value-of select="@id" />.version=<xsl:value-of select="@version" />
-<xsl:variable name="thisID" select="@id"/>
-<xsl:if test="count(//unit[@id = $thisID]) > 1">
-# Warning: <xsl:value-of select="count(//unit[@id = $thisID])"/> versions found for <xsl:value-of select="@id" />:<xsl:for-each select="//unit[@id = $thisID]"><xsl:sort select="@id" order="ascending" case-order="lower-first"/><xsl:sort select="@version" order="descending" case-order="lower-first" data-type="qname"/>
-# <xsl:value-of select="@id" />.version=<xsl:value-of select="@version" /></xsl:for-each></xsl:if>
-#
-</xsl:for-each></xsl:template>
-</xsl:stylesheet>
Deleted: trunk/build/target-platform/getArch.sh
===================================================================
--- trunk/build/target-platform/getArch.sh 2012-10-25 05:15:38 UTC (rev 44618)
+++ trunk/build/target-platform/getArch.sh 2012-10-25 05:19:24 UTC (rev 44619)
@@ -1,24 +0,0 @@
-#!/bin/bash
-
-if uname -m > /dev/null 2>&1; then
- arch=`uname -m`
-else
- arch=`uname -p`
-fi
-# Massage arch for Eclipse-uname differences
-case $arch in
- i[0-9]*86)
- arch=x86 ;;
- ia64)
- arch=ia64 ;;
- ppc)
- arch=ppc ;;
- ppc64)
- arch=ppc ;;
- x86_64)
- arch=x86_64 ;;
- *)
- echo "ERROR: Unrecognized architecture: $arch"
- exit 1 ;;
-esac
-echo $arch
\ No newline at end of file
Deleted: trunk/build/target-platform/jbds.target
===================================================================
--- trunk/build/target-platform/jbds.target 2012-10-25 05:15:38 UTC (rev 44618)
+++ trunk/build/target-platform/jbds.target 2012-10-25 05:19:24 UTC (rev 44619)
@@ -1,382 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?><?pde version="3.6"?>
-<target includeMode="feature" name="e42-wtp34-jbds6">
- <!-- Pro tip: to convert
- from org.eclipse.foo_4.6.0.v201005032111-777K4AkF7B77R7c7N77.jar
- to <unit version="4.6.0.v201005032111-777K4AkF7B77R7c7N77" id="org.eclipse.foo.feature.group"/>
- using vi, apply this transform:
- :%s/.\+\/\(org.\+\)_\(\d\+.\+\)\.jar/\t\t\t<unit id="\1.feature.group" version="\2"\/>/g
- -->
- <locations>
- <location includeAllPlatforms="false" includeMode="planner" type="InstallableUnit" includeSource="true">
- <!-- don't forget to increment these files when moving up a version:
- build.xml, *.target*, publish.sh, target2p2mirror.xml -->
- <repository location="http://download.jboss.org/jbosstools/updates/juno/SR1/"/>
-
- <!-- for these IUs we need multiple versions -->
- <unit id="javax.wsdl" version="1.6.2.v201012040545"/>
- <unit id="javax.wsdl" version="1.5.1.v201012040544"/>
- <unit id="org.jdom" version="1.1.1.v201101151400"/>
- <unit id="org.jdom" version="1.0.0.v201005080400"/>
- <unit id="org.apache.commons.lang" version="2.6.0.v201205030909"/>
- <unit id="org.apache.commons.lang" version="2.4.0.v201005080502"/>
- <unit id="org.apache.commons.lang" version="2.1.0.v201005080500"/>
- <unit id="javax.servlet" version="3.0.0.v201112011016"/>
- <unit id="javax.servlet" version="2.5.0.v200910301333"/>
- <unit id="javax.servlet.jsp" version="2.2.0.v201112011158"/>
- <!-- <unit id="javax.servlet.jsp" version="2.0.0.v201101211617"/> -->
- <unit id="javax.servlet.jsp" version="2.0.0.v200806031607"/>
- <unit id="javax.wsdl" version="1.6.2.v201012040545"/>
- <unit id="javax.wsdl" version="1.5.1.v201012040544"/>
- <unit id="javax.xml.bind" version="2.2.0.v201105210648"/>
- <unit id="javax.xml.bind" version="2.1.9.v201005080401"/>
- <unit id="javax.xml.soap" version="1.3.0.v201105210645"/>
- <unit id="javax.xml.soap" version="1.2.0.v201005080501"/>
- <unit id="org.apache.commons.logging" version="1.1.1.v201101211721"/>
- <unit id="org.apache.commons.logging" version="1.0.4.v201101211617"/>
- <unit id="org.apache.lucene" version="2.9.1.v201101211721"/>
- <unit id="org.apache.lucene" version="1.9.1.v201101211617"/>
- <unit id="org.apache.lucene.core" version="3.5.0.v20120319-2345"/>
- <unit id="org.apache.lucene.core" version="2.9.1.v201101211721"/>
- <unit id="org.junit" version="4.10.0.v4_10_0_v20120426-0900"/>
- <unit id="org.junit" version="3.8.2.v3_8_2_v20100427-1100"/>
-
- <!-- Orbit bundles -->
- <unit id="javax.activation" version="1.1.0.v201108011116"/>
- <unit id="org.apache.oro" version="2.0.8.v201005080400"/>
- <unit id="org.apache.commons.io" version="2.0.1.v201105210651"/>
- <unit id="org.apache.commons.codec" version="1.3.0.v201101211617"/>
- <unit id="org.apache.commons.httpclient" version="3.1.0.v201012070820"/>
- <unit id="org.hamcrest" version="1.1.0.v20090501071000"/>
- <unit id="org.hamcrest.core" version="1.1.0.v20090501071000"/>
- <unit id="org.hamcrest.text" version="1.1.0.v20090501071000"/>
- <unit id="org.hamcrest.library" version="1.1.0.v20090501071000"/>
- <unit id="org.hamcrest.integration" version="1.1.0.v20090501071000"/>
-
- <!-- Orbit bundles needed for Eclipse Checkstyle (eclipse-cs) -->
- <unit id="org.apache.lucene.highlighter" version="3.5.0.v20120319-2345"/>
- <unit id="org.apache.lucene.memory" version="3.5.0.v20120319-2345"/>
- <unit id="org.apache.lucene.misc" version="3.5.0.v20120319-2345"/>
- <unit id="org.apache.lucene.queries" version="3.5.0.v20120319-2345"/>
- <unit id="org.apache.lucene.snowball" version="2.9.1.v20100421-0704"/>
- <unit id="org.apache.lucene.spellchecker" version="3.5.0.v20120319-2345"/>
-
- <unit id="org.apache.axis" version="1.4.0.v201005080400"/>
- <unit id="org.apache.commons.io" version="2.0.1.v201105210651"/>
- <unit id="org.apache.commons.httpclient" version="3.1.0.v201012070820"/>
- <unit id="org.apache.commons.codec" version="1.3.0.v201101211617"/>
- <unit id="org.apache.jasper" version="7.0.26.v201205030742"/>
- <unit id="org.apache.catalina" version="7.0.26.v201205021508"/>
- <unit id="javax.ejb" version="3.1.1.v201204261316"/>
- <unit id="javax.transaction" version="1.1.1.v201105210645"/>
- <unit id="javax.el" version="2.2.0.v201108011116"/>
- <unit id="javax.xml.rpc" version="1.1.0.v201005080400"/>
-
- <!-- m2e, m2e-wtp + deps -->
- <unit id="org.eclipse.m2e.sdk.feature.feature.group" version="1.2.0.20120903-1050"/>
- <unit id="org.eclipse.m2e.feature.feature.group" version="1.2.0.20120903-1050"/>
- <unit id="ch.qos.logback.classic" version="1.0.0.v20111214-2030"/>
- <unit id="ch.qos.logback.core" version="1.0.0.v20111214-2030"/>
- <unit id="ch.qos.logback.slf4j" version="1.0.0.v20120123-1500"/>
- <unit id="org.slf4j.api" version="1.6.4.v20120130-2120"/>
- <unit id="com.ning.async-http-client" version="1.6.5.20120903-0645"/>
- <unit id="org.jboss.netty" version="3.2.5.Final-20120903-0645"/>
- <unit id="org.eclipse.m2e.wtp.feature.feature.group" version="0.16.0.20120914-0945"/>
- <unit id="org.sonatype.m2e.mavenarchiver.feature.feature.group" version="0.15.0.201207090125-signed-201209140800"/>
-
-
- <unit id="org.eclipse.equinox.p2.discovery.compatibility" version="1.0.101.v20120524-1717"/>
- <unit id="org.eclipse.equinox.p2.discovery" version="1.0.200.v20120524-1717"/>
- <unit id="org.eclipse.equinox.p2.ui.discovery" version="1.0.0.v20110808-1657"/>
-
- <!-- EMF, XSD -->
- <unit id="org.eclipse.emf.workspace.feature.group" version="1.6.0.v20120328-0001-37708s734E377I3B4C2"/>
- <unit id="org.eclipse.emf.validation.feature.group" version="1.6.0.v20120328-0001-479-9oB56N5BBR6LCA6"/>
- <unit id="org.eclipse.emf.transaction.feature.group" version="1.6.0.v20120328-0001-377-8s734C3E7D15D6B"/>
- <unit id="org.eclipse.emf.feature.group" version="2.8.1.v20120917-0436"/>
- <unit id="org.eclipse.emf.ecore.feature.group" version="2.8.1.v20120911-0500"/>
- <unit id="org.eclipse.emf.codegen.feature.group" version="2.8.0.v20120917-0436"/>
- <unit id="org.eclipse.emf.common.feature.group" version="2.8.0.v20120911-0500"/>
- <unit id="org.eclipse.emf.databinding.feature.group" version="1.2.0.v20120917-0436"/>
- <unit id="org.eclipse.emf.codegen.ecore.feature.group" version="2.8.1.v20120917-0436"/>
- <unit id="org.eclipse.emf.ecore.edit.feature.group" version="2.8.0.v20120917-0436"/>
- <unit id="org.eclipse.emf.ecore.editor.feature.group" version="2.8.0.v20120917-0436"/>
- <unit id="org.eclipse.emf.ecore.feature.group" version="2.8.1.v20120911-0500"/>
- <unit id="org.eclipse.emf.edit.feature.group" version="2.8.0.v20120917-0436"/>
- <unit id="org.eclipse.xsd.edit.feature.group" version="2.7.0.v20120917-0436"/>
- <unit id="org.eclipse.xsd.ecore.converter.feature.group" version="2.7.0.v20120917-0436"/>
- <unit id="org.eclipse.xsd.editor.feature.group" version="2.7.0.v20120917-0436"/>
- <unit id="org.eclipse.xsd.mapping.editor.feature.group" version="2.7.0.v20120917-0436"/>
- <unit id="org.eclipse.xsd.mapping.feature.group" version="2.7.0.v20120917-0436"/>
- <unit id="org.eclipse.xsd.feature.group" version="2.8.0.v20120917-0436"/>
-
- <!-- GEF, Draw2D, Graphiti, Zest -->
- <unit id="org.eclipse.graphiti.feature.feature.group" version="0.9.1.v20120919-0732"/>
- <unit id="org.eclipse.draw2d.feature.group" version="3.9.0.201208201742"/>
- <unit id="org.eclipse.gef.feature.group" version="3.9.0.201208201742"/>
- <unit id="org.eclipse.zest.feature.group" version="1.5.0.201208201742"/>
-
- <!-- Needed for Teiid Designer: UML2 -->
- <unit id="org.eclipse.uml2.feature.group" version="4.0.1.v20120913-1441"/>
- <unit id="org.eclipse.uml2.doc.feature.group" version="4.0.0.v20120913-1441"/>
-
- <!-- Platform: CVS, JDT, RCP, PDE, Equinox, Help -->
- <unit id="com.ibm.icu.base" version="4.4.2.v20110831"/>
- <!-- cannot include two versions of the same feature as they conflict in terms of inclusion of org.eclipse.update.ui, which is only on the 3.8 site -->
- <!-- <unit id="org.eclipse.platform.feature.group" version="3.8.0.v20120607-071945-9gF7jI7nG5qByXMVdkhRMWBQlF4PnDCLybDCPQ"/> -->
- <unit id="org.eclipse.platform.feature.group" version="4.2.1.v20120814-120134-9JF7BHVGFyMveli1uX6aTH0q-eAap6PAgOP5mO"/>
- <unit id="org.eclipse.platform.ide" version="4.2.1.M20120914-1800"/>
- <unit id="org.eclipse.platform.sdk" version="4.2.1.M20120914-1800"/>
- <unit id="org.eclipse.sdk.feature.group" version="4.2.1.v20120814-120134-7T7oDODQ-3Heq-afCDlg7T4xJuvxaC2ohMfCfB5451Rz0"/>
- <unit id="org.eclipse.sdk.ide" version="4.2.1.M20120914-1800"/>
- <unit id="org.eclipse.cvs.feature.group" version="1.3.200.v20120525-1249-7B79FJJAkF7BF7VEH5IAJT"/>
- <unit id="org.eclipse.jdt.feature.group" version="3.8.1.v20120814-104540-8-8nFqpFNOfwKDRVz-tXOcL5d_83"/>
- <unit id="org.eclipse.equinox.server.core.feature.group" version="1.2.0.v20120522-1841-7K7VFO1F7RZHQZI4_c8StnvFB"/>
- <unit id="org.eclipse.equinox.executable.feature.group" version="3.6.0.v20120522-1813-7P7OG2BFLWUl7UmbVUO9iCm"/>
- <unit id="org.eclipse.equinox.compendium.sdk.feature.group" version="3.8.0.v20120522-1841-7X7eGb7FPGjtJjv1kjS_NdG"/>
- <unit id="org.eclipse.equinox.core.sdk.feature.group" version="3.8.0.v20120522-1813-85FAcGbFFoYTldJrUNk3a52oHJ"/>
- <unit id="org.eclipse.equinox.p2.discovery.feature.feature.group" version="1.0.100.v20120524-0542-4-Bh9oB58A5N9L28PCQ"/>
- <unit id="org.eclipse.equinox.p2.user.ui.feature.group" version="2.2.0.v20120524-0542-62DG9JXTlSiz-UbcP0w0KGl9CKNP"/>
- <unit id="org.eclipse.equinox.p2.sdk.feature.group" version="3.8.0.v20120524-0542-9N89H_oGMMn84Qsz0iIohu4jLeQD"/>
- <unit id="org.eclipse.equinox.serverside.sdk.feature.group" version="3.8.0.v20120522-1841-9Q7dFszFYGis9uZsz0QodZP4fL9p"/>
- <unit id="org.eclipse.equinox.sdk.feature.group" version="3.8.0.v20120522-1841-7M7fA78g5_y-g-jtHxcd5k8q8lFR"/>
- <unit id="org.eclipse.equinox.weaving.sdk.feature.group" version="1.0.200.v20120522-1841-79-FKsEVVFNVFsVk7O6G6"/>
- <unit id="org.eclipse.equinox.server.jetty.feature.group" version="1.1.0.v20120522-1841-8077C0F8NcJTbL1ab47MJ5"/>
- <unit id="org.eclipse.equinox.server.p2.feature.group" version="1.2.0.v20120522-1841-7z7_FfoFTy21Yu4Ykq_engx38"/>
- <unit id="org.eclipse.equinox.server.servletbridge.feature.group" version="1.0.101.v20120522-1841-42F9w9oB58B5KBB2ADHO"/>
- <unit id="org.eclipse.rcp.feature.group" version="4.2.1.v20120814-120134-7IAPA8BrHQicS-rjP0GbqK780kMy"/>
- <unit id="org.eclipse.pde.feature.group" version="3.8.1.v20120814-104528-7c7vFixFFt6Zr5aC6KM6LGWSd"/>
- <unit id="org.eclipse.help.feature.group" version="1.4.1.v20120726-051048-8R7xFOUFLWUl7MoSKV_RBXl27"/>
-
- <!-- DTP -->
- <unit id="org.eclipse.datatools.modelbase.feature.feature.group" version="1.10.1.v201208161415-7707FCcNBHLCgLUEdUb"/>
- <unit id="org.eclipse.datatools.connectivity.feature.feature.group" version="1.10.1.v201208161415-7C7h94Et1axpCXkXlTa6fgHd9vA"/>
- <unit id="org.eclipse.datatools.connectivity.oda.feature.feature.group" version="1.10.1.v201208161415-7H7C7TCcNBHLCnH_EYOb"/>
- <unit id="org.eclipse.datatools.connectivity.oda.designer.feature.feature.group" version="1.10.1.v201208161415-4127w312312232267"/>
- <unit id="org.eclipse.datatools.connectivity.oda.designer.core.feature.feature.group" version="1.10.1.v201208161415-7B7C7NCcNBGUBnIZDaUY"/>
- <unit id="org.eclipse.datatools.enablement.feature.feature.group" version="1.10.1.v201208161415-7J9Q7FBWxeNcZB5LWgyhH7patz0v"/>
- <unit id="org.eclipse.datatools.enablement.apache.derby.feature.feature.group" version="1.10.1.v201208161415-77798gBmKDQ2MoTULxcy9IIQ"/>
- <unit id="org.eclipse.datatools.enablement.hsqldb.feature.feature.group" version="1.10.1.v201208161415-67E1AqGBM7KfNUHxJR9IIQ"/>
- <unit id="org.eclipse.datatools.enablement.ibm.feature.feature.group" version="1.10.1.v201208161415-7F47WFC7sRdqScnobkd4"/>
- <unit id="org.eclipse.datatools.enablement.jdbc.feature.feature.group" version="1.10.1.v201208161415-4-29oB5895RAE8HHP"/>
- <unit id="org.eclipse.datatools.enablement.jdt.feature.feature.group" version="1.10.1.v201208161415-2-07w312218332612"/>
- <unit id="org.eclipse.datatools.enablement.msft.feature.feature.group" version="1.10.1.v201208161415-544AkF7AL7MDMAQ8O"/>
- <unit id="org.eclipse.datatools.enablement.mysql.feature.feature.group" version="1.10.1.v201208161415-5477AkF7AK7_AMENEA"/>
- <unit id="org.eclipse.datatools.enablement.oda.feature.feature.group" version="1.10.1.v201208161415-7A7T7CDZRDKHF_HnGjOX"/>
- <unit id="org.eclipse.datatools.enablement.oda.designer.feature.feature.group" version="1.10.1.v201208161415-3368s7356485C59AB"/>
- <unit id="org.eclipse.datatools.enablement.oracle.feature.feature.group" version="1.10.1.v201208161415-548fAkF7AL7RBJANAI"/>
- <unit id="org.eclipse.datatools.enablement.postgresql.feature.feature.group" version="1.10.1.v201208161415-553AkF7AK8PCRBQBP"/>
- <unit id="org.eclipse.datatools.enablement.sap.feature.feature.group" version="1.10.1.v201208161415-540AkF7AJ7YEJBU7S"/>
- <unit id="org.eclipse.datatools.enablement.sybase.feature.feature.group" version="1.10.1.v201208161415-7E46F9NiNc1QBgyT6T6"/>
- <unit id="org.eclipse.datatools.enablement.ingres.feature.feature.group" version="1.10.1.v201208161415-540AkF78Z7UCRAQDB"/>
- <unit id="org.eclipse.datatools.enablement.sqlite.feature.feature.group" version="1.10.1.v201208161415-542AkF7AJ7SAKAPBF"/>
- <unit id="org.eclipse.datatools.sqldevtools.feature.feature.group" version="1.10.1.v201208161415-7N8B7JFDsn5iz-Aex68NyGpC_AgL"/>
- <unit id="org.eclipse.datatools.sqldevtools.results.feature.feature.group" version="1.10.1.v201208161415-57B79AkF7BD7SGC9ZEH"/>
- <unit id="org.eclipse.datatools.sqldevtools.ddlgen.feature.feature.group" version="1.10.1.v201208161415-7A-78F7RZHQTIyWmM1_s"/>
- <unit id="org.eclipse.datatools.sqldevtools.ddl.feature.feature.group" version="1.10.1.v201208161415-279078B089G8S_IRUJz-XnN2at"/>
- <unit id="org.eclipse.datatools.sqldevtools.data.feature.feature.group" version="1.10.1.v201208161415-645BgJ9EDBTHPAhQU"/>
- <unit id="org.eclipse.datatools.sqldevtools.parsers.feature.feature.group" version="1.10.1.v201208161415-623BgJ9EE9ZJRDZLA"/>
- <unit id="org.eclipse.datatools.sqldevtools.sqlbuilder.feature.feature.group" version="1.10.1.v201208161415-79-78EVVFNQGpRkHz0Sm"/>
- <unit id="org.eclipse.datatools.sqldevtools.schemaobjecteditor.feature.feature.group" version="1.10.1.v201208161415-4208375LG5BJ93413"/>
- <unit id="org.eclipse.datatools.intro.feature.group" version="1.10.1.v201208161415-26-7w312116392911"/>
- <unit id="org.eclipse.datatools.doc.user.feature.group" version="1.10.1.v201208161415-47C08w95FFAK89FHEC7"/>
- <unit id="org.eclipse.datatools.common.doc.user.feature.group" version="1.10.1.v201208161415-26-311A16321A3557"/>
- <unit id="org.eclipse.datatools.connectivity.doc.user.feature.group" version="1.10.1.v201208161415-37D-7733L3D753L7BBF"/>
- <unit id="org.eclipse.datatools.sqltools.doc.user.feature.group" version="1.10.1.v201208161415-37D-7733L3D753L7BBF"/>
- <unit id="org.eclipse.persistence.jpa.feature.group" version="2.4.0.v20120608-r11652"/>
-
- <!-- RSE, TM -->
- <unit id="org.eclipse.rse.feature.group" version="3.4.1.201209191030-7L7IFBY83omx__z0RFpKdWB-r5MS"/>
- <unit id="org.eclipse.rse.ssh.feature.group" version="3.0.400.201209191030-7A4FEc7F7BF7gBgB7J7"/>
- <unit id="org.eclipse.rse.terminals.feature.group" version="1.2.1.201209191030-773Ep7H8AG8_DZK9Q9252"/>
- <unit id="org.eclipse.rse.telnet.feature.group" version="2.3.0.201209191030-775FD3879AE8YB_E8OA4"/>
- <unit id="org.eclipse.rse.ftp.feature.group" version="3.1.0.201209191030-782FBV8377A6N8PB6J84"/>
- <unit id="org.eclipse.rse.local.feature.group" version="2.1.400.201209191030-7B4FSg7J9EJ9rErE9O9"/>
- <unit id="org.eclipse.rse.useractions.feature.group" version="1.1.400.201209191030-31FBV773573L5L5393"/>
- <unit id="org.eclipse.tm.terminal.feature.group" version="3.2.1.201209191030-41031231A2A2141"/>
- <unit id="org.eclipse.tm.terminal.view.feature.group" version="2.3.0.201209191030-32-31231A2A2141"/>
- <unit id="org.eclipse.tm.terminal.telnet.feature.group" version="2.1.100.201209191030-308Z31231A2A2141"/>
- <unit id="org.eclipse.tm.terminal.serial.feature.group" version="2.1.100.201209191030-308Z31231A2A2141"/>
- <unit id="org.eclipse.tm.terminal.feature.group" version="3.2.1.201209191030-41031231A2A2141"/>
- <unit id="org.eclipse.tm.terminal.ssh.feature.group" version="2.1.100.201209191030-308Z31231A2A2141"/>
-
- <!-- JBIDE-9549, JBDS-1904 add egit/jgit and mylyn support to TP, including dependent plugins -->
- <unit id="org.eclipse.jsch.ui" version="1.1.400.v20120522-1148"/>
- <unit id="org.eclipse.jsch.core" version="1.1.400.v20120522-1148"/>
- <unit id="com.jcraft.jsch" version="0.1.46.v201205102330"/>
- <unit id="org.eclipse.jgit.feature.group" version="2.1.0.201209190230-r"/>
- <unit id="org.eclipse.egit.feature.group" version="2.1.0.201209190230-r"/>
- <unit id="org.eclipse.egit.mylyn.feature.group" version="2.1.0.201209190230-r"/>
- <unit id="org.eclipse.mylyn.github.feature.feature.group" version="2.1.0.201209190230-r"/>
-
- <!-- needed for JBoss Central -->
- <unit id="com.sun.syndication" version="0.9.0.v200803061811"/>
- <unit id="org.eclipse.mylyn.commons.core" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.discovery.ui" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.discovery.core" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.commons.ui" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.commons.net" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.commons.screenshots" version="3.8.2.v20120916-1200"/>
-
- <!-- JBDS-1904, JBIDE-9351, JBIDE-10094 add mylyn and jira to JBT/JBDS TP -->
- <unit id="org.eclipse.mylyn_feature.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.ide_feature.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.tasks.ide.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.commons.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.commons.compatibility.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.commons.identity.feature.group" version="1.0.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.commons.notifications.feature.group" version="1.0.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.commons.repositories.feature.group" version="1.0.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.commons.repositories.http.feature.group" version="1.0.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.context_feature.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.bugzilla_feature.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.discovery.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.java_feature.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.monitor.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.pde_feature.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.team_feature.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.wikitext_feature.feature.group" version="1.7.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.cvs.feature.group" version="1.0.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.git.feature.group" version="1.0.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.versions.feature.group" version="1.0.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.commons.sdk.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.tasks.ui" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.tasks.core" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.tasks.bugs" version="3.8.2.v20120916-1200"/>
-
- <unit id="org.eclipse.ui" version="3.103.0.v20120705-114351"/>
- <unit id="org.eclipse.core.runtime" version="3.8.0.v20120521-2346"/>
- <unit id="org.eclipse.core.resources" version="3.8.1.v20120802-154922"/>
- <unit id="org.eclipse.ui.ide" version="3.8.1.v20120828-165804"/>
- <unit id="org.eclipse.ui.workbench.texteditor" version="3.8.0.v20120523-1310"/>
- <unit id="org.eclipse.jface.text" version="3.8.1.v20120828-155502"/>
- <unit id="org.eclipse.osgi" version="3.8.1.v20120830-144521"/>
- <unit id="org.eclipse.core.filesystem" version="1.3.200.v20120522-2012"/>
- <unit id="org.eclipse.ui.forms" version="3.5.200.v20120705-114351"/>
- <unit id="org.eclipse.ui.editors" version="3.8.0.v20120523-1540"/>
- <unit id="org.eclipse.team.core" version="3.6.100.v20120524-0627"/>
- <unit id="org.eclipse.team.ui" version="3.6.200.v20120522-1148"/>
- <unit id="org.eclipse.jface" version="3.8.101.v20120817-083647"/>
- <unit id="org.eclipse.compare" version="3.5.300.v20120522-1148"/>
- <!-- update.ui is on the 3.8 site, not the 4.2 site -->
- <unit id="org.eclipse.update.ui" version="3.3.0.v20120523-1742"/>
- <!-- there are two versions of this IU -
- 4.2 has ./org.eclipse.update.core_3.2.600.v20120530-1204.jar and
- 3.8 has ./org.eclipse.update.core_3.2.600.v20120530-120908.jar
- -->
- <!-- <unit id="org.eclipse.update.core" version="3.2.600.v20120530-120908"/> -->
- <unit id="org.eclipse.update.core" version="3.2.600.v20120820-205746"/>
- <unit id="com.atlassian.connector.commons" version="4.0.0.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.bamboo.core" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.bamboo.ui" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.branding.ui" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.commons.core" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.commons.ui" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.core" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.crucible.core" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.crucible.ui" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.cvs.core" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.cvs.ui" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.directclickthrough.ui" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.fisheye.core" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.fisheye.ui" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.help" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.jira.core" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.jira.ui" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.monitor.core" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.monitor.ui" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.subclipse.core" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.subclipse.ui" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.ui" version="3.0.6.v20120628"/>
- <!-- dep for com.atlassian.connector.eclipse.directclickthrough.ui -->
- <unit id="com.thoughtworks.xstream" version="1.3.1.v201111240924"/>
- <unit id="org.xmlpull" version="1.1.3.4_v201201052148"/>
-
- <unit id="org.jdom_jaxen" version="1.0.0.20081203-1100"/>
- <unit id="org.mortbay.jetty.server" version="6.1.23.v201012071420"/>
- <unit id="org.mortbay.jetty.util" version="6.1.23.v201012071420"/>
-
- <unit id="org.joda.time" version="1.6.0.v20081202-0100"/>
-
- <!-- WTP -->
- <unit id="org.eclipse.jst.jee" version="1.0.500.v201202020745"/>
- <unit id="org.eclipse.jst.jee.web" version="1.0.301.v201007070907"/>
- <unit id="org.eclipse.jst.common.fproj.enablement.jdt.feature.group" version="3.4.0.v201108231500-377DG8s73543J5H6D66"/>
- <unit id="org.eclipse.jst.ws.axis2tools.feature.feature.group" version="1.1.200.v201103022333-78-FF0DZRDKDDePSKwHj"/>
- <unit id="org.eclipse.jst.ws.cxf.feature.feature.group" version="1.1.0.v201201312103-7H79FHxFAKlbotH5e9l3vAA6MBG"/>
-
- <unit id="org.eclipse.jpt.common.feature.feature.group" version="1.2.1.v201208222210-663AkF7BF7cFFFFB7"/>
- <unit id="org.eclipse.jpt.common.eclipselink.feature.feature.group" version="1.2.1.v201208222210-3318s73573J777753"/>
- <unit id="org.eclipse.jpt.jpa.eclipselink.feature.feature.group" version="3.2.1.v201208222210-7M7J78F7RZHQYJAQsS4SVFD7"/>
- <unit id="org.eclipse.jpt.jpa.feature.feature.group" version="3.2.1.v201208222210-7S7K8gFBBoPapQieUcW_TFD7"/>
-
- <unit id="org.eclipse.jsf.feature.feature.group" version="3.4.1.v201208241503-7E7JFBjF9JgLWgMhh4X6Ps"/>
- <unit id="org.eclipse.jsf.feature.source.feature.group" version="3.4.1.v201208241503-7E7JFBjF9JgLWgMhh4X6Ps"/>
- <unit id="org.eclipse.jst.common.fproj.enablement.jdt.feature.group" version="3.4.0.v201108231500-377DG8s73543J5H6D66"/>
- <unit id="org.eclipse.jst.enterprise_core.feature.feature.group" version="3.4.0.v201108110300-52FShAkF7BA8O8J9OC8"/>
- <unit id="org.eclipse.jst.enterprise_ui.feature.feature.group" version="3.4.0.v201107072300-7b7JIM0FSK2WM1PS9Ar7AKUz0TrWn"/>
- <unit id="org.eclipse.jst.enterprise_userdoc.feature.feature.group" version="3.3.100.v201105122000-62FUGBgJ9EA9aEeHRHc"/>
- <unit id="org.eclipse.jst.jsf.apache.trinidad.tagsupport.feature.feature.group" version="2.2.201.v201208241503-20A87w312319352614"/>
- <unit id="org.eclipse.jst.server_adapters.ext.feature.feature.group" version="3.3.101.v20120821_1416-777HFL6CcNBDmBjKOFHIEB"/>
- <unit id="org.eclipse.jst.server_adapters.feature.feature.group" version="3.2.200.v20120517_1442-20A77w31231628a2553"/>
- <unit id="org.eclipse.jst.server_core.feature.feature.group" version="3.4.0.v20120503_1042-31FEe8s73554A4Fa2153"/>
- <unit id="org.eclipse.jst.server_ui.feature.feature.group" version="3.4.0.v20120503_1042-7A77FHr9xFcC2CFLZBCJMHLg7D64"/>
- <unit id="org.eclipse.jst.server_userdoc.feature.feature.group" version="3.3.100.v20110303-2-Eo7w3121162A3329"/>
- <unit id="org.eclipse.jst.web_core.feature.feature.group" version="3.4.1.v201208160300-7Q7EGVxFE9LeAJKvylauQtyivz-0sSxz003877"/>
- <unit id="org.eclipse.jst.webpageeditor.feature.feature.group" version="2.3.8.v201208241503-46DI9oB58B5TBH8K5E"/>
- <unit id="org.eclipse.jst.web_ui.feature.feature.group" version="3.4.1.v201208231800-7F7DFSlC25UrkX5qvgnXz0LZDA6kiWwylC3uxsWk"/>
- <unit id="org.eclipse.jst.web_userdoc.feature.feature.group" version="3.4.1.v201208231800-2117w312319373364"/>
- <unit id="org.eclipse.jst.ws.axis2tools.feature.feature.group" version="1.1.200.v201103022333-78-FF0DZRDKDDePSKwHj"/>
- <unit id="org.eclipse.jst.ws.cxf.feature.feature.group" version="1.1.0.v201201312103-7H79FHxFAKlbotH5e9l3vAA6MBG"/>
- <unit id="org.eclipse.jst.ws.jaxws.dom.feature.feature.group" version="1.0.200.v201109042201-5-F8NAkF7BB7U8PEK8K"/>
- <unit id="org.eclipse.jst.ws.jaxws.feature.feature.group" version="1.2.0.v201204151854-7E7AF70F8NcJS_KqT5TpXq"/>
- <unit id="org.eclipse.jst.ws.jaxws_userdoc.feature.feature.group" version="1.0.200.v201205012246-3-DF8s73573D795LAF"/>
-
- <unit id="org.eclipse.wst.common.frameworks" version="1.2.200.v201203141800"/>
- <unit id="org.eclipse.wst.common.project.facet.ui" version="1.4.300.v201111030424"/>
- <unit id="org.eclipse.wst.common_core.feature.feature.group" version="3.4.1.v201208162200-7B7EFMTF7RZHOjIuOyR0QS"/>
- <unit id="org.eclipse.wst.common.fproj.feature.group" version="3.4.0.v201202292300-377F8N8s735555393B7B"/>
- <unit id="org.eclipse.wst.common_ui.feature.feature.group" version="3.4.1.v201208170300-7C7AFeEEdhOaweJhCnQfykJvPz-S1RT"/>
- <unit id="org.eclipse.wst.jsdt.feature.feature.group" version="1.4.1.v201208171701-7H7DFg0FC7sReqSyfqesWi"/>
- <unit id="org.eclipse.wst.server_adapters.feature.feature.group" version="3.2.201.v20120821_1517-51F9xAkF7AL8QDRl8GAT"/>
- <unit id="org.eclipse.wst.server_core.feature.feature.group" version="3.3.100.v20110810_1722-33Et8s73563B6Ha3113"/>
- <unit id="org.eclipse.wst.server_ui.feature.feature.group" version="3.3.101.v20120817_1533-7B7AFJQAtMduXxeIc0IpSdC97A9"/>
- <unit id="org.eclipse.wst.server_userdoc.feature.feature.group" version="3.3.200.v20120830_2320-20Eo7w31231941a3363"/>
- <unit id="org.eclipse.wst.web_core.feature.feature.group" version="3.4.1.v201208170345-7E7HFSlAJz-mw9qA03HKTuLirZsDJyCao"/>
- <unit id="org.eclipse.wst.web_ui.feature.feature.group" version="3.4.1.v201208170345-7O7MFsPEMkBJz0wtb-ccsarPSceUIHO9iKk6XVPV"/>
- <unit id="org.eclipse.wst.web_userdoc.feature.feature.group" version="3.3.0.v201102200555-31Eo8s734B3E4H7799"/>
- <unit id="org.eclipse.wst.ws_core.feature.feature.group" version="3.4.0.v201108230503-7L7RFoGFGtGd-xhuy-rRwz-2766"/>
- <unit id="org.eclipse.wst.ws_ui.feature.feature.group" version="3.4.1.v201208172041-7I7CFkXEtEoXHw684K6n3-z-F3stz0lKFx169q5z"/>
- <unit id="org.eclipse.wst.ws_userdoc.feature.feature.group" version="3.1.300.v201102200555-44FR79oB5855Q8IBD7G"/>
- <unit id="org.eclipse.wst.ws_wsdl15.feature.feature.group" version="1.5.301.v201102200555-2407w312123151655"/>
- <unit id="org.eclipse.wst.xml_core.feature.feature.group" version="3.4.1.v201208170345-7C7OFm5F7RZHQRIsOz-Nz-_n"/>
- <unit id="org.eclipse.wst.xml_ui.feature.feature.group" version="3.4.1.v201208170345-7H7GFeFDxumUpsw5rgjWnKDrsz0p4ymwjQz00T2S"/>
- <unit id="org.eclipse.wst.xml_userdoc.feature.feature.group" version="3.3.0.v201102071641-50FYwAkF7B77UBZFDBL"/>
- <unit id="org.eclipse.wst.xml.xpath2.processor.feature.feature.group" version="2.0.100.v201203131922-7A7K0CcNBGPCTJ_FUOb"/>
- <unit id="org.eclipse.wst.xsl.feature.feature.group" version="1.3.100.v201111021744-7T7ZFUaFIqUoJuvaKoCpQDKaGVPc"/>
- <!-- only in JBT: SWTBot -->
- <!--
- <unit id="org.eclipse.swtbot.eclipse.feature.group" version="2.0.5.20111003_1754-3676ac8-dev-e36"/>
- <unit id="org.eclipse.swtbot.eclipse.gef.feature.group" version="2.0.5.20111003_1754-3676ac8-dev-e36"/>
- <unit id="org.eclipse.swtbot.ide.feature.group" version="2.0.5.20111003_1754-3676ac8-dev-e36"/>
- <unit id="org.eclipse.swtbot.eclipse.test.junit4.feature.group" version="2.0.5.20111003_1754-3676ac8-dev-e36"/>
- <unit id="org.eclipse.swtbot.feature.group" version="2.0.5.20111003_1754-3676ac8-dev-e36"/>
- -->
-
- <!-- only in JBT: BIRT -->
- <!--
- <unit id="org.eclipse.birt.osgi.runtime.sdk.feature.group" version="4.2.1.v20120820-793187qD_D0RBQLXOVH-wQkmJ1cI"/>
- <unit id="org.eclipse.birt.feature.group" version="4.2.1.v20120820-ChBG8UGYgRQlJ7y9Lz-wS7nDcRL4"/>
- <unit id="org.eclipse.birt.integration.wtp.feature.group" version="4.2.1.v20120912-1721-5107w31231A2302832"/>
- <unit id="org.eclipse.birt.chart.feature.group" version="4.2.1.v20120820-828i7EFQCnvK_6wFGvqLR"/>
- <unit id="org.eclipse.birt.chart.integration.wtp.feature.group" version="4.2.1.v20120912-1721-5107w31231A2302832"/>
- -->
-
- <!-- only in JBT: GWT/GPE dependencies (include only those which are EPL or other OSS licensed!) -->
- <!--
- <unit id="com.google.gdt.eclipse.suite.e42.feature.feature.group" version="3.1.0.v201208080121-rel-r42"/>
- <unit id="com.google.gwt.eclipse.sdkbundle.e42.feature.feature.group" version="2.4.0.v201208080121-rel-r42"/>
- -->
- </location>
- </locations>
- <targetJRE path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
-</target>
Deleted: trunk/build/target-platform/jbds.target.p2mirror.xml
===================================================================
--- trunk/build/target-platform/jbds.target.p2mirror.xml 2012-10-25 05:15:38 UTC (rev 44618)
+++ trunk/build/target-platform/jbds.target.p2mirror.xml 2012-10-25 05:19:24 UTC (rev 44619)
@@ -1,330 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project name="Download target platform" default="download.target.platform" xmlns:xs="http://www.w3.org/2001/XMLSchema">
-<target name="help">
-<echo>
- Generated with useLatest = false
-
- ---
-
- Use followStrict="true" to prevent downloading all
- requirements not included in the target platform
- or followStrict="false" to fetch everything
-
- To run this script:
-
- /abs/path/to/eclipse -vm /opt/jdk1.6.0/bin/java \
- -nosplash -data /tmp/workspace -consolelog -application \
- org.eclipse.ant.core.antRunner -f *.target.p2mirror.xml \
- -Ddebug=true -DfollowStrict=true -DrepoDir=`pwd`/REPO/
-</echo>
-</target>
-<target name="init" unless="repoDir">
-<fail>Must set -DrepoDir=/abs/path/to/download/artifacts/</fail>
-</target>
-<target name="download.target.platform" depends="init" description="Download from target platform definition" if="repoDir">
-<property name="verbose" value="false"/>
-<property name="followStrict" value="false"/>
-<echo level="info">Download features/plugins into ${repoDir}</echo>
-<p2.mirror destination="file://${repoDir}" verbose="${verbose}">
-<slicingOptions includeFeatures="true" followStrict="${followStrict}"/>
-<source>
-<repository location="http://download.jboss.org/jbosstools/updates/juno/SR1/"/>
-</source>
-<iu id="javax.wsdl" version="1.6.2.v201012040545"/>
-<iu id="javax.wsdl" version="1.5.1.v201012040544"/>
-<iu id="org.jdom" version="1.1.1.v201101151400"/>
-<iu id="org.jdom" version="1.0.0.v201005080400"/>
-<iu id="org.apache.commons.lang" version="2.6.0.v201205030909"/>
-<iu id="org.apache.commons.lang" version="2.4.0.v201005080502"/>
-<iu id="org.apache.commons.lang" version="2.1.0.v201005080500"/>
-<iu id="javax.servlet" version="3.0.0.v201112011016"/>
-<iu id="javax.servlet" version="2.5.0.v200910301333"/>
-<iu id="javax.servlet.jsp" version="2.2.0.v201112011158"/>
-<iu id="javax.servlet.jsp" version="2.0.0.v200806031607"/>
-<iu id="javax.wsdl" version="1.6.2.v201012040545"/>
-<iu id="javax.wsdl" version="1.5.1.v201012040544"/>
-<iu id="javax.xml.bind" version="2.2.0.v201105210648"/>
-<iu id="javax.xml.bind" version="2.1.9.v201005080401"/>
-<iu id="javax.xml.soap" version="1.3.0.v201105210645"/>
-<iu id="javax.xml.soap" version="1.2.0.v201005080501"/>
-<iu id="org.apache.commons.logging" version="1.1.1.v201101211721"/>
-<iu id="org.apache.commons.logging" version="1.0.4.v201101211617"/>
-<iu id="org.apache.lucene" version="2.9.1.v201101211721"/>
-<iu id="org.apache.lucene" version="1.9.1.v201101211617"/>
-<iu id="org.apache.lucene.core" version="3.5.0.v20120319-2345"/>
-<iu id="org.apache.lucene.core" version="2.9.1.v201101211721"/>
-<iu id="org.junit" version="4.10.0.v4_10_0_v20120426-0900"/>
-<iu id="org.junit" version="3.8.2.v3_8_2_v20100427-1100"/>
-<iu id="org.eclipse.m2e.sdk.feature.feature.group" version="1.2.0.20120903-1050"/>
-<iu id="org.eclipse.m2e.feature.feature.group" version="1.2.0.20120903-1050"/>
-<iu id="org.eclipse.m2e.wtp.feature.feature.group" version="0.16.0.20120914-0945"/>
-<iu id="org.sonatype.m2e.mavenarchiver.feature.feature.group" version="0.15.0.201207090125-signed-201209140800"/>
-<iu id="ch.qos.logback.classic" version="1.0.0.v20111214-2030"/>
-<iu id="ch.qos.logback.core" version="1.0.0.v20111214-2030"/>
-<iu id="ch.qos.logback.slf4j" version="1.0.0.v20120123-1500"/>
-<iu id="org.slf4j.api" version="1.6.4.v20120130-2120"/>
-<iu id="com.ning.async-http-client" version="1.6.5.20120903-0645"/>
-<iu id="org.jboss.netty" version="3.2.5.Final-20120903-0645"/>
-<iu id="org.eclipse.equinox.p2.discovery.compatibility" version="1.0.101.v20120524-1717"/>
-<iu id="org.eclipse.equinox.p2.discovery" version="1.0.200.v20120524-1717"/>
-<iu id="org.eclipse.equinox.p2.ui.discovery" version="1.0.0.v20110808-1657"/>
-<iu id="javax.activation" version="1.1.0.v201108011116"/>
-<iu id="org.apache.oro" version="2.0.8.v201005080400"/>
-<iu id="org.apache.commons.io" version="2.0.1.v201105210651"/>
-<iu id="org.apache.commons.codec" version="1.3.0.v201101211617"/>
-<iu id="org.apache.commons.httpclient" version="3.1.0.v201012070820"/>
-<iu id="org.hamcrest" version="1.1.0.v20090501071000"/>
-<iu id="org.hamcrest.core" version="1.1.0.v20090501071000"/>
-<iu id="org.hamcrest.text" version="1.1.0.v20090501071000"/>
-<iu id="org.hamcrest.library" version="1.1.0.v20090501071000"/>
-<iu id="org.hamcrest.integration" version="1.1.0.v20090501071000"/>
-<iu id="org.apache.lucene.highlighter" version="3.5.0.v20120319-2345"/>
-<iu id="org.apache.lucene.memory" version="3.5.0.v20120319-2345"/>
-<iu id="org.apache.lucene.misc" version="3.5.0.v20120319-2345"/>
-<iu id="org.apache.lucene.queries" version="3.5.0.v20120319-2345"/>
-<iu id="org.apache.lucene.snowball" version="2.9.1.v20100421-0704"/>
-<iu id="org.apache.lucene.spellchecker" version="3.5.0.v20120319-2345"/>
-<iu id="org.eclipse.emf.workspace.feature.group" version="1.6.0.v20120328-0001-37708s734E377I3B4C2"/>
-<iu id="org.eclipse.emf.validation.feature.group" version="1.6.0.v20120328-0001-479-9oB56N5BBR6LCA6"/>
-<iu id="org.eclipse.emf.transaction.feature.group" version="1.6.0.v20120328-0001-377-8s734C3E7D15D6B"/>
-<iu id="org.eclipse.emf.feature.group" version="2.8.1.v20120917-0436"/>
-<iu id="org.eclipse.emf.ecore.feature.group" version="2.8.1.v20120911-0500"/>
-<iu id="org.eclipse.emf.codegen.feature.group" version="2.8.0.v20120917-0436"/>
-<iu id="org.eclipse.emf.common.feature.group" version="2.8.0.v20120911-0500"/>
-<iu id="org.eclipse.emf.databinding.feature.group" version="1.2.0.v20120917-0436"/>
-<iu id="org.eclipse.emf.codegen.ecore.feature.group" version="2.8.1.v20120917-0436"/>
-<iu id="org.eclipse.emf.ecore.edit.feature.group" version="2.8.0.v20120917-0436"/>
-<iu id="org.eclipse.emf.ecore.editor.feature.group" version="2.8.0.v20120917-0436"/>
-<iu id="org.eclipse.emf.ecore.feature.group" version="2.8.1.v20120911-0500"/>
-<iu id="org.eclipse.emf.edit.feature.group" version="2.8.0.v20120917-0436"/>
-<iu id="org.eclipse.xsd.edit.feature.group" version="2.7.0.v20120917-0436"/>
-<iu id="org.eclipse.xsd.ecore.converter.feature.group" version="2.7.0.v20120917-0436"/>
-<iu id="org.eclipse.xsd.editor.feature.group" version="2.7.0.v20120917-0436"/>
-<iu id="org.eclipse.xsd.mapping.editor.feature.group" version="2.7.0.v20120917-0436"/>
-<iu id="org.eclipse.xsd.mapping.feature.group" version="2.7.0.v20120917-0436"/>
-<iu id="org.eclipse.xsd.feature.group" version="2.8.0.v20120917-0436"/>
-<iu id="org.eclipse.graphiti.feature.feature.group" version="0.9.1.v20120919-0732"/>
-<iu id="org.eclipse.draw2d.feature.group" version="3.9.0.201208201742"/>
-<iu id="org.eclipse.gef.feature.group" version="3.9.0.201208201742"/>
-<iu id="org.eclipse.zest.feature.group" version="1.5.0.201208201742"/>
-<iu id="org.eclipse.uml2.feature.group" version="4.0.1.v20120913-1441"/>
-<iu id="org.eclipse.uml2.doc.feature.group" version="4.0.0.v20120913-1441"/>
-<iu id="com.ibm.icu.base" version="4.4.2.v20110831"/>
-<iu id="org.eclipse.platform.feature.group" version="4.2.1.v20120814-120134-9JF7BHVGFyMveli1uX6aTH0q-eAap6PAgOP5mO"/>
-<iu id="org.eclipse.platform.ide" version="4.2.1.M20120914-1800"/>
-<iu id="org.eclipse.platform.sdk" version="4.2.1.M20120914-1800"/>
-<iu id="org.eclipse.sdk.feature.group" version="4.2.1.v20120814-120134-7T7oDODQ-3Heq-afCDlg7T4xJuvxaC2ohMfCfB5451Rz0"/>
-<iu id="org.eclipse.sdk.ide" version="4.2.1.M20120914-1800"/>
-<iu id="org.eclipse.cvs.feature.group" version="1.3.200.v20120525-1249-7B79FJJAkF7BF7VEH5IAJT"/>
-<iu id="org.eclipse.jdt.feature.group" version="3.8.1.v20120814-104540-8-8nFqpFNOfwKDRVz-tXOcL5d_83"/>
-<iu id="org.eclipse.equinox.server.core.feature.group" version="1.2.0.v20120522-1841-7K7VFO1F7RZHQZI4_c8StnvFB"/>
-<iu id="org.eclipse.equinox.executable.feature.group" version="3.6.0.v20120522-1813-7P7OG2BFLWUl7UmbVUO9iCm"/>
-<iu id="org.eclipse.equinox.compendium.sdk.feature.group" version="3.8.0.v20120522-1841-7X7eGb7FPGjtJjv1kjS_NdG"/>
-<iu id="org.eclipse.equinox.core.sdk.feature.group" version="3.8.0.v20120522-1813-85FAcGbFFoYTldJrUNk3a52oHJ"/>
-<iu id="org.eclipse.equinox.p2.discovery.feature.feature.group" version="1.0.100.v20120524-0542-4-Bh9oB58A5N9L28PCQ"/>
-<iu id="org.eclipse.equinox.p2.user.ui.feature.group" version="2.2.0.v20120524-0542-62DG9JXTlSiz-UbcP0w0KGl9CKNP"/>
-<iu id="org.eclipse.equinox.p2.sdk.feature.group" version="3.8.0.v20120524-0542-9N89H_oGMMn84Qsz0iIohu4jLeQD"/>
-<iu id="org.eclipse.equinox.serverside.sdk.feature.group" version="3.8.0.v20120522-1841-9Q7dFszFYGis9uZsz0QodZP4fL9p"/>
-<iu id="org.eclipse.equinox.sdk.feature.group" version="3.8.0.v20120522-1841-7M7fA78g5_y-g-jtHxcd5k8q8lFR"/>
-<iu id="org.eclipse.equinox.weaving.sdk.feature.group" version="1.0.200.v20120522-1841-79-FKsEVVFNVFsVk7O6G6"/>
-<iu id="org.eclipse.equinox.server.jetty.feature.group" version="1.1.0.v20120522-1841-8077C0F8NcJTbL1ab47MJ5"/>
-<iu id="org.eclipse.equinox.server.p2.feature.group" version="1.2.0.v20120522-1841-7z7_FfoFTy21Yu4Ykq_engx38"/>
-<iu id="org.eclipse.equinox.server.servletbridge.feature.group" version="1.0.101.v20120522-1841-42F9w9oB58B5KBB2ADHO"/>
-<iu id="org.eclipse.rcp.feature.group" version="4.2.1.v20120814-120134-7IAPA8BrHQicS-rjP0GbqK780kMy"/>
-<iu id="org.eclipse.pde.feature.group" version="3.8.1.v20120814-104528-7c7vFixFFt6Zr5aC6KM6LGWSd"/>
-<iu id="org.eclipse.help.feature.group" version="1.4.1.v20120726-051048-8R7xFOUFLWUl7MoSKV_RBXl27"/>
-<iu id="org.eclipse.update.ui" version="3.3.0.v20120523-1742"/>
-<iu id="org.eclipse.update.core" version="3.2.600.v20120820-205746"/>
-<iu id="org.eclipse.datatools.modelbase.feature.feature.group" version="1.10.1.v201208161415-7707FCcNBHLCgLUEdUb"/>
-<iu id="org.eclipse.datatools.connectivity.feature.feature.group" version="1.10.1.v201208161415-7C7h94Et1axpCXkXlTa6fgHd9vA"/>
-<iu id="org.eclipse.datatools.connectivity.oda.feature.feature.group" version="1.10.1.v201208161415-7H7C7TCcNBHLCnH_EYOb"/>
-<iu id="org.eclipse.datatools.connectivity.oda.designer.feature.feature.group" version="1.10.1.v201208161415-4127w312312232267"/>
-<iu id="org.eclipse.datatools.connectivity.oda.designer.core.feature.feature.group" version="1.10.1.v201208161415-7B7C7NCcNBGUBnIZDaUY"/>
-<iu id="org.eclipse.datatools.enablement.feature.feature.group" version="1.10.1.v201208161415-7J9Q7FBWxeNcZB5LWgyhH7patz0v"/>
-<iu id="org.eclipse.datatools.enablement.apache.derby.feature.feature.group" version="1.10.1.v201208161415-77798gBmKDQ2MoTULxcy9IIQ"/>
-<iu id="org.eclipse.datatools.enablement.hsqldb.feature.feature.group" version="1.10.1.v201208161415-67E1AqGBM7KfNUHxJR9IIQ"/>
-<iu id="org.eclipse.datatools.enablement.ibm.feature.feature.group" version="1.10.1.v201208161415-7F47WFC7sRdqScnobkd4"/>
-<iu id="org.eclipse.datatools.enablement.jdbc.feature.feature.group" version="1.10.1.v201208161415-4-29oB5895RAE8HHP"/>
-<iu id="org.eclipse.datatools.enablement.jdt.feature.feature.group" version="1.10.1.v201208161415-2-07w312218332612"/>
-<iu id="org.eclipse.datatools.enablement.msft.feature.feature.group" version="1.10.1.v201208161415-544AkF7AL7MDMAQ8O"/>
-<iu id="org.eclipse.datatools.enablement.mysql.feature.feature.group" version="1.10.1.v201208161415-5477AkF7AK7_AMENEA"/>
-<iu id="org.eclipse.datatools.enablement.oda.feature.feature.group" version="1.10.1.v201208161415-7A7T7CDZRDKHF_HnGjOX"/>
-<iu id="org.eclipse.datatools.enablement.oda.designer.feature.feature.group" version="1.10.1.v201208161415-3368s7356485C59AB"/>
-<iu id="org.eclipse.datatools.enablement.oracle.feature.feature.group" version="1.10.1.v201208161415-548fAkF7AL7RBJANAI"/>
-<iu id="org.eclipse.datatools.enablement.postgresql.feature.feature.group" version="1.10.1.v201208161415-553AkF7AK8PCRBQBP"/>
-<iu id="org.eclipse.datatools.enablement.sap.feature.feature.group" version="1.10.1.v201208161415-540AkF7AJ7YEJBU7S"/>
-<iu id="org.eclipse.datatools.enablement.sybase.feature.feature.group" version="1.10.1.v201208161415-7E46F9NiNc1QBgyT6T6"/>
-<iu id="org.eclipse.datatools.enablement.ingres.feature.feature.group" version="1.10.1.v201208161415-540AkF78Z7UCRAQDB"/>
-<iu id="org.eclipse.datatools.enablement.sqlite.feature.feature.group" version="1.10.1.v201208161415-542AkF7AJ7SAKAPBF"/>
-<iu id="org.eclipse.datatools.sqldevtools.feature.feature.group" version="1.10.1.v201208161415-7N8B7JFDsn5iz-Aex68NyGpC_AgL"/>
-<iu id="org.eclipse.datatools.sqldevtools.results.feature.feature.group" version="1.10.1.v201208161415-57B79AkF7BD7SGC9ZEH"/>
-<iu id="org.eclipse.datatools.sqldevtools.ddlgen.feature.feature.group" version="1.10.1.v201208161415-7A-78F7RZHQTIyWmM1_s"/>
-<iu id="org.eclipse.datatools.sqldevtools.ddl.feature.feature.group" version="1.10.1.v201208161415-279078B089G8S_IRUJz-XnN2at"/>
-<iu id="org.eclipse.datatools.sqldevtools.data.feature.feature.group" version="1.10.1.v201208161415-645BgJ9EDBTHPAhQU"/>
-<iu id="org.eclipse.datatools.sqldevtools.parsers.feature.feature.group" version="1.10.1.v201208161415-623BgJ9EE9ZJRDZLA"/>
-<iu id="org.eclipse.datatools.sqldevtools.sqlbuilder.feature.feature.group" version="1.10.1.v201208161415-79-78EVVFNQGpRkHz0Sm"/>
-<iu id="org.eclipse.datatools.sqldevtools.schemaobjecteditor.feature.feature.group" version="1.10.1.v201208161415-4208375LG5BJ93413"/>
-<iu id="org.eclipse.datatools.intro.feature.group" version="1.10.1.v201208161415-26-7w312116392911"/>
-<iu id="org.eclipse.datatools.doc.user.feature.group" version="1.10.1.v201208161415-47C08w95FFAK89FHEC7"/>
-<iu id="org.eclipse.datatools.common.doc.user.feature.group" version="1.10.1.v201208161415-26-311A16321A3557"/>
-<iu id="org.eclipse.datatools.connectivity.doc.user.feature.group" version="1.10.1.v201208161415-37D-7733L3D753L7BBF"/>
-<iu id="org.eclipse.datatools.sqltools.doc.user.feature.group" version="1.10.1.v201208161415-37D-7733L3D753L7BBF"/>
-<iu id="org.eclipse.rse.feature.group" version="3.4.1.201209191030-7L7IFBY83omx__z0RFpKdWB-r5MS"/>
-<iu id="org.eclipse.rse.ssh.feature.group" version="3.0.400.201209191030-7A4FEc7F7BF7gBgB7J7"/>
-<iu id="org.eclipse.rse.terminals.feature.group" version="1.2.1.201209191030-773Ep7H8AG8_DZK9Q9252"/>
-<iu id="org.eclipse.rse.telnet.feature.group" version="2.3.0.201209191030-775FD3879AE8YB_E8OA4"/>
-<iu id="org.eclipse.rse.ftp.feature.group" version="3.1.0.201209191030-782FBV8377A6N8PB6J84"/>
-<iu id="org.eclipse.rse.local.feature.group" version="2.1.400.201209191030-7B4FSg7J9EJ9rErE9O9"/>
-<iu id="org.eclipse.rse.useractions.feature.group" version="1.1.400.201209191030-31FBV773573L5L5393"/>
-<iu id="org.eclipse.tm.terminal.feature.group" version="3.2.1.201209191030-41031231A2A2141"/>
-<iu id="org.eclipse.tm.terminal.view.feature.group" version="2.3.0.201209191030-32-31231A2A2141"/>
-<iu id="org.eclipse.tm.terminal.telnet.feature.group" version="2.1.100.201209191030-308Z31231A2A2141"/>
-<iu id="org.eclipse.tm.terminal.serial.feature.group" version="2.1.100.201209191030-308Z31231A2A2141"/>
-<iu id="org.eclipse.tm.terminal.feature.group" version="3.2.1.201209191030-41031231A2A2141"/>
-<iu id="org.eclipse.tm.terminal.ssh.feature.group" version="2.1.100.201209191030-308Z31231A2A2141"/>
-<iu id="org.eclipse.jsf.feature.source.feature.group" version="3.4.1.v201208241503-7E7JFBjF9JgLWgMhh4X6Ps"/>
-<iu id="org.eclipse.jst.jee" version="1.0.500.v201202020745"/>
-<iu id="org.eclipse.wst.common.frameworks" version="1.2.200.v201203141800"/>
-<iu id="org.eclipse.wst.common.project.facet.ui" version="1.4.300.v201111030424"/>
-<iu id="org.eclipse.jst.jee.web" version="1.0.301.v201007070907"/>
-<iu id="org.eclipse.jst.common.fproj.enablement.jdt.feature.group" version="3.4.0.v201108231500-377DG8s73543J5H6D66"/>
-<iu id="org.eclipse.jst.ws.axis2tools.feature.feature.group" version="1.1.200.v201103022333-78-FF0DZRDKDDePSKwHj"/>
-<iu id="org.eclipse.jst.ws.cxf.feature.feature.group" version="1.1.0.v201201312103-7H79FHxFAKlbotH5e9l3vAA6MBG"/>
-<iu id="org.eclipse.jpt.common.feature.feature.group" version="1.2.1.v201208222210-663AkF7BF7cFFFFB7"/>
-<iu id="org.eclipse.jpt.common.eclipselink.feature.feature.group" version="1.2.1.v201208222210-3318s73573J777753"/>
-<iu id="org.eclipse.jpt.jpa.eclipselink.feature.feature.group" version="3.2.1.v201208222210-7M7J78F7RZHQYJAQsS4SVFD7"/>
-<iu id="org.eclipse.jpt.jpa.feature.feature.group" version="3.2.1.v201208222210-7S7K8gFBBoPapQieUcW_TFD7"/>
-<iu id="org.eclipse.persistence.jpa.feature.group" version="2.4.0.v20120608-r11652"/>
-<iu id="org.eclipse.jsf.feature.feature.group" version="3.4.1.v201208241503-7E7JFBjF9JgLWgMhh4X6Ps"/>
-<iu id="org.eclipse.jst.common.fproj.enablement.jdt.feature.group" version="3.4.0.v201108231500-377DG8s73543J5H6D66"/>
-<iu id="org.eclipse.jst.enterprise_core.feature.feature.group" version="3.4.0.v201108110300-52FShAkF7BA8O8J9OC8"/>
-<iu id="org.eclipse.jst.enterprise_ui.feature.feature.group" version="3.4.0.v201107072300-7b7JIM0FSK2WM1PS9Ar7AKUz0TrWn"/>
-<iu id="org.eclipse.jst.enterprise_userdoc.feature.feature.group" version="3.3.100.v201105122000-62FUGBgJ9EA9aEeHRHc"/>
-<iu id="org.eclipse.jst.jsf.apache.trinidad.tagsupport.feature.feature.group" version="2.2.201.v201208241503-20A87w312319352614"/>
-<iu id="org.eclipse.jst.server_adapters.ext.feature.feature.group" version="3.3.101.v20120821_1416-777HFL6CcNBDmBjKOFHIEB"/>
-<iu id="org.eclipse.jst.server_adapters.feature.feature.group" version="3.2.200.v20120517_1442-20A77w31231628a2553"/>
-<iu id="org.eclipse.jst.server_core.feature.feature.group" version="3.4.0.v20120503_1042-31FEe8s73554A4Fa2153"/>
-<iu id="org.eclipse.jst.server_ui.feature.feature.group" version="3.4.0.v20120503_1042-7A77FHr9xFcC2CFLZBCJMHLg7D64"/>
-<iu id="org.eclipse.jst.server_userdoc.feature.feature.group" version="3.3.100.v20110303-2-Eo7w3121162A3329"/>
-<iu id="org.eclipse.jst.web_core.feature.feature.group" version="3.4.1.v201208160300-7Q7EGVxFE9LeAJKvylauQtyivz-0sSxz003877"/>
-<iu id="org.eclipse.jst.webpageeditor.feature.feature.group" version="2.3.8.v201208241503-46DI9oB58B5TBH8K5E"/>
-<iu id="org.eclipse.jst.web_ui.feature.feature.group" version="3.4.1.v201208231800-7F7DFSlC25UrkX5qvgnXz0LZDA6kiWwylC3uxsWk"/>
-<iu id="org.eclipse.jst.web_userdoc.feature.feature.group" version="3.4.1.v201208231800-2117w312319373364"/>
-<iu id="org.eclipse.jst.ws.axis2tools.feature.feature.group" version="1.1.200.v201103022333-78-FF0DZRDKDDePSKwHj"/>
-<iu id="org.eclipse.jst.ws.cxf.feature.feature.group" version="1.1.0.v201201312103-7H79FHxFAKlbotH5e9l3vAA6MBG"/>
-<iu id="org.eclipse.jst.ws.jaxws.dom.feature.feature.group" version="1.0.200.v201109042201-5-F8NAkF7BB7U8PEK8K"/>
-<iu id="org.eclipse.jst.ws.jaxws.feature.feature.group" version="1.2.0.v201204151854-7E7AF70F8NcJS_KqT5TpXq"/>
-<iu id="org.eclipse.jst.ws.jaxws_userdoc.feature.feature.group" version="1.0.200.v201205012246-3-DF8s73573D795LAF"/>
-<iu id="org.eclipse.wst.common_core.feature.feature.group" version="3.4.1.v201208162200-7B7EFMTF7RZHOjIuOyR0QS"/>
-<iu id="org.eclipse.wst.common.fproj.feature.group" version="3.4.0.v201202292300-377F8N8s735555393B7B"/>
-<iu id="org.eclipse.wst.common_ui.feature.feature.group" version="3.4.1.v201208170300-7C7AFeEEdhOaweJhCnQfykJvPz-S1RT"/>
-<iu id="org.eclipse.wst.jsdt.feature.feature.group" version="1.4.1.v201208171701-7H7DFg0FC7sReqSyfqesWi"/>
-<iu id="org.eclipse.wst.server_adapters.feature.feature.group" version="3.2.201.v20120821_1517-51F9xAkF7AL8QDRl8GAT"/>
-<iu id="org.eclipse.wst.server_core.feature.feature.group" version="3.3.100.v20110810_1722-33Et8s73563B6Ha3113"/>
-<iu id="org.eclipse.wst.server_ui.feature.feature.group" version="3.3.101.v20120817_1533-7B7AFJQAtMduXxeIc0IpSdC97A9"/>
-<iu id="org.eclipse.wst.server_userdoc.feature.feature.group" version="3.3.200.v20120830_2320-20Eo7w31231941a3363"/>
-<iu id="org.eclipse.wst.web_core.feature.feature.group" version="3.4.1.v201208170345-7E7HFSlAJz-mw9qA03HKTuLirZsDJyCao"/>
-<iu id="org.eclipse.wst.web_ui.feature.feature.group" version="3.4.1.v201208170345-7O7MFsPEMkBJz0wtb-ccsarPSceUIHO9iKk6XVPV"/>
-<iu id="org.eclipse.wst.web_userdoc.feature.feature.group" version="3.3.0.v201102200555-31Eo8s734B3E4H7799"/>
-<iu id="org.eclipse.wst.ws_core.feature.feature.group" version="3.4.0.v201108230503-7L7RFoGFGtGd-xhuy-rRwz-2766"/>
-<iu id="org.eclipse.wst.ws_ui.feature.feature.group" version="3.4.1.v201208172041-7I7CFkXEtEoXHw684K6n3-z-F3stz0lKFx169q5z"/>
-<iu id="org.eclipse.wst.ws_userdoc.feature.feature.group" version="3.1.300.v201102200555-44FR79oB5855Q8IBD7G"/>
-<iu id="org.eclipse.wst.ws_wsdl15.feature.feature.group" version="1.5.301.v201102200555-2407w312123151655"/>
-<iu id="org.eclipse.wst.xml_core.feature.feature.group" version="3.4.1.v201208170345-7C7OFm5F7RZHQRIsOz-Nz-_n"/>
-<iu id="org.eclipse.wst.xml_ui.feature.feature.group" version="3.4.1.v201208170345-7H7GFeFDxumUpsw5rgjWnKDrsz0p4ymwjQz00T2S"/>
-<iu id="org.eclipse.wst.xml_userdoc.feature.feature.group" version="3.3.0.v201102071641-50FYwAkF7B77UBZFDBL"/>
-<iu id="org.eclipse.wst.xml.xpath2.processor.feature.feature.group" version="2.0.100.v201203131922-7A7K0CcNBGPCTJ_FUOb"/>
-<iu id="org.eclipse.wst.xsl.feature.feature.group" version="1.3.100.v201111021744-7T7ZFUaFIqUoJuvaKoCpQDKaGVPc"/>
-<iu id="org.eclipse.jsch.ui" version="1.1.400.v20120522-1148"/>
-<iu id="org.eclipse.jsch.core" version="1.1.400.v20120522-1148"/>
-<iu id="com.jcraft.jsch" version="0.1.46.v201205102330"/>
-<iu id="org.eclipse.jgit.feature.group" version="2.1.0.201209190230-r"/>
-<iu id="org.eclipse.egit.feature.group" version="2.1.0.201209190230-r"/>
-<iu id="org.eclipse.egit.mylyn.feature.group" version="2.1.0.201209190230-r"/>
-<iu id="org.eclipse.mylyn.github.feature.feature.group" version="2.1.0.201209190230-r"/>
-<iu id="com.sun.syndication" version="0.9.0.v200803061811"/>
-<iu id="org.eclipse.mylyn.commons.core" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.discovery.ui" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.discovery.core" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.commons.ui" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.commons.net" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.commons.screenshots" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn_feature.feature.group" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.ide_feature.feature.group" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.tasks.ide.feature.group" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.commons.feature.group" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.commons.compatibility.feature.group" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.commons.identity.feature.group" version="1.0.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.commons.notifications.feature.group" version="1.0.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.commons.repositories.feature.group" version="1.0.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.commons.repositories.http.feature.group" version="1.0.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.context_feature.feature.group" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.bugzilla_feature.feature.group" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.discovery.feature.group" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.java_feature.feature.group" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.monitor.feature.group" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.pde_feature.feature.group" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.team_feature.feature.group" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.wikitext_feature.feature.group" version="1.7.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.cvs.feature.group" version="1.0.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.git.feature.group" version="1.0.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.versions.feature.group" version="1.0.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.commons.sdk.feature.group" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.tasks.ui" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.tasks.core" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.tasks.bugs" version="3.8.2.v20120916-1200"/>
-<iu id="com.atlassian.connector.commons" version="4.0.0.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.bamboo.core" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.bamboo.ui" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.branding.ui" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.commons.core" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.commons.ui" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.core" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.crucible.core" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.crucible.ui" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.cvs.core" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.cvs.ui" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.directclickthrough.ui" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.fisheye.core" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.fisheye.ui" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.help" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.jira.core" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.jira.ui" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.monitor.core" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.monitor.ui" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.subclipse.core" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.subclipse.ui" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.ui" version="3.0.6.v20120628"/>
-<iu id="com.thoughtworks.xstream" version="1.3.1.v201111240924"/>
-<iu id="org.xmlpull" version="1.1.3.4_v201201052148"/>
-<iu id="org.eclipse.ui" version="3.103.0.v20120705-114351"/>
-<iu id="org.eclipse.core.runtime" version="3.8.0.v20120521-2346"/>
-<iu id="org.eclipse.core.resources" version="3.8.1.v20120802-154922"/>
-<iu id="org.eclipse.ui.ide" version="3.8.1.v20120828-165804"/>
-<iu id="org.eclipse.ui.workbench.texteditor" version="3.8.0.v20120523-1310"/>
-<iu id="org.eclipse.jface.text" version="3.8.1.v20120828-155502"/>
-<iu id="org.eclipse.osgi" version="3.8.1.v20120830-144521"/>
-<iu id="org.eclipse.core.filesystem" version="1.3.200.v20120522-2012"/>
-<iu id="org.eclipse.ui.forms" version="3.5.200.v20120705-114351"/>
-<iu id="org.eclipse.ui.editors" version="3.8.0.v20120523-1540"/>
-<iu id="org.eclipse.team.core" version="3.6.100.v20120524-0627"/>
-<iu id="org.eclipse.team.ui" version="3.6.200.v20120522-1148"/>
-<iu id="org.eclipse.jface" version="3.8.101.v20120817-083647"/>
-<iu id="org.eclipse.compare" version="3.5.300.v20120522-1148"/>
-<iu id="org.apache.axis" version="1.4.0.v201005080400"/>
-<iu id="org.apache.commons.io" version="2.0.1.v201105210651"/>
-<iu id="org.apache.commons.httpclient" version="3.1.0.v201012070820"/>
-<iu id="org.apache.commons.codec" version="1.3.0.v201101211617"/>
-<iu id="org.jdom_jaxen" version="1.0.0.20081203-1100"/>
-<iu id="org.mortbay.jetty.server" version="6.1.23.v201012071420"/>
-<iu id="org.mortbay.jetty.util" version="6.1.23.v201012071420"/>
-<iu id="org.apache.jasper" version="7.0.26.v201205030742"/>
-<iu id="org.apache.catalina" version="7.0.26.v201205021508"/>
-<iu id="javax.ejb" version="3.1.1.v201204261316"/>
-<iu id="javax.transaction" version="1.1.1.v201105210645"/>
-<iu id="org.joda.time" version="1.6.0.v20081202-0100"/>
-<iu id="javax.xml.rpc" version="1.1.0.v201005080400"/>
-<iu id="javax.el" version="2.2.0.v201108011116"/>
-</p2.mirror>
-</target>
-</project>
Deleted: trunk/build/target-platform/local.target
===================================================================
--- trunk/build/target-platform/local.target 2012-10-25 05:15:38 UTC (rev 44618)
+++ trunk/build/target-platform/local.target 2012-10-25 05:19:24 UTC (rev 44619)
@@ -1,369 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?><?pde version="3.6"?>
-<target includeMode="feature" name="e42-wtp34-jbds6">
- <!-- Pro tip: to convert
- from org.eclipse.foo_4.6.0.v201005032111-777K4AkF7B77R7c7N77.jar
- to <unit version="4.6.0.v201005032111-777K4AkF7B77R7c7N77" id="org.eclipse.foo.feature.group"/>
- using vi, apply this transform:
- :%s/.\+\/\(org.\+\)_\(\d\+.\+\)\.jar/\t\t\t<unit id="\1.feature.group" version="\2"\/>/g
- -->
- <locations>
- <location includeAllPlatforms="false" includeMode="planner" type="InstallableUnit" includeSource="true">
- <!-- don't forget to increment these files when moving up a version:
- build.xml, *.target*, publish.sh, target2p2mirror.xml -->
- <repository location="file:///home/nboldt/tru/build/target-platform/REPO/"/>
- <repository location="http://download.jboss.org/jbosstools/updates/target-platform_4.0.juno.SR1..."/>
-
- <!-- for these IUs we need multiple versions -->
- <unit id="javax.wsdl" version="1.6.2.v201012040545"/>
- <unit id="javax.wsdl" version="1.5.1.v201012040544"/>
- <unit id="org.jdom" version="1.1.1.v201101151400"/>
- <unit id="org.jdom" version="1.0.0.v201005080400"/>
- <unit id="org.apache.commons.lang" version="2.6.0.v201205030909"/>
- <unit id="org.apache.commons.lang" version="2.4.0.v201005080502"/>
- <unit id="org.apache.commons.lang" version="2.1.0.v201005080500"/>
- <unit id="javax.servlet" version="3.0.0.v201112011016"/>
- <unit id="javax.servlet" version="2.5.0.v200910301333"/>
- <unit id="javax.servlet.jsp" version="2.2.0.v201112011158"/>
- <!-- <unit id="javax.servlet.jsp" version="2.0.0.v201101211617"/> -->
- <unit id="javax.servlet.jsp" version="2.0.0.v200806031607"/>
- <unit id="javax.wsdl" version="1.6.2.v201012040545"/>
- <unit id="javax.wsdl" version="1.5.1.v201012040544"/>
- <unit id="javax.xml.bind" version="2.2.0.v201105210648"/>
- <unit id="javax.xml.bind" version="2.1.9.v201005080401"/>
- <unit id="javax.xml.soap" version="1.3.0.v201105210645"/>
- <unit id="javax.xml.soap" version="1.2.0.v201005080501"/>
- <unit id="org.apache.commons.logging" version="1.1.1.v201101211721"/>
- <unit id="org.apache.commons.logging" version="1.0.4.v201101211617"/>
- <unit id="org.apache.lucene" version="2.9.1.v201101211721"/>
- <unit id="org.apache.lucene" version="1.9.1.v201101211617"/>
- <unit id="org.apache.lucene.core" version="3.5.0.v20120319-2345"/>
- <unit id="org.apache.lucene.core" version="2.9.1.v201101211721"/>
- <unit id="org.junit" version="4.10.0.v4_10_0_v20120426-0900"/>
- <unit id="org.junit" version="3.8.2.v3_8_2_v20100427-1100"/>
-
- <!-- m2e, m2e-wtp + deps -->
- <unit id="org.eclipse.m2e.sdk.feature.feature.group" version="1.2.0.20120903-1050"/>
- <unit id="org.eclipse.m2e.feature.feature.group" version="1.2.0.20120903-1050"/>
- <unit id="org.eclipse.m2e.wtp.feature.feature.group" version="0.16.0.20120914-0945"/>
- <unit id="org.sonatype.m2e.mavenarchiver.feature.feature.group" version="0.15.0.201207090125-signed-201209140800"/>
- <unit id="ch.qos.logback.classic" version="1.0.0.v20111214-2030"/>
- <unit id="ch.qos.logback.core" version="1.0.0.v20111214-2030"/>
- <unit id="ch.qos.logback.slf4j" version="1.0.0.v20120123-1500"/>
- <unit id="org.slf4j.api" version="1.6.4.v20120130-2120"/>
- <unit id="com.ning.async-http-client" version="1.6.5.20120903-0645"/>
- <unit id="org.jboss.netty" version="3.2.5.Final-20120903-0645"/>
- <unit id="org.eclipse.equinox.p2.discovery.compatibility" version="1.0.101.v20120524-1717"/>
- <unit id="org.eclipse.equinox.p2.discovery" version="1.0.200.v20120524-1717"/>
- <unit id="org.eclipse.equinox.p2.ui.discovery" version="1.0.0.v20110808-1657"/>
-
- <!-- Orbit bundles -->
- <unit id="javax.activation" version="1.1.0.v201108011116"/>
- <unit id="org.apache.oro" version="2.0.8.v201005080400"/>
- <unit id="org.apache.commons.io" version="2.0.1.v201105210651"/>
- <unit id="org.apache.commons.codec" version="1.3.0.v201101211617"/>
- <unit id="org.apache.commons.httpclient" version="3.1.0.v201012070820"/>
- <unit id="org.hamcrest" version="1.1.0.v20090501071000"/>
- <unit id="org.hamcrest.core" version="1.1.0.v20090501071000"/>
- <unit id="org.hamcrest.text" version="1.1.0.v20090501071000"/>
- <unit id="org.hamcrest.library" version="1.1.0.v20090501071000"/>
- <unit id="org.hamcrest.integration" version="1.1.0.v20090501071000"/>
-
- <!-- Orbit bundles needed for Eclipse Checkstyle (eclipse-cs) -->
- <unit id="org.apache.lucene.highlighter" version="3.5.0.v20120319-2345"/>
- <unit id="org.apache.lucene.memory" version="3.5.0.v20120319-2345"/>
- <unit id="org.apache.lucene.misc" version="3.5.0.v20120319-2345"/>
- <unit id="org.apache.lucene.queries" version="3.5.0.v20120319-2345"/>
- <unit id="org.apache.lucene.snowball" version="2.9.1.v20100421-0704"/>
- <unit id="org.apache.lucene.spellchecker" version="3.5.0.v20120319-2345"/>
-
- <!-- EMF, XSD -->
- <unit id="org.eclipse.emf.workspace.feature.group" version="1.6.0.v20120328-0001-37708s734E377I3B4C2"/>
- <unit id="org.eclipse.emf.validation.feature.group" version="1.6.0.v20120328-0001-479-9oB56N5BBR6LCA6"/>
- <unit id="org.eclipse.emf.transaction.feature.group" version="1.6.0.v20120328-0001-377-8s734C3E7D15D6B"/>
- <unit id="org.eclipse.emf.feature.group" version="2.8.1.v20120917-0436"/>
- <unit id="org.eclipse.emf.ecore.feature.group" version="2.8.1.v20120911-0500"/>
- <unit id="org.eclipse.emf.codegen.feature.group" version="2.8.0.v20120917-0436"/>
- <unit id="org.eclipse.emf.common.feature.group" version="2.8.0.v20120911-0500"/>
- <unit id="org.eclipse.emf.databinding.feature.group" version="1.2.0.v20120917-0436"/>
- <unit id="org.eclipse.emf.codegen.ecore.feature.group" version="2.8.1.v20120917-0436"/>
- <unit id="org.eclipse.emf.ecore.edit.feature.group" version="2.8.0.v20120917-0436"/>
- <unit id="org.eclipse.emf.ecore.editor.feature.group" version="2.8.0.v20120917-0436"/>
- <unit id="org.eclipse.emf.ecore.feature.group" version="2.8.1.v20120911-0500"/>
- <unit id="org.eclipse.emf.edit.feature.group" version="2.8.0.v20120917-0436"/>
- <unit id="org.eclipse.xsd.edit.feature.group" version="2.7.0.v20120917-0436"/>
- <unit id="org.eclipse.xsd.ecore.converter.feature.group" version="2.7.0.v20120917-0436"/>
- <unit id="org.eclipse.xsd.editor.feature.group" version="2.7.0.v20120917-0436"/>
- <unit id="org.eclipse.xsd.mapping.editor.feature.group" version="2.7.0.v20120917-0436"/>
- <unit id="org.eclipse.xsd.mapping.feature.group" version="2.7.0.v20120917-0436"/>
- <unit id="org.eclipse.xsd.feature.group" version="2.8.0.v20120917-0436"/>
-
- <!-- GEF, Draw2D, Graphiti, Zest -->
- <unit id="org.eclipse.graphiti.feature.feature.group" version="0.9.1.v20120919-0732"/>
- <unit id="org.eclipse.draw2d.feature.group" version="3.9.0.201208201742"/>
- <unit id="org.eclipse.gef.feature.group" version="3.9.0.201208201742"/>
- <unit id="org.eclipse.zest.feature.group" version="1.5.0.201208201742"/>
-
- <!-- Needed for Teiid Designer: UML2 -->
- <unit id="org.eclipse.uml2.feature.group" version="4.0.1.v20120913-1441"/>
- <unit id="org.eclipse.uml2.doc.feature.group" version="4.0.0.v20120913-1441"/>
-
- <!-- Platform: CVS, JDT, RCP, PDE, Equinox, Help -->
- <unit id="com.ibm.icu.base" version="4.4.2.v20110831"/>
- <!-- cannot include two versions of the same feature as they conflict in terms of inclusion of org.eclipse.update.ui, which is only on the 3.8 site -->
- <!-- <unit id="org.eclipse.platform.feature.group" version="3.8.0.v20120607-071945-9gF7jI7nG5qByXMVdkhRMWBQlF4PnDCLybDCPQ"/> -->
- <unit id="org.eclipse.platform.feature.group" version="4.2.1.v20120814-120134-9JF7BHVGFyMveli1uX6aTH0q-eAap6PAgOP5mO"/>
- <unit id="org.eclipse.platform.ide" version="4.2.1.M20120914-1800"/>
- <unit id="org.eclipse.platform.sdk" version="4.2.1.M20120914-1800"/>
- <unit id="org.eclipse.sdk.feature.group" version="4.2.1.v20120814-120134-7T7oDODQ-3Heq-afCDlg7T4xJuvxaC2ohMfCfB5451Rz0"/>
- <unit id="org.eclipse.sdk.ide" version="4.2.1.M20120914-1800"/>
- <unit id="org.eclipse.cvs.feature.group" version="1.3.200.v20120525-1249-7B79FJJAkF7BF7VEH5IAJT"/>
- <unit id="org.eclipse.jdt.feature.group" version="3.8.1.v20120814-104540-8-8nFqpFNOfwKDRVz-tXOcL5d_83"/>
- <unit id="org.eclipse.equinox.server.core.feature.group" version="1.2.0.v20120522-1841-7K7VFO1F7RZHQZI4_c8StnvFB"/>
- <unit id="org.eclipse.equinox.executable.feature.group" version="3.6.0.v20120522-1813-7P7OG2BFLWUl7UmbVUO9iCm"/>
- <unit id="org.eclipse.equinox.compendium.sdk.feature.group" version="3.8.0.v20120522-1841-7X7eGb7FPGjtJjv1kjS_NdG"/>
- <unit id="org.eclipse.equinox.core.sdk.feature.group" version="3.8.0.v20120522-1813-85FAcGbFFoYTldJrUNk3a52oHJ"/>
- <unit id="org.eclipse.equinox.p2.discovery.feature.feature.group" version="1.0.100.v20120524-0542-4-Bh9oB58A5N9L28PCQ"/>
- <unit id="org.eclipse.equinox.p2.user.ui.feature.group" version="2.2.0.v20120524-0542-62DG9JXTlSiz-UbcP0w0KGl9CKNP"/>
- <unit id="org.eclipse.equinox.p2.sdk.feature.group" version="3.8.0.v20120524-0542-9N89H_oGMMn84Qsz0iIohu4jLeQD"/>
- <unit id="org.eclipse.equinox.serverside.sdk.feature.group" version="3.8.0.v20120522-1841-9Q7dFszFYGis9uZsz0QodZP4fL9p"/>
- <unit id="org.eclipse.equinox.sdk.feature.group" version="3.8.0.v20120522-1841-7M7fA78g5_y-g-jtHxcd5k8q8lFR"/>
- <unit id="org.eclipse.equinox.weaving.sdk.feature.group" version="1.0.200.v20120522-1841-79-FKsEVVFNVFsVk7O6G6"/>
- <unit id="org.eclipse.equinox.server.jetty.feature.group" version="1.1.0.v20120522-1841-8077C0F8NcJTbL1ab47MJ5"/>
- <unit id="org.eclipse.equinox.server.p2.feature.group" version="1.2.0.v20120522-1841-7z7_FfoFTy21Yu4Ykq_engx38"/>
- <unit id="org.eclipse.equinox.server.servletbridge.feature.group" version="1.0.101.v20120522-1841-42F9w9oB58B5KBB2ADHO"/>
- <unit id="org.eclipse.rcp.feature.group" version="4.2.1.v20120814-120134-7IAPA8BrHQicS-rjP0GbqK780kMy"/>
- <unit id="org.eclipse.pde.feature.group" version="3.8.1.v20120814-104528-7c7vFixFFt6Zr5aC6KM6LGWSd"/>
- <unit id="org.eclipse.help.feature.group" version="1.4.1.v20120726-051048-8R7xFOUFLWUl7MoSKV_RBXl27"/>
- <!-- update.ui is on the 3.8 site, not the 4.2 site -->
- <unit id="org.eclipse.update.ui" version="3.3.0.v20120523-1742"/>
- <!-- there are two versions of this IU -
- 4.2 has ./org.eclipse.update.core_3.2.600.v20120530-1204.jar and
- 3.8 has ./org.eclipse.update.core_3.2.600.v20120530-120908.jar
- -->
- <!-- <unit id="org.eclipse.update.core" version="3.2.600.v20120530-120908"/> -->
- <unit id="org.eclipse.update.core" version="3.2.600.v20120820-205746"/>
-
- <!-- DTP -->
- <unit id="org.eclipse.datatools.modelbase.feature.feature.group" version="1.10.1.v201208161415-7707FCcNBHLCgLUEdUb"/>
- <unit id="org.eclipse.datatools.connectivity.feature.feature.group" version="1.10.1.v201208161415-7C7h94Et1axpCXkXlTa6fgHd9vA"/>
- <unit id="org.eclipse.datatools.connectivity.oda.feature.feature.group" version="1.10.1.v201208161415-7H7C7TCcNBHLCnH_EYOb"/>
- <unit id="org.eclipse.datatools.connectivity.oda.designer.feature.feature.group" version="1.10.1.v201208161415-4127w312312232267"/>
- <unit id="org.eclipse.datatools.connectivity.oda.designer.core.feature.feature.group" version="1.10.1.v201208161415-7B7C7NCcNBGUBnIZDaUY"/>
- <unit id="org.eclipse.datatools.enablement.feature.feature.group" version="1.10.1.v201208161415-7J9Q7FBWxeNcZB5LWgyhH7patz0v"/>
- <unit id="org.eclipse.datatools.enablement.apache.derby.feature.feature.group" version="1.10.1.v201208161415-77798gBmKDQ2MoTULxcy9IIQ"/>
- <unit id="org.eclipse.datatools.enablement.hsqldb.feature.feature.group" version="1.10.1.v201208161415-67E1AqGBM7KfNUHxJR9IIQ"/>
- <unit id="org.eclipse.datatools.enablement.ibm.feature.feature.group" version="1.10.1.v201208161415-7F47WFC7sRdqScnobkd4"/>
- <unit id="org.eclipse.datatools.enablement.jdbc.feature.feature.group" version="1.10.1.v201208161415-4-29oB5895RAE8HHP"/>
- <unit id="org.eclipse.datatools.enablement.jdt.feature.feature.group" version="1.10.1.v201208161415-2-07w312218332612"/>
- <unit id="org.eclipse.datatools.enablement.msft.feature.feature.group" version="1.10.1.v201208161415-544AkF7AL7MDMAQ8O"/>
- <unit id="org.eclipse.datatools.enablement.mysql.feature.feature.group" version="1.10.1.v201208161415-5477AkF7AK7_AMENEA"/>
- <unit id="org.eclipse.datatools.enablement.oda.feature.feature.group" version="1.10.1.v201208161415-7A7T7CDZRDKHF_HnGjOX"/>
- <unit id="org.eclipse.datatools.enablement.oda.designer.feature.feature.group" version="1.10.1.v201208161415-3368s7356485C59AB"/>
- <unit id="org.eclipse.datatools.enablement.oracle.feature.feature.group" version="1.10.1.v201208161415-548fAkF7AL7RBJANAI"/>
- <unit id="org.eclipse.datatools.enablement.postgresql.feature.feature.group" version="1.10.1.v201208161415-553AkF7AK8PCRBQBP"/>
- <unit id="org.eclipse.datatools.enablement.sap.feature.feature.group" version="1.10.1.v201208161415-540AkF7AJ7YEJBU7S"/>
- <unit id="org.eclipse.datatools.enablement.sybase.feature.feature.group" version="1.10.1.v201208161415-7E46F9NiNc1QBgyT6T6"/>
- <unit id="org.eclipse.datatools.enablement.ingres.feature.feature.group" version="1.10.1.v201208161415-540AkF78Z7UCRAQDB"/>
- <unit id="org.eclipse.datatools.enablement.sqlite.feature.feature.group" version="1.10.1.v201208161415-542AkF7AJ7SAKAPBF"/>
- <unit id="org.eclipse.datatools.sqldevtools.feature.feature.group" version="1.10.1.v201208161415-7N8B7JFDsn5iz-Aex68NyGpC_AgL"/>
- <unit id="org.eclipse.datatools.sqldevtools.results.feature.feature.group" version="1.10.1.v201208161415-57B79AkF7BD7SGC9ZEH"/>
- <unit id="org.eclipse.datatools.sqldevtools.ddlgen.feature.feature.group" version="1.10.1.v201208161415-7A-78F7RZHQTIyWmM1_s"/>
- <unit id="org.eclipse.datatools.sqldevtools.ddl.feature.feature.group" version="1.10.1.v201208161415-279078B089G8S_IRUJz-XnN2at"/>
- <unit id="org.eclipse.datatools.sqldevtools.data.feature.feature.group" version="1.10.1.v201208161415-645BgJ9EDBTHPAhQU"/>
- <unit id="org.eclipse.datatools.sqldevtools.parsers.feature.feature.group" version="1.10.1.v201208161415-623BgJ9EE9ZJRDZLA"/>
- <unit id="org.eclipse.datatools.sqldevtools.sqlbuilder.feature.feature.group" version="1.10.1.v201208161415-79-78EVVFNQGpRkHz0Sm"/>
- <unit id="org.eclipse.datatools.sqldevtools.schemaobjecteditor.feature.feature.group" version="1.10.1.v201208161415-4208375LG5BJ93413"/>
- <unit id="org.eclipse.datatools.intro.feature.group" version="1.10.1.v201208161415-26-7w312116392911"/>
- <unit id="org.eclipse.datatools.doc.user.feature.group" version="1.10.1.v201208161415-47C08w95FFAK89FHEC7"/>
- <unit id="org.eclipse.datatools.common.doc.user.feature.group" version="1.10.1.v201208161415-26-311A16321A3557"/>
- <unit id="org.eclipse.datatools.connectivity.doc.user.feature.group" version="1.10.1.v201208161415-37D-7733L3D753L7BBF"/>
- <unit id="org.eclipse.datatools.sqltools.doc.user.feature.group" version="1.10.1.v201208161415-37D-7733L3D753L7BBF"/>
-
- <!-- RSE, TM -->
- <unit id="org.eclipse.rse.feature.group" version="3.4.1.201209191030-7L7IFBY83omx__z0RFpKdWB-r5MS"/>
- <unit id="org.eclipse.rse.ssh.feature.group" version="3.0.400.201209191030-7A4FEc7F7BF7gBgB7J7"/>
- <unit id="org.eclipse.rse.terminals.feature.group" version="1.2.1.201209191030-773Ep7H8AG8_DZK9Q9252"/>
- <unit id="org.eclipse.rse.telnet.feature.group" version="2.3.0.201209191030-775FD3879AE8YB_E8OA4"/>
- <unit id="org.eclipse.rse.ftp.feature.group" version="3.1.0.201209191030-782FBV8377A6N8PB6J84"/>
- <unit id="org.eclipse.rse.local.feature.group" version="2.1.400.201209191030-7B4FSg7J9EJ9rErE9O9"/>
- <unit id="org.eclipse.rse.useractions.feature.group" version="1.1.400.201209191030-31FBV773573L5L5393"/>
- <unit id="org.eclipse.tm.terminal.feature.group" version="3.2.1.201209191030-41031231A2A2141"/>
- <unit id="org.eclipse.tm.terminal.view.feature.group" version="2.3.0.201209191030-32-31231A2A2141"/>
- <unit id="org.eclipse.tm.terminal.telnet.feature.group" version="2.1.100.201209191030-308Z31231A2A2141"/>
- <unit id="org.eclipse.tm.terminal.serial.feature.group" version="2.1.100.201209191030-308Z31231A2A2141"/>
- <unit id="org.eclipse.tm.terminal.feature.group" version="3.2.1.201209191030-41031231A2A2141"/>
- <unit id="org.eclipse.tm.terminal.ssh.feature.group" version="2.1.100.201209191030-308Z31231A2A2141"/>
-
- <!-- WTP -->
- <unit id="org.eclipse.jsf.feature.source.feature.group" version="3.4.1.v201208241503-7E7JFBjF9JgLWgMhh4X6Ps"/>
- <unit id="org.eclipse.jst.jee" version="1.0.500.v201202020745"/>
- <unit id="org.eclipse.wst.common.frameworks" version="1.2.200.v201203141800"/>
- <unit id="org.eclipse.wst.common.project.facet.ui" version="1.4.300.v201111030424"/>
- <unit id="org.eclipse.jst.jee.web" version="1.0.301.v201007070907"/>
- <unit id="org.eclipse.jst.common.fproj.enablement.jdt.feature.group" version="3.4.0.v201108231500-377DG8s73543J5H6D66"/>
- <unit id="org.eclipse.jst.ws.axis2tools.feature.feature.group" version="1.1.200.v201103022333-78-FF0DZRDKDDePSKwHj"/>
- <unit id="org.eclipse.jst.ws.cxf.feature.feature.group" version="1.1.0.v201201312103-7H79FHxFAKlbotH5e9l3vAA6MBG"/>
- <unit id="org.eclipse.jpt.common.feature.feature.group" version="1.2.1.v201208222210-663AkF7BF7cFFFFB7"/>
- <unit id="org.eclipse.jpt.common.eclipselink.feature.feature.group" version="1.2.1.v201208222210-3318s73573J777753"/>
- <unit id="org.eclipse.jpt.jpa.eclipselink.feature.feature.group" version="3.2.1.v201208222210-7M7J78F7RZHQYJAQsS4SVFD7"/>
- <unit id="org.eclipse.jpt.jpa.feature.feature.group" version="3.2.1.v201208222210-7S7K8gFBBoPapQieUcW_TFD7"/>
- <unit id="org.eclipse.persistence.jpa.feature.group" version="2.4.0.v20120608-r11652"/>
- <unit id="org.eclipse.jsf.feature.feature.group" version="3.4.1.v201208241503-7E7JFBjF9JgLWgMhh4X6Ps"/>
- <unit id="org.eclipse.jst.common.fproj.enablement.jdt.feature.group" version="3.4.0.v201108231500-377DG8s73543J5H6D66"/>
- <unit id="org.eclipse.jst.enterprise_core.feature.feature.group" version="3.4.0.v201108110300-52FShAkF7BA8O8J9OC8"/>
- <unit id="org.eclipse.jst.enterprise_ui.feature.feature.group" version="3.4.0.v201107072300-7b7JIM0FSK2WM1PS9Ar7AKUz0TrWn"/>
- <unit id="org.eclipse.jst.enterprise_userdoc.feature.feature.group" version="3.3.100.v201105122000-62FUGBgJ9EA9aEeHRHc"/>
- <unit id="org.eclipse.jst.jsf.apache.trinidad.tagsupport.feature.feature.group" version="2.2.201.v201208241503-20A87w312319352614"/>
- <unit id="org.eclipse.jst.server_adapters.ext.feature.feature.group" version="3.3.101.v20120821_1416-777HFL6CcNBDmBjKOFHIEB"/>
- <unit id="org.eclipse.jst.server_adapters.feature.feature.group" version="3.2.200.v20120517_1442-20A77w31231628a2553"/>
- <unit id="org.eclipse.jst.server_core.feature.feature.group" version="3.4.0.v20120503_1042-31FEe8s73554A4Fa2153"/>
- <unit id="org.eclipse.jst.server_ui.feature.feature.group" version="3.4.0.v20120503_1042-7A77FHr9xFcC2CFLZBCJMHLg7D64"/>
- <unit id="org.eclipse.jst.server_userdoc.feature.feature.group" version="3.3.100.v20110303-2-Eo7w3121162A3329"/>
- <unit id="org.eclipse.jst.web_core.feature.feature.group" version="3.4.1.v201208160300-7Q7EGVxFE9LeAJKvylauQtyivz-0sSxz003877"/>
- <unit id="org.eclipse.jst.webpageeditor.feature.feature.group" version="2.3.8.v201208241503-46DI9oB58B5TBH8K5E"/>
- <unit id="org.eclipse.jst.web_ui.feature.feature.group" version="3.4.1.v201208231800-7F7DFSlC25UrkX5qvgnXz0LZDA6kiWwylC3uxsWk"/>
- <unit id="org.eclipse.jst.web_userdoc.feature.feature.group" version="3.4.1.v201208231800-2117w312319373364"/>
- <unit id="org.eclipse.jst.ws.axis2tools.feature.feature.group" version="1.1.200.v201103022333-78-FF0DZRDKDDePSKwHj"/>
- <unit id="org.eclipse.jst.ws.cxf.feature.feature.group" version="1.1.0.v201201312103-7H79FHxFAKlbotH5e9l3vAA6MBG"/>
- <unit id="org.eclipse.jst.ws.jaxws.dom.feature.feature.group" version="1.0.200.v201109042201-5-F8NAkF7BB7U8PEK8K"/>
- <unit id="org.eclipse.jst.ws.jaxws.feature.feature.group" version="1.2.0.v201204151854-7E7AF70F8NcJS_KqT5TpXq"/>
- <unit id="org.eclipse.jst.ws.jaxws_userdoc.feature.feature.group" version="1.0.200.v201205012246-3-DF8s73573D795LAF"/>
- <unit id="org.eclipse.wst.common_core.feature.feature.group" version="3.4.1.v201208162200-7B7EFMTF7RZHOjIuOyR0QS"/>
- <unit id="org.eclipse.wst.common.fproj.feature.group" version="3.4.0.v201202292300-377F8N8s735555393B7B"/>
- <unit id="org.eclipse.wst.common_ui.feature.feature.group" version="3.4.1.v201208170300-7C7AFeEEdhOaweJhCnQfykJvPz-S1RT"/>
- <unit id="org.eclipse.wst.jsdt.feature.feature.group" version="1.4.1.v201208171701-7H7DFg0FC7sReqSyfqesWi"/>
- <unit id="org.eclipse.wst.server_adapters.feature.feature.group" version="3.2.201.v20120821_1517-51F9xAkF7AL8QDRl8GAT"/>
- <unit id="org.eclipse.wst.server_core.feature.feature.group" version="3.3.100.v20110810_1722-33Et8s73563B6Ha3113"/>
- <unit id="org.eclipse.wst.server_ui.feature.feature.group" version="3.3.101.v20120817_1533-7B7AFJQAtMduXxeIc0IpSdC97A9"/>
- <unit id="org.eclipse.wst.server_userdoc.feature.feature.group" version="3.3.200.v20120830_2320-20Eo7w31231941a3363"/>
- <unit id="org.eclipse.wst.web_core.feature.feature.group" version="3.4.1.v201208170345-7E7HFSlAJz-mw9qA03HKTuLirZsDJyCao"/>
- <unit id="org.eclipse.wst.web_ui.feature.feature.group" version="3.4.1.v201208170345-7O7MFsPEMkBJz0wtb-ccsarPSceUIHO9iKk6XVPV"/>
- <unit id="org.eclipse.wst.web_userdoc.feature.feature.group" version="3.3.0.v201102200555-31Eo8s734B3E4H7799"/>
- <unit id="org.eclipse.wst.ws_core.feature.feature.group" version="3.4.0.v201108230503-7L7RFoGFGtGd-xhuy-rRwz-2766"/>
- <unit id="org.eclipse.wst.ws_ui.feature.feature.group" version="3.4.1.v201208172041-7I7CFkXEtEoXHw684K6n3-z-F3stz0lKFx169q5z"/>
- <unit id="org.eclipse.wst.ws_userdoc.feature.feature.group" version="3.1.300.v201102200555-44FR79oB5855Q8IBD7G"/>
- <unit id="org.eclipse.wst.ws_wsdl15.feature.feature.group" version="1.5.301.v201102200555-2407w312123151655"/>
- <unit id="org.eclipse.wst.xml_core.feature.feature.group" version="3.4.1.v201208170345-7C7OFm5F7RZHQRIsOz-Nz-_n"/>
- <unit id="org.eclipse.wst.xml_ui.feature.feature.group" version="3.4.1.v201208170345-7H7GFeFDxumUpsw5rgjWnKDrsz0p4ymwjQz00T2S"/>
- <unit id="org.eclipse.wst.xml_userdoc.feature.feature.group" version="3.3.0.v201102071641-50FYwAkF7B77UBZFDBL"/>
- <unit id="org.eclipse.wst.xml.xpath2.processor.feature.feature.group" version="2.0.100.v201203131922-7A7K0CcNBGPCTJ_FUOb"/>
- <unit id="org.eclipse.wst.xsl.feature.feature.group" version="1.3.100.v201111021744-7T7ZFUaFIqUoJuvaKoCpQDKaGVPc"/>
-
- <!-- JBIDE-9549, JBDS-1904 add egit/jgit and mylyn support to TP, including dependent plugins -->
- <unit id="org.eclipse.jsch.ui" version="1.1.400.v20120522-1148"/>
- <unit id="org.eclipse.jsch.core" version="1.1.400.v20120522-1148"/>
- <unit id="com.jcraft.jsch" version="0.1.46.v201205102330"/>
- <unit id="org.eclipse.jgit.feature.group" version="2.1.0.201209190230-r"/>
- <unit id="org.eclipse.egit.feature.group" version="2.1.0.201209190230-r"/>
- <unit id="org.eclipse.egit.mylyn.feature.group" version="2.1.0.201209190230-r"/>
- <unit id="org.eclipse.mylyn.github.feature.feature.group" version="2.1.0.201209190230-r"/>
-
- <!-- needed for JBoss Central -->
- <unit id="com.sun.syndication" version="0.9.0.v200803061811"/>
- <unit id="org.eclipse.mylyn.commons.core" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.discovery.ui" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.discovery.core" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.commons.ui" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.commons.net" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.commons.screenshots" version="3.8.2.v20120916-1200"/>
-
- <!-- JBDS-1904, JBIDE-9351, JBIDE-10094 add mylyn and jira to JBT/JBDS TP -->
- <unit id="org.eclipse.mylyn_feature.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.ide_feature.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.tasks.ide.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.commons.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.commons.compatibility.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.commons.identity.feature.group" version="1.0.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.commons.notifications.feature.group" version="1.0.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.commons.repositories.feature.group" version="1.0.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.commons.repositories.http.feature.group" version="1.0.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.context_feature.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.bugzilla_feature.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.discovery.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.java_feature.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.monitor.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.pde_feature.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.team_feature.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.wikitext_feature.feature.group" version="1.7.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.cvs.feature.group" version="1.0.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.git.feature.group" version="1.0.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.versions.feature.group" version="1.0.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.commons.sdk.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.tasks.ui" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.tasks.core" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.tasks.bugs" version="3.8.2.v20120916-1200"/>
- <unit id="com.atlassian.connector.commons" version="4.0.0.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.bamboo.core" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.bamboo.ui" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.branding.ui" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.commons.core" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.commons.ui" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.core" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.crucible.core" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.crucible.ui" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.cvs.core" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.cvs.ui" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.directclickthrough.ui" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.fisheye.core" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.fisheye.ui" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.help" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.jira.core" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.jira.ui" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.monitor.core" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.monitor.ui" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.subclipse.core" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.subclipse.ui" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.ui" version="3.0.6.v20120628"/>
- <!-- dep for com.atlassian.connector.eclipse.directclickthrough.ui -->
- <unit id="com.thoughtworks.xstream" version="1.3.1.v201111240924"/>
- <unit id="org.xmlpull" version="1.1.3.4_v201201052148"/>
- <unit id="org.eclipse.ui" version="3.103.0.v20120705-114351"/>
- <unit id="org.eclipse.core.runtime" version="3.8.0.v20120521-2346"/>
- <unit id="org.eclipse.core.resources" version="3.8.1.v20120802-154922"/>
- <unit id="org.eclipse.ui.ide" version="3.8.1.v20120828-165804"/>
- <unit id="org.eclipse.ui.workbench.texteditor" version="3.8.0.v20120523-1310"/>
- <unit id="org.eclipse.jface.text" version="3.8.1.v20120828-155502"/>
- <unit id="org.eclipse.osgi" version="3.8.1.v20120830-144521"/>
- <unit id="org.eclipse.core.filesystem" version="1.3.200.v20120522-2012"/>
- <unit id="org.eclipse.ui.forms" version="3.5.200.v20120705-114351"/>
- <unit id="org.eclipse.ui.editors" version="3.8.0.v20120523-1540"/>
- <unit id="org.eclipse.team.core" version="3.6.100.v20120524-0627"/>
- <unit id="org.eclipse.team.ui" version="3.6.200.v20120522-1148"/>
- <unit id="org.eclipse.jface" version="3.8.101.v20120817-083647"/>
- <unit id="org.eclipse.compare" version="3.5.300.v20120522-1148"/>
- <unit id="org.apache.axis" version="1.4.0.v201005080400"/>
- <unit id="org.apache.commons.io" version="2.0.1.v201105210651"/>
- <unit id="org.apache.commons.httpclient" version="3.1.0.v201012070820"/>
- <unit id="org.apache.commons.codec" version="1.3.0.v201101211617"/>
- <unit id="org.jdom_jaxen" version="1.0.0.20081203-1100"/>
- <unit id="org.mortbay.jetty.server" version="6.1.23.v201012071420"/>
- <unit id="org.mortbay.jetty.util" version="6.1.23.v201012071420"/>
- <unit id="org.apache.jasper" version="7.0.26.v201205030742"/>
- <unit id="org.apache.catalina" version="7.0.26.v201205021508"/>
- <unit id="javax.ejb" version="3.1.1.v201204261316"/>
- <unit id="javax.transaction" version="1.1.1.v201105210645"/>
- <unit id="org.joda.time" version="1.6.0.v20081202-0100"/>
- <unit id="javax.xml.rpc" version="1.1.0.v201005080400"/>
- <unit id="javax.el" version="2.2.0.v201108011116"/>
-
- <!-- only in JBT: SWTBot -->
- <unit id="org.eclipse.swtbot.eclipse.feature.group" version="2.0.5.20111003_1754-3676ac8-dev-e36"/>
- <unit id="org.eclipse.swtbot.eclipse.gef.feature.group" version="2.0.5.20111003_1754-3676ac8-dev-e36"/>
- <unit id="org.eclipse.swtbot.ide.feature.group" version="2.0.5.20111003_1754-3676ac8-dev-e36"/>
- <unit id="org.eclipse.swtbot.eclipse.test.junit4.feature.group" version="2.0.5.20111003_1754-3676ac8-dev-e36"/>
- <unit id="org.eclipse.swtbot.feature.group" version="2.0.5.20111003_1754-3676ac8-dev-e36"/>
-
- <!-- only in JBT: BIRT -->
- <unit id="org.eclipse.birt.osgi.runtime.sdk.feature.group" version="4.2.1.v20120820-793187qD_D0RBQLXOVH-wQkmJ1cI"/>
- <unit id="org.eclipse.birt.feature.group" version="4.2.1.v20120820-ChBG8UGYgRQlJ7y9Lz-wS7nDcRL4"/>
- <unit id="org.eclipse.birt.integration.wtp.feature.group" version="4.2.1.v20120912-1721-5107w31231A2302832"/>
- <unit id="org.eclipse.birt.chart.feature.group" version="4.2.1.v20120820-828i7EFQCnvK_6wFGvqLR"/>
- <unit id="org.eclipse.birt.chart.integration.wtp.feature.group" version="4.2.1.v20120912-1721-5107w31231A2302832"/>
-
- <!-- only in JBT: GWT/GPE dependencies (include only those which are EPL or other OSS licensed!) -->
- <unit id="com.google.gdt.eclipse.suite.e42.feature.feature.group" version="3.1.0.v201208080121-rel-r42"/>
- <unit id="com.google.gwt.eclipse.sdkbundle.e42.feature.feature.group" version="2.4.0.v201208080121-rel-r42"/>
- </location>
- </locations>
- <targetJRE path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
-</target>
Deleted: trunk/build/target-platform/multiple.target
===================================================================
--- trunk/build/target-platform/multiple.target 2012-10-25 05:15:38 UTC (rev 44618)
+++ trunk/build/target-platform/multiple.target 2012-10-25 05:19:24 UTC (rev 44619)
@@ -1,376 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?><?pde version="3.6"?>
-<target includeMode="feature" name="e42-wtp34-jbds6">
- <!-- Pro tip: to convert
- from org.eclipse.foo_4.6.0.v201005032111-777K4AkF7B77R7c7N77.jar
- to <unit version="4.6.0.v201005032111-777K4AkF7B77R7c7N77" id="org.eclipse.foo.feature.group"/>
- using vi, apply this transform:
- :%s/.\+\/\(org.\+\)_\(\d\+.\+\)\.jar/\t\t\t<unit id="\1.feature.group" version="\2"\/>/g
- -->
- <locations>
- <location includeAllPlatforms="false" includeMode="planner" type="InstallableUnit" includeSource="true">
- <!-- don't forget to increment these files when moving up a version:
- build.xml, *.target*, publish.sh, target2p2mirror.xml -->
- <repository location="http://download.jboss.org/jbosstools/updates/juno/SR1/"/>
-
- <!-- for these IUs we need multiple versions -->
- <unit id="javax.wsdl" version="1.6.2.v201012040545"/>
- <unit id="javax.wsdl" version="1.5.1.v201012040544"/>
- <unit id="org.jdom" version="1.1.1.v201101151400"/>
- <unit id="org.jdom" version="1.0.0.v201005080400"/>
- <unit id="org.apache.commons.lang" version="2.6.0.v201205030909"/>
- <unit id="org.apache.commons.lang" version="2.4.0.v201005080502"/>
- <unit id="org.apache.commons.lang" version="2.1.0.v201005080500"/>
- <unit id="javax.servlet" version="3.0.0.v201112011016"/>
- <unit id="javax.servlet" version="2.5.0.v200910301333"/>
- <unit id="javax.servlet.jsp" version="2.2.0.v201112011158"/>
- <!-- <unit id="javax.servlet.jsp" version="2.0.0.v201101211617"/> -->
- <unit id="javax.servlet.jsp" version="2.0.0.v200806031607"/>
- <unit id="javax.wsdl" version="1.6.2.v201012040545"/>
- <unit id="javax.wsdl" version="1.5.1.v201012040544"/>
- <unit id="javax.xml.bind" version="2.2.0.v201105210648"/>
- <unit id="javax.xml.bind" version="2.1.9.v201005080401"/>
- <unit id="javax.xml.soap" version="1.3.0.v201105210645"/>
- <unit id="javax.xml.soap" version="1.2.0.v201005080501"/>
- <unit id="org.apache.commons.logging" version="1.1.1.v201101211721"/>
- <unit id="org.apache.commons.logging" version="1.0.4.v201101211617"/>
- <unit id="org.apache.lucene" version="2.9.1.v201101211721"/>
- <unit id="org.apache.lucene" version="1.9.1.v201101211617"/>
- <unit id="org.apache.lucene.core" version="3.5.0.v20120319-2345"/>
- <unit id="org.apache.lucene.core" version="2.9.1.v201101211721"/>
- <unit id="org.junit" version="4.10.0.v4_10_0_v20120426-0900"/>
- <unit id="org.junit" version="3.8.2.v3_8_2_v20100427-1100"/>
-
- <!-- Orbit bundles -->
- <unit id="javax.activation" version="1.1.0.v201108011116"/>
- <unit id="org.apache.oro" version="2.0.8.v201005080400"/>
- <unit id="org.apache.commons.io" version="2.0.1.v201105210651"/>
- <unit id="org.apache.commons.codec" version="1.3.0.v201101211617"/>
- <unit id="org.apache.commons.httpclient" version="3.1.0.v201012070820"/>
- <unit id="org.hamcrest" version="1.1.0.v20090501071000"/>
- <unit id="org.hamcrest.core" version="1.1.0.v20090501071000"/>
- <unit id="org.hamcrest.text" version="1.1.0.v20090501071000"/>
- <unit id="org.hamcrest.library" version="1.1.0.v20090501071000"/>
- <unit id="org.hamcrest.integration" version="1.1.0.v20090501071000"/>
-
- <!-- Orbit bundles needed for Eclipse Checkstyle (eclipse-cs) -->
- <unit id="org.apache.lucene.highlighter" version="3.5.0.v20120319-2345"/>
- <unit id="org.apache.lucene.memory" version="3.5.0.v20120319-2345"/>
- <unit id="org.apache.lucene.misc" version="3.5.0.v20120319-2345"/>
- <unit id="org.apache.lucene.queries" version="3.5.0.v20120319-2345"/>
- <unit id="org.apache.lucene.snowball" version="2.9.1.v20100421-0704"/>
- <unit id="org.apache.lucene.spellchecker" version="3.5.0.v20120319-2345"/>
-
- <unit id="org.apache.axis" version="1.4.0.v201005080400"/>
- <unit id="org.apache.commons.io" version="2.0.1.v201105210651"/>
- <unit id="org.apache.commons.httpclient" version="3.1.0.v201012070820"/>
- <unit id="org.apache.commons.codec" version="1.3.0.v201101211617"/>
- <unit id="org.apache.jasper" version="7.0.26.v201205030742"/>
- <unit id="org.apache.catalina" version="7.0.26.v201205021508"/>
- <unit id="javax.ejb" version="3.1.1.v201204261316"/>
- <unit id="javax.transaction" version="1.1.1.v201105210645"/>
- <unit id="javax.el" version="2.2.0.v201108011116"/>
- <unit id="javax.xml.rpc" version="1.1.0.v201005080400"/>
-
- <!-- m2e, m2e-wtp + deps -->
- <unit id="org.eclipse.m2e.sdk.feature.feature.group" version="1.2.0.20120903-1050"/>
- <unit id="org.eclipse.m2e.feature.feature.group" version="1.2.0.20120903-1050"/>
- <unit id="ch.qos.logback.classic" version="1.0.0.v20111214-2030"/>
- <unit id="ch.qos.logback.core" version="1.0.0.v20111214-2030"/>
- <unit id="ch.qos.logback.slf4j" version="1.0.0.v20120123-1500"/>
- <unit id="org.slf4j.api" version="1.6.4.v20120130-2120"/>
- <unit id="com.ning.async-http-client" version="1.6.5.20120903-0645"/>
- <unit id="org.jboss.netty" version="3.2.5.Final-20120903-0645"/>
- <unit id="org.eclipse.m2e.wtp.feature.feature.group" version="0.16.0.20120914-0945"/>
- <unit id="org.sonatype.m2e.mavenarchiver.feature.feature.group" version="0.15.0.201207090125-signed-201209140800"/>
-
-
- <unit id="org.eclipse.equinox.p2.discovery.compatibility" version="1.0.101.v20120524-1717"/>
- <unit id="org.eclipse.equinox.p2.discovery" version="1.0.200.v20120524-1717"/>
- <unit id="org.eclipse.equinox.p2.ui.discovery" version="1.0.0.v20110808-1657"/>
-
- <!-- EMF, XSD -->
- <unit id="org.eclipse.emf.workspace.feature.group" version="1.6.0.v20120328-0001-37708s734E377I3B4C2"/>
- <unit id="org.eclipse.emf.validation.feature.group" version="1.6.0.v20120328-0001-479-9oB56N5BBR6LCA6"/>
- <unit id="org.eclipse.emf.transaction.feature.group" version="1.6.0.v20120328-0001-377-8s734C3E7D15D6B"/>
- <unit id="org.eclipse.emf.feature.group" version="2.8.1.v20120917-0436"/>
- <unit id="org.eclipse.emf.ecore.feature.group" version="2.8.1.v20120911-0500"/>
- <unit id="org.eclipse.emf.codegen.feature.group" version="2.8.0.v20120917-0436"/>
- <unit id="org.eclipse.emf.common.feature.group" version="2.8.0.v20120911-0500"/>
- <unit id="org.eclipse.emf.databinding.feature.group" version="1.2.0.v20120917-0436"/>
- <unit id="org.eclipse.emf.codegen.ecore.feature.group" version="2.8.1.v20120917-0436"/>
- <unit id="org.eclipse.emf.ecore.edit.feature.group" version="2.8.0.v20120917-0436"/>
- <unit id="org.eclipse.emf.ecore.editor.feature.group" version="2.8.0.v20120917-0436"/>
- <unit id="org.eclipse.emf.ecore.feature.group" version="2.8.1.v20120911-0500"/>
- <unit id="org.eclipse.emf.edit.feature.group" version="2.8.0.v20120917-0436"/>
- <unit id="org.eclipse.xsd.edit.feature.group" version="2.7.0.v20120917-0436"/>
- <unit id="org.eclipse.xsd.ecore.converter.feature.group" version="2.7.0.v20120917-0436"/>
- <unit id="org.eclipse.xsd.editor.feature.group" version="2.7.0.v20120917-0436"/>
- <unit id="org.eclipse.xsd.mapping.editor.feature.group" version="2.7.0.v20120917-0436"/>
- <unit id="org.eclipse.xsd.mapping.feature.group" version="2.7.0.v20120917-0436"/>
- <unit id="org.eclipse.xsd.feature.group" version="2.8.0.v20120917-0436"/>
-
- <!-- GEF, Draw2D, Graphiti, Zest -->
- <unit id="org.eclipse.graphiti.feature.feature.group" version="0.9.1.v20120919-0732"/>
- <unit id="org.eclipse.draw2d.feature.group" version="3.9.0.201208201742"/>
- <unit id="org.eclipse.gef.feature.group" version="3.9.0.201208201742"/>
- <unit id="org.eclipse.zest.feature.group" version="1.5.0.201208201742"/>
-
- <!-- Needed for Teiid Designer: UML2 -->
- <unit id="org.eclipse.uml2.feature.group" version="4.0.1.v20120913-1441"/>
- <unit id="org.eclipse.uml2.doc.feature.group" version="4.0.0.v20120913-1441"/>
-
- <!-- Platform: CVS, JDT, RCP, PDE, Equinox, Help -->
- <unit id="com.ibm.icu.base" version="4.4.2.v20110831"/>
- <!-- cannot include two versions of the same feature as they conflict in terms of inclusion of org.eclipse.update.ui, which is only on the 3.8 site -->
- <!-- <unit id="org.eclipse.platform.feature.group" version="3.8.0.v20120607-071945-9gF7jI7nG5qByXMVdkhRMWBQlF4PnDCLybDCPQ"/> -->
- <unit id="org.eclipse.platform.feature.group" version="4.2.1.v20120814-120134-9JF7BHVGFyMveli1uX6aTH0q-eAap6PAgOP5mO"/>
- <unit id="org.eclipse.platform.ide" version="4.2.1.M20120914-1800"/>
- <unit id="org.eclipse.platform.sdk" version="4.2.1.M20120914-1800"/>
- <unit id="org.eclipse.sdk.feature.group" version="4.2.1.v20120814-120134-7T7oDODQ-3Heq-afCDlg7T4xJuvxaC2ohMfCfB5451Rz0"/>
- <unit id="org.eclipse.sdk.ide" version="4.2.1.M20120914-1800"/>
- <unit id="org.eclipse.cvs.feature.group" version="1.3.200.v20120525-1249-7B79FJJAkF7BF7VEH5IAJT"/>
- <unit id="org.eclipse.jdt.feature.group" version="3.8.1.v20120814-104540-8-8nFqpFNOfwKDRVz-tXOcL5d_83"/>
- <unit id="org.eclipse.equinox.server.core.feature.group" version="1.2.0.v20120522-1841-7K7VFO1F7RZHQZI4_c8StnvFB"/>
- <unit id="org.eclipse.equinox.executable.feature.group" version="3.6.0.v20120522-1813-7P7OG2BFLWUl7UmbVUO9iCm"/>
- <unit id="org.eclipse.equinox.compendium.sdk.feature.group" version="3.8.0.v20120522-1841-7X7eGb7FPGjtJjv1kjS_NdG"/>
- <unit id="org.eclipse.equinox.core.sdk.feature.group" version="3.8.0.v20120522-1813-85FAcGbFFoYTldJrUNk3a52oHJ"/>
- <unit id="org.eclipse.equinox.p2.discovery.feature.feature.group" version="1.0.100.v20120524-0542-4-Bh9oB58A5N9L28PCQ"/>
- <unit id="org.eclipse.equinox.p2.user.ui.feature.group" version="2.2.0.v20120524-0542-62DG9JXTlSiz-UbcP0w0KGl9CKNP"/>
- <unit id="org.eclipse.equinox.p2.sdk.feature.group" version="3.8.0.v20120524-0542-9N89H_oGMMn84Qsz0iIohu4jLeQD"/>
- <unit id="org.eclipse.equinox.serverside.sdk.feature.group" version="3.8.0.v20120522-1841-9Q7dFszFYGis9uZsz0QodZP4fL9p"/>
- <unit id="org.eclipse.equinox.sdk.feature.group" version="3.8.0.v20120522-1841-7M7fA78g5_y-g-jtHxcd5k8q8lFR"/>
- <unit id="org.eclipse.equinox.weaving.sdk.feature.group" version="1.0.200.v20120522-1841-79-FKsEVVFNVFsVk7O6G6"/>
- <unit id="org.eclipse.equinox.server.jetty.feature.group" version="1.1.0.v20120522-1841-8077C0F8NcJTbL1ab47MJ5"/>
- <unit id="org.eclipse.equinox.server.p2.feature.group" version="1.2.0.v20120522-1841-7z7_FfoFTy21Yu4Ykq_engx38"/>
- <unit id="org.eclipse.equinox.server.servletbridge.feature.group" version="1.0.101.v20120522-1841-42F9w9oB58B5KBB2ADHO"/>
- <unit id="org.eclipse.rcp.feature.group" version="4.2.1.v20120814-120134-7IAPA8BrHQicS-rjP0GbqK780kMy"/>
- <unit id="org.eclipse.pde.feature.group" version="3.8.1.v20120814-104528-7c7vFixFFt6Zr5aC6KM6LGWSd"/>
- <unit id="org.eclipse.help.feature.group" version="1.4.1.v20120726-051048-8R7xFOUFLWUl7MoSKV_RBXl27"/>
-
- <!-- DTP -->
- <unit id="org.eclipse.datatools.modelbase.feature.feature.group" version="1.10.1.v201208161415-7707FCcNBHLCgLUEdUb"/>
- <unit id="org.eclipse.datatools.connectivity.feature.feature.group" version="1.10.1.v201208161415-7C7h94Et1axpCXkXlTa6fgHd9vA"/>
- <unit id="org.eclipse.datatools.connectivity.oda.feature.feature.group" version="1.10.1.v201208161415-7H7C7TCcNBHLCnH_EYOb"/>
- <unit id="org.eclipse.datatools.connectivity.oda.designer.feature.feature.group" version="1.10.1.v201208161415-4127w312312232267"/>
- <unit id="org.eclipse.datatools.connectivity.oda.designer.core.feature.feature.group" version="1.10.1.v201208161415-7B7C7NCcNBGUBnIZDaUY"/>
- <unit id="org.eclipse.datatools.enablement.feature.feature.group" version="1.10.1.v201208161415-7J9Q7FBWxeNcZB5LWgyhH7patz0v"/>
- <unit id="org.eclipse.datatools.enablement.apache.derby.feature.feature.group" version="1.10.1.v201208161415-77798gBmKDQ2MoTULxcy9IIQ"/>
- <unit id="org.eclipse.datatools.enablement.hsqldb.feature.feature.group" version="1.10.1.v201208161415-67E1AqGBM7KfNUHxJR9IIQ"/>
- <unit id="org.eclipse.datatools.enablement.ibm.feature.feature.group" version="1.10.1.v201208161415-7F47WFC7sRdqScnobkd4"/>
- <unit id="org.eclipse.datatools.enablement.jdbc.feature.feature.group" version="1.10.1.v201208161415-4-29oB5895RAE8HHP"/>
- <unit id="org.eclipse.datatools.enablement.jdt.feature.feature.group" version="1.10.1.v201208161415-2-07w312218332612"/>
- <unit id="org.eclipse.datatools.enablement.msft.feature.feature.group" version="1.10.1.v201208161415-544AkF7AL7MDMAQ8O"/>
- <unit id="org.eclipse.datatools.enablement.mysql.feature.feature.group" version="1.10.1.v201208161415-5477AkF7AK7_AMENEA"/>
- <unit id="org.eclipse.datatools.enablement.oda.feature.feature.group" version="1.10.1.v201208161415-7A7T7CDZRDKHF_HnGjOX"/>
- <unit id="org.eclipse.datatools.enablement.oda.designer.feature.feature.group" version="1.10.1.v201208161415-3368s7356485C59AB"/>
- <unit id="org.eclipse.datatools.enablement.oracle.feature.feature.group" version="1.10.1.v201208161415-548fAkF7AL7RBJANAI"/>
- <unit id="org.eclipse.datatools.enablement.postgresql.feature.feature.group" version="1.10.1.v201208161415-553AkF7AK8PCRBQBP"/>
- <unit id="org.eclipse.datatools.enablement.sap.feature.feature.group" version="1.10.1.v201208161415-540AkF7AJ7YEJBU7S"/>
- <unit id="org.eclipse.datatools.enablement.sybase.feature.feature.group" version="1.10.1.v201208161415-7E46F9NiNc1QBgyT6T6"/>
- <unit id="org.eclipse.datatools.enablement.ingres.feature.feature.group" version="1.10.1.v201208161415-540AkF78Z7UCRAQDB"/>
- <unit id="org.eclipse.datatools.enablement.sqlite.feature.feature.group" version="1.10.1.v201208161415-542AkF7AJ7SAKAPBF"/>
- <unit id="org.eclipse.datatools.sqldevtools.feature.feature.group" version="1.10.1.v201208161415-7N8B7JFDsn5iz-Aex68NyGpC_AgL"/>
- <unit id="org.eclipse.datatools.sqldevtools.results.feature.feature.group" version="1.10.1.v201208161415-57B79AkF7BD7SGC9ZEH"/>
- <unit id="org.eclipse.datatools.sqldevtools.ddlgen.feature.feature.group" version="1.10.1.v201208161415-7A-78F7RZHQTIyWmM1_s"/>
- <unit id="org.eclipse.datatools.sqldevtools.ddl.feature.feature.group" version="1.10.1.v201208161415-279078B089G8S_IRUJz-XnN2at"/>
- <unit id="org.eclipse.datatools.sqldevtools.data.feature.feature.group" version="1.10.1.v201208161415-645BgJ9EDBTHPAhQU"/>
- <unit id="org.eclipse.datatools.sqldevtools.parsers.feature.feature.group" version="1.10.1.v201208161415-623BgJ9EE9ZJRDZLA"/>
- <unit id="org.eclipse.datatools.sqldevtools.sqlbuilder.feature.feature.group" version="1.10.1.v201208161415-79-78EVVFNQGpRkHz0Sm"/>
- <unit id="org.eclipse.datatools.sqldevtools.schemaobjecteditor.feature.feature.group" version="1.10.1.v201208161415-4208375LG5BJ93413"/>
- <unit id="org.eclipse.datatools.intro.feature.group" version="1.10.1.v201208161415-26-7w312116392911"/>
- <unit id="org.eclipse.datatools.doc.user.feature.group" version="1.10.1.v201208161415-47C08w95FFAK89FHEC7"/>
- <unit id="org.eclipse.datatools.common.doc.user.feature.group" version="1.10.1.v201208161415-26-311A16321A3557"/>
- <unit id="org.eclipse.datatools.connectivity.doc.user.feature.group" version="1.10.1.v201208161415-37D-7733L3D753L7BBF"/>
- <unit id="org.eclipse.datatools.sqltools.doc.user.feature.group" version="1.10.1.v201208161415-37D-7733L3D753L7BBF"/>
- <unit id="org.eclipse.persistence.jpa.feature.group" version="2.4.0.v20120608-r11652"/>
-
- <!-- RSE, TM -->
- <unit id="org.eclipse.rse.feature.group" version="3.4.1.201209191030-7L7IFBY83omx__z0RFpKdWB-r5MS"/>
- <unit id="org.eclipse.rse.ssh.feature.group" version="3.0.400.201209191030-7A4FEc7F7BF7gBgB7J7"/>
- <unit id="org.eclipse.rse.terminals.feature.group" version="1.2.1.201209191030-773Ep7H8AG8_DZK9Q9252"/>
- <unit id="org.eclipse.rse.telnet.feature.group" version="2.3.0.201209191030-775FD3879AE8YB_E8OA4"/>
- <unit id="org.eclipse.rse.ftp.feature.group" version="3.1.0.201209191030-782FBV8377A6N8PB6J84"/>
- <unit id="org.eclipse.rse.local.feature.group" version="2.1.400.201209191030-7B4FSg7J9EJ9rErE9O9"/>
- <unit id="org.eclipse.rse.useractions.feature.group" version="1.1.400.201209191030-31FBV773573L5L5393"/>
- <unit id="org.eclipse.tm.terminal.feature.group" version="3.2.1.201209191030-41031231A2A2141"/>
- <unit id="org.eclipse.tm.terminal.view.feature.group" version="2.3.0.201209191030-32-31231A2A2141"/>
- <unit id="org.eclipse.tm.terminal.telnet.feature.group" version="2.1.100.201209191030-308Z31231A2A2141"/>
- <unit id="org.eclipse.tm.terminal.serial.feature.group" version="2.1.100.201209191030-308Z31231A2A2141"/>
- <unit id="org.eclipse.tm.terminal.feature.group" version="3.2.1.201209191030-41031231A2A2141"/>
- <unit id="org.eclipse.tm.terminal.ssh.feature.group" version="2.1.100.201209191030-308Z31231A2A2141"/>
-
- <!-- JBIDE-9549, JBDS-1904 add egit/jgit and mylyn support to TP, including dependent plugins -->
- <unit id="org.eclipse.jsch.ui" version="1.1.400.v20120522-1148"/>
- <unit id="org.eclipse.jsch.core" version="1.1.400.v20120522-1148"/>
- <unit id="com.jcraft.jsch" version="0.1.46.v201205102330"/>
- <unit id="org.eclipse.jgit.feature.group" version="2.1.0.201209190230-r"/>
- <unit id="org.eclipse.egit.feature.group" version="2.1.0.201209190230-r"/>
- <unit id="org.eclipse.egit.mylyn.feature.group" version="2.1.0.201209190230-r"/>
- <unit id="org.eclipse.mylyn.github.feature.feature.group" version="2.1.0.201209190230-r"/>
-
- <!-- needed for JBoss Central -->
- <unit id="com.sun.syndication" version="0.9.0.v200803061811"/>
- <unit id="org.eclipse.mylyn.commons.core" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.discovery.ui" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.discovery.core" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.commons.ui" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.commons.net" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.commons.screenshots" version="3.8.2.v20120916-1200"/>
-
- <!-- JBDS-1904, JBIDE-9351, JBIDE-10094 add mylyn and jira to JBT/JBDS TP -->
- <unit id="org.eclipse.mylyn_feature.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.ide_feature.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.tasks.ide.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.commons.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.commons.compatibility.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.commons.identity.feature.group" version="1.0.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.commons.notifications.feature.group" version="1.0.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.commons.repositories.feature.group" version="1.0.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.commons.repositories.http.feature.group" version="1.0.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.context_feature.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.bugzilla_feature.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.discovery.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.java_feature.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.monitor.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.pde_feature.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.team_feature.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.wikitext_feature.feature.group" version="1.7.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.cvs.feature.group" version="1.0.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.git.feature.group" version="1.0.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.versions.feature.group" version="1.0.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.commons.sdk.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.tasks.ui" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.tasks.core" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.tasks.bugs" version="3.8.2.v20120916-1200"/>
-
- <unit id="org.eclipse.ui" version="3.103.0.v20120705-114351"/>
- <unit id="org.eclipse.core.runtime" version="3.8.0.v20120521-2346"/>
- <unit id="org.eclipse.core.resources" version="3.8.1.v20120802-154922"/>
- <unit id="org.eclipse.ui.ide" version="3.8.1.v20120828-165804"/>
- <unit id="org.eclipse.ui.workbench.texteditor" version="3.8.0.v20120523-1310"/>
- <unit id="org.eclipse.jface.text" version="3.8.1.v20120828-155502"/>
- <unit id="org.eclipse.osgi" version="3.8.1.v20120830-144521"/>
- <unit id="org.eclipse.core.filesystem" version="1.3.200.v20120522-2012"/>
- <unit id="org.eclipse.ui.forms" version="3.5.200.v20120705-114351"/>
- <unit id="org.eclipse.ui.editors" version="3.8.0.v20120523-1540"/>
- <unit id="org.eclipse.team.core" version="3.6.100.v20120524-0627"/>
- <unit id="org.eclipse.team.ui" version="3.6.200.v20120522-1148"/>
- <unit id="org.eclipse.jface" version="3.8.101.v20120817-083647"/>
- <unit id="org.eclipse.compare" version="3.5.300.v20120522-1148"/>
- <!-- update.ui is on the 3.8 site, not the 4.2 site -->
- <unit id="org.eclipse.update.ui" version="3.3.0.v20120523-1742"/>
- <!-- there are two versions of this IU -
- 4.2 has ./org.eclipse.update.core_3.2.600.v20120530-1204.jar and
- 3.8 has ./org.eclipse.update.core_3.2.600.v20120530-120908.jar
- -->
- <!-- <unit id="org.eclipse.update.core" version="3.2.600.v20120530-120908"/> -->
- <unit id="org.eclipse.update.core" version="3.2.600.v20120820-205746"/>
- <unit id="com.atlassian.connector.commons" version="4.0.0.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.bamboo.core" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.bamboo.ui" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.branding.ui" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.commons.core" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.commons.ui" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.core" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.crucible.core" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.crucible.ui" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.cvs.core" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.cvs.ui" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.directclickthrough.ui" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.fisheye.core" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.fisheye.ui" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.help" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.jira.core" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.jira.ui" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.monitor.core" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.monitor.ui" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.subclipse.core" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.subclipse.ui" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.ui" version="3.0.6.v20120628"/>
- <!-- dep for com.atlassian.connector.eclipse.directclickthrough.ui -->
- <unit id="com.thoughtworks.xstream" version="1.3.1.v201111240924"/>
- <unit id="org.xmlpull" version="1.1.3.4_v201201052148"/>
-
- <unit id="org.jdom_jaxen" version="1.0.0.20081203-1100"/>
- <unit id="org.mortbay.jetty.server" version="6.1.23.v201012071420"/>
- <unit id="org.mortbay.jetty.util" version="6.1.23.v201012071420"/>
-
- <unit id="org.joda.time" version="1.6.0.v20081202-0100"/>
-
- <!-- WTP -->
- <unit id="org.eclipse.jst.jee" version="1.0.500.v201202020745"/>
- <unit id="org.eclipse.jst.jee.web" version="1.0.301.v201007070907"/>
- <unit id="org.eclipse.jst.common.fproj.enablement.jdt.feature.group" version="3.4.0.v201108231500-377DG8s73543J5H6D66"/>
- <unit id="org.eclipse.jst.ws.axis2tools.feature.feature.group" version="1.1.200.v201103022333-78-FF0DZRDKDDePSKwHj"/>
- <unit id="org.eclipse.jst.ws.cxf.feature.feature.group" version="1.1.0.v201201312103-7H79FHxFAKlbotH5e9l3vAA6MBG"/>
-
- <unit id="org.eclipse.jpt.common.feature.feature.group" version="1.2.1.v201208222210-663AkF7BF7cFFFFB7"/>
- <unit id="org.eclipse.jpt.common.eclipselink.feature.feature.group" version="1.2.1.v201208222210-3318s73573J777753"/>
- <unit id="org.eclipse.jpt.jpa.eclipselink.feature.feature.group" version="3.2.1.v201208222210-7M7J78F7RZHQYJAQsS4SVFD7"/>
- <unit id="org.eclipse.jpt.jpa.feature.feature.group" version="3.2.1.v201208222210-7S7K8gFBBoPapQieUcW_TFD7"/>
-
- <unit id="org.eclipse.jsf.feature.feature.group" version="3.4.1.v201208241503-7E7JFBjF9JgLWgMhh4X6Ps"/>
- <unit id="org.eclipse.jsf.feature.source.feature.group" version="3.4.1.v201208241503-7E7JFBjF9JgLWgMhh4X6Ps"/>
- <unit id="org.eclipse.jst.common.fproj.enablement.jdt.feature.group" version="3.4.0.v201108231500-377DG8s73543J5H6D66"/>
- <unit id="org.eclipse.jst.enterprise_core.feature.feature.group" version="3.4.0.v201108110300-52FShAkF7BA8O8J9OC8"/>
- <unit id="org.eclipse.jst.enterprise_ui.feature.feature.group" version="3.4.0.v201107072300-7b7JIM0FSK2WM1PS9Ar7AKUz0TrWn"/>
- <unit id="org.eclipse.jst.enterprise_userdoc.feature.feature.group" version="3.3.100.v201105122000-62FUGBgJ9EA9aEeHRHc"/>
- <unit id="org.eclipse.jst.jsf.apache.trinidad.tagsupport.feature.feature.group" version="2.2.201.v201208241503-20A87w312319352614"/>
- <unit id="org.eclipse.jst.server_adapters.ext.feature.feature.group" version="3.3.101.v20120821_1416-777HFL6CcNBDmBjKOFHIEB"/>
- <unit id="org.eclipse.jst.server_adapters.feature.feature.group" version="3.2.200.v20120517_1442-20A77w31231628a2553"/>
- <unit id="org.eclipse.jst.server_core.feature.feature.group" version="3.4.0.v20120503_1042-31FEe8s73554A4Fa2153"/>
- <unit id="org.eclipse.jst.server_ui.feature.feature.group" version="3.4.0.v20120503_1042-7A77FHr9xFcC2CFLZBCJMHLg7D64"/>
- <unit id="org.eclipse.jst.server_userdoc.feature.feature.group" version="3.3.100.v20110303-2-Eo7w3121162A3329"/>
- <unit id="org.eclipse.jst.web_core.feature.feature.group" version="3.4.1.v201208160300-7Q7EGVxFE9LeAJKvylauQtyivz-0sSxz003877"/>
- <unit id="org.eclipse.jst.webpageeditor.feature.feature.group" version="2.3.8.v201208241503-46DI9oB58B5TBH8K5E"/>
- <unit id="org.eclipse.jst.web_ui.feature.feature.group" version="3.4.1.v201208231800-7F7DFSlC25UrkX5qvgnXz0LZDA6kiWwylC3uxsWk"/>
- <unit id="org.eclipse.jst.web_userdoc.feature.feature.group" version="3.4.1.v201208231800-2117w312319373364"/>
- <unit id="org.eclipse.jst.ws.axis2tools.feature.feature.group" version="1.1.200.v201103022333-78-FF0DZRDKDDePSKwHj"/>
- <unit id="org.eclipse.jst.ws.cxf.feature.feature.group" version="1.1.0.v201201312103-7H79FHxFAKlbotH5e9l3vAA6MBG"/>
- <unit id="org.eclipse.jst.ws.jaxws.dom.feature.feature.group" version="1.0.200.v201109042201-5-F8NAkF7BB7U8PEK8K"/>
- <unit id="org.eclipse.jst.ws.jaxws.feature.feature.group" version="1.2.0.v201204151854-7E7AF70F8NcJS_KqT5TpXq"/>
- <unit id="org.eclipse.jst.ws.jaxws_userdoc.feature.feature.group" version="1.0.200.v201205012246-3-DF8s73573D795LAF"/>
-
- <unit id="org.eclipse.wst.common.frameworks" version="1.2.200.v201203141800"/>
- <unit id="org.eclipse.wst.common.project.facet.ui" version="1.4.300.v201111030424"/>
- <unit id="org.eclipse.wst.common_core.feature.feature.group" version="3.4.1.v201208162200-7B7EFMTF7RZHOjIuOyR0QS"/>
- <unit id="org.eclipse.wst.common.fproj.feature.group" version="3.4.0.v201202292300-377F8N8s735555393B7B"/>
- <unit id="org.eclipse.wst.common_ui.feature.feature.group" version="3.4.1.v201208170300-7C7AFeEEdhOaweJhCnQfykJvPz-S1RT"/>
- <unit id="org.eclipse.wst.jsdt.feature.feature.group" version="1.4.1.v201208171701-7H7DFg0FC7sReqSyfqesWi"/>
- <unit id="org.eclipse.wst.server_adapters.feature.feature.group" version="3.2.201.v20120821_1517-51F9xAkF7AL8QDRl8GAT"/>
- <unit id="org.eclipse.wst.server_core.feature.feature.group" version="3.3.100.v20110810_1722-33Et8s73563B6Ha3113"/>
- <unit id="org.eclipse.wst.server_ui.feature.feature.group" version="3.3.101.v20120817_1533-7B7AFJQAtMduXxeIc0IpSdC97A9"/>
- <unit id="org.eclipse.wst.server_userdoc.feature.feature.group" version="3.3.200.v20120830_2320-20Eo7w31231941a3363"/>
- <unit id="org.eclipse.wst.web_core.feature.feature.group" version="3.4.1.v201208170345-7E7HFSlAJz-mw9qA03HKTuLirZsDJyCao"/>
- <unit id="org.eclipse.wst.web_ui.feature.feature.group" version="3.4.1.v201208170345-7O7MFsPEMkBJz0wtb-ccsarPSceUIHO9iKk6XVPV"/>
- <unit id="org.eclipse.wst.web_userdoc.feature.feature.group" version="3.3.0.v201102200555-31Eo8s734B3E4H7799"/>
- <unit id="org.eclipse.wst.ws_core.feature.feature.group" version="3.4.0.v201108230503-7L7RFoGFGtGd-xhuy-rRwz-2766"/>
- <unit id="org.eclipse.wst.ws_ui.feature.feature.group" version="3.4.1.v201208172041-7I7CFkXEtEoXHw684K6n3-z-F3stz0lKFx169q5z"/>
- <unit id="org.eclipse.wst.ws_userdoc.feature.feature.group" version="3.1.300.v201102200555-44FR79oB5855Q8IBD7G"/>
- <unit id="org.eclipse.wst.ws_wsdl15.feature.feature.group" version="1.5.301.v201102200555-2407w312123151655"/>
- <unit id="org.eclipse.wst.xml_core.feature.feature.group" version="3.4.1.v201208170345-7C7OFm5F7RZHQRIsOz-Nz-_n"/>
- <unit id="org.eclipse.wst.xml_ui.feature.feature.group" version="3.4.1.v201208170345-7H7GFeFDxumUpsw5rgjWnKDrsz0p4ymwjQz00T2S"/>
- <unit id="org.eclipse.wst.xml_userdoc.feature.feature.group" version="3.3.0.v201102071641-50FYwAkF7B77UBZFDBL"/>
- <unit id="org.eclipse.wst.xml.xpath2.processor.feature.feature.group" version="2.0.100.v201203131922-7A7K0CcNBGPCTJ_FUOb"/>
- <unit id="org.eclipse.wst.xsl.feature.feature.group" version="1.3.100.v201111021744-7T7ZFUaFIqUoJuvaKoCpQDKaGVPc"/>
- <!-- only in JBT: SWTBot -->
- <unit id="org.eclipse.swtbot.eclipse.feature.group" version="2.0.5.20111003_1754-3676ac8-dev-e36"/>
- <unit id="org.eclipse.swtbot.eclipse.gef.feature.group" version="2.0.5.20111003_1754-3676ac8-dev-e36"/>
- <unit id="org.eclipse.swtbot.ide.feature.group" version="2.0.5.20111003_1754-3676ac8-dev-e36"/>
- <unit id="org.eclipse.swtbot.eclipse.test.junit4.feature.group" version="2.0.5.20111003_1754-3676ac8-dev-e36"/>
- <unit id="org.eclipse.swtbot.feature.group" version="2.0.5.20111003_1754-3676ac8-dev-e36"/>
-
- <!-- only in JBT: BIRT -->
- <unit id="org.eclipse.birt.osgi.runtime.sdk.feature.group" version="4.2.1.v20120820-793187qD_D0RBQLXOVH-wQkmJ1cI"/>
- <unit id="org.eclipse.birt.feature.group" version="4.2.1.v20120820-ChBG8UGYgRQlJ7y9Lz-wS7nDcRL4"/>
- <unit id="org.eclipse.birt.integration.wtp.feature.group" version="4.2.1.v20120912-1721-5107w31231A2302832"/>
- <unit id="org.eclipse.birt.chart.feature.group" version="4.2.1.v20120820-828i7EFQCnvK_6wFGvqLR"/>
- <unit id="org.eclipse.birt.chart.integration.wtp.feature.group" version="4.2.1.v20120912-1721-5107w31231A2302832"/>
-
- <!-- only in JBT: GWT/GPE dependencies (include only those which are EPL or other OSS licensed!) -->
- <unit id="com.google.gdt.eclipse.suite.e42.feature.feature.group" version="3.1.0.v201208080121-rel-r42"/>
- <unit id="com.google.gwt.eclipse.sdkbundle.e42.feature.feature.group" version="2.4.0.v201208080121-rel-r42"/>
- </location>
- </locations>
- <targetJRE path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
-</target>
Deleted: trunk/build/target-platform/multiple.target.p2mirror.xml
===================================================================
--- trunk/build/target-platform/multiple.target.p2mirror.xml 2012-10-25 05:15:38 UTC (rev 44618)
+++ trunk/build/target-platform/multiple.target.p2mirror.xml 2012-10-25 05:19:24 UTC (rev 44619)
@@ -1,342 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project name="Download target platform" default="download.target.platform" xmlns:xs="http://www.w3.org/2001/XMLSchema">
-<target name="help">
-<echo>
- Generated with useLatest = false
-
- ---
-
- Use followStrict="true" to prevent downloading all
- requirements not included in the target platform
- or followStrict="false" to fetch everything
-
- To run this script:
-
- /abs/path/to/eclipse -vm /opt/jdk1.6.0/bin/java \
- -nosplash -data /tmp/workspace -consolelog -application \
- org.eclipse.ant.core.antRunner -f *.target.p2mirror.xml \
- -Ddebug=true -DfollowStrict=true -DrepoDir=`pwd`/REPO/
-</echo>
-</target>
-<target name="init" unless="repoDir">
-<fail>Must set -DrepoDir=/abs/path/to/download/artifacts/</fail>
-</target>
-<target name="download.target.platform" depends="init" description="Download from target platform definition" if="repoDir">
-<property name="verbose" value="false"/>
-<property name="followStrict" value="false"/>
-<echo level="info">Download features/plugins into ${repoDir}</echo>
-<p2.mirror destination="file://${repoDir}" verbose="${verbose}">
-<slicingOptions includeFeatures="true" followStrict="${followStrict}"/>
-<source>
-<repository location="http://download.jboss.org/jbosstools/updates/juno/SR1/"/>
-</source>
-<iu id="javax.wsdl" version="1.6.2.v201012040545"/>
-<iu id="javax.wsdl" version="1.5.1.v201012040544"/>
-<iu id="org.jdom" version="1.1.1.v201101151400"/>
-<iu id="org.jdom" version="1.0.0.v201005080400"/>
-<iu id="org.apache.commons.lang" version="2.6.0.v201205030909"/>
-<iu id="org.apache.commons.lang" version="2.4.0.v201005080502"/>
-<iu id="org.apache.commons.lang" version="2.1.0.v201005080500"/>
-<iu id="javax.servlet" version="3.0.0.v201112011016"/>
-<iu id="javax.servlet" version="2.5.0.v200910301333"/>
-<iu id="javax.servlet.jsp" version="2.2.0.v201112011158"/>
-<iu id="javax.servlet.jsp" version="2.0.0.v200806031607"/>
-<iu id="javax.wsdl" version="1.6.2.v201012040545"/>
-<iu id="javax.wsdl" version="1.5.1.v201012040544"/>
-<iu id="javax.xml.bind" version="2.2.0.v201105210648"/>
-<iu id="javax.xml.bind" version="2.1.9.v201005080401"/>
-<iu id="javax.xml.soap" version="1.3.0.v201105210645"/>
-<iu id="javax.xml.soap" version="1.2.0.v201005080501"/>
-<iu id="org.apache.commons.logging" version="1.1.1.v201101211721"/>
-<iu id="org.apache.commons.logging" version="1.0.4.v201101211617"/>
-<iu id="org.apache.lucene" version="2.9.1.v201101211721"/>
-<iu id="org.apache.lucene" version="1.9.1.v201101211617"/>
-<iu id="org.apache.lucene.core" version="3.5.0.v20120319-2345"/>
-<iu id="org.apache.lucene.core" version="2.9.1.v201101211721"/>
-<iu id="org.junit" version="4.10.0.v4_10_0_v20120426-0900"/>
-<iu id="org.junit" version="3.8.2.v3_8_2_v20100427-1100"/>
-<iu id="org.eclipse.m2e.sdk.feature.feature.group" version="1.2.0.20120903-1050"/>
-<iu id="org.eclipse.m2e.feature.feature.group" version="1.2.0.20120903-1050"/>
-<iu id="org.eclipse.m2e.wtp.feature.feature.group" version="0.16.0.20120914-0945"/>
-<iu id="org.sonatype.m2e.mavenarchiver.feature.feature.group" version="0.15.0.201207090125-signed-201209140800"/>
-<iu id="ch.qos.logback.classic" version="1.0.0.v20111214-2030"/>
-<iu id="ch.qos.logback.core" version="1.0.0.v20111214-2030"/>
-<iu id="ch.qos.logback.slf4j" version="1.0.0.v20120123-1500"/>
-<iu id="org.slf4j.api" version="1.6.4.v20120130-2120"/>
-<iu id="com.ning.async-http-client" version="1.6.5.20120903-0645"/>
-<iu id="org.jboss.netty" version="3.2.5.Final-20120903-0645"/>
-<iu id="org.eclipse.equinox.p2.discovery.compatibility" version="1.0.101.v20120524-1717"/>
-<iu id="org.eclipse.equinox.p2.discovery" version="1.0.200.v20120524-1717"/>
-<iu id="org.eclipse.equinox.p2.ui.discovery" version="1.0.0.v20110808-1657"/>
-<iu id="javax.activation" version="1.1.0.v201108011116"/>
-<iu id="org.apache.oro" version="2.0.8.v201005080400"/>
-<iu id="org.apache.commons.io" version="2.0.1.v201105210651"/>
-<iu id="org.apache.commons.codec" version="1.3.0.v201101211617"/>
-<iu id="org.apache.commons.httpclient" version="3.1.0.v201012070820"/>
-<iu id="org.hamcrest" version="1.1.0.v20090501071000"/>
-<iu id="org.hamcrest.core" version="1.1.0.v20090501071000"/>
-<iu id="org.hamcrest.text" version="1.1.0.v20090501071000"/>
-<iu id="org.hamcrest.library" version="1.1.0.v20090501071000"/>
-<iu id="org.hamcrest.integration" version="1.1.0.v20090501071000"/>
-<iu id="org.apache.lucene.highlighter" version="3.5.0.v20120319-2345"/>
-<iu id="org.apache.lucene.memory" version="3.5.0.v20120319-2345"/>
-<iu id="org.apache.lucene.misc" version="3.5.0.v20120319-2345"/>
-<iu id="org.apache.lucene.queries" version="3.5.0.v20120319-2345"/>
-<iu id="org.apache.lucene.snowball" version="2.9.1.v20100421-0704"/>
-<iu id="org.apache.lucene.spellchecker" version="3.5.0.v20120319-2345"/>
-<iu id="org.eclipse.emf.workspace.feature.group" version="1.6.0.v20120328-0001-37708s734E377I3B4C2"/>
-<iu id="org.eclipse.emf.validation.feature.group" version="1.6.0.v20120328-0001-479-9oB56N5BBR6LCA6"/>
-<iu id="org.eclipse.emf.transaction.feature.group" version="1.6.0.v20120328-0001-377-8s734C3E7D15D6B"/>
-<iu id="org.eclipse.emf.feature.group" version="2.8.1.v20120917-0436"/>
-<iu id="org.eclipse.emf.ecore.feature.group" version="2.8.1.v20120911-0500"/>
-<iu id="org.eclipse.emf.codegen.feature.group" version="2.8.0.v20120917-0436"/>
-<iu id="org.eclipse.emf.common.feature.group" version="2.8.0.v20120911-0500"/>
-<iu id="org.eclipse.emf.databinding.feature.group" version="1.2.0.v20120917-0436"/>
-<iu id="org.eclipse.emf.codegen.ecore.feature.group" version="2.8.1.v20120917-0436"/>
-<iu id="org.eclipse.emf.ecore.edit.feature.group" version="2.8.0.v20120917-0436"/>
-<iu id="org.eclipse.emf.ecore.editor.feature.group" version="2.8.0.v20120917-0436"/>
-<iu id="org.eclipse.emf.ecore.feature.group" version="2.8.1.v20120911-0500"/>
-<iu id="org.eclipse.emf.edit.feature.group" version="2.8.0.v20120917-0436"/>
-<iu id="org.eclipse.xsd.edit.feature.group" version="2.7.0.v20120917-0436"/>
-<iu id="org.eclipse.xsd.ecore.converter.feature.group" version="2.7.0.v20120917-0436"/>
-<iu id="org.eclipse.xsd.editor.feature.group" version="2.7.0.v20120917-0436"/>
-<iu id="org.eclipse.xsd.mapping.editor.feature.group" version="2.7.0.v20120917-0436"/>
-<iu id="org.eclipse.xsd.mapping.feature.group" version="2.7.0.v20120917-0436"/>
-<iu id="org.eclipse.xsd.feature.group" version="2.8.0.v20120917-0436"/>
-<iu id="org.eclipse.graphiti.feature.feature.group" version="0.9.1.v20120919-0732"/>
-<iu id="org.eclipse.draw2d.feature.group" version="3.9.0.201208201742"/>
-<iu id="org.eclipse.gef.feature.group" version="3.9.0.201208201742"/>
-<iu id="org.eclipse.zest.feature.group" version="1.5.0.201208201742"/>
-<iu id="org.eclipse.uml2.feature.group" version="4.0.1.v20120913-1441"/>
-<iu id="org.eclipse.uml2.doc.feature.group" version="4.0.0.v20120913-1441"/>
-<iu id="com.ibm.icu.base" version="4.4.2.v20110831"/>
-<iu id="org.eclipse.platform.feature.group" version="4.2.1.v20120814-120134-9JF7BHVGFyMveli1uX6aTH0q-eAap6PAgOP5mO"/>
-<iu id="org.eclipse.platform.ide" version="4.2.1.M20120914-1800"/>
-<iu id="org.eclipse.platform.sdk" version="4.2.1.M20120914-1800"/>
-<iu id="org.eclipse.sdk.feature.group" version="4.2.1.v20120814-120134-7T7oDODQ-3Heq-afCDlg7T4xJuvxaC2ohMfCfB5451Rz0"/>
-<iu id="org.eclipse.sdk.ide" version="4.2.1.M20120914-1800"/>
-<iu id="org.eclipse.cvs.feature.group" version="1.3.200.v20120525-1249-7B79FJJAkF7BF7VEH5IAJT"/>
-<iu id="org.eclipse.jdt.feature.group" version="3.8.1.v20120814-104540-8-8nFqpFNOfwKDRVz-tXOcL5d_83"/>
-<iu id="org.eclipse.equinox.server.core.feature.group" version="1.2.0.v20120522-1841-7K7VFO1F7RZHQZI4_c8StnvFB"/>
-<iu id="org.eclipse.equinox.executable.feature.group" version="3.6.0.v20120522-1813-7P7OG2BFLWUl7UmbVUO9iCm"/>
-<iu id="org.eclipse.equinox.compendium.sdk.feature.group" version="3.8.0.v20120522-1841-7X7eGb7FPGjtJjv1kjS_NdG"/>
-<iu id="org.eclipse.equinox.core.sdk.feature.group" version="3.8.0.v20120522-1813-85FAcGbFFoYTldJrUNk3a52oHJ"/>
-<iu id="org.eclipse.equinox.p2.discovery.feature.feature.group" version="1.0.100.v20120524-0542-4-Bh9oB58A5N9L28PCQ"/>
-<iu id="org.eclipse.equinox.p2.user.ui.feature.group" version="2.2.0.v20120524-0542-62DG9JXTlSiz-UbcP0w0KGl9CKNP"/>
-<iu id="org.eclipse.equinox.p2.sdk.feature.group" version="3.8.0.v20120524-0542-9N89H_oGMMn84Qsz0iIohu4jLeQD"/>
-<iu id="org.eclipse.equinox.serverside.sdk.feature.group" version="3.8.0.v20120522-1841-9Q7dFszFYGis9uZsz0QodZP4fL9p"/>
-<iu id="org.eclipse.equinox.sdk.feature.group" version="3.8.0.v20120522-1841-7M7fA78g5_y-g-jtHxcd5k8q8lFR"/>
-<iu id="org.eclipse.equinox.weaving.sdk.feature.group" version="1.0.200.v20120522-1841-79-FKsEVVFNVFsVk7O6G6"/>
-<iu id="org.eclipse.equinox.server.jetty.feature.group" version="1.1.0.v20120522-1841-8077C0F8NcJTbL1ab47MJ5"/>
-<iu id="org.eclipse.equinox.server.p2.feature.group" version="1.2.0.v20120522-1841-7z7_FfoFTy21Yu4Ykq_engx38"/>
-<iu id="org.eclipse.equinox.server.servletbridge.feature.group" version="1.0.101.v20120522-1841-42F9w9oB58B5KBB2ADHO"/>
-<iu id="org.eclipse.rcp.feature.group" version="4.2.1.v20120814-120134-7IAPA8BrHQicS-rjP0GbqK780kMy"/>
-<iu id="org.eclipse.pde.feature.group" version="3.8.1.v20120814-104528-7c7vFixFFt6Zr5aC6KM6LGWSd"/>
-<iu id="org.eclipse.help.feature.group" version="1.4.1.v20120726-051048-8R7xFOUFLWUl7MoSKV_RBXl27"/>
-<iu id="org.eclipse.update.ui" version="3.3.0.v20120523-1742"/>
-<iu id="org.eclipse.update.core" version="3.2.600.v20120820-205746"/>
-<iu id="org.eclipse.datatools.modelbase.feature.feature.group" version="1.10.1.v201208161415-7707FCcNBHLCgLUEdUb"/>
-<iu id="org.eclipse.datatools.connectivity.feature.feature.group" version="1.10.1.v201208161415-7C7h94Et1axpCXkXlTa6fgHd9vA"/>
-<iu id="org.eclipse.datatools.connectivity.oda.feature.feature.group" version="1.10.1.v201208161415-7H7C7TCcNBHLCnH_EYOb"/>
-<iu id="org.eclipse.datatools.connectivity.oda.designer.feature.feature.group" version="1.10.1.v201208161415-4127w312312232267"/>
-<iu id="org.eclipse.datatools.connectivity.oda.designer.core.feature.feature.group" version="1.10.1.v201208161415-7B7C7NCcNBGUBnIZDaUY"/>
-<iu id="org.eclipse.datatools.enablement.feature.feature.group" version="1.10.1.v201208161415-7J9Q7FBWxeNcZB5LWgyhH7patz0v"/>
-<iu id="org.eclipse.datatools.enablement.apache.derby.feature.feature.group" version="1.10.1.v201208161415-77798gBmKDQ2MoTULxcy9IIQ"/>
-<iu id="org.eclipse.datatools.enablement.hsqldb.feature.feature.group" version="1.10.1.v201208161415-67E1AqGBM7KfNUHxJR9IIQ"/>
-<iu id="org.eclipse.datatools.enablement.ibm.feature.feature.group" version="1.10.1.v201208161415-7F47WFC7sRdqScnobkd4"/>
-<iu id="org.eclipse.datatools.enablement.jdbc.feature.feature.group" version="1.10.1.v201208161415-4-29oB5895RAE8HHP"/>
-<iu id="org.eclipse.datatools.enablement.jdt.feature.feature.group" version="1.10.1.v201208161415-2-07w312218332612"/>
-<iu id="org.eclipse.datatools.enablement.msft.feature.feature.group" version="1.10.1.v201208161415-544AkF7AL7MDMAQ8O"/>
-<iu id="org.eclipse.datatools.enablement.mysql.feature.feature.group" version="1.10.1.v201208161415-5477AkF7AK7_AMENEA"/>
-<iu id="org.eclipse.datatools.enablement.oda.feature.feature.group" version="1.10.1.v201208161415-7A7T7CDZRDKHF_HnGjOX"/>
-<iu id="org.eclipse.datatools.enablement.oda.designer.feature.feature.group" version="1.10.1.v201208161415-3368s7356485C59AB"/>
-<iu id="org.eclipse.datatools.enablement.oracle.feature.feature.group" version="1.10.1.v201208161415-548fAkF7AL7RBJANAI"/>
-<iu id="org.eclipse.datatools.enablement.postgresql.feature.feature.group" version="1.10.1.v201208161415-553AkF7AK8PCRBQBP"/>
-<iu id="org.eclipse.datatools.enablement.sap.feature.feature.group" version="1.10.1.v201208161415-540AkF7AJ7YEJBU7S"/>
-<iu id="org.eclipse.datatools.enablement.sybase.feature.feature.group" version="1.10.1.v201208161415-7E46F9NiNc1QBgyT6T6"/>
-<iu id="org.eclipse.datatools.enablement.ingres.feature.feature.group" version="1.10.1.v201208161415-540AkF78Z7UCRAQDB"/>
-<iu id="org.eclipse.datatools.enablement.sqlite.feature.feature.group" version="1.10.1.v201208161415-542AkF7AJ7SAKAPBF"/>
-<iu id="org.eclipse.datatools.sqldevtools.feature.feature.group" version="1.10.1.v201208161415-7N8B7JFDsn5iz-Aex68NyGpC_AgL"/>
-<iu id="org.eclipse.datatools.sqldevtools.results.feature.feature.group" version="1.10.1.v201208161415-57B79AkF7BD7SGC9ZEH"/>
-<iu id="org.eclipse.datatools.sqldevtools.ddlgen.feature.feature.group" version="1.10.1.v201208161415-7A-78F7RZHQTIyWmM1_s"/>
-<iu id="org.eclipse.datatools.sqldevtools.ddl.feature.feature.group" version="1.10.1.v201208161415-279078B089G8S_IRUJz-XnN2at"/>
-<iu id="org.eclipse.datatools.sqldevtools.data.feature.feature.group" version="1.10.1.v201208161415-645BgJ9EDBTHPAhQU"/>
-<iu id="org.eclipse.datatools.sqldevtools.parsers.feature.feature.group" version="1.10.1.v201208161415-623BgJ9EE9ZJRDZLA"/>
-<iu id="org.eclipse.datatools.sqldevtools.sqlbuilder.feature.feature.group" version="1.10.1.v201208161415-79-78EVVFNQGpRkHz0Sm"/>
-<iu id="org.eclipse.datatools.sqldevtools.schemaobjecteditor.feature.feature.group" version="1.10.1.v201208161415-4208375LG5BJ93413"/>
-<iu id="org.eclipse.datatools.intro.feature.group" version="1.10.1.v201208161415-26-7w312116392911"/>
-<iu id="org.eclipse.datatools.doc.user.feature.group" version="1.10.1.v201208161415-47C08w95FFAK89FHEC7"/>
-<iu id="org.eclipse.datatools.common.doc.user.feature.group" version="1.10.1.v201208161415-26-311A16321A3557"/>
-<iu id="org.eclipse.datatools.connectivity.doc.user.feature.group" version="1.10.1.v201208161415-37D-7733L3D753L7BBF"/>
-<iu id="org.eclipse.datatools.sqltools.doc.user.feature.group" version="1.10.1.v201208161415-37D-7733L3D753L7BBF"/>
-<iu id="org.eclipse.rse.feature.group" version="3.4.1.201209191030-7L7IFBY83omx__z0RFpKdWB-r5MS"/>
-<iu id="org.eclipse.rse.ssh.feature.group" version="3.0.400.201209191030-7A4FEc7F7BF7gBgB7J7"/>
-<iu id="org.eclipse.rse.terminals.feature.group" version="1.2.1.201209191030-773Ep7H8AG8_DZK9Q9252"/>
-<iu id="org.eclipse.rse.telnet.feature.group" version="2.3.0.201209191030-775FD3879AE8YB_E8OA4"/>
-<iu id="org.eclipse.rse.ftp.feature.group" version="3.1.0.201209191030-782FBV8377A6N8PB6J84"/>
-<iu id="org.eclipse.rse.local.feature.group" version="2.1.400.201209191030-7B4FSg7J9EJ9rErE9O9"/>
-<iu id="org.eclipse.rse.useractions.feature.group" version="1.1.400.201209191030-31FBV773573L5L5393"/>
-<iu id="org.eclipse.tm.terminal.feature.group" version="3.2.1.201209191030-41031231A2A2141"/>
-<iu id="org.eclipse.tm.terminal.view.feature.group" version="2.3.0.201209191030-32-31231A2A2141"/>
-<iu id="org.eclipse.tm.terminal.telnet.feature.group" version="2.1.100.201209191030-308Z31231A2A2141"/>
-<iu id="org.eclipse.tm.terminal.serial.feature.group" version="2.1.100.201209191030-308Z31231A2A2141"/>
-<iu id="org.eclipse.tm.terminal.feature.group" version="3.2.1.201209191030-41031231A2A2141"/>
-<iu id="org.eclipse.tm.terminal.ssh.feature.group" version="2.1.100.201209191030-308Z31231A2A2141"/>
-<iu id="org.eclipse.jsf.feature.source.feature.group" version="3.4.1.v201208241503-7E7JFBjF9JgLWgMhh4X6Ps"/>
-<iu id="org.eclipse.jst.jee" version="1.0.500.v201202020745"/>
-<iu id="org.eclipse.wst.common.frameworks" version="1.2.200.v201203141800"/>
-<iu id="org.eclipse.wst.common.project.facet.ui" version="1.4.300.v201111030424"/>
-<iu id="org.eclipse.jst.jee.web" version="1.0.301.v201007070907"/>
-<iu id="org.eclipse.jst.common.fproj.enablement.jdt.feature.group" version="3.4.0.v201108231500-377DG8s73543J5H6D66"/>
-<iu id="org.eclipse.jst.ws.axis2tools.feature.feature.group" version="1.1.200.v201103022333-78-FF0DZRDKDDePSKwHj"/>
-<iu id="org.eclipse.jst.ws.cxf.feature.feature.group" version="1.1.0.v201201312103-7H79FHxFAKlbotH5e9l3vAA6MBG"/>
-<iu id="org.eclipse.jpt.common.feature.feature.group" version="1.2.1.v201208222210-663AkF7BF7cFFFFB7"/>
-<iu id="org.eclipse.jpt.common.eclipselink.feature.feature.group" version="1.2.1.v201208222210-3318s73573J777753"/>
-<iu id="org.eclipse.jpt.jpa.eclipselink.feature.feature.group" version="3.2.1.v201208222210-7M7J78F7RZHQYJAQsS4SVFD7"/>
-<iu id="org.eclipse.jpt.jpa.feature.feature.group" version="3.2.1.v201208222210-7S7K8gFBBoPapQieUcW_TFD7"/>
-<iu id="org.eclipse.persistence.jpa.feature.group" version="2.4.0.v20120608-r11652"/>
-<iu id="org.eclipse.jsf.feature.feature.group" version="3.4.1.v201208241503-7E7JFBjF9JgLWgMhh4X6Ps"/>
-<iu id="org.eclipse.jst.common.fproj.enablement.jdt.feature.group" version="3.4.0.v201108231500-377DG8s73543J5H6D66"/>
-<iu id="org.eclipse.jst.enterprise_core.feature.feature.group" version="3.4.0.v201108110300-52FShAkF7BA8O8J9OC8"/>
-<iu id="org.eclipse.jst.enterprise_ui.feature.feature.group" version="3.4.0.v201107072300-7b7JIM0FSK2WM1PS9Ar7AKUz0TrWn"/>
-<iu id="org.eclipse.jst.enterprise_userdoc.feature.feature.group" version="3.3.100.v201105122000-62FUGBgJ9EA9aEeHRHc"/>
-<iu id="org.eclipse.jst.jsf.apache.trinidad.tagsupport.feature.feature.group" version="2.2.201.v201208241503-20A87w312319352614"/>
-<iu id="org.eclipse.jst.server_adapters.ext.feature.feature.group" version="3.3.101.v20120821_1416-777HFL6CcNBDmBjKOFHIEB"/>
-<iu id="org.eclipse.jst.server_adapters.feature.feature.group" version="3.2.200.v20120517_1442-20A77w31231628a2553"/>
-<iu id="org.eclipse.jst.server_core.feature.feature.group" version="3.4.0.v20120503_1042-31FEe8s73554A4Fa2153"/>
-<iu id="org.eclipse.jst.server_ui.feature.feature.group" version="3.4.0.v20120503_1042-7A77FHr9xFcC2CFLZBCJMHLg7D64"/>
-<iu id="org.eclipse.jst.server_userdoc.feature.feature.group" version="3.3.100.v20110303-2-Eo7w3121162A3329"/>
-<iu id="org.eclipse.jst.web_core.feature.feature.group" version="3.4.1.v201208160300-7Q7EGVxFE9LeAJKvylauQtyivz-0sSxz003877"/>
-<iu id="org.eclipse.jst.webpageeditor.feature.feature.group" version="2.3.8.v201208241503-46DI9oB58B5TBH8K5E"/>
-<iu id="org.eclipse.jst.web_ui.feature.feature.group" version="3.4.1.v201208231800-7F7DFSlC25UrkX5qvgnXz0LZDA6kiWwylC3uxsWk"/>
-<iu id="org.eclipse.jst.web_userdoc.feature.feature.group" version="3.4.1.v201208231800-2117w312319373364"/>
-<iu id="org.eclipse.jst.ws.axis2tools.feature.feature.group" version="1.1.200.v201103022333-78-FF0DZRDKDDePSKwHj"/>
-<iu id="org.eclipse.jst.ws.cxf.feature.feature.group" version="1.1.0.v201201312103-7H79FHxFAKlbotH5e9l3vAA6MBG"/>
-<iu id="org.eclipse.jst.ws.jaxws.dom.feature.feature.group" version="1.0.200.v201109042201-5-F8NAkF7BB7U8PEK8K"/>
-<iu id="org.eclipse.jst.ws.jaxws.feature.feature.group" version="1.2.0.v201204151854-7E7AF70F8NcJS_KqT5TpXq"/>
-<iu id="org.eclipse.jst.ws.jaxws_userdoc.feature.feature.group" version="1.0.200.v201205012246-3-DF8s73573D795LAF"/>
-<iu id="org.eclipse.wst.common_core.feature.feature.group" version="3.4.1.v201208162200-7B7EFMTF7RZHOjIuOyR0QS"/>
-<iu id="org.eclipse.wst.common.fproj.feature.group" version="3.4.0.v201202292300-377F8N8s735555393B7B"/>
-<iu id="org.eclipse.wst.common_ui.feature.feature.group" version="3.4.1.v201208170300-7C7AFeEEdhOaweJhCnQfykJvPz-S1RT"/>
-<iu id="org.eclipse.wst.jsdt.feature.feature.group" version="1.4.1.v201208171701-7H7DFg0FC7sReqSyfqesWi"/>
-<iu id="org.eclipse.wst.server_adapters.feature.feature.group" version="3.2.201.v20120821_1517-51F9xAkF7AL8QDRl8GAT"/>
-<iu id="org.eclipse.wst.server_core.feature.feature.group" version="3.3.100.v20110810_1722-33Et8s73563B6Ha3113"/>
-<iu id="org.eclipse.wst.server_ui.feature.feature.group" version="3.3.101.v20120817_1533-7B7AFJQAtMduXxeIc0IpSdC97A9"/>
-<iu id="org.eclipse.wst.server_userdoc.feature.feature.group" version="3.3.200.v20120830_2320-20Eo7w31231941a3363"/>
-<iu id="org.eclipse.wst.web_core.feature.feature.group" version="3.4.1.v201208170345-7E7HFSlAJz-mw9qA03HKTuLirZsDJyCao"/>
-<iu id="org.eclipse.wst.web_ui.feature.feature.group" version="3.4.1.v201208170345-7O7MFsPEMkBJz0wtb-ccsarPSceUIHO9iKk6XVPV"/>
-<iu id="org.eclipse.wst.web_userdoc.feature.feature.group" version="3.3.0.v201102200555-31Eo8s734B3E4H7799"/>
-<iu id="org.eclipse.wst.ws_core.feature.feature.group" version="3.4.0.v201108230503-7L7RFoGFGtGd-xhuy-rRwz-2766"/>
-<iu id="org.eclipse.wst.ws_ui.feature.feature.group" version="3.4.1.v201208172041-7I7CFkXEtEoXHw684K6n3-z-F3stz0lKFx169q5z"/>
-<iu id="org.eclipse.wst.ws_userdoc.feature.feature.group" version="3.1.300.v201102200555-44FR79oB5855Q8IBD7G"/>
-<iu id="org.eclipse.wst.ws_wsdl15.feature.feature.group" version="1.5.301.v201102200555-2407w312123151655"/>
-<iu id="org.eclipse.wst.xml_core.feature.feature.group" version="3.4.1.v201208170345-7C7OFm5F7RZHQRIsOz-Nz-_n"/>
-<iu id="org.eclipse.wst.xml_ui.feature.feature.group" version="3.4.1.v201208170345-7H7GFeFDxumUpsw5rgjWnKDrsz0p4ymwjQz00T2S"/>
-<iu id="org.eclipse.wst.xml_userdoc.feature.feature.group" version="3.3.0.v201102071641-50FYwAkF7B77UBZFDBL"/>
-<iu id="org.eclipse.wst.xml.xpath2.processor.feature.feature.group" version="2.0.100.v201203131922-7A7K0CcNBGPCTJ_FUOb"/>
-<iu id="org.eclipse.wst.xsl.feature.feature.group" version="1.3.100.v201111021744-7T7ZFUaFIqUoJuvaKoCpQDKaGVPc"/>
-<iu id="org.eclipse.jsch.ui" version="1.1.400.v20120522-1148"/>
-<iu id="org.eclipse.jsch.core" version="1.1.400.v20120522-1148"/>
-<iu id="com.jcraft.jsch" version="0.1.46.v201205102330"/>
-<iu id="org.eclipse.jgit.feature.group" version="2.1.0.201209190230-r"/>
-<iu id="org.eclipse.egit.feature.group" version="2.1.0.201209190230-r"/>
-<iu id="org.eclipse.egit.mylyn.feature.group" version="2.1.0.201209190230-r"/>
-<iu id="org.eclipse.mylyn.github.feature.feature.group" version="2.1.0.201209190230-r"/>
-<iu id="com.sun.syndication" version="0.9.0.v200803061811"/>
-<iu id="org.eclipse.mylyn.commons.core" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.discovery.ui" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.discovery.core" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.commons.ui" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.commons.net" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.commons.screenshots" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn_feature.feature.group" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.ide_feature.feature.group" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.tasks.ide.feature.group" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.commons.feature.group" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.commons.compatibility.feature.group" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.commons.identity.feature.group" version="1.0.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.commons.notifications.feature.group" version="1.0.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.commons.repositories.feature.group" version="1.0.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.commons.repositories.http.feature.group" version="1.0.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.context_feature.feature.group" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.bugzilla_feature.feature.group" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.discovery.feature.group" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.java_feature.feature.group" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.monitor.feature.group" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.pde_feature.feature.group" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.team_feature.feature.group" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.wikitext_feature.feature.group" version="1.7.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.cvs.feature.group" version="1.0.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.git.feature.group" version="1.0.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.versions.feature.group" version="1.0.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.commons.sdk.feature.group" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.tasks.ui" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.tasks.core" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.tasks.bugs" version="3.8.2.v20120916-1200"/>
-<iu id="com.atlassian.connector.commons" version="4.0.0.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.bamboo.core" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.bamboo.ui" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.branding.ui" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.commons.core" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.commons.ui" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.core" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.crucible.core" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.crucible.ui" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.cvs.core" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.cvs.ui" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.directclickthrough.ui" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.fisheye.core" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.fisheye.ui" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.help" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.jira.core" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.jira.ui" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.monitor.core" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.monitor.ui" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.subclipse.core" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.subclipse.ui" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.ui" version="3.0.6.v20120628"/>
-<iu id="com.thoughtworks.xstream" version="1.3.1.v201111240924"/>
-<iu id="org.xmlpull" version="1.1.3.4_v201201052148"/>
-<iu id="org.eclipse.ui" version="3.103.0.v20120705-114351"/>
-<iu id="org.eclipse.core.runtime" version="3.8.0.v20120521-2346"/>
-<iu id="org.eclipse.core.resources" version="3.8.1.v20120802-154922"/>
-<iu id="org.eclipse.ui.ide" version="3.8.1.v20120828-165804"/>
-<iu id="org.eclipse.ui.workbench.texteditor" version="3.8.0.v20120523-1310"/>
-<iu id="org.eclipse.jface.text" version="3.8.1.v20120828-155502"/>
-<iu id="org.eclipse.osgi" version="3.8.1.v20120830-144521"/>
-<iu id="org.eclipse.core.filesystem" version="1.3.200.v20120522-2012"/>
-<iu id="org.eclipse.ui.forms" version="3.5.200.v20120705-114351"/>
-<iu id="org.eclipse.ui.editors" version="3.8.0.v20120523-1540"/>
-<iu id="org.eclipse.team.core" version="3.6.100.v20120524-0627"/>
-<iu id="org.eclipse.team.ui" version="3.6.200.v20120522-1148"/>
-<iu id="org.eclipse.jface" version="3.8.101.v20120817-083647"/>
-<iu id="org.eclipse.compare" version="3.5.300.v20120522-1148"/>
-<iu id="org.apache.axis" version="1.4.0.v201005080400"/>
-<iu id="org.apache.commons.io" version="2.0.1.v201105210651"/>
-<iu id="org.apache.commons.httpclient" version="3.1.0.v201012070820"/>
-<iu id="org.apache.commons.codec" version="1.3.0.v201101211617"/>
-<iu id="org.jdom_jaxen" version="1.0.0.20081203-1100"/>
-<iu id="org.mortbay.jetty.server" version="6.1.23.v201012071420"/>
-<iu id="org.mortbay.jetty.util" version="6.1.23.v201012071420"/>
-<iu id="org.apache.jasper" version="7.0.26.v201205030742"/>
-<iu id="org.apache.catalina" version="7.0.26.v201205021508"/>
-<iu id="javax.ejb" version="3.1.1.v201204261316"/>
-<iu id="javax.transaction" version="1.1.1.v201105210645"/>
-<iu id="org.joda.time" version="1.6.0.v20081202-0100"/>
-<iu id="javax.xml.rpc" version="1.1.0.v201005080400"/>
-<iu id="javax.el" version="2.2.0.v201108011116"/>
-<iu id="org.eclipse.swtbot.eclipse.feature.group" version="2.0.5.20111003_1754-3676ac8-dev-e36"/>
-<iu id="org.eclipse.swtbot.eclipse.gef.feature.group" version="2.0.5.20111003_1754-3676ac8-dev-e36"/>
-<iu id="org.eclipse.swtbot.ide.feature.group" version="2.0.5.20111003_1754-3676ac8-dev-e36"/>
-<iu id="org.eclipse.swtbot.eclipse.test.junit4.feature.group" version="2.0.5.20111003_1754-3676ac8-dev-e36"/>
-<iu id="org.eclipse.swtbot.feature.group" version="2.0.5.20111003_1754-3676ac8-dev-e36"/>
-<iu id="org.eclipse.birt.osgi.runtime.sdk.feature.group" version="4.2.1.v20120820-793187qD_D0RBQLXOVH-wQkmJ1cI"/>
-<iu id="org.eclipse.birt.feature.group" version="4.2.1.v20120820-ChBG8UGYgRQlJ7y9Lz-wS7nDcRL4"/>
-<iu id="org.eclipse.birt.integration.wtp.feature.group" version="4.2.1.v20120912-1721-5107w31231A2302832"/>
-<iu id="org.eclipse.birt.chart.feature.group" version="4.2.1.v20120820-828i7EFQCnvK_6wFGvqLR"/>
-<iu id="org.eclipse.birt.chart.integration.wtp.feature.group" version="4.2.1.v20120912-1721-5107w31231A2302832"/>
-<iu id="com.google.gdt.eclipse.suite.e42.feature.feature.group" version="3.1.0.v201208080121-rel-r42"/>
-<iu id="com.google.gwt.eclipse.sdkbundle.e42.feature.feature.group" version="2.4.0.v201208080121-rel-r42"/>
-</p2.mirror>
-</target>
-</project>
Deleted: trunk/build/target-platform/pom-local.xml
===================================================================
--- trunk/build/target-platform/pom-local.xml 2012-10-25 05:15:38 UTC (rev 44618)
+++ trunk/build/target-platform/pom-local.xml 2012-10-25 05:19:24 UTC (rev 44619)
@@ -1,240 +0,0 @@
-<?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</groupId> <artifactId>parent</artifactId>
- <version>0.0.1-SNAPSHOT</version> </parent> -->
- <groupId>org.jboss.tools</groupId>
- <artifactId>org.jboss.tools.target.platform</artifactId>
- <version>4.0.0.Beta1-SNAPSHOT</version>
- <name>JBoss Tools Target Platform Definition</name>
- <packaging>pom</packaging>
-
- <properties>
- <target.platform.classifier.multiple.name>multiple</target.platform.classifier.multiple.name>
- <target.platform.classifier.unified.name>unified</target.platform.classifier.unified.name>
- <target.platform.classifier.local.name>local</target.platform.classifier.local.name>
- <!-- unified.URL is only used when regenerating the .target file via targetUpdateFromRepo.xml -->
- <unified.URL>http://download.jboss.org/jbosstools/updates/target-platform_4.0.juno.SR1...</unified.URL>
-
- <eclipse.version>4.2.1</eclipse.version>
- <eclipse.URL>http://www.eclipse.org/downloads/download.php?r=1&file=/eclipse/downl...</eclipse.URL>
- <!--
- <eclipse.version>M20120829-1000</eclipse.version>
- <eclipse.URL>http://www.eclipse.org/downloads/download.php?r=1&file=/eclipse/downl...</eclipse.URL>
- -->
- <eclipse.type>platform</eclipse.type>
-
- <!-- Temporary before release of Tycho 0.16 -->
- <!-- JBIDE-12003 -->
- <tychoVersion>0.16.0-SNAPSHOT</tychoVersion>
- <tychoExtrasVersion>0.16.0-SNAPSHOT</tychoExtrasVersion>
- </properties>
-
- <build>
- <plugins>
- <plugin>
- <groupId>org.eclipse.tycho.extras</groupId>
- <artifactId>target-platform-validation-plugin</artifactId>
- <version>${tychoExtrasVersion}</version>
- <executions>
- <execution>
- <phase>validate</phase>
- <goals>
- <goal>validate-target-platform</goal>
- </goals>
- <configuration>
- <targetFiles>
- <!-- run this only after building from multiple.target to a local repo to ensure the TP contains EVERYTHING we need -->
- <param>local.target</param>
- </targetFiles>
- <failOnError>true</failOnError>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>build-helper-maven-plugin</artifactId>
- <version>1.3</version>
- <executions>
- <execution>
- <id>attach-artifacts</id>
- <phase>package</phase>
- <goals>
- <goal>attach-artifact</goal>
- </goals>
- <configuration>
- <artifacts>
- <!-- add more artifacts if want more target platforms -->
- <artifact>
- <file>${target.platform.classifier.multiple.name}.target</file>
- <type>target</type>
- <classifier>${target.platform.classifier.multiple.name}</classifier>
- </artifact>
- <artifact>
- <file>${target.platform.classifier.unified.name}.target</file>
- <type>target</type>
- <classifier>${target.platform.classifier.unified.name}</classifier>
- </artifact>
- </artifacts>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
-
- <profiles>
- <profile>
- <id>use.local.target</id>
- <build>
- <plugins>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>build-helper-maven-plugin</artifactId>
- <version>1.3</version>
- <executions>
- <execution>
- <id>attach-artifacts</id>
- <phase>package</phase>
- <goals>
- <goal>attach-artifact</goal>
- </goals>
- <configuration>
- <artifacts>
- <!-- add more artifacts if want more target platforms -->
- <artifact>
- <file>${target.platform.classifier.multiple.name}.target</file>
- <type>target</type>
- <classifier>${target.platform.classifier.multiple.name}</classifier>
- </artifact>
- <artifact>
- <file>${target.platform.classifier.unified.name}.target</file>
- <type>target</type>
- <classifier>${target.platform.classifier.unified.name}</classifier>
- </artifact>
- <artifact>
- <file>${target.platform.classifier.local.name}.target</file>
- <type>target</type>
- <classifier>${target.platform.classifier.local.name}</classifier>
- </artifact>
- </artifacts>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
- <profile>
- <id>get.local.target</id>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-antrun-plugin</artifactId>
- <version>1.6</version>
- <executions>
- <execution>
- <phase>validate</phase>
- <configuration>
- <tasks>
- <!-- build the local.target file -->
- <ant antfile="build.xml">
- <property name="targetFile" value="multiple.target" />
- <property name="unified.URL" value="${unified.URL}"/>
- <property name="eclipse.version" value="${eclipse.version}" />
- <property name="eclipse.type" value="${eclipse.type}" />
- <property name="eclipse.URL" value="${eclipse.URL}"/>
- <!-- <property name="repoDir" value="/path/to/where/to/provision/repo"/> -->
- </ant>
- </tasks>
- </configuration>
- <goals>
- <goal>run</goal>
- </goals>
- </execution>
- </executions>
- <dependencies>
- <dependency>
- <groupId>commons-net</groupId>
- <artifactId>commons-net</artifactId>
- <version>1.4.1</version>
- </dependency>
- <dependency>
- <groupId>org.apache.ant</groupId>
- <artifactId>ant-commons-net</artifactId>
- <version>1.7.1</version>
- </dependency>
- <dependency>
- <groupId>org.apache.ant</groupId>
- <artifactId>ant-trax</artifactId>
- <version>1.7.1</version>
- </dependency>
- </dependencies>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>build-helper-maven-plugin</artifactId>
- <version>1.3</version>
- <executions>
- <execution>
- <id>attach-artifacts</id>
- <phase>package</phase>
- <goals>
- <goal>attach-artifact</goal>
- </goals>
- <configuration>
- <artifacts>
- <!-- add more artifacts if want more target platforms -->
- <artifact>
- <file>${target.platform.classifier.multiple.name}.target</file>
- <type>target</type>
- <classifier>${target.platform.classifier.multiple.name}</classifier>
- </artifact>
- <artifact>
- <file>${target.platform.classifier.unified.name}.target</file>
- <type>target</type>
- <classifier>${target.platform.classifier.unified.name}</classifier>
- </artifact>
- <artifact>
- <file>${target.platform.classifier.local.name}.target</file>
- <type>target</type>
- <classifier>${target.platform.classifier.local.name}</classifier>
- </artifact>
- </artifacts>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
-
- <distributionManagement>
- <repository>
- <id>jboss-releases-repository</id>
- <name>JBoss Releases Repository</name>
- <uniqueVersion>false</uniqueVersion>
- <url>https://repository.jboss.org/nexus/content/repositories/releases/</url>
- <layout>default</layout>
- </repository>
- <snapshotRepository>
- <id>jboss-snapshots-repository</id>
- <name>JBoss Snapshot Repository</name>
- <uniqueVersion>false</uniqueVersion>
- <url>https://repository.jboss.org/nexus/content/repositories/snapshots/</url>
- <layout>default</layout>
- </snapshotRepository>
- </distributionManagement>
-
- <pluginRepositories>
- <pluginRepository>
- <id>tycho-snapshots</id>
- <url>https://oss.sonatype.org/content/groups/public/</url>
- </pluginRepository>
-</pluginRepositories>
-
-</project>
Deleted: trunk/build/target-platform/pom.xml
===================================================================
--- trunk/build/target-platform/pom.xml 2012-10-25 05:15:38 UTC (rev 44618)
+++ trunk/build/target-platform/pom.xml 2012-10-25 05:19:24 UTC (rev 44619)
@@ -1,242 +0,0 @@
-<?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</groupId> <artifactId>parent</artifactId>
- <version>0.0.1-SNAPSHOT</version> </parent> -->
- <groupId>org.jboss.tools</groupId>
- <artifactId>org.jboss.tools.target.platform</artifactId>
- <version>4.0.0.Beta1-SNAPSHOT</version>
- <name>JBoss Tools Target Platform Definition</name>
- <packaging>pom</packaging>
-
- <properties>
- <target.platform.classifier.multiple.name>multiple</target.platform.classifier.multiple.name>
- <target.platform.classifier.unified.name>unified</target.platform.classifier.unified.name>
- <target.platform.classifier.local.name>local</target.platform.classifier.local.name>
- <!-- unified.URL is only used when regenerating the .target file via targetUpdateFromRepo.xml -->
- <unified.URL>http://download.jboss.org/jbosstools/updates/target-platform_4.0.juno.SR1...</unified.URL>
-
- <eclipse.version>4.2.1</eclipse.version>
- <eclipse.URL>http://www.eclipse.org/downloads/download.php?r=1&file=/eclipse/downl...</eclipse.URL>
- <!--
- <eclipse.version>M20120829-1000</eclipse.version>
- <eclipse.URL>http://www.eclipse.org/downloads/download.php?r=1&file=/eclipse/downl...</eclipse.URL>
- -->
- <eclipse.type>platform</eclipse.type>
-
- <!-- Temporary before release of Tycho 0.16 -->
- <!-- JBIDE-12003 -->
- <tychoVersion>0.16.0-SNAPSHOT</tychoVersion>
- <tychoExtrasVersion>0.16.0-SNAPSHOT</tychoExtrasVersion>
- </properties>
-
- <build>
- <plugins>
- <plugin>
- <groupId>org.eclipse.tycho.extras</groupId>
- <artifactId>target-platform-validation-plugin</artifactId>
- <version>${tychoExtrasVersion}</version>
- <executions>
- <execution>
- <phase>validate</phase>
- <goals>
- <goal>validate-target-platform</goal>
- </goals>
- <configuration>
- <targetFiles>
- <param>multiple.target</param>
- <param>jbds.target</param>
- <!-- DO NOT VALIDATE unified.target until multiple.target is built and published, or it will fail to resolve deps -->
- <!-- <param>unified.target</param> -->
- </targetFiles>
- <failOnError>true</failOnError>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>build-helper-maven-plugin</artifactId>
- <version>1.3</version>
- <executions>
- <execution>
- <id>attach-artifacts</id>
- <phase>package</phase>
- <goals>
- <goal>attach-artifact</goal>
- </goals>
- <configuration>
- <artifacts>
- <!-- add more artifacts if want more target platforms -->
- <artifact>
- <file>${target.platform.classifier.multiple.name}.target</file>
- <type>target</type>
- <classifier>${target.platform.classifier.multiple.name}</classifier>
- </artifact>
- <artifact>
- <file>${target.platform.classifier.unified.name}.target</file>
- <type>target</type>
- <classifier>${target.platform.classifier.unified.name}</classifier>
- </artifact>
- </artifacts>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
-
- <profiles>
- <profile>
- <id>use.local.target</id>
- <build>
- <plugins>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>build-helper-maven-plugin</artifactId>
- <version>1.3</version>
- <executions>
- <execution>
- <id>attach-artifacts</id>
- <phase>package</phase>
- <goals>
- <goal>attach-artifact</goal>
- </goals>
- <configuration>
- <artifacts>
- <!-- add more artifacts if want more target platforms -->
- <artifact>
- <file>${target.platform.classifier.multiple.name}.target</file>
- <type>target</type>
- <classifier>${target.platform.classifier.multiple.name}</classifier>
- </artifact>
- <artifact>
- <file>${target.platform.classifier.unified.name}.target</file>
- <type>target</type>
- <classifier>${target.platform.classifier.unified.name}</classifier>
- </artifact>
- <artifact>
- <file>${target.platform.classifier.local.name}.target</file>
- <type>target</type>
- <classifier>${target.platform.classifier.local.name}</classifier>
- </artifact>
- </artifacts>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
- <profile>
- <id>get.local.target</id>
- <build>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-antrun-plugin</artifactId>
- <version>1.6</version>
- <executions>
- <execution>
- <phase>validate</phase>
- <configuration>
- <tasks>
- <!-- build the local.target file -->
- <ant antfile="build.xml">
- <property name="targetFile" value="multiple.target" />
- <property name="unified.URL" value="${unified.URL}"/>
- <property name="eclipse.version" value="${eclipse.version}" />
- <property name="eclipse.type" value="${eclipse.type}" />
- <property name="eclipse.URL" value="${eclipse.URL}"/>
- <!-- <property name="repoDir" value="/path/to/where/to/provision/repo"/> -->
- </ant>
- </tasks>
- </configuration>
- <goals>
- <goal>run</goal>
- </goals>
- </execution>
- </executions>
- <dependencies>
- <dependency>
- <groupId>commons-net</groupId>
- <artifactId>commons-net</artifactId>
- <version>1.4.1</version>
- </dependency>
- <dependency>
- <groupId>org.apache.ant</groupId>
- <artifactId>ant-commons-net</artifactId>
- <version>1.7.1</version>
- </dependency>
- <dependency>
- <groupId>org.apache.ant</groupId>
- <artifactId>ant-trax</artifactId>
- <version>1.7.1</version>
- </dependency>
- </dependencies>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>build-helper-maven-plugin</artifactId>
- <version>1.3</version>
- <executions>
- <execution>
- <id>attach-artifacts</id>
- <phase>package</phase>
- <goals>
- <goal>attach-artifact</goal>
- </goals>
- <configuration>
- <artifacts>
- <!-- add more artifacts if want more target platforms -->
- <artifact>
- <file>${target.platform.classifier.multiple.name}.target</file>
- <type>target</type>
- <classifier>${target.platform.classifier.multiple.name}</classifier>
- </artifact>
- <artifact>
- <file>${target.platform.classifier.unified.name}.target</file>
- <type>target</type>
- <classifier>${target.platform.classifier.unified.name}</classifier>
- </artifact>
- <artifact>
- <file>${target.platform.classifier.local.name}.target</file>
- <type>target</type>
- <classifier>${target.platform.classifier.local.name}</classifier>
- </artifact>
- </artifacts>
- </configuration>
- </execution>
- </executions>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
-
- <distributionManagement>
- <repository>
- <id>jboss-releases-repository</id>
- <name>JBoss Releases Repository</name>
- <uniqueVersion>false</uniqueVersion>
- <url>https://repository.jboss.org/nexus/content/repositories/releases/</url>
- <layout>default</layout>
- </repository>
- <snapshotRepository>
- <id>jboss-snapshots-repository</id>
- <name>JBoss Snapshot Repository</name>
- <uniqueVersion>false</uniqueVersion>
- <url>https://repository.jboss.org/nexus/content/repositories/snapshots/</url>
- <layout>default</layout>
- </snapshotRepository>
- </distributionManagement>
-
- <pluginRepositories>
- <pluginRepository>
- <id>tycho-snapshots</id>
- <url>https://oss.sonatype.org/content/groups/public/</url>
- </pluginRepository>
-</pluginRepositories>
-
-</project>
Deleted: trunk/build/target-platform/publish.sh
===================================================================
--- trunk/build/target-platform/publish.sh 2012-10-25 05:15:38 UTC (rev 44618)
+++ trunk/build/target-platform/publish.sh 2012-10-25 05:19:24 UTC (rev 44619)
@@ -1,89 +0,0 @@
-#!/bin/bash
-# Hudson creates a repo in ${repoDir}; copy it into other places for access by downstream jobs and users
-
-# defaults for JBoss Tools
-# don't forget to increment these files when moving up a version:
-# build.xml, *.target*, publish.sh, target2p2mirror.xml; also jbds/trunk/releng/org.jboss.ide.eclipse.releng/requirements/jbds-target-platform/build.properties;
-# also all devstudio-6.0_*.updatesite jobs (4) need to be pointed at the new Target Platform URL
-targetZipFile=e421-wtp341.target
-repoDir=/home/hudson/static_build_env/jbds/tools/sources/REPO_4.0.juno.SR1
-destinationPath=/home/hudson/static_build_env/jbds/target-platform_4.0.juno.SR1
-DESTINATION=tools@filemgmt.jboss.org:/downloads_htdocs/tools/updates/target-platform_4.0.juno.SR1
-include="*"
-exclude="--exclude '.blobstore'" # exclude the .blobstore
-
-while [ "$#" -gt 0 ]; do
- case $1 in
- '-targetFile') targetZipFile="$2"; shift 2;; # old flag name (collision with build.xml's ${targetFile}, which points to a .target file)
- '-targetZipFile') targetZipFile="$2"; shift 2;;
- '-repoPath') repoDir="$2"; shift 2;; # old flag name (refactored to match build.xml's ${repoDir})
- '-repoDir') repoDir="$2"; shift 2;;
- '-destinationPath') destinationPath="$2"; shift 2;;
- '-DESTINATION') DESTINATION="$2"; shift 2;;
- '-include') include="$2"; shift 2;;
- '-exclude') exclude="$2"; shift 2;;
-
- '-jbt_4.0.juno.SR1')
- # defaults for JBT (trunk)
- targetZipFile=e421-wtp341.target
- repoDir=/home/hudson/static_build_env/jbds/tools/sources/REPO_4.0.juno.SR1
- destinationPath=/home/hudson/static_build_env/jbds/target-platform_4.0.juno.SR1
- DESTINATION=tools@filemgmt.jboss.org:/downloads_htdocs/tools/updates/target-platform_4.0.juno.SR1
- include="*"
- exclude="--exclude '.blobstore'" # exclude the .blobstore
- shift 1;;
-
- '-jbds_4.0.juno.SR1')
- # defaults for JBDS (trunk)
- targetZipFile=jbds600-e421-wtp341.target
- repoDir=/home/hudson/static_build_env/jbds/tools/sources/JBDS-REPO_4.0.juno.SR1
- destinationPath=/home/hudson/static_build_env/jbds/jbds-target-platform_4.0.juno.SR1
- DESTINATION=/qa/services/http/binaries/RHDS/updates/jbds-target-platform_4.0.juno.SR1
- include=".blobstore *" # include the .blobstore
- exclude=""
- shift 1;;
-
- *)
- echo "Unknown parameter " $1
- exit 1;;
- esac
-done
-
-if [[ -d ${repoDir} ]]; then
- cd ${repoDir}
-
- if [[ ! -d ${destinationPath}/${targetZipFile} ]]; then
- mkdir -p ${destinationPath}/${targetZipFile}
- fi
- du -sh ${repoDir} ${destinationPath}/${targetZipFile}
-
- # copy/update into central place for reuse by local downstream build jobs
- date; rsync -arzqc --protocol=28 --delete-after --delete-excluded --rsh=ssh ${exclude} ${include} ${destinationPath}/${targetZipFile}/
-
- du -sh ${repoDir} ${destinationPath}/${targetZipFile}
-
- # upload to http://download.jboss.org/jbossotools/updates/target-platform_3.3.indigo/... for public use
- if [[ ${DESTINATION/:/} == ${DESTINATION} ]]; then # local path, no user@server:/path
- mkdir -p ${DESTINATION}/
- else
- DESTPARENT=${DESTINATION%/*}; NEWFOLDER=${DESTINATION##*/}
- if [[ $(echo "ls" | sftp ${DESTPARENT} 2>&1 | grep ${NEWFOLDER}) == "" ]]; then
- # DESTHOST=${DESTINATION%:*}; DESTFOLD=${DESTINATION#*:}; echo "mkdir ${DESTFOLD}" | sftp ${DESTHOST}; # alternate approach
- echo "mkdir ${NEWFOLDER}" | sftp ${DESTPARENT}
- fi
- fi
- # if the following line fails, make sure that ${DESTINATION} is already created on target server
- date; rsync -arzqc --protocol=28 --delete-after --delete-excluded --rsh=ssh ${exclude} ${include} ${DESTINATION}/latest/
-
- targetZip=/tmp/${targetZipFile}.zip
-
- # create zip, then upload to http://download.jboss.org/jbossotools/updates/target-platform_3.3.indigo/... for public use
- zip -q -r9 ${targetZip} ${include}
- du -sh ${targetZip}
-
- # generate MD5 sum for zip (file contains only the hash, not the hash + filename)
- for m in $(md5sum ${targetZip}); do if [[ $m != ${targetZip} ]]; then echo $m > ${targetZip}.MD5; fi; done
-
- date; rsync -arzq --protocol=28 --rsh=ssh ${targetZip} ${targetZip}.MD5 ${DESTINATION}/
- rm -f ${targetZip} ${targetZip}.MD5
-fi
Deleted: trunk/build/target-platform/target2p2mirror.xml
===================================================================
--- trunk/build/target-platform/target2p2mirror.xml 2012-10-25 05:15:38 UTC (rev 44618)
+++ trunk/build/target-platform/target2p2mirror.xml 2012-10-25 05:19:24 UTC (rev 44619)
@@ -1,33 +0,0 @@
-<project default="custom.build" name="jbosstools target platform p2.mirror generator">
- <!-- don't forget to increment these files when moving up a version:
- build.xml, *.target*, publish.sh, target2p2mirror.xml; also jbds/trunk/releng/org.jboss.ide.eclipse.releng/requirements/jbds-target-platform/build.properties;
- also all devstudio-5.0_*.updatesite jobs (4) need to be pointed at the new Target Platform URL -->
-
- <property name="targetFile" value="e421-wtp341.target" />
-
- <!-- if useLatest = true, omit versions from p2.mirror script to fetch latest version available;
- if useLatest = false, include versions and fetch specific versions requested. -->
- <property name="useLatest" value="false" />
-
- <target name="custom.build" depends="gen.p2mirror.script" />
-
- <target name="gen.p2mirror.script" description="use XSLT to generate a p2.mirror script from .target">
- <echo level="verbose">Generate ${targetFile}.p2mirror.xml from ${targetFile} using useLatest=${useLatest}" />
-</echo>
- <delete file="${targetFile}.p2mirror.xml" quiet="true" />
- <xslt style="target2p2mirrorXml.xsl" in="${targetFile}" out="${targetFile}.p2mirror.xml" processor="trax">
- <param name="useLatest" expression="${useLatest}" />
- </xslt>
- <echo>-----------
-
- Next, be sure to run the resulting p2.mirror script.
- You may need to run it a few times for it to complete
- successfully (due to network timeouts and invalid mirrors).
-
- For instructions on running the script, do this:
-
- ant -f ${targetFile}.p2mirror.xml help
- </echo>
- </target>
-
-</project>
Deleted: trunk/build/target-platform/target2p2mirrorXml.xsl
===================================================================
--- trunk/build/target-platform/target2p2mirrorXml.xsl 2012-10-25 05:15:38 UTC (rev 44618)
+++ trunk/build/target-platform/target2p2mirrorXml.xsl 2012-10-25 05:19:24 UTC (rev 44619)
@@ -1,87 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" ?>
-<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xmlns:xs="http://www.w3.org/2001/XMLSchema"
- version="2.0">
-<!--
- This XSLT is used by target2p2mirror.xml to generate a p2.mirror ant script from a .target file
--->
- <xsl:output method="xml" indent="yes" encoding="UTF-8"
- version="1.0" />
-
- <!-- if useLatest = true, omit versions from p2.mirror script to fetch latest version available;
- if useLatest = false, include versions and fetch specific versions requested. -->
- <xsl:param name="useLatest" select="'false'" as="xs:string"/>
-
- <xsl:param name="verbose" select="'${verbose}'" as="xs:string"/>
- <xsl:param name="followStrict" select="'${followStrict}'" as="xs:string"/>
- <xsl:param name="destination" select="'file://${repoDir}'" as="xs:string"/>
-
- <xsl:template match="target">
- <project name="Download target platform" default="download.target.platform">
- <target name="help">
- <echo>
- Generated with useLatest = <xsl:value-of select="$useLatest"/>
-
- ---
-
- Use followStrict="true" to prevent downloading all
- requirements not included in the target platform
- or followStrict="false" to fetch everything
-
- To run this script:
-
- /abs/path/to/eclipse -vm /opt/jdk1.6.0/bin/java \
- -nosplash -data /tmp/workspace -consolelog -application \
- org.eclipse.ant.core.antRunner -f *.target.p2mirror.xml \
- -Ddebug=true -DfollowStrict=true -DrepoDir=`pwd`/REPO/
-</echo>
- </target>
- <target name="init" unless="repoDir">
- <fail>Must set -DrepoDir=/abs/path/to/download/artifacts/</fail>
- </target>
- <target name="download.target.platform" depends="init"
- description="Download from target platform definition" if="repoDir">
- <property name="verbose" value="false" />
- <property name="followStrict" value="false" />
- <echo level="info">Download features/plugins into ${repoDir}</echo>
- <p2.mirror destination="{$destination}" verbose="{$verbose}">
- <!-- should we add latestVersionOnly="true" to <slicingOptions> ? -->
- <slicingOptions includeFeatures="true" followStrict="{$followStrict}"/>
- <source>
- <xsl:apply-templates select="//repository" />
- </source>
- <xsl:apply-templates select="//unit" />
- <xsl:apply-templates select="//feature" />
- <xsl:apply-templates select="//plugin" />
- </p2.mirror>
- </target>
- </project>
- </xsl:template>
-
- <xsl:template match="//repository">
- <xsl:variable name="locationUrl" select="./@location" />
- <repository location="{$locationUrl}" />
- </xsl:template>
-
- <xsl:template match="//unit">
- <xsl:choose>
- <xsl:when test="$useLatest='true'">
- <iu id="{@id}" version="" />
- </xsl:when>
- <xsl:otherwise>
- <iu id="{@id}" version="{@version}" />
- </xsl:otherwise>
- </xsl:choose>
- </xsl:template>
-
- <xsl:template match="//plugin">
- <iu id="{@id}" version="" />
- </xsl:template>
-
- <xsl:template match="//feature">
- <iu id="{(a)id}.feature.group" version="" />
- </xsl:template>
-
- <!-- ignore anything else -->
- <xsl:template match="environment|targetJRE|launcherArgs|includeBundles" />
-
-</xsl:stylesheet>
Deleted: trunk/build/target-platform/target2targetTemplate.xsl
===================================================================
--- trunk/build/target-platform/target2targetTemplate.xsl 2012-10-25 05:15:38 UTC (rev 44618)
+++ trunk/build/target-platform/target2targetTemplate.xsl 2012-10-25 05:19:24 UTC (rev 44619)
@@ -1,62 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">
-<!--
- This XSLT is used by targetUpdateFromRepo.xml to update the versions on IUs in a .target file
- CAUTION: do not auto-format this file or line breaks will appear where they should not be!
--->
-
-<xsl:param name="replacement.URL"/>
-<xsl:param name="replace.versions"/>
-
-<!-- Copy unit nodes and optionally (if we ran contentXml2artifactVersions.xsl transform and have artifactVersions.properties file) templatize their version attributes -->
-<xsl:template match="unit">
-<xsl:choose>
-<xsl:when test="$replace.versions">
-
-<xsl:variable name="prevID"><xsl:value-of select="preceding-sibling::* [1]/@id" /></xsl:variable> <!-- <prevID><xsl:value-of select="$prevID"/></prevID> -->
-<xsl:variable name="thisID"><xsl:value-of select="@id" /></xsl:variable> <!-- <thisID><xsl:value-of select="$thisID"/></thisID> -->
-<xsl:variable name="nextID"><xsl:value-of select="following-sibling::* [1]/@id" /></xsl:variable> <!-- <nextID><xsl:value-of select="$nextID"/></nextID> -->
-
-<!-- if there is more than one node matching <unit id="some.id"/> then DO NOT REPLACE the version -->
-<xsl:choose>
- <xsl:when test="contains ($thisID, $nextID) or contains ($thisID, $prevID)">
- <!-- <xsl:comment> Note multiple versions of this IU; cannot update automatically. </xsl:comment> -->
- <unit id="{@id}" version="{@version}"><xsl:apply-templates/></unit>
- </xsl:when>
- <xsl:otherwise>
- <unit id="{@id}" version="${{{(a)id}.version}}"><xsl:apply-templates/></unit>
- </xsl:otherwise>
-</xsl:choose>
-<xsl:apply-templates/>
-</xsl:when>
-<xsl:otherwise>
-<unit id="{@id}" version="{@version}"><xsl:apply-templates/></unit>
-</xsl:otherwise>
-</xsl:choose>
-</xsl:template>
-
-<!-- Copy repository nodes and optionally replace their location attributes (if replacement.URL is set) -->
-<xsl:template match="repository">
-<xsl:choose>
-<xsl:when test="$replacement.URL">
-<repository location="{$replacement.URL}">
-<xsl:apply-templates/>
-</repository>
-</xsl:when>
-<xsl:otherwise>
-<repository location="{@location}">
-<xsl:apply-templates/>
-</repository>
-</xsl:otherwise>
-</xsl:choose>
-</xsl:template>
-
-<!-- Copy everything else unchanged -->
-<xsl:template match="@*|node()">
-<xsl:copy>
-<xsl:apply-templates select="@*|node()"/>
-</xsl:copy>
-</xsl:template>
-
-</xsl:stylesheet>
-
Deleted: trunk/build/target-platform/targetUpdateFromRepo.xml
===================================================================
--- trunk/build/target-platform/targetUpdateFromRepo.xml 2012-10-25 05:15:38 UTC (rev 44618)
+++ trunk/build/target-platform/targetUpdateFromRepo.xml 2012-10-25 05:19:24 UTC (rev 44619)
@@ -1,165 +0,0 @@
-<project default="custom.build" name="jbosstools target platform updater">
-
- <property name="outputDir" value="${basedir}" />
- <!-- Instead of overwriting, can also create a new .target file in a different outputDir
- <property name="outputDir" value="${tmpDir}" />
- -->
-
- <!-- must set these commandline if not using defaults -->
- <property name="targetFile" value="multiple.target" />
- <property name="repoDir" value="${outputDir}/REPO/" />
-
- <!-- create a second .target file which replaces all URLs with a single unified (published) one
- (eg., for jbosstools target platform site), set these properties too -->
- <property name="unified.targetFile" value="unified.target" />
- <property name="unified.URL" value="http://download.jboss.org/jbosstools/updates/target-platform_4.0.juno.SR1..." />
- <property name="local.targetFile" value="local.target" />
- <property name="local.URL" value="file://${repoDir}" />
-
- <property name="tmpDir" value="${java.io.tmpdir}/targetUpdateFromRepo" />
-
- <target name="help">
- <echo>Must set these properties (or use defaults shown):
-
- ant -f targetUpdateFromRepo.xml -DrepoDir=${repoDir} \
- -DtargetFile=${targetFile} \
- -Dunified.targetFile=${unified.targetFile} \
- -Dunified.URL=${unified.URL} \
- -Dlocal.targetFile=${local.targetFile} \
- -Dlocal.URL=${local.URL}
-
-To simply generate a local.target file from the multiple.target file, use:
-
- ant -f targetUpdateFromRepo.xml local.target</echo>
- </target>
-
- <target name="custom.build" depends="check.content.xml, get.content.xml, copy.content.xml, contentXml2artifactVersions.xsl, multiple.target, unified.target, local.target, cleanup" />
-
- <target name="check.content.xml" description="if content.jar, unpack to get content.xml">
- <condition property="content.xml.exists" value="true">
- <available file="${repoDir}/content.xml" />
- </condition>
- </target>
- <target name="get.content.xml" unless="content.xml.exists">
- <echo level="verbose">Unzip ${tmpDir}/content.xml</echo>
- <unzip src="${repoDir}/content.jar" dest="${tmpDir}" />
- </target>
- <target name="copy.content.xml" if="content.xml.exists">
- <echo level="verbose">Copy ${tmpDir}/content.xml</echo>
- <copy file="${repoDir}/content.xml" todir="${tmpDir}" />
- </target>
-
- <target name="contentXml2artifactVersions.xsl">
- <echo level="verbose">Generate ${tmpDir}/artifactVersions.properties</echo>
- <xslt style="contentXml2artifactVersions.xsl" in="${tmpDir}/content.xml" out="${tmpDir}/artifactVersions.properties" processor="trax" />
- </target>
-
- <target name="target2targetTemplate" description="run target2targetTemplate.xsl to templatize .target file">
- <property name="outputFile" value="${tmpDir}/${targetFile}.template" />
- <property name="replacement.URL" value="" />
- <echo level="verbose">Generate ${outputFile}</echo>
- <xslt style="target2targetTemplate.xsl" in="${targetFile}" out="${outputFile}" processor="trax">
- <param name="replacement.URL" expression="${replacement.URL}" />
- <!-- if replace.versions is set, will update from versions in repo; if not set, will only update URLs, not IU versions -->
- <param name="replace.versions" expression="1" />
- </xslt>
- </target>
-
- <target name="multiple.target" description="update the multiple.target file based on new content in the local repo">
- <antcall target="target2targetTemplate" />
- <antcall target="updateTargetFile" />
- </target>
-
- <target name="unified.target" description="update the unified.target file based on new content in the local repo and replace URLs w/ single unified one">
- <antcall target="target2targetTemplate">
- <param name="outputFile" value="${tmpDir}/${unified.targetFile}.template" />
- <param name="replacement.URL" value="${unified.URL}" />
- </antcall>
- <antcall target="updateTargetFile">
- <param name="targetFile" value="${unified.targetFile}" />
- </antcall>
- </target>
-
- <target name="local.target" description="create a local.target file (based on new content in the local repo if available) and replace URLs w/ single local one">
- <antcall target="target2targetTemplate">
- <param name="outputFile" value="${tmpDir}/${local.targetFile}.template" />
- <param name="replacement.URL" value="${local.URL}" />
- </antcall>
- <antcall target="updateTargetFile">
- <param name="targetFile" value="${local.targetFile}" />
- </antcall>
- </target>
-
- <target name="updateTargetFile" description="load generated properties and resolve them in the template to create a new .target file">
- <property file="${tmpDir}/artifactVersions.properties" />
- <copy todir="${outputDir}" overwrite="true">
- <fileset file="${tmpDir}/${targetFile}.template" />
- <mapper type="merge" to="${targetFile}" />
- <filterchain>
- <expandproperties />
- </filterchain>
- </copy>
- </target>
-
- <target name="cleanup" description="purge temporary dir">
- <delete dir="${tmpDir}" includeemptydirs="true" quiet="true" />
- </target>
-
- <!-- test examples:
- cd ~/32x/build/target-platform
- ant -f targetUpdateFromRepo.xml test.updateTargetFile -Dtest.pattern=swtbot
- ant -f targetUpdateFromRepo.xml test.updateTargetFile -Dtest.pattern=js -DtargetFile=jbds.target -DrepoDir=`pwd`/JBDS_REPO/
- -->
- <target name="test.updateTargetFile" depends="check.content.xml, get.content.xml, copy.content.xml, contentXml2artifactVersions.xsl">
- <!-- properties to set commandline: -->
- <property name="test.pattern" value="swtbot"/>
- <property name="test.targetFile" value="${targetFile}"/>
-
- <property name="tmpfile" value="${tmpDir}/test.updateTargetFile.tmp"/>
- <property name="tmpfile2" value="${tmpDir}/test.updateTargetFile.tmpsed"/>
- <echo level="info">Load /${test.pattern}/ properties from ${tmpDir}/artifactVersions.properties</echo>
- <loadfile srcfile="${tmpDir}/artifactVersions.properties" property="artifactVersionsPropertiesContents">
- <filterchain>
- <linecontains>
- <contains value="${test.pattern}" />
- <!-- <contains value="feature.group" /> -->
- </linecontains>
- <striplinecomments><comment value="#"/></striplinecomments>
- </filterchain>
- </loadfile>
- <echo file="${tmpfile}">${artifactVersionsPropertiesContents}</echo>
-
- <antcall target="target2targetTemplate">
- <param name="outputFile" value="${tmpDir}/${test.targetFile}.template" />
- <param name="replacement.URL" value="${unified.URL}" />
- </antcall>
- <!-- <echo level="info">Generated ${tmpDir}/${unified.targetFile}.template: </echo>
- <exec executable="egrep">
- <arg line=""${test.pattern}" ${tmpDir}/${test.targetFile}.template" />
- </exec> -->
-
- <antcall target="updateTargetFile">
- <param name="targetFile" value="${test.targetFile}" />
- </antcall>
- <echo level="info">--
-If loaded version values (in artifactVersions.properties) do not match
-output below (values from repo), an error has occurred or replace.versions is undefined.
-It is also possible that the complete list of features in the repo is greater than those
-in the target. If so, clean the repo and regenerate to remove extraneous content.
---</echo>
- <!-- $ sed -n -e '/swtbot.*feature.group/ p' unified.target | sed -e 's/\t\t\t<unit id="\|"\/>//g' -->
- <exec executable="sed" output="${tmpfile2}">
- <arg line=" -n -e '/${test.pattern}.*feature.group/ p' ${test.targetFile}" />
- </exec>
- <exec executable="sed" output="${tmpfile}.2">
- <arg line=" -e 's/\t\t\t<unit id="\|"\/>//g' ${tmpfile2} -e 's/" version="/.version=/g'" />
- </exec>
- <exec executable="sort" output="${tmpfile}.sorted"><arg line="${tmpfile}"/></exec>
- <exec executable="sort" output="${tmpfile}.2.sorted"><arg line="${tmpfile}.2"/></exec>
- <exec executable="diff" outputproperty="diffout">
- <arg line="${tmpfile}.sorted ${tmpfile}.2.sorted"/>
- </exec>
- <echo>${diffout}</echo>
- <antcall target="cleanup"/>
- </target>
-</project>
Deleted: trunk/build/target-platform/unified.target
===================================================================
--- trunk/build/target-platform/unified.target 2012-10-25 05:15:38 UTC (rev 44618)
+++ trunk/build/target-platform/unified.target 2012-10-25 05:19:24 UTC (rev 44619)
@@ -1,376 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?><?pde version="3.6"?>
-<target includeMode="feature" name="e42-wtp34-jbds6">
- <!-- Pro tip: to convert
- from org.eclipse.foo_4.6.0.v201005032111-777K4AkF7B77R7c7N77.jar
- to <unit version="4.6.0.v201005032111-777K4AkF7B77R7c7N77" id="org.eclipse.foo.feature.group"/>
- using vi, apply this transform:
- :%s/.\+\/\(org.\+\)_\(\d\+.\+\)\.jar/\t\t\t<unit id="\1.feature.group" version="\2"\/>/g
- -->
- <locations>
- <location includeAllPlatforms="false" includeMode="planner" type="InstallableUnit" includeSource="true">
- <!-- don't forget to increment these files when moving up a version:
- build.xml, *.target*, publish.sh, target2p2mirror.xml -->
- <repository location="http://download.jboss.org/jbosstools/updates/target-platform_4.0.juno.SR1..."/>
-
- <!-- for these IUs we need multiple versions -->
- <unit id="javax.wsdl" version="1.6.2.v201012040545"/>
- <unit id="javax.wsdl" version="1.5.1.v201012040544"/>
- <unit id="org.jdom" version="1.1.1.v201101151400"/>
- <unit id="org.jdom" version="1.0.0.v201005080400"/>
- <unit id="org.apache.commons.lang" version="2.6.0.v201205030909"/>
- <unit id="org.apache.commons.lang" version="2.4.0.v201005080502"/>
- <unit id="org.apache.commons.lang" version="2.1.0.v201005080500"/>
- <unit id="javax.servlet" version="3.0.0.v201112011016"/>
- <unit id="javax.servlet" version="2.5.0.v200910301333"/>
- <unit id="javax.servlet.jsp" version="2.2.0.v201112011158"/>
- <!-- <unit id="javax.servlet.jsp" version="2.0.0.v201101211617"/> -->
- <unit id="javax.servlet.jsp" version="2.0.0.v200806031607"/>
- <unit id="javax.wsdl" version="1.6.2.v201012040545"/>
- <unit id="javax.wsdl" version="1.5.1.v201012040544"/>
- <unit id="javax.xml.bind" version="2.2.0.v201105210648"/>
- <unit id="javax.xml.bind" version="2.1.9.v201005080401"/>
- <unit id="javax.xml.soap" version="1.3.0.v201105210645"/>
- <unit id="javax.xml.soap" version="1.2.0.v201005080501"/>
- <unit id="org.apache.commons.logging" version="1.1.1.v201101211721"/>
- <unit id="org.apache.commons.logging" version="1.0.4.v201101211617"/>
- <unit id="org.apache.lucene" version="2.9.1.v201101211721"/>
- <unit id="org.apache.lucene" version="1.9.1.v201101211617"/>
- <unit id="org.apache.lucene.core" version="3.5.0.v20120319-2345"/>
- <unit id="org.apache.lucene.core" version="2.9.1.v201101211721"/>
- <unit id="org.junit" version="4.10.0.v4_10_0_v20120426-0900"/>
- <unit id="org.junit" version="3.8.2.v3_8_2_v20100427-1100"/>
-
- <!-- Orbit bundles -->
- <unit id="javax.activation" version="1.1.0.v201108011116"/>
- <unit id="org.apache.oro" version="2.0.8.v201005080400"/>
- <unit id="org.apache.commons.io" version="2.0.1.v201105210651"/>
- <unit id="org.apache.commons.codec" version="1.3.0.v201101211617"/>
- <unit id="org.apache.commons.httpclient" version="3.1.0.v201012070820"/>
- <unit id="org.hamcrest" version="1.1.0.v20090501071000"/>
- <unit id="org.hamcrest.core" version="1.1.0.v20090501071000"/>
- <unit id="org.hamcrest.text" version="1.1.0.v20090501071000"/>
- <unit id="org.hamcrest.library" version="1.1.0.v20090501071000"/>
- <unit id="org.hamcrest.integration" version="1.1.0.v20090501071000"/>
-
- <!-- Orbit bundles needed for Eclipse Checkstyle (eclipse-cs) -->
- <unit id="org.apache.lucene.highlighter" version="3.5.0.v20120319-2345"/>
- <unit id="org.apache.lucene.memory" version="3.5.0.v20120319-2345"/>
- <unit id="org.apache.lucene.misc" version="3.5.0.v20120319-2345"/>
- <unit id="org.apache.lucene.queries" version="3.5.0.v20120319-2345"/>
- <unit id="org.apache.lucene.snowball" version="2.9.1.v20100421-0704"/>
- <unit id="org.apache.lucene.spellchecker" version="3.5.0.v20120319-2345"/>
-
- <unit id="org.apache.axis" version="1.4.0.v201005080400"/>
- <unit id="org.apache.commons.io" version="2.0.1.v201105210651"/>
- <unit id="org.apache.commons.httpclient" version="3.1.0.v201012070820"/>
- <unit id="org.apache.commons.codec" version="1.3.0.v201101211617"/>
- <unit id="org.apache.jasper" version="7.0.26.v201205030742"/>
- <unit id="org.apache.catalina" version="7.0.26.v201205021508"/>
- <unit id="javax.ejb" version="3.1.1.v201204261316"/>
- <unit id="javax.transaction" version="1.1.1.v201105210645"/>
- <unit id="javax.el" version="2.2.0.v201108011116"/>
- <unit id="javax.xml.rpc" version="1.1.0.v201005080400"/>
-
- <!-- m2e, m2e-wtp + deps -->
- <unit id="org.eclipse.m2e.sdk.feature.feature.group" version="1.2.0.20120903-1050"/>
- <unit id="org.eclipse.m2e.feature.feature.group" version="1.2.0.20120903-1050"/>
- <unit id="ch.qos.logback.classic" version="1.0.0.v20111214-2030"/>
- <unit id="ch.qos.logback.core" version="1.0.0.v20111214-2030"/>
- <unit id="ch.qos.logback.slf4j" version="1.0.0.v20120123-1500"/>
- <unit id="org.slf4j.api" version="1.6.4.v20120130-2120"/>
- <unit id="com.ning.async-http-client" version="1.6.5.20120903-0645"/>
- <unit id="org.jboss.netty" version="3.2.5.Final-20120903-0645"/>
- <unit id="org.eclipse.m2e.wtp.feature.feature.group" version="0.16.0.20120914-0945"/>
- <unit id="org.sonatype.m2e.mavenarchiver.feature.feature.group" version="0.15.0.201207090125-signed-201209140800"/>
-
-
- <unit id="org.eclipse.equinox.p2.discovery.compatibility" version="1.0.101.v20120524-1717"/>
- <unit id="org.eclipse.equinox.p2.discovery" version="1.0.200.v20120524-1717"/>
- <unit id="org.eclipse.equinox.p2.ui.discovery" version="1.0.0.v20110808-1657"/>
-
- <!-- EMF, XSD -->
- <unit id="org.eclipse.emf.workspace.feature.group" version="1.6.0.v20120328-0001-37708s734E377I3B4C2"/>
- <unit id="org.eclipse.emf.validation.feature.group" version="1.6.0.v20120328-0001-479-9oB56N5BBR6LCA6"/>
- <unit id="org.eclipse.emf.transaction.feature.group" version="1.6.0.v20120328-0001-377-8s734C3E7D15D6B"/>
- <unit id="org.eclipse.emf.feature.group" version="2.8.1.v20120917-0436"/>
- <unit id="org.eclipse.emf.ecore.feature.group" version="2.8.1.v20120911-0500"/>
- <unit id="org.eclipse.emf.codegen.feature.group" version="2.8.0.v20120917-0436"/>
- <unit id="org.eclipse.emf.common.feature.group" version="2.8.0.v20120911-0500"/>
- <unit id="org.eclipse.emf.databinding.feature.group" version="1.2.0.v20120917-0436"/>
- <unit id="org.eclipse.emf.codegen.ecore.feature.group" version="2.8.1.v20120917-0436"/>
- <unit id="org.eclipse.emf.ecore.edit.feature.group" version="2.8.0.v20120917-0436"/>
- <unit id="org.eclipse.emf.ecore.editor.feature.group" version="2.8.0.v20120917-0436"/>
- <unit id="org.eclipse.emf.ecore.feature.group" version="2.8.1.v20120911-0500"/>
- <unit id="org.eclipse.emf.edit.feature.group" version="2.8.0.v20120917-0436"/>
- <unit id="org.eclipse.xsd.edit.feature.group" version="2.7.0.v20120917-0436"/>
- <unit id="org.eclipse.xsd.ecore.converter.feature.group" version="2.7.0.v20120917-0436"/>
- <unit id="org.eclipse.xsd.editor.feature.group" version="2.7.0.v20120917-0436"/>
- <unit id="org.eclipse.xsd.mapping.editor.feature.group" version="2.7.0.v20120917-0436"/>
- <unit id="org.eclipse.xsd.mapping.feature.group" version="2.7.0.v20120917-0436"/>
- <unit id="org.eclipse.xsd.feature.group" version="2.8.0.v20120917-0436"/>
-
- <!-- GEF, Draw2D, Graphiti, Zest -->
- <unit id="org.eclipse.graphiti.feature.feature.group" version="0.9.1.v20120919-0732"/>
- <unit id="org.eclipse.draw2d.feature.group" version="3.9.0.201208201742"/>
- <unit id="org.eclipse.gef.feature.group" version="3.9.0.201208201742"/>
- <unit id="org.eclipse.zest.feature.group" version="1.5.0.201208201742"/>
-
- <!-- Needed for Teiid Designer: UML2 -->
- <unit id="org.eclipse.uml2.feature.group" version="4.0.1.v20120913-1441"/>
- <unit id="org.eclipse.uml2.doc.feature.group" version="4.0.0.v20120913-1441"/>
-
- <!-- Platform: CVS, JDT, RCP, PDE, Equinox, Help -->
- <unit id="com.ibm.icu.base" version="4.4.2.v20110831"/>
- <!-- cannot include two versions of the same feature as they conflict in terms of inclusion of org.eclipse.update.ui, which is only on the 3.8 site -->
- <!-- <unit id="org.eclipse.platform.feature.group" version="3.8.0.v20120607-071945-9gF7jI7nG5qByXMVdkhRMWBQlF4PnDCLybDCPQ"/> -->
- <unit id="org.eclipse.platform.feature.group" version="4.2.1.v20120814-120134-9JF7BHVGFyMveli1uX6aTH0q-eAap6PAgOP5mO"/>
- <unit id="org.eclipse.platform.ide" version="4.2.1.M20120914-1800"/>
- <unit id="org.eclipse.platform.sdk" version="4.2.1.M20120914-1800"/>
- <unit id="org.eclipse.sdk.feature.group" version="4.2.1.v20120814-120134-7T7oDODQ-3Heq-afCDlg7T4xJuvxaC2ohMfCfB5451Rz0"/>
- <unit id="org.eclipse.sdk.ide" version="4.2.1.M20120914-1800"/>
- <unit id="org.eclipse.cvs.feature.group" version="1.3.200.v20120525-1249-7B79FJJAkF7BF7VEH5IAJT"/>
- <unit id="org.eclipse.jdt.feature.group" version="3.8.1.v20120814-104540-8-8nFqpFNOfwKDRVz-tXOcL5d_83"/>
- <unit id="org.eclipse.equinox.server.core.feature.group" version="1.2.0.v20120522-1841-7K7VFO1F7RZHQZI4_c8StnvFB"/>
- <unit id="org.eclipse.equinox.executable.feature.group" version="3.6.0.v20120522-1813-7P7OG2BFLWUl7UmbVUO9iCm"/>
- <unit id="org.eclipse.equinox.compendium.sdk.feature.group" version="3.8.0.v20120522-1841-7X7eGb7FPGjtJjv1kjS_NdG"/>
- <unit id="org.eclipse.equinox.core.sdk.feature.group" version="3.8.0.v20120522-1813-85FAcGbFFoYTldJrUNk3a52oHJ"/>
- <unit id="org.eclipse.equinox.p2.discovery.feature.feature.group" version="1.0.100.v20120524-0542-4-Bh9oB58A5N9L28PCQ"/>
- <unit id="org.eclipse.equinox.p2.user.ui.feature.group" version="2.2.0.v20120524-0542-62DG9JXTlSiz-UbcP0w0KGl9CKNP"/>
- <unit id="org.eclipse.equinox.p2.sdk.feature.group" version="3.8.0.v20120524-0542-9N89H_oGMMn84Qsz0iIohu4jLeQD"/>
- <unit id="org.eclipse.equinox.serverside.sdk.feature.group" version="3.8.0.v20120522-1841-9Q7dFszFYGis9uZsz0QodZP4fL9p"/>
- <unit id="org.eclipse.equinox.sdk.feature.group" version="3.8.0.v20120522-1841-7M7fA78g5_y-g-jtHxcd5k8q8lFR"/>
- <unit id="org.eclipse.equinox.weaving.sdk.feature.group" version="1.0.200.v20120522-1841-79-FKsEVVFNVFsVk7O6G6"/>
- <unit id="org.eclipse.equinox.server.jetty.feature.group" version="1.1.0.v20120522-1841-8077C0F8NcJTbL1ab47MJ5"/>
- <unit id="org.eclipse.equinox.server.p2.feature.group" version="1.2.0.v20120522-1841-7z7_FfoFTy21Yu4Ykq_engx38"/>
- <unit id="org.eclipse.equinox.server.servletbridge.feature.group" version="1.0.101.v20120522-1841-42F9w9oB58B5KBB2ADHO"/>
- <unit id="org.eclipse.rcp.feature.group" version="4.2.1.v20120814-120134-7IAPA8BrHQicS-rjP0GbqK780kMy"/>
- <unit id="org.eclipse.pde.feature.group" version="3.8.1.v20120814-104528-7c7vFixFFt6Zr5aC6KM6LGWSd"/>
- <unit id="org.eclipse.help.feature.group" version="1.4.1.v20120726-051048-8R7xFOUFLWUl7MoSKV_RBXl27"/>
-
- <!-- DTP -->
- <unit id="org.eclipse.datatools.modelbase.feature.feature.group" version="1.10.1.v201208161415-7707FCcNBHLCgLUEdUb"/>
- <unit id="org.eclipse.datatools.connectivity.feature.feature.group" version="1.10.1.v201208161415-7C7h94Et1axpCXkXlTa6fgHd9vA"/>
- <unit id="org.eclipse.datatools.connectivity.oda.feature.feature.group" version="1.10.1.v201208161415-7H7C7TCcNBHLCnH_EYOb"/>
- <unit id="org.eclipse.datatools.connectivity.oda.designer.feature.feature.group" version="1.10.1.v201208161415-4127w312312232267"/>
- <unit id="org.eclipse.datatools.connectivity.oda.designer.core.feature.feature.group" version="1.10.1.v201208161415-7B7C7NCcNBGUBnIZDaUY"/>
- <unit id="org.eclipse.datatools.enablement.feature.feature.group" version="1.10.1.v201208161415-7J9Q7FBWxeNcZB5LWgyhH7patz0v"/>
- <unit id="org.eclipse.datatools.enablement.apache.derby.feature.feature.group" version="1.10.1.v201208161415-77798gBmKDQ2MoTULxcy9IIQ"/>
- <unit id="org.eclipse.datatools.enablement.hsqldb.feature.feature.group" version="1.10.1.v201208161415-67E1AqGBM7KfNUHxJR9IIQ"/>
- <unit id="org.eclipse.datatools.enablement.ibm.feature.feature.group" version="1.10.1.v201208161415-7F47WFC7sRdqScnobkd4"/>
- <unit id="org.eclipse.datatools.enablement.jdbc.feature.feature.group" version="1.10.1.v201208161415-4-29oB5895RAE8HHP"/>
- <unit id="org.eclipse.datatools.enablement.jdt.feature.feature.group" version="1.10.1.v201208161415-2-07w312218332612"/>
- <unit id="org.eclipse.datatools.enablement.msft.feature.feature.group" version="1.10.1.v201208161415-544AkF7AL7MDMAQ8O"/>
- <unit id="org.eclipse.datatools.enablement.mysql.feature.feature.group" version="1.10.1.v201208161415-5477AkF7AK7_AMENEA"/>
- <unit id="org.eclipse.datatools.enablement.oda.feature.feature.group" version="1.10.1.v201208161415-7A7T7CDZRDKHF_HnGjOX"/>
- <unit id="org.eclipse.datatools.enablement.oda.designer.feature.feature.group" version="1.10.1.v201208161415-3368s7356485C59AB"/>
- <unit id="org.eclipse.datatools.enablement.oracle.feature.feature.group" version="1.10.1.v201208161415-548fAkF7AL7RBJANAI"/>
- <unit id="org.eclipse.datatools.enablement.postgresql.feature.feature.group" version="1.10.1.v201208161415-553AkF7AK8PCRBQBP"/>
- <unit id="org.eclipse.datatools.enablement.sap.feature.feature.group" version="1.10.1.v201208161415-540AkF7AJ7YEJBU7S"/>
- <unit id="org.eclipse.datatools.enablement.sybase.feature.feature.group" version="1.10.1.v201208161415-7E46F9NiNc1QBgyT6T6"/>
- <unit id="org.eclipse.datatools.enablement.ingres.feature.feature.group" version="1.10.1.v201208161415-540AkF78Z7UCRAQDB"/>
- <unit id="org.eclipse.datatools.enablement.sqlite.feature.feature.group" version="1.10.1.v201208161415-542AkF7AJ7SAKAPBF"/>
- <unit id="org.eclipse.datatools.sqldevtools.feature.feature.group" version="1.10.1.v201208161415-7N8B7JFDsn5iz-Aex68NyGpC_AgL"/>
- <unit id="org.eclipse.datatools.sqldevtools.results.feature.feature.group" version="1.10.1.v201208161415-57B79AkF7BD7SGC9ZEH"/>
- <unit id="org.eclipse.datatools.sqldevtools.ddlgen.feature.feature.group" version="1.10.1.v201208161415-7A-78F7RZHQTIyWmM1_s"/>
- <unit id="org.eclipse.datatools.sqldevtools.ddl.feature.feature.group" version="1.10.1.v201208161415-279078B089G8S_IRUJz-XnN2at"/>
- <unit id="org.eclipse.datatools.sqldevtools.data.feature.feature.group" version="1.10.1.v201208161415-645BgJ9EDBTHPAhQU"/>
- <unit id="org.eclipse.datatools.sqldevtools.parsers.feature.feature.group" version="1.10.1.v201208161415-623BgJ9EE9ZJRDZLA"/>
- <unit id="org.eclipse.datatools.sqldevtools.sqlbuilder.feature.feature.group" version="1.10.1.v201208161415-79-78EVVFNQGpRkHz0Sm"/>
- <unit id="org.eclipse.datatools.sqldevtools.schemaobjecteditor.feature.feature.group" version="1.10.1.v201208161415-4208375LG5BJ93413"/>
- <unit id="org.eclipse.datatools.intro.feature.group" version="1.10.1.v201208161415-26-7w312116392911"/>
- <unit id="org.eclipse.datatools.doc.user.feature.group" version="1.10.1.v201208161415-47C08w95FFAK89FHEC7"/>
- <unit id="org.eclipse.datatools.common.doc.user.feature.group" version="1.10.1.v201208161415-26-311A16321A3557"/>
- <unit id="org.eclipse.datatools.connectivity.doc.user.feature.group" version="1.10.1.v201208161415-37D-7733L3D753L7BBF"/>
- <unit id="org.eclipse.datatools.sqltools.doc.user.feature.group" version="1.10.1.v201208161415-37D-7733L3D753L7BBF"/>
- <unit id="org.eclipse.persistence.jpa.feature.group" version="2.4.0.v20120608-r11652"/>
-
- <!-- RSE, TM -->
- <unit id="org.eclipse.rse.feature.group" version="3.4.1.201209191030-7L7IFBY83omx__z0RFpKdWB-r5MS"/>
- <unit id="org.eclipse.rse.ssh.feature.group" version="3.0.400.201209191030-7A4FEc7F7BF7gBgB7J7"/>
- <unit id="org.eclipse.rse.terminals.feature.group" version="1.2.1.201209191030-773Ep7H8AG8_DZK9Q9252"/>
- <unit id="org.eclipse.rse.telnet.feature.group" version="2.3.0.201209191030-775FD3879AE8YB_E8OA4"/>
- <unit id="org.eclipse.rse.ftp.feature.group" version="3.1.0.201209191030-782FBV8377A6N8PB6J84"/>
- <unit id="org.eclipse.rse.local.feature.group" version="2.1.400.201209191030-7B4FSg7J9EJ9rErE9O9"/>
- <unit id="org.eclipse.rse.useractions.feature.group" version="1.1.400.201209191030-31FBV773573L5L5393"/>
- <unit id="org.eclipse.tm.terminal.feature.group" version="3.2.1.201209191030-41031231A2A2141"/>
- <unit id="org.eclipse.tm.terminal.view.feature.group" version="2.3.0.201209191030-32-31231A2A2141"/>
- <unit id="org.eclipse.tm.terminal.telnet.feature.group" version="2.1.100.201209191030-308Z31231A2A2141"/>
- <unit id="org.eclipse.tm.terminal.serial.feature.group" version="2.1.100.201209191030-308Z31231A2A2141"/>
- <unit id="org.eclipse.tm.terminal.feature.group" version="3.2.1.201209191030-41031231A2A2141"/>
- <unit id="org.eclipse.tm.terminal.ssh.feature.group" version="2.1.100.201209191030-308Z31231A2A2141"/>
-
- <!-- JBIDE-9549, JBDS-1904 add egit/jgit and mylyn support to TP, including dependent plugins -->
- <unit id="org.eclipse.jsch.ui" version="1.1.400.v20120522-1148"/>
- <unit id="org.eclipse.jsch.core" version="1.1.400.v20120522-1148"/>
- <unit id="com.jcraft.jsch" version="0.1.46.v201205102330"/>
- <unit id="org.eclipse.jgit.feature.group" version="2.1.0.201209190230-r"/>
- <unit id="org.eclipse.egit.feature.group" version="2.1.0.201209190230-r"/>
- <unit id="org.eclipse.egit.mylyn.feature.group" version="2.1.0.201209190230-r"/>
- <unit id="org.eclipse.mylyn.github.feature.feature.group" version="2.1.0.201209190230-r"/>
-
- <!-- needed for JBoss Central -->
- <unit id="com.sun.syndication" version="0.9.0.v200803061811"/>
- <unit id="org.eclipse.mylyn.commons.core" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.discovery.ui" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.discovery.core" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.commons.ui" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.commons.net" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.commons.screenshots" version="3.8.2.v20120916-1200"/>
-
- <!-- JBDS-1904, JBIDE-9351, JBIDE-10094 add mylyn and jira to JBT/JBDS TP -->
- <unit id="org.eclipse.mylyn_feature.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.ide_feature.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.tasks.ide.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.commons.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.commons.compatibility.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.commons.identity.feature.group" version="1.0.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.commons.notifications.feature.group" version="1.0.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.commons.repositories.feature.group" version="1.0.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.commons.repositories.http.feature.group" version="1.0.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.context_feature.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.bugzilla_feature.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.discovery.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.java_feature.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.monitor.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.pde_feature.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.team_feature.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.wikitext_feature.feature.group" version="1.7.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.cvs.feature.group" version="1.0.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.git.feature.group" version="1.0.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.versions.feature.group" version="1.0.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.commons.sdk.feature.group" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.tasks.ui" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.tasks.core" version="3.8.2.v20120916-1200"/>
- <unit id="org.eclipse.mylyn.tasks.bugs" version="3.8.2.v20120916-1200"/>
-
- <unit id="org.eclipse.ui" version="3.103.0.v20120705-114351"/>
- <unit id="org.eclipse.core.runtime" version="3.8.0.v20120521-2346"/>
- <unit id="org.eclipse.core.resources" version="3.8.1.v20120802-154922"/>
- <unit id="org.eclipse.ui.ide" version="3.8.1.v20120828-165804"/>
- <unit id="org.eclipse.ui.workbench.texteditor" version="3.8.0.v20120523-1310"/>
- <unit id="org.eclipse.jface.text" version="3.8.1.v20120828-155502"/>
- <unit id="org.eclipse.osgi" version="3.8.1.v20120830-144521"/>
- <unit id="org.eclipse.core.filesystem" version="1.3.200.v20120522-2012"/>
- <unit id="org.eclipse.ui.forms" version="3.5.200.v20120705-114351"/>
- <unit id="org.eclipse.ui.editors" version="3.8.0.v20120523-1540"/>
- <unit id="org.eclipse.team.core" version="3.6.100.v20120524-0627"/>
- <unit id="org.eclipse.team.ui" version="3.6.200.v20120522-1148"/>
- <unit id="org.eclipse.jface" version="3.8.101.v20120817-083647"/>
- <unit id="org.eclipse.compare" version="3.5.300.v20120522-1148"/>
- <!-- update.ui is on the 3.8 site, not the 4.2 site -->
- <unit id="org.eclipse.update.ui" version="3.3.0.v20120523-1742"/>
- <!-- there are two versions of this IU -
- 4.2 has ./org.eclipse.update.core_3.2.600.v20120530-1204.jar and
- 3.8 has ./org.eclipse.update.core_3.2.600.v20120530-120908.jar
- -->
- <!-- <unit id="org.eclipse.update.core" version="3.2.600.v20120530-120908"/> -->
- <unit id="org.eclipse.update.core" version="3.2.600.v20120820-205746"/>
- <unit id="com.atlassian.connector.commons" version="4.0.0.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.bamboo.core" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.bamboo.ui" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.branding.ui" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.commons.core" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.commons.ui" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.core" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.crucible.core" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.crucible.ui" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.cvs.core" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.cvs.ui" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.directclickthrough.ui" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.fisheye.core" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.fisheye.ui" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.help" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.jira.core" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.jira.ui" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.monitor.core" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.monitor.ui" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.subclipse.core" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.subclipse.ui" version="3.0.6.v20120628"/>
- <unit id="com.atlassian.connector.eclipse.ui" version="3.0.6.v20120628"/>
- <!-- dep for com.atlassian.connector.eclipse.directclickthrough.ui -->
- <unit id="com.thoughtworks.xstream" version="1.3.1.v201111240924"/>
- <unit id="org.xmlpull" version="1.1.3.4_v201201052148"/>
-
- <unit id="org.jdom_jaxen" version="1.0.0.20081203-1100"/>
- <unit id="org.mortbay.jetty.server" version="6.1.23.v201012071420"/>
- <unit id="org.mortbay.jetty.util" version="6.1.23.v201012071420"/>
-
- <unit id="org.joda.time" version="1.6.0.v20081202-0100"/>
-
- <!-- WTP -->
- <unit id="org.eclipse.jst.jee" version="1.0.500.v201202020745"/>
- <unit id="org.eclipse.jst.jee.web" version="1.0.301.v201007070907"/>
- <unit id="org.eclipse.jst.common.fproj.enablement.jdt.feature.group" version="3.4.0.v201108231500-377DG8s73543J5H6D66"/>
- <unit id="org.eclipse.jst.ws.axis2tools.feature.feature.group" version="1.1.200.v201103022333-78-FF0DZRDKDDePSKwHj"/>
- <unit id="org.eclipse.jst.ws.cxf.feature.feature.group" version="1.1.0.v201201312103-7H79FHxFAKlbotH5e9l3vAA6MBG"/>
-
- <unit id="org.eclipse.jpt.common.feature.feature.group" version="1.2.1.v201208222210-663AkF7BF7cFFFFB7"/>
- <unit id="org.eclipse.jpt.common.eclipselink.feature.feature.group" version="1.2.1.v201208222210-3318s73573J777753"/>
- <unit id="org.eclipse.jpt.jpa.eclipselink.feature.feature.group" version="3.2.1.v201208222210-7M7J78F7RZHQYJAQsS4SVFD7"/>
- <unit id="org.eclipse.jpt.jpa.feature.feature.group" version="3.2.1.v201208222210-7S7K8gFBBoPapQieUcW_TFD7"/>
-
- <unit id="org.eclipse.jsf.feature.feature.group" version="3.4.1.v201208241503-7E7JFBjF9JgLWgMhh4X6Ps"/>
- <unit id="org.eclipse.jsf.feature.source.feature.group" version="3.4.1.v201208241503-7E7JFBjF9JgLWgMhh4X6Ps"/>
- <unit id="org.eclipse.jst.common.fproj.enablement.jdt.feature.group" version="3.4.0.v201108231500-377DG8s73543J5H6D66"/>
- <unit id="org.eclipse.jst.enterprise_core.feature.feature.group" version="3.4.0.v201108110300-52FShAkF7BA8O8J9OC8"/>
- <unit id="org.eclipse.jst.enterprise_ui.feature.feature.group" version="3.4.0.v201107072300-7b7JIM0FSK2WM1PS9Ar7AKUz0TrWn"/>
- <unit id="org.eclipse.jst.enterprise_userdoc.feature.feature.group" version="3.3.100.v201105122000-62FUGBgJ9EA9aEeHRHc"/>
- <unit id="org.eclipse.jst.jsf.apache.trinidad.tagsupport.feature.feature.group" version="2.2.201.v201208241503-20A87w312319352614"/>
- <unit id="org.eclipse.jst.server_adapters.ext.feature.feature.group" version="3.3.101.v20120821_1416-777HFL6CcNBDmBjKOFHIEB"/>
- <unit id="org.eclipse.jst.server_adapters.feature.feature.group" version="3.2.200.v20120517_1442-20A77w31231628a2553"/>
- <unit id="org.eclipse.jst.server_core.feature.feature.group" version="3.4.0.v20120503_1042-31FEe8s73554A4Fa2153"/>
- <unit id="org.eclipse.jst.server_ui.feature.feature.group" version="3.4.0.v20120503_1042-7A77FHr9xFcC2CFLZBCJMHLg7D64"/>
- <unit id="org.eclipse.jst.server_userdoc.feature.feature.group" version="3.3.100.v20110303-2-Eo7w3121162A3329"/>
- <unit id="org.eclipse.jst.web_core.feature.feature.group" version="3.4.1.v201208160300-7Q7EGVxFE9LeAJKvylauQtyivz-0sSxz003877"/>
- <unit id="org.eclipse.jst.webpageeditor.feature.feature.group" version="2.3.8.v201208241503-46DI9oB58B5TBH8K5E"/>
- <unit id="org.eclipse.jst.web_ui.feature.feature.group" version="3.4.1.v201208231800-7F7DFSlC25UrkX5qvgnXz0LZDA6kiWwylC3uxsWk"/>
- <unit id="org.eclipse.jst.web_userdoc.feature.feature.group" version="3.4.1.v201208231800-2117w312319373364"/>
- <unit id="org.eclipse.jst.ws.axis2tools.feature.feature.group" version="1.1.200.v201103022333-78-FF0DZRDKDDePSKwHj"/>
- <unit id="org.eclipse.jst.ws.cxf.feature.feature.group" version="1.1.0.v201201312103-7H79FHxFAKlbotH5e9l3vAA6MBG"/>
- <unit id="org.eclipse.jst.ws.jaxws.dom.feature.feature.group" version="1.0.200.v201109042201-5-F8NAkF7BB7U8PEK8K"/>
- <unit id="org.eclipse.jst.ws.jaxws.feature.feature.group" version="1.2.0.v201204151854-7E7AF70F8NcJS_KqT5TpXq"/>
- <unit id="org.eclipse.jst.ws.jaxws_userdoc.feature.feature.group" version="1.0.200.v201205012246-3-DF8s73573D795LAF"/>
-
- <unit id="org.eclipse.wst.common.frameworks" version="1.2.200.v201203141800"/>
- <unit id="org.eclipse.wst.common.project.facet.ui" version="1.4.300.v201111030424"/>
- <unit id="org.eclipse.wst.common_core.feature.feature.group" version="3.4.1.v201208162200-7B7EFMTF7RZHOjIuOyR0QS"/>
- <unit id="org.eclipse.wst.common.fproj.feature.group" version="3.4.0.v201202292300-377F8N8s735555393B7B"/>
- <unit id="org.eclipse.wst.common_ui.feature.feature.group" version="3.4.1.v201208170300-7C7AFeEEdhOaweJhCnQfykJvPz-S1RT"/>
- <unit id="org.eclipse.wst.jsdt.feature.feature.group" version="1.4.1.v201208171701-7H7DFg0FC7sReqSyfqesWi"/>
- <unit id="org.eclipse.wst.server_adapters.feature.feature.group" version="3.2.201.v20120821_1517-51F9xAkF7AL8QDRl8GAT"/>
- <unit id="org.eclipse.wst.server_core.feature.feature.group" version="3.3.100.v20110810_1722-33Et8s73563B6Ha3113"/>
- <unit id="org.eclipse.wst.server_ui.feature.feature.group" version="3.3.101.v20120817_1533-7B7AFJQAtMduXxeIc0IpSdC97A9"/>
- <unit id="org.eclipse.wst.server_userdoc.feature.feature.group" version="3.3.200.v20120830_2320-20Eo7w31231941a3363"/>
- <unit id="org.eclipse.wst.web_core.feature.feature.group" version="3.4.1.v201208170345-7E7HFSlAJz-mw9qA03HKTuLirZsDJyCao"/>
- <unit id="org.eclipse.wst.web_ui.feature.feature.group" version="3.4.1.v201208170345-7O7MFsPEMkBJz0wtb-ccsarPSceUIHO9iKk6XVPV"/>
- <unit id="org.eclipse.wst.web_userdoc.feature.feature.group" version="3.3.0.v201102200555-31Eo8s734B3E4H7799"/>
- <unit id="org.eclipse.wst.ws_core.feature.feature.group" version="3.4.0.v201108230503-7L7RFoGFGtGd-xhuy-rRwz-2766"/>
- <unit id="org.eclipse.wst.ws_ui.feature.feature.group" version="3.4.1.v201208172041-7I7CFkXEtEoXHw684K6n3-z-F3stz0lKFx169q5z"/>
- <unit id="org.eclipse.wst.ws_userdoc.feature.feature.group" version="3.1.300.v201102200555-44FR79oB5855Q8IBD7G"/>
- <unit id="org.eclipse.wst.ws_wsdl15.feature.feature.group" version="1.5.301.v201102200555-2407w312123151655"/>
- <unit id="org.eclipse.wst.xml_core.feature.feature.group" version="3.4.1.v201208170345-7C7OFm5F7RZHQRIsOz-Nz-_n"/>
- <unit id="org.eclipse.wst.xml_ui.feature.feature.group" version="3.4.1.v201208170345-7H7GFeFDxumUpsw5rgjWnKDrsz0p4ymwjQz00T2S"/>
- <unit id="org.eclipse.wst.xml_userdoc.feature.feature.group" version="3.3.0.v201102071641-50FYwAkF7B77UBZFDBL"/>
- <unit id="org.eclipse.wst.xml.xpath2.processor.feature.feature.group" version="2.0.100.v201203131922-7A7K0CcNBGPCTJ_FUOb"/>
- <unit id="org.eclipse.wst.xsl.feature.feature.group" version="1.3.100.v201111021744-7T7ZFUaFIqUoJuvaKoCpQDKaGVPc"/>
- <!-- only in JBT: SWTBot -->
- <unit id="org.eclipse.swtbot.eclipse.feature.group" version="2.0.5.20111003_1754-3676ac8-dev-e36"/>
- <unit id="org.eclipse.swtbot.eclipse.gef.feature.group" version="2.0.5.20111003_1754-3676ac8-dev-e36"/>
- <unit id="org.eclipse.swtbot.ide.feature.group" version="2.0.5.20111003_1754-3676ac8-dev-e36"/>
- <unit id="org.eclipse.swtbot.eclipse.test.junit4.feature.group" version="2.0.5.20111003_1754-3676ac8-dev-e36"/>
- <unit id="org.eclipse.swtbot.feature.group" version="2.0.5.20111003_1754-3676ac8-dev-e36"/>
-
- <!-- only in JBT: BIRT -->
- <unit id="org.eclipse.birt.osgi.runtime.sdk.feature.group" version="4.2.1.v20120820-793187qD_D0RBQLXOVH-wQkmJ1cI"/>
- <unit id="org.eclipse.birt.feature.group" version="4.2.1.v20120820-ChBG8UGYgRQlJ7y9Lz-wS7nDcRL4"/>
- <unit id="org.eclipse.birt.integration.wtp.feature.group" version="4.2.1.v20120912-1721-5107w31231A2302832"/>
- <unit id="org.eclipse.birt.chart.feature.group" version="4.2.1.v20120820-828i7EFQCnvK_6wFGvqLR"/>
- <unit id="org.eclipse.birt.chart.integration.wtp.feature.group" version="4.2.1.v20120912-1721-5107w31231A2302832"/>
-
- <!-- only in JBT: GWT/GPE dependencies (include only those which are EPL or other OSS licensed!) -->
- <unit id="com.google.gdt.eclipse.suite.e42.feature.feature.group" version="3.1.0.v201208080121-rel-r42"/>
- <unit id="com.google.gwt.eclipse.sdkbundle.e42.feature.feature.group" version="2.4.0.v201208080121-rel-r42"/>
- </location>
- </locations>
- <targetJRE path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
-</target>
Deleted: trunk/build/target-platform/unified.target.p2mirror.xml
===================================================================
--- trunk/build/target-platform/unified.target.p2mirror.xml 2012-10-25 05:15:38 UTC (rev 44618)
+++ trunk/build/target-platform/unified.target.p2mirror.xml 2012-10-25 05:19:24 UTC (rev 44619)
@@ -1,342 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<project name="Download target platform" default="download.target.platform" xmlns:xs="http://www.w3.org/2001/XMLSchema">
-<target name="help">
-<echo>
- Generated with useLatest = false
-
- ---
-
- Use followStrict="true" to prevent downloading all
- requirements not included in the target platform
- or followStrict="false" to fetch everything
-
- To run this script:
-
- /abs/path/to/eclipse -vm /opt/jdk1.6.0/bin/java \
- -nosplash -data /tmp/workspace -consolelog -application \
- org.eclipse.ant.core.antRunner -f *.target.p2mirror.xml \
- -Ddebug=true -DfollowStrict=true -DrepoDir=`pwd`/REPO/
-</echo>
-</target>
-<target name="init" unless="repoDir">
-<fail>Must set -DrepoDir=/abs/path/to/download/artifacts/</fail>
-</target>
-<target name="download.target.platform" depends="init" description="Download from target platform definition" if="repoDir">
-<property name="verbose" value="false"/>
-<property name="followStrict" value="false"/>
-<echo level="info">Download features/plugins into ${repoDir}</echo>
-<p2.mirror destination="file://${repoDir}" verbose="${verbose}">
-<slicingOptions includeFeatures="true" followStrict="${followStrict}"/>
-<source>
-<repository location="http://download.jboss.org/jbosstools/updates/target-platform_4.0.juno.SR1..."/>
-</source>
-<iu id="javax.wsdl" version="1.6.2.v201012040545"/>
-<iu id="javax.wsdl" version="1.5.1.v201012040544"/>
-<iu id="org.jdom" version="1.1.1.v201101151400"/>
-<iu id="org.jdom" version="1.0.0.v201005080400"/>
-<iu id="org.apache.commons.lang" version="2.6.0.v201205030909"/>
-<iu id="org.apache.commons.lang" version="2.4.0.v201005080502"/>
-<iu id="org.apache.commons.lang" version="2.1.0.v201005080500"/>
-<iu id="javax.servlet" version="3.0.0.v201112011016"/>
-<iu id="javax.servlet" version="2.5.0.v200910301333"/>
-<iu id="javax.servlet.jsp" version="2.2.0.v201112011158"/>
-<iu id="javax.servlet.jsp" version="2.0.0.v200806031607"/>
-<iu id="javax.wsdl" version="1.6.2.v201012040545"/>
-<iu id="javax.wsdl" version="1.5.1.v201012040544"/>
-<iu id="javax.xml.bind" version="2.2.0.v201105210648"/>
-<iu id="javax.xml.bind" version="2.1.9.v201005080401"/>
-<iu id="javax.xml.soap" version="1.3.0.v201105210645"/>
-<iu id="javax.xml.soap" version="1.2.0.v201005080501"/>
-<iu id="org.apache.commons.logging" version="1.1.1.v201101211721"/>
-<iu id="org.apache.commons.logging" version="1.0.4.v201101211617"/>
-<iu id="org.apache.lucene" version="2.9.1.v201101211721"/>
-<iu id="org.apache.lucene" version="1.9.1.v201101211617"/>
-<iu id="org.apache.lucene.core" version="3.5.0.v20120319-2345"/>
-<iu id="org.apache.lucene.core" version="2.9.1.v201101211721"/>
-<iu id="org.junit" version="4.10.0.v4_10_0_v20120426-0900"/>
-<iu id="org.junit" version="3.8.2.v3_8_2_v20100427-1100"/>
-<iu id="org.eclipse.m2e.sdk.feature.feature.group" version="1.2.0.20120903-1050"/>
-<iu id="org.eclipse.m2e.feature.feature.group" version="1.2.0.20120903-1050"/>
-<iu id="org.eclipse.m2e.wtp.feature.feature.group" version="0.16.0.20120914-0945"/>
-<iu id="org.sonatype.m2e.mavenarchiver.feature.feature.group" version="0.15.0.201207090125-signed-201209140800"/>
-<iu id="ch.qos.logback.classic" version="1.0.0.v20111214-2030"/>
-<iu id="ch.qos.logback.core" version="1.0.0.v20111214-2030"/>
-<iu id="ch.qos.logback.slf4j" version="1.0.0.v20120123-1500"/>
-<iu id="org.slf4j.api" version="1.6.4.v20120130-2120"/>
-<iu id="com.ning.async-http-client" version="1.6.5.20120903-0645"/>
-<iu id="org.jboss.netty" version="3.2.5.Final-20120903-0645"/>
-<iu id="org.eclipse.equinox.p2.discovery.compatibility" version="1.0.101.v20120524-1717"/>
-<iu id="org.eclipse.equinox.p2.discovery" version="1.0.200.v20120524-1717"/>
-<iu id="org.eclipse.equinox.p2.ui.discovery" version="1.0.0.v20110808-1657"/>
-<iu id="javax.activation" version="1.1.0.v201108011116"/>
-<iu id="org.apache.oro" version="2.0.8.v201005080400"/>
-<iu id="org.apache.commons.io" version="2.0.1.v201105210651"/>
-<iu id="org.apache.commons.codec" version="1.3.0.v201101211617"/>
-<iu id="org.apache.commons.httpclient" version="3.1.0.v201012070820"/>
-<iu id="org.hamcrest" version="1.1.0.v20090501071000"/>
-<iu id="org.hamcrest.core" version="1.1.0.v20090501071000"/>
-<iu id="org.hamcrest.text" version="1.1.0.v20090501071000"/>
-<iu id="org.hamcrest.library" version="1.1.0.v20090501071000"/>
-<iu id="org.hamcrest.integration" version="1.1.0.v20090501071000"/>
-<iu id="org.apache.lucene.highlighter" version="3.5.0.v20120319-2345"/>
-<iu id="org.apache.lucene.memory" version="3.5.0.v20120319-2345"/>
-<iu id="org.apache.lucene.misc" version="3.5.0.v20120319-2345"/>
-<iu id="org.apache.lucene.queries" version="3.5.0.v20120319-2345"/>
-<iu id="org.apache.lucene.snowball" version="2.9.1.v20100421-0704"/>
-<iu id="org.apache.lucene.spellchecker" version="3.5.0.v20120319-2345"/>
-<iu id="org.eclipse.emf.workspace.feature.group" version="1.6.0.v20120328-0001-37708s734E377I3B4C2"/>
-<iu id="org.eclipse.emf.validation.feature.group" version="1.6.0.v20120328-0001-479-9oB56N5BBR6LCA6"/>
-<iu id="org.eclipse.emf.transaction.feature.group" version="1.6.0.v20120328-0001-377-8s734C3E7D15D6B"/>
-<iu id="org.eclipse.emf.feature.group" version="2.8.1.v20120917-0436"/>
-<iu id="org.eclipse.emf.ecore.feature.group" version="2.8.1.v20120911-0500"/>
-<iu id="org.eclipse.emf.codegen.feature.group" version="2.8.0.v20120917-0436"/>
-<iu id="org.eclipse.emf.common.feature.group" version="2.8.0.v20120911-0500"/>
-<iu id="org.eclipse.emf.databinding.feature.group" version="1.2.0.v20120917-0436"/>
-<iu id="org.eclipse.emf.codegen.ecore.feature.group" version="2.8.1.v20120917-0436"/>
-<iu id="org.eclipse.emf.ecore.edit.feature.group" version="2.8.0.v20120917-0436"/>
-<iu id="org.eclipse.emf.ecore.editor.feature.group" version="2.8.0.v20120917-0436"/>
-<iu id="org.eclipse.emf.ecore.feature.group" version="2.8.1.v20120911-0500"/>
-<iu id="org.eclipse.emf.edit.feature.group" version="2.8.0.v20120917-0436"/>
-<iu id="org.eclipse.xsd.edit.feature.group" version="2.7.0.v20120917-0436"/>
-<iu id="org.eclipse.xsd.ecore.converter.feature.group" version="2.7.0.v20120917-0436"/>
-<iu id="org.eclipse.xsd.editor.feature.group" version="2.7.0.v20120917-0436"/>
-<iu id="org.eclipse.xsd.mapping.editor.feature.group" version="2.7.0.v20120917-0436"/>
-<iu id="org.eclipse.xsd.mapping.feature.group" version="2.7.0.v20120917-0436"/>
-<iu id="org.eclipse.xsd.feature.group" version="2.8.0.v20120917-0436"/>
-<iu id="org.eclipse.graphiti.feature.feature.group" version="0.9.1.v20120919-0732"/>
-<iu id="org.eclipse.draw2d.feature.group" version="3.9.0.201208201742"/>
-<iu id="org.eclipse.gef.feature.group" version="3.9.0.201208201742"/>
-<iu id="org.eclipse.zest.feature.group" version="1.5.0.201208201742"/>
-<iu id="org.eclipse.uml2.feature.group" version="4.0.1.v20120913-1441"/>
-<iu id="org.eclipse.uml2.doc.feature.group" version="4.0.0.v20120913-1441"/>
-<iu id="com.ibm.icu.base" version="4.4.2.v20110831"/>
-<iu id="org.eclipse.platform.feature.group" version="4.2.1.v20120814-120134-9JF7BHVGFyMveli1uX6aTH0q-eAap6PAgOP5mO"/>
-<iu id="org.eclipse.platform.ide" version="4.2.1.M20120914-1800"/>
-<iu id="org.eclipse.platform.sdk" version="4.2.1.M20120914-1800"/>
-<iu id="org.eclipse.sdk.feature.group" version="4.2.1.v20120814-120134-7T7oDODQ-3Heq-afCDlg7T4xJuvxaC2ohMfCfB5451Rz0"/>
-<iu id="org.eclipse.sdk.ide" version="4.2.1.M20120914-1800"/>
-<iu id="org.eclipse.cvs.feature.group" version="1.3.200.v20120525-1249-7B79FJJAkF7BF7VEH5IAJT"/>
-<iu id="org.eclipse.jdt.feature.group" version="3.8.1.v20120814-104540-8-8nFqpFNOfwKDRVz-tXOcL5d_83"/>
-<iu id="org.eclipse.equinox.server.core.feature.group" version="1.2.0.v20120522-1841-7K7VFO1F7RZHQZI4_c8StnvFB"/>
-<iu id="org.eclipse.equinox.executable.feature.group" version="3.6.0.v20120522-1813-7P7OG2BFLWUl7UmbVUO9iCm"/>
-<iu id="org.eclipse.equinox.compendium.sdk.feature.group" version="3.8.0.v20120522-1841-7X7eGb7FPGjtJjv1kjS_NdG"/>
-<iu id="org.eclipse.equinox.core.sdk.feature.group" version="3.8.0.v20120522-1813-85FAcGbFFoYTldJrUNk3a52oHJ"/>
-<iu id="org.eclipse.equinox.p2.discovery.feature.feature.group" version="1.0.100.v20120524-0542-4-Bh9oB58A5N9L28PCQ"/>
-<iu id="org.eclipse.equinox.p2.user.ui.feature.group" version="2.2.0.v20120524-0542-62DG9JXTlSiz-UbcP0w0KGl9CKNP"/>
-<iu id="org.eclipse.equinox.p2.sdk.feature.group" version="3.8.0.v20120524-0542-9N89H_oGMMn84Qsz0iIohu4jLeQD"/>
-<iu id="org.eclipse.equinox.serverside.sdk.feature.group" version="3.8.0.v20120522-1841-9Q7dFszFYGis9uZsz0QodZP4fL9p"/>
-<iu id="org.eclipse.equinox.sdk.feature.group" version="3.8.0.v20120522-1841-7M7fA78g5_y-g-jtHxcd5k8q8lFR"/>
-<iu id="org.eclipse.equinox.weaving.sdk.feature.group" version="1.0.200.v20120522-1841-79-FKsEVVFNVFsVk7O6G6"/>
-<iu id="org.eclipse.equinox.server.jetty.feature.group" version="1.1.0.v20120522-1841-8077C0F8NcJTbL1ab47MJ5"/>
-<iu id="org.eclipse.equinox.server.p2.feature.group" version="1.2.0.v20120522-1841-7z7_FfoFTy21Yu4Ykq_engx38"/>
-<iu id="org.eclipse.equinox.server.servletbridge.feature.group" version="1.0.101.v20120522-1841-42F9w9oB58B5KBB2ADHO"/>
-<iu id="org.eclipse.rcp.feature.group" version="4.2.1.v20120814-120134-7IAPA8BrHQicS-rjP0GbqK780kMy"/>
-<iu id="org.eclipse.pde.feature.group" version="3.8.1.v20120814-104528-7c7vFixFFt6Zr5aC6KM6LGWSd"/>
-<iu id="org.eclipse.help.feature.group" version="1.4.1.v20120726-051048-8R7xFOUFLWUl7MoSKV_RBXl27"/>
-<iu id="org.eclipse.update.ui" version="3.3.0.v20120523-1742"/>
-<iu id="org.eclipse.update.core" version="3.2.600.v20120820-205746"/>
-<iu id="org.eclipse.datatools.modelbase.feature.feature.group" version="1.10.1.v201208161415-7707FCcNBHLCgLUEdUb"/>
-<iu id="org.eclipse.datatools.connectivity.feature.feature.group" version="1.10.1.v201208161415-7C7h94Et1axpCXkXlTa6fgHd9vA"/>
-<iu id="org.eclipse.datatools.connectivity.oda.feature.feature.group" version="1.10.1.v201208161415-7H7C7TCcNBHLCnH_EYOb"/>
-<iu id="org.eclipse.datatools.connectivity.oda.designer.feature.feature.group" version="1.10.1.v201208161415-4127w312312232267"/>
-<iu id="org.eclipse.datatools.connectivity.oda.designer.core.feature.feature.group" version="1.10.1.v201208161415-7B7C7NCcNBGUBnIZDaUY"/>
-<iu id="org.eclipse.datatools.enablement.feature.feature.group" version="1.10.1.v201208161415-7J9Q7FBWxeNcZB5LWgyhH7patz0v"/>
-<iu id="org.eclipse.datatools.enablement.apache.derby.feature.feature.group" version="1.10.1.v201208161415-77798gBmKDQ2MoTULxcy9IIQ"/>
-<iu id="org.eclipse.datatools.enablement.hsqldb.feature.feature.group" version="1.10.1.v201208161415-67E1AqGBM7KfNUHxJR9IIQ"/>
-<iu id="org.eclipse.datatools.enablement.ibm.feature.feature.group" version="1.10.1.v201208161415-7F47WFC7sRdqScnobkd4"/>
-<iu id="org.eclipse.datatools.enablement.jdbc.feature.feature.group" version="1.10.1.v201208161415-4-29oB5895RAE8HHP"/>
-<iu id="org.eclipse.datatools.enablement.jdt.feature.feature.group" version="1.10.1.v201208161415-2-07w312218332612"/>
-<iu id="org.eclipse.datatools.enablement.msft.feature.feature.group" version="1.10.1.v201208161415-544AkF7AL7MDMAQ8O"/>
-<iu id="org.eclipse.datatools.enablement.mysql.feature.feature.group" version="1.10.1.v201208161415-5477AkF7AK7_AMENEA"/>
-<iu id="org.eclipse.datatools.enablement.oda.feature.feature.group" version="1.10.1.v201208161415-7A7T7CDZRDKHF_HnGjOX"/>
-<iu id="org.eclipse.datatools.enablement.oda.designer.feature.feature.group" version="1.10.1.v201208161415-3368s7356485C59AB"/>
-<iu id="org.eclipse.datatools.enablement.oracle.feature.feature.group" version="1.10.1.v201208161415-548fAkF7AL7RBJANAI"/>
-<iu id="org.eclipse.datatools.enablement.postgresql.feature.feature.group" version="1.10.1.v201208161415-553AkF7AK8PCRBQBP"/>
-<iu id="org.eclipse.datatools.enablement.sap.feature.feature.group" version="1.10.1.v201208161415-540AkF7AJ7YEJBU7S"/>
-<iu id="org.eclipse.datatools.enablement.sybase.feature.feature.group" version="1.10.1.v201208161415-7E46F9NiNc1QBgyT6T6"/>
-<iu id="org.eclipse.datatools.enablement.ingres.feature.feature.group" version="1.10.1.v201208161415-540AkF78Z7UCRAQDB"/>
-<iu id="org.eclipse.datatools.enablement.sqlite.feature.feature.group" version="1.10.1.v201208161415-542AkF7AJ7SAKAPBF"/>
-<iu id="org.eclipse.datatools.sqldevtools.feature.feature.group" version="1.10.1.v201208161415-7N8B7JFDsn5iz-Aex68NyGpC_AgL"/>
-<iu id="org.eclipse.datatools.sqldevtools.results.feature.feature.group" version="1.10.1.v201208161415-57B79AkF7BD7SGC9ZEH"/>
-<iu id="org.eclipse.datatools.sqldevtools.ddlgen.feature.feature.group" version="1.10.1.v201208161415-7A-78F7RZHQTIyWmM1_s"/>
-<iu id="org.eclipse.datatools.sqldevtools.ddl.feature.feature.group" version="1.10.1.v201208161415-279078B089G8S_IRUJz-XnN2at"/>
-<iu id="org.eclipse.datatools.sqldevtools.data.feature.feature.group" version="1.10.1.v201208161415-645BgJ9EDBTHPAhQU"/>
-<iu id="org.eclipse.datatools.sqldevtools.parsers.feature.feature.group" version="1.10.1.v201208161415-623BgJ9EE9ZJRDZLA"/>
-<iu id="org.eclipse.datatools.sqldevtools.sqlbuilder.feature.feature.group" version="1.10.1.v201208161415-79-78EVVFNQGpRkHz0Sm"/>
-<iu id="org.eclipse.datatools.sqldevtools.schemaobjecteditor.feature.feature.group" version="1.10.1.v201208161415-4208375LG5BJ93413"/>
-<iu id="org.eclipse.datatools.intro.feature.group" version="1.10.1.v201208161415-26-7w312116392911"/>
-<iu id="org.eclipse.datatools.doc.user.feature.group" version="1.10.1.v201208161415-47C08w95FFAK89FHEC7"/>
-<iu id="org.eclipse.datatools.common.doc.user.feature.group" version="1.10.1.v201208161415-26-311A16321A3557"/>
-<iu id="org.eclipse.datatools.connectivity.doc.user.feature.group" version="1.10.1.v201208161415-37D-7733L3D753L7BBF"/>
-<iu id="org.eclipse.datatools.sqltools.doc.user.feature.group" version="1.10.1.v201208161415-37D-7733L3D753L7BBF"/>
-<iu id="org.eclipse.rse.feature.group" version="3.4.1.201209191030-7L7IFBY83omx__z0RFpKdWB-r5MS"/>
-<iu id="org.eclipse.rse.ssh.feature.group" version="3.0.400.201209191030-7A4FEc7F7BF7gBgB7J7"/>
-<iu id="org.eclipse.rse.terminals.feature.group" version="1.2.1.201209191030-773Ep7H8AG8_DZK9Q9252"/>
-<iu id="org.eclipse.rse.telnet.feature.group" version="2.3.0.201209191030-775FD3879AE8YB_E8OA4"/>
-<iu id="org.eclipse.rse.ftp.feature.group" version="3.1.0.201209191030-782FBV8377A6N8PB6J84"/>
-<iu id="org.eclipse.rse.local.feature.group" version="2.1.400.201209191030-7B4FSg7J9EJ9rErE9O9"/>
-<iu id="org.eclipse.rse.useractions.feature.group" version="1.1.400.201209191030-31FBV773573L5L5393"/>
-<iu id="org.eclipse.tm.terminal.feature.group" version="3.2.1.201209191030-41031231A2A2141"/>
-<iu id="org.eclipse.tm.terminal.view.feature.group" version="2.3.0.201209191030-32-31231A2A2141"/>
-<iu id="org.eclipse.tm.terminal.telnet.feature.group" version="2.1.100.201209191030-308Z31231A2A2141"/>
-<iu id="org.eclipse.tm.terminal.serial.feature.group" version="2.1.100.201209191030-308Z31231A2A2141"/>
-<iu id="org.eclipse.tm.terminal.feature.group" version="3.2.1.201209191030-41031231A2A2141"/>
-<iu id="org.eclipse.tm.terminal.ssh.feature.group" version="2.1.100.201209191030-308Z31231A2A2141"/>
-<iu id="org.eclipse.jsf.feature.source.feature.group" version="3.4.1.v201208241503-7E7JFBjF9JgLWgMhh4X6Ps"/>
-<iu id="org.eclipse.jst.jee" version="1.0.500.v201202020745"/>
-<iu id="org.eclipse.wst.common.frameworks" version="1.2.200.v201203141800"/>
-<iu id="org.eclipse.wst.common.project.facet.ui" version="1.4.300.v201111030424"/>
-<iu id="org.eclipse.jst.jee.web" version="1.0.301.v201007070907"/>
-<iu id="org.eclipse.jst.common.fproj.enablement.jdt.feature.group" version="3.4.0.v201108231500-377DG8s73543J5H6D66"/>
-<iu id="org.eclipse.jst.ws.axis2tools.feature.feature.group" version="1.1.200.v201103022333-78-FF0DZRDKDDePSKwHj"/>
-<iu id="org.eclipse.jst.ws.cxf.feature.feature.group" version="1.1.0.v201201312103-7H79FHxFAKlbotH5e9l3vAA6MBG"/>
-<iu id="org.eclipse.jpt.common.feature.feature.group" version="1.2.1.v201208222210-663AkF7BF7cFFFFB7"/>
-<iu id="org.eclipse.jpt.common.eclipselink.feature.feature.group" version="1.2.1.v201208222210-3318s73573J777753"/>
-<iu id="org.eclipse.jpt.jpa.eclipselink.feature.feature.group" version="3.2.1.v201208222210-7M7J78F7RZHQYJAQsS4SVFD7"/>
-<iu id="org.eclipse.jpt.jpa.feature.feature.group" version="3.2.1.v201208222210-7S7K8gFBBoPapQieUcW_TFD7"/>
-<iu id="org.eclipse.persistence.jpa.feature.group" version="2.4.0.v20120608-r11652"/>
-<iu id="org.eclipse.jsf.feature.feature.group" version="3.4.1.v201208241503-7E7JFBjF9JgLWgMhh4X6Ps"/>
-<iu id="org.eclipse.jst.common.fproj.enablement.jdt.feature.group" version="3.4.0.v201108231500-377DG8s73543J5H6D66"/>
-<iu id="org.eclipse.jst.enterprise_core.feature.feature.group" version="3.4.0.v201108110300-52FShAkF7BA8O8J9OC8"/>
-<iu id="org.eclipse.jst.enterprise_ui.feature.feature.group" version="3.4.0.v201107072300-7b7JIM0FSK2WM1PS9Ar7AKUz0TrWn"/>
-<iu id="org.eclipse.jst.enterprise_userdoc.feature.feature.group" version="3.3.100.v201105122000-62FUGBgJ9EA9aEeHRHc"/>
-<iu id="org.eclipse.jst.jsf.apache.trinidad.tagsupport.feature.feature.group" version="2.2.201.v201208241503-20A87w312319352614"/>
-<iu id="org.eclipse.jst.server_adapters.ext.feature.feature.group" version="3.3.101.v20120821_1416-777HFL6CcNBDmBjKOFHIEB"/>
-<iu id="org.eclipse.jst.server_adapters.feature.feature.group" version="3.2.200.v20120517_1442-20A77w31231628a2553"/>
-<iu id="org.eclipse.jst.server_core.feature.feature.group" version="3.4.0.v20120503_1042-31FEe8s73554A4Fa2153"/>
-<iu id="org.eclipse.jst.server_ui.feature.feature.group" version="3.4.0.v20120503_1042-7A77FHr9xFcC2CFLZBCJMHLg7D64"/>
-<iu id="org.eclipse.jst.server_userdoc.feature.feature.group" version="3.3.100.v20110303-2-Eo7w3121162A3329"/>
-<iu id="org.eclipse.jst.web_core.feature.feature.group" version="3.4.1.v201208160300-7Q7EGVxFE9LeAJKvylauQtyivz-0sSxz003877"/>
-<iu id="org.eclipse.jst.webpageeditor.feature.feature.group" version="2.3.8.v201208241503-46DI9oB58B5TBH8K5E"/>
-<iu id="org.eclipse.jst.web_ui.feature.feature.group" version="3.4.1.v201208231800-7F7DFSlC25UrkX5qvgnXz0LZDA6kiWwylC3uxsWk"/>
-<iu id="org.eclipse.jst.web_userdoc.feature.feature.group" version="3.4.1.v201208231800-2117w312319373364"/>
-<iu id="org.eclipse.jst.ws.axis2tools.feature.feature.group" version="1.1.200.v201103022333-78-FF0DZRDKDDePSKwHj"/>
-<iu id="org.eclipse.jst.ws.cxf.feature.feature.group" version="1.1.0.v201201312103-7H79FHxFAKlbotH5e9l3vAA6MBG"/>
-<iu id="org.eclipse.jst.ws.jaxws.dom.feature.feature.group" version="1.0.200.v201109042201-5-F8NAkF7BB7U8PEK8K"/>
-<iu id="org.eclipse.jst.ws.jaxws.feature.feature.group" version="1.2.0.v201204151854-7E7AF70F8NcJS_KqT5TpXq"/>
-<iu id="org.eclipse.jst.ws.jaxws_userdoc.feature.feature.group" version="1.0.200.v201205012246-3-DF8s73573D795LAF"/>
-<iu id="org.eclipse.wst.common_core.feature.feature.group" version="3.4.1.v201208162200-7B7EFMTF7RZHOjIuOyR0QS"/>
-<iu id="org.eclipse.wst.common.fproj.feature.group" version="3.4.0.v201202292300-377F8N8s735555393B7B"/>
-<iu id="org.eclipse.wst.common_ui.feature.feature.group" version="3.4.1.v201208170300-7C7AFeEEdhOaweJhCnQfykJvPz-S1RT"/>
-<iu id="org.eclipse.wst.jsdt.feature.feature.group" version="1.4.1.v201208171701-7H7DFg0FC7sReqSyfqesWi"/>
-<iu id="org.eclipse.wst.server_adapters.feature.feature.group" version="3.2.201.v20120821_1517-51F9xAkF7AL8QDRl8GAT"/>
-<iu id="org.eclipse.wst.server_core.feature.feature.group" version="3.3.100.v20110810_1722-33Et8s73563B6Ha3113"/>
-<iu id="org.eclipse.wst.server_ui.feature.feature.group" version="3.3.101.v20120817_1533-7B7AFJQAtMduXxeIc0IpSdC97A9"/>
-<iu id="org.eclipse.wst.server_userdoc.feature.feature.group" version="3.3.200.v20120830_2320-20Eo7w31231941a3363"/>
-<iu id="org.eclipse.wst.web_core.feature.feature.group" version="3.4.1.v201208170345-7E7HFSlAJz-mw9qA03HKTuLirZsDJyCao"/>
-<iu id="org.eclipse.wst.web_ui.feature.feature.group" version="3.4.1.v201208170345-7O7MFsPEMkBJz0wtb-ccsarPSceUIHO9iKk6XVPV"/>
-<iu id="org.eclipse.wst.web_userdoc.feature.feature.group" version="3.3.0.v201102200555-31Eo8s734B3E4H7799"/>
-<iu id="org.eclipse.wst.ws_core.feature.feature.group" version="3.4.0.v201108230503-7L7RFoGFGtGd-xhuy-rRwz-2766"/>
-<iu id="org.eclipse.wst.ws_ui.feature.feature.group" version="3.4.1.v201208172041-7I7CFkXEtEoXHw684K6n3-z-F3stz0lKFx169q5z"/>
-<iu id="org.eclipse.wst.ws_userdoc.feature.feature.group" version="3.1.300.v201102200555-44FR79oB5855Q8IBD7G"/>
-<iu id="org.eclipse.wst.ws_wsdl15.feature.feature.group" version="1.5.301.v201102200555-2407w312123151655"/>
-<iu id="org.eclipse.wst.xml_core.feature.feature.group" version="3.4.1.v201208170345-7C7OFm5F7RZHQRIsOz-Nz-_n"/>
-<iu id="org.eclipse.wst.xml_ui.feature.feature.group" version="3.4.1.v201208170345-7H7GFeFDxumUpsw5rgjWnKDrsz0p4ymwjQz00T2S"/>
-<iu id="org.eclipse.wst.xml_userdoc.feature.feature.group" version="3.3.0.v201102071641-50FYwAkF7B77UBZFDBL"/>
-<iu id="org.eclipse.wst.xml.xpath2.processor.feature.feature.group" version="2.0.100.v201203131922-7A7K0CcNBGPCTJ_FUOb"/>
-<iu id="org.eclipse.wst.xsl.feature.feature.group" version="1.3.100.v201111021744-7T7ZFUaFIqUoJuvaKoCpQDKaGVPc"/>
-<iu id="org.eclipse.jsch.ui" version="1.1.400.v20120522-1148"/>
-<iu id="org.eclipse.jsch.core" version="1.1.400.v20120522-1148"/>
-<iu id="com.jcraft.jsch" version="0.1.46.v201205102330"/>
-<iu id="org.eclipse.jgit.feature.group" version="2.1.0.201209190230-r"/>
-<iu id="org.eclipse.egit.feature.group" version="2.1.0.201209190230-r"/>
-<iu id="org.eclipse.egit.mylyn.feature.group" version="2.1.0.201209190230-r"/>
-<iu id="org.eclipse.mylyn.github.feature.feature.group" version="2.1.0.201209190230-r"/>
-<iu id="com.sun.syndication" version="0.9.0.v200803061811"/>
-<iu id="org.eclipse.mylyn.commons.core" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.discovery.ui" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.discovery.core" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.commons.ui" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.commons.net" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.commons.screenshots" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn_feature.feature.group" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.ide_feature.feature.group" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.tasks.ide.feature.group" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.commons.feature.group" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.commons.compatibility.feature.group" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.commons.identity.feature.group" version="1.0.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.commons.notifications.feature.group" version="1.0.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.commons.repositories.feature.group" version="1.0.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.commons.repositories.http.feature.group" version="1.0.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.context_feature.feature.group" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.bugzilla_feature.feature.group" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.discovery.feature.group" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.java_feature.feature.group" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.monitor.feature.group" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.pde_feature.feature.group" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.team_feature.feature.group" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.wikitext_feature.feature.group" version="1.7.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.cvs.feature.group" version="1.0.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.git.feature.group" version="1.0.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.versions.feature.group" version="1.0.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.commons.sdk.feature.group" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.tasks.ui" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.tasks.core" version="3.8.2.v20120916-1200"/>
-<iu id="org.eclipse.mylyn.tasks.bugs" version="3.8.2.v20120916-1200"/>
-<iu id="com.atlassian.connector.commons" version="4.0.0.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.bamboo.core" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.bamboo.ui" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.branding.ui" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.commons.core" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.commons.ui" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.core" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.crucible.core" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.crucible.ui" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.cvs.core" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.cvs.ui" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.directclickthrough.ui" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.fisheye.core" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.fisheye.ui" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.help" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.jira.core" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.jira.ui" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.monitor.core" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.monitor.ui" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.subclipse.core" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.subclipse.ui" version="3.0.6.v20120628"/>
-<iu id="com.atlassian.connector.eclipse.ui" version="3.0.6.v20120628"/>
-<iu id="com.thoughtworks.xstream" version="1.3.1.v201111240924"/>
-<iu id="org.xmlpull" version="1.1.3.4_v201201052148"/>
-<iu id="org.eclipse.ui" version="3.103.0.v20120705-114351"/>
-<iu id="org.eclipse.core.runtime" version="3.8.0.v20120521-2346"/>
-<iu id="org.eclipse.core.resources" version="3.8.1.v20120802-154922"/>
-<iu id="org.eclipse.ui.ide" version="3.8.1.v20120828-165804"/>
-<iu id="org.eclipse.ui.workbench.texteditor" version="3.8.0.v20120523-1310"/>
-<iu id="org.eclipse.jface.text" version="3.8.1.v20120828-155502"/>
-<iu id="org.eclipse.osgi" version="3.8.1.v20120830-144521"/>
-<iu id="org.eclipse.core.filesystem" version="1.3.200.v20120522-2012"/>
-<iu id="org.eclipse.ui.forms" version="3.5.200.v20120705-114351"/>
-<iu id="org.eclipse.ui.editors" version="3.8.0.v20120523-1540"/>
-<iu id="org.eclipse.team.core" version="3.6.100.v20120524-0627"/>
-<iu id="org.eclipse.team.ui" version="3.6.200.v20120522-1148"/>
-<iu id="org.eclipse.jface" version="3.8.101.v20120817-083647"/>
-<iu id="org.eclipse.compare" version="3.5.300.v20120522-1148"/>
-<iu id="org.apache.axis" version="1.4.0.v201005080400"/>
-<iu id="org.apache.commons.io" version="2.0.1.v201105210651"/>
-<iu id="org.apache.commons.httpclient" version="3.1.0.v201012070820"/>
-<iu id="org.apache.commons.codec" version="1.3.0.v201101211617"/>
-<iu id="org.jdom_jaxen" version="1.0.0.20081203-1100"/>
-<iu id="org.mortbay.jetty.server" version="6.1.23.v201012071420"/>
-<iu id="org.mortbay.jetty.util" version="6.1.23.v201012071420"/>
-<iu id="org.apache.jasper" version="7.0.26.v201205030742"/>
-<iu id="org.apache.catalina" version="7.0.26.v201205021508"/>
-<iu id="javax.ejb" version="3.1.1.v201204261316"/>
-<iu id="javax.transaction" version="1.1.1.v201105210645"/>
-<iu id="org.joda.time" version="1.6.0.v20081202-0100"/>
-<iu id="javax.xml.rpc" version="1.1.0.v201005080400"/>
-<iu id="javax.el" version="2.2.0.v201108011116"/>
-<iu id="org.eclipse.swtbot.eclipse.feature.group" version="2.0.5.20111003_1754-3676ac8-dev-e36"/>
-<iu id="org.eclipse.swtbot.eclipse.gef.feature.group" version="2.0.5.20111003_1754-3676ac8-dev-e36"/>
-<iu id="org.eclipse.swtbot.ide.feature.group" version="2.0.5.20111003_1754-3676ac8-dev-e36"/>
-<iu id="org.eclipse.swtbot.eclipse.test.junit4.feature.group" version="2.0.5.20111003_1754-3676ac8-dev-e36"/>
-<iu id="org.eclipse.swtbot.feature.group" version="2.0.5.20111003_1754-3676ac8-dev-e36"/>
-<iu id="org.eclipse.birt.osgi.runtime.sdk.feature.group" version="4.2.1.v20120820-793187qD_D0RBQLXOVH-wQkmJ1cI"/>
-<iu id="org.eclipse.birt.feature.group" version="4.2.1.v20120820-ChBG8UGYgRQlJ7y9Lz-wS7nDcRL4"/>
-<iu id="org.eclipse.birt.integration.wtp.feature.group" version="4.2.1.v20120912-1721-5107w31231A2302832"/>
-<iu id="org.eclipse.birt.chart.feature.group" version="4.2.1.v20120820-828i7EFQCnvK_6wFGvqLR"/>
-<iu id="org.eclipse.birt.chart.integration.wtp.feature.group" version="4.2.1.v20120912-1721-5107w31231A2302832"/>
-<iu id="com.google.gdt.eclipse.suite.e42.feature.feature.group" version="3.1.0.v201208080121-rel-r42"/>
-<iu id="com.google.gwt.eclipse.sdkbundle.e42.feature.feature.group" version="2.4.0.v201208080121-rel-r42"/>
-</p2.mirror>
-</target>
-</project>
12 years, 2 months
JBoss Tools SVN: r44617 - trunk/build/parent.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2012-10-25 01:10:28 -0400 (Thu, 25 Oct 2012)
New Revision: 44617
Modified:
trunk/build/parent/pom.xml
Log:
check if trunk still read only
Modified: trunk/build/parent/pom.xml
===================================================================
--- trunk/build/parent/pom.xml 2012-10-25 03:50:22 UTC (rev 44616)
+++ trunk/build/parent/pom.xml 2012-10-25 05:10:28 UTC (rev 44617)
@@ -9,7 +9,7 @@
<packaging>pom</packaging>
<properties>
- <!-- to build w/ latest 0.15.0-SNAPSHOT, run `mvn install -DtychoVersion=0.15.0-SNAPSHOT` -->
+ <!-- to build w/ latest 0.17.0-SNAPSHOT, run `mvn install -DtychoVersion=0.17.0-SNAPSHOT` -->
<tychoVersion>0.15.0</tychoVersion>
<tychoExtrasVersion>0.15.0</tychoExtrasVersion>
<scmBranch>trunk</scmBranch>
12 years, 2 months
JBoss Tools SVN: r44615 - in trunk: archives and 32 other directories.
by jbosstools-commits@lists.jboss.org
Author: max.andersen(a)jboss.com
Date: 2012-10-24 17:54:40 -0400 (Wed, 24 Oct 2012)
New Revision: 44615
Added:
trunk/archives/README
trunk/as/README
trunk/birt/README
trunk/bpel/README
trunk/cdi/README
trunk/central/README
trunk/common/README
trunk/documentation/README
trunk/drools/README
trunk/esb/README
trunk/examples/README
trunk/forge/README
trunk/freemarker/README
trunk/gwt/README
trunk/hibernatetools/README
trunk/jbpm/README
trunk/jmx/README
trunk/jsf/README
trunk/jst/README
trunk/maven/README
trunk/openshift/README
trunk/portlet/README
trunk/runtime-soa/README
trunk/runtime/README
trunk/seam/README
trunk/struts/README
trunk/tests/README
trunk/usage/README
trunk/vpe/README
trunk/ws/README
trunk/xulrunner/README
Removed:
trunk/archives/features/
trunk/archives/plugins/
trunk/archives/pom.xml
trunk/archives/site/
trunk/archives/tests/
trunk/archives/util/
trunk/as/docs/
trunk/as/features/
trunk/as/plugins/
trunk/as/pom.xml
trunk/as/site/
trunk/as/tests/
trunk/birt/docs/
trunk/birt/features/
trunk/birt/plugins/
trunk/birt/pom.xml
trunk/birt/site/
trunk/birt/tests/
trunk/bpel/docs/
trunk/bpel/features/
trunk/bpel/plugins/
trunk/bpel/pom.xml
trunk/bpel/site/
trunk/bpel/tests/
trunk/cdi/docs/
trunk/cdi/features/
trunk/cdi/plugins/
trunk/cdi/pom-with-deps.xml
trunk/cdi/pom.xml
trunk/cdi/site/
trunk/cdi/tests/
trunk/central/README.Central.localhost.testing.txt
trunk/central/README.Central.milestone.testing.txt
trunk/central/features/
trunk/central/plugins/
trunk/central/pom.xml
trunk/central/site/
trunk/central/tests/
trunk/common/features/
trunk/common/plugins/
trunk/common/pom.xml
trunk/common/site/
trunk/common/tests/
trunk/documentation/development/
trunk/documentation/guides/
trunk/documentation/index.html
trunk/documentation/jbds-docs/
trunk/documentation/jboss-tools-docs/
trunk/documentation/movies/
trunk/documentation/parent/
trunk/documentation/qa/
trunk/documentation/whatsnew/
trunk/drools/README.txt
trunk/esb/docs/
trunk/esb/features/
trunk/esb/plugins/
trunk/esb/pom.xml
trunk/esb/site/
trunk/esb/tests/
trunk/examples/features/
trunk/examples/plugins/
trunk/examples/pom.xml
trunk/examples/site/
trunk/examples/tests/
trunk/forge/docs/
trunk/forge/features/
trunk/forge/plugins/
trunk/forge/pom.xml
trunk/forge/site/
trunk/forge/tests/
trunk/freemarker/features/
trunk/freemarker/plugins/
trunk/freemarker/pom.xml
trunk/freemarker/site/
trunk/freemarker/tests/
trunk/gwt/features/
trunk/gwt/plugins/
trunk/gwt/pom.xml
trunk/gwt/site/
trunk/gwt/tests/
trunk/hibernatetools/docs/
trunk/hibernatetools/features/
trunk/hibernatetools/plugins/
trunk/hibernatetools/pom.xml
trunk/hibernatetools/sampleprojects/
trunk/hibernatetools/site/
trunk/hibernatetools/tests/
trunk/jbpm/docs/
trunk/jbpm/features/
trunk/jbpm/plugins/
trunk/jbpm/pom.xml
trunk/jbpm/site/
trunk/jbpm/tests/
trunk/jmx/docs/
trunk/jmx/features/
trunk/jmx/plugins/
trunk/jmx/pom.xml
trunk/jmx/site/
trunk/jmx/tests/
trunk/jsf/docs/
trunk/jsf/features/
trunk/jsf/plugins/
trunk/jsf/pom.xml
trunk/jsf/site/
trunk/jsf/tests/
trunk/jst/features/
trunk/jst/plugins/
trunk/jst/pom.xml
trunk/jst/site/
trunk/jst/tests/
trunk/maven/docs/
trunk/maven/features/
trunk/maven/plugins/
trunk/maven/pom.xml
trunk/maven/site/
trunk/maven/tests/
trunk/openshift/docs/
trunk/openshift/features/
trunk/openshift/plugins/
trunk/openshift/pom.xml
trunk/openshift/site/
trunk/openshift/tests/
trunk/portlet/docs/
trunk/portlet/features/
trunk/portlet/plugins/
trunk/portlet/pom.xml
trunk/portlet/site/
trunk/portlet/tests/
trunk/runtime-soa/features/
trunk/runtime-soa/plugins/
trunk/runtime-soa/pom.xml
trunk/runtime-soa/site/
trunk/runtime/features/
trunk/runtime/plugins/
trunk/runtime/pom.xml
trunk/runtime/site/
trunk/runtime/tests/
trunk/seam/docs/
trunk/seam/features/
trunk/seam/plugins/
trunk/seam/pom.xml
trunk/seam/site/
trunk/seam/tests/
trunk/struts/docs/
trunk/struts/features/
trunk/struts/plugins/
trunk/struts/pom.xml
trunk/struts/site/
trunk/struts/tests/
trunk/tests/features/
trunk/tests/plugins/
trunk/tests/pom.xml
trunk/tests/scripts/
trunk/tests/site/
trunk/tests/tests/
trunk/usage/features/
trunk/usage/plugins/
trunk/usage/pom.xml
trunk/usage/site/
trunk/usage/tests/
trunk/vpe/features/
trunk/vpe/plugins/
trunk/vpe/pom.xml
trunk/vpe/site/
trunk/vpe/tests/
trunk/ws/docs/
trunk/ws/features/
trunk/ws/plugins/
trunk/ws/pom.xml
trunk/ws/site/
trunk/ws/tests/
trunk/xulrunner/features/
trunk/xulrunner/plugins/
trunk/xulrunner/pom.xml
trunk/xulrunner/site/
Modified:
trunk/README.md
trunk/build/aggregate/site/pom.xml
trunk/modeshape/README
trunk/pom.xml
Log:
Goodbye SVN trunk and thanks for all the fish
Modified: trunk/README.md
===================================================================
--- trunk/README.md 2012-10-24 21:13:47 UTC (rev 44614)
+++ trunk/README.md 2012-10-24 21:54:40 UTC (rev 44615)
@@ -7,3 +7,4 @@
It is currently hosted at http://anonsvn.jboss.org/repos/jbosstools/ and mirrored on github at https://github.com/jbosstools/jbosstools-svn-mirror
+website: http://jboss.org/tools
\ No newline at end of file
Added: trunk/archives/README
===================================================================
--- trunk/archives/README (rev 0)
+++ trunk/archives/README 2012-10-24 21:54:40 UTC (rev 44615)
@@ -0,0 +1,5 @@
+This project have moved to https://github.com/jbosstools/jbosstools-server
+
+If you got questions regarding this project move and/or think you need maintance work done on these sources contact jbosstools-dev(a)lists.jboss.org
+
+Thank you!
Deleted: trunk/archives/pom.xml
===================================================================
--- trunk/archives/pom.xml 2012-10-24 21:13:47 UTC (rev 44614)
+++ trunk/archives/pom.xml 2012-10-24 21:54:40 UTC (rev 44615)
@@ -1,22 +0,0 @@
-<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>parent</artifactId>
- <version>4.0.0.Beta2-SNAPSHOT</version>
- <relativePath>../build/parent/pom.xml</relativePath>
- </parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>archives</artifactId>
- <version>3.4.0-SNAPSHOT</version>
- <name>archives.all</name>
- <packaging>pom</packaging>
- <modules>
- <module>features</module>
- <module>plugins</module>
- <module>tests</module>
- <module>site</module>
- </modules>
-</project>
-
Added: trunk/as/README
===================================================================
--- trunk/as/README (rev 0)
+++ trunk/as/README 2012-10-24 21:54:40 UTC (rev 44615)
@@ -0,0 +1,5 @@
+This project have moved to https://github.com/jbosstools/jbosstools-server
+
+If you got questions regarding this project move and/or think you need maintance work done on these sources contact jbosstools-dev(a)lists.jboss.org
+
+Thank you!
Deleted: trunk/as/pom.xml
===================================================================
--- trunk/as/pom.xml 2012-10-24 21:13:47 UTC (rev 44614)
+++ trunk/as/pom.xml 2012-10-24 21:54:40 UTC (rev 44615)
@@ -1,22 +0,0 @@
-<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>parent</artifactId>
- <version>4.0.0.Beta2-SNAPSHOT</version>
- <relativePath>../build/parent/pom.xml</relativePath>
- </parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>as</artifactId>
- <name>as.all</name>
- <version>2.4.0-SNAPSHOT</version>
- <packaging>pom</packaging>
- <modules>
- <module>plugins</module>
- <module>tests</module>
- <module>features</module>
- <module>site</module>
- </modules>
-</project>
-
Added: trunk/birt/README
===================================================================
--- trunk/birt/README (rev 0)
+++ trunk/birt/README 2012-10-24 21:54:40 UTC (rev 44615)
@@ -0,0 +1,5 @@
+This project have moved to https://github.com/jbosstools/jbosstools-birt
+
+If you got questions regarding this project move and/or think you need maintance work done on these sources contact jbosstools-dev(a)lists.jboss.org
+
+Thank you!
Deleted: trunk/birt/pom.xml
===================================================================
--- trunk/birt/pom.xml 2012-10-24 21:13:47 UTC (rev 44614)
+++ trunk/birt/pom.xml 2012-10-24 21:54:40 UTC (rev 44615)
@@ -1,22 +0,0 @@
-<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>parent</artifactId>
- <version>4.0.0.Beta2-SNAPSHOT</version>
- <relativePath>../build/parent/pom.xml</relativePath>
- </parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>birt</artifactId>
- <name>birt.all</name>
- <version>1.4.0-SNAPSHOT</version>
- <packaging>pom</packaging>
- <modules>
- <module>features</module>
- <module>plugins</module>
- <module>tests</module>
- <module>site</module>
- </modules>
-</project>
-
Added: trunk/bpel/README
===================================================================
--- trunk/bpel/README (rev 0)
+++ trunk/bpel/README 2012-10-24 21:54:40 UTC (rev 44615)
@@ -0,0 +1,5 @@
+This project have moved to https://github.com/jbosstools/jbosstools-bpel
+
+If you got questions regarding this project move and/or think you need maintance work done on these sources contact jbosstools-dev(a)lists.jboss.org
+
+Thank you!
Deleted: trunk/bpel/pom.xml
===================================================================
--- trunk/bpel/pom.xml 2012-10-24 21:13:47 UTC (rev 44614)
+++ trunk/bpel/pom.xml 2012-10-24 21:54:40 UTC (rev 44615)
@@ -1,35 +0,0 @@
-<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>parent</artifactId>
- <version>4.0.0.Alpha1-SNAPSHOT</version>
- <relativePath>../build/parent/pom.xml</relativePath>
- </parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>bpel</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <name>bpel.all</name>
- <packaging>pom</packaging>
- <modules>
- <module>plugins</module>
- <module>features</module>
- <module>site</module>
- <module>tests</module>
- </modules>
- <repositories>
- <repository>
- <id>jboss-requirements-composite-soa-tooling-mirror</id>
- <url>${jboss-requirements-composite-soa-tooling-mirror}</url>
- <layout>p2</layout>
- <snapshots>
- <enabled>true</enabled>
- </snapshots>
- <releases>
- <enabled>true</enabled>
- </releases>
- </repository>
- </repositories>
-</project>
-
Modified: trunk/build/aggregate/site/pom.xml
===================================================================
--- trunk/build/aggregate/site/pom.xml 2012-10-24 21:13:47 UTC (rev 44614)
+++ trunk/build/aggregate/site/pom.xml 2012-10-24 21:54:40 UTC (rev 44615)
@@ -78,6 +78,51 @@
</dependency>
</dependencies>
</plugin>
+
+
+<plugin>
+ <groupId>org.eclipse.tycho</groupId>
+ <artifactId>tycho-surefire-plugin</artifactId>
+ <configuration>
+ <testSuite>org.jboss.tools.jsf.ui.bot.test</testSuite>
+ <testClass>${test.suite.class}</testClass>
+ <useUIThread>false</useUIThread>
+ <skip>${swtbot.test.skip}</skip>
+ <!-- <product>org.eclipse.platform.ide</product>
+ <dependencies combine.children="append">
+ <dependency>
+ <type>p2-installable-unit</type>
+ <artifactId>org.jboss.ide.eclipse.as.feature.feature.group</artifactId>
+ <version>0.0.0</version>
+ </dependency>
+ <dependency>
+ <type>p2-installable-unit</type>
+ <artifactId>org.jboss.tools.vpe.feature.feature.group</artifactId>
+ <version>0.0.0</version>
+ </dependency>
+ <dependency>
+ <type>p2-installable-unit</type>
+ <artifactId>org.jboss.tools.jsf.feature.feature.group</artifactId>
+ <version>0.0.0</version>
+ </dependency>
+ <dependency>
+ <type>p2-installable-unit</type>
+ <artifactId>org.eclipse.jst.enterprise_ui.feature.feature.group</artifactId>
+ <version>0.0.0</version>
+ </dependency>
+ <dependency>
+ <type>p2-installable-unit</type>
+ <artifactId>org.eclipse.jst.web_core.feature.feature.group</artifactId>
+ <version>0.0.0</version>
+ </dependency>
+ <dependency>
+ <type>p2-installable-unit</type>
+ <artifactId>org.eclipse.wst.web_ui.feature.feature.group</artifactId>
+ <version>0.0.0</version>
+ </dependency>
+ </dependencies> -->
+ </configuration>
+ </plugin>
</plugins>
</build>
Added: trunk/cdi/README
===================================================================
--- trunk/cdi/README (rev 0)
+++ trunk/cdi/README 2012-10-24 21:54:40 UTC (rev 44615)
@@ -0,0 +1,5 @@
+This project have moved to https://github.com/jbosstools/jbosstools-javaee
+
+If you got questions regarding this project move and/or think you need maintance work done on these sources contact jbosstools-dev(a)lists.jboss.org
+
+Thank you!
Deleted: trunk/cdi/pom-with-deps.xml
===================================================================
--- trunk/cdi/pom-with-deps.xml 2012-10-24 21:13:47 UTC (rev 44614)
+++ trunk/cdi/pom-with-deps.xml 2012-10-24 21:54:40 UTC (rev 44615)
@@ -1,19 +0,0 @@
-<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>
- <groupId>org.jboss.tools</groupId>
- <artifactId>cdi</artifactId>
- <name>cdi.all</name>
- <version>0.0.1-SNAPSHOT</version>
- <packaging>pom</packaging>
- <modules>
- <!-- check out deps into folder parallel to this one in Hudson workspace -->
- <module>../org.jboss.tools.jst.jsp.base.test</module>
-
- <module>plugins</module>
- <module>features</module>
- <module>tests</module>
- <module>site</module>
- </modules>
-</project>
-
Deleted: trunk/cdi/pom.xml
===================================================================
--- trunk/cdi/pom.xml 2012-10-24 21:13:47 UTC (rev 44614)
+++ trunk/cdi/pom.xml 2012-10-24 21:54:40 UTC (rev 44615)
@@ -1,22 +0,0 @@
-<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>parent</artifactId>
- <version>4.0.0.Beta2-SNAPSHOT</version>
- <relativePath>../build/parent/pom.xml</relativePath>
- </parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>cdi</artifactId>
- <name>cdi.all</name>
- <version>1.4.0-SNAPSHOT</version>
- <packaging>pom</packaging>
- <modules>
- <module>features</module>
- <module>plugins</module>
- <module>tests</module>
- <module>site</module>
- </modules>
-</project>
-
Added: trunk/central/README
===================================================================
--- trunk/central/README (rev 0)
+++ trunk/central/README 2012-10-24 21:54:40 UTC (rev 44615)
@@ -0,0 +1,5 @@
+This project have moved to https://github.com/jbosstools/jbosstools-central
+
+If you got questions regarding this project move and/or think you need maintance work done on these sources contact jbosstools-dev(a)lists.jboss.org
+
+Thank you!
Deleted: trunk/central/README.Central.localhost.testing.txt
===================================================================
--- trunk/central/README.Central.localhost.testing.txt 2012-10-24 21:13:47 UTC (rev 44614)
+++ trunk/central/README.Central.localhost.testing.txt 2012-10-24 21:54:40 UTC (rev 44615)
@@ -1,50 +0,0 @@
-To build/test locally:
-
-0. Run a web server locally, so you can access central/site/target/site/jbosstools-directory.xml via an http:// URL. You have many options for this. Here's one:
-
- su
- cd /tmp; wget -nc http://elonen.iki.fi/code/nanohttpd/NanoHTTPD.java
- javac NanoHTTPD.java; java NanoHTTPD -d /path/to/parent/folder/for/central/
-
-1. If you need to iterate through changes to the product/plugins/com.jboss.jbds.central plugin, you can do so, rebuild it, and reinstall it into a running Eclipse instance.
-
- Help > Install new > file:///path/to/product/site/target/site/
-
-You may also want to rebuild this plugin to set a different default URL (jboss.discovery.directory.url) for the directory.xml file:
-
- examples/plugins/org.jboss.tools.project.examples/pom.xml
-
-2. Rebuild:
-
- cd /path/to/examples; mvn install -DskipTests -Dmaven.test.skip
- cd /path/to/central; mvn install -DskipTests -Dmaven.test.skip
-
-3. Verify the directory.xml file is generated, and http-accessible:
-
- firefox http://localhost/central/site/target/site/jbosstools-directory.xml
-
-4. Verify central/site/target/site/jbosstools-directory.xml points at the updated version of the o.j.t.central plugin in /path/to/central/site/target/site/plugins/
-
- Note: if built locally, there should be no Jenkins/Hudson buildID Hxxx number in the version suffix, eg.,
- 1.0.0.v20120120-1459-Beta1
- instead of
- 1.0.0.v20120120-1459-H123-Beta1
-
-5. Launch Eclipse like this:
-
- ./eclipse -vmargs -Djboss.discovery.directory.url=file:///path/to/central/site/target/site/jbosstools-directory.xml
- or
- ./eclipse -vmargs -Djboss.discovery.directory.url=http://localhost/central/site/target/site/jbosstools-directory.xml
- or
- add the -Djboss.discovery.directory.url flag to your eclipse.ini file after the -vmargs line
-
-6. Select 'Help > Jboss Central' (if not already loaded). Check the 'Software/Updates' tab to review contents of the discovery site (as per org.jboss.tools.central.discovery/plugin.xml). Hit the refresh icon if necessary to see changes.
-
---
-
-To iterate through local changes:
-
-7. Change product/plugins/org.jboss.tools.central.discovery/plugin.xml.
-
-8. Repeat steps 2-6. If you rebuild the central plugin, you must reinstall it; the discovery plugin can simply be rebuilt and refreshed w/o needing to install anything new.
-
Deleted: trunk/central/README.Central.milestone.testing.txt
===================================================================
--- trunk/central/README.Central.milestone.testing.txt 2012-10-24 21:13:47 UTC (rev 44614)
+++ trunk/central/README.Central.milestone.testing.txt 2012-10-24 21:54:40 UTC (rev 44615)
@@ -1,22 +0,0 @@
-JBoss Central has a "software/update" page which gets its content from a hardcoded URL, set in the org.jboss.tools.central plugin.
-
-The published (current) milestone release URL is
-
- http://download.jboss.org/jbosstools/updates/development/juno/jbosstools-...
-
-The stable branch (upcoming milestone) URL is
-
- http://download.jboss.org/jbosstools/updates/nightly/core/3.4.juno/jbosst...
-
-The unstable trunk URL is
-
- http://download.jboss.org/jbosstools/updates/nightly/core/trunk/jbosstool...
-
-The same as used for all milestone releases of JBoss Tools; should you want to pull the list of available updates from a NEWER directory file (eg., during a QE cycle when there's a milestone candidate available, but the published milestone site still contains the PREVIOUS milestone), you can do so using a commmandline flag.
-
-Thus, when running Eclipse, simply pass in an alternate URL like this:
-
- ./eclipse -vmargs -Djboss.discovery.directory.url=http://download.jboss.org/jbosstools/updates/nightly/core/3.4.juno/jbosstools-directory.xml
-
-Or, you can add the -Djboss.discovery.directory.url flag to your eclipse.ini file after the -vmargs line.
-
Deleted: trunk/central/pom.xml
===================================================================
--- trunk/central/pom.xml 2012-10-24 21:13:47 UTC (rev 44614)
+++ trunk/central/pom.xml 2012-10-24 21:54:40 UTC (rev 44615)
@@ -1,31 +0,0 @@
-<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>parent</artifactId>
- <version>4.0.0.Beta2-SNAPSHOT</version>
- <relativePath>../build/parent/pom.xml</relativePath>
- </parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>central</artifactId>
- <version>1.1.0-SNAPSHOT</version>
- <name>central.all</name>
- <packaging>pom</packaging>
- <!--
- Note: building the update site for this component may require that you first build
- the tycho plugins in ../build/tycho-plugins/, if they can't be resolved from Nexus.
-
- mvn clean install
- or
- mvn clean install -B -U -fae -e -P jbosstools-nightly-staging-composite,jboss-requirements-composite-mirror,jboss-requirements-composite-extras-mirror,local.site -Dlocal.site=file:///home/nboldt/tmp/JBT_REPO_Juno/
- -->
- <modules>
- <module>plugins</module>
- <module>features</module>
- <module>tests</module>
- <module>site</module>
- </modules>
-</project>
-
Added: trunk/common/README
===================================================================
--- trunk/common/README (rev 0)
+++ trunk/common/README 2012-10-24 21:54:40 UTC (rev 44615)
@@ -0,0 +1,5 @@
+This project have moved to https://github.com/jbosstools/jbosstools-base
+
+If you got questions regarding this project move and/or think you need maintance work done on these sources contact jbosstools-dev(a)lists.jboss.org
+
+Thank you!
Deleted: trunk/common/pom.xml
===================================================================
--- trunk/common/pom.xml 2012-10-24 21:13:47 UTC (rev 44614)
+++ trunk/common/pom.xml 2012-10-24 21:54:40 UTC (rev 44615)
@@ -1,23 +0,0 @@
-<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>parent</artifactId>
- <version>4.0.0.Beta2-SNAPSHOT</version>
- <relativePath>../build/parent/pom.xml</relativePath>
- </parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>common</artifactId>
- <name>common.all</name>
- <version>3.4.0-SNAPSHOT</version>
- <packaging>pom</packaging>
- <modules>
- <module>plugins</module>
- <module>features</module>
- <module>site</module>
- <module>tests</module>
- </modules>
-</project>
-
Added: trunk/documentation/README
===================================================================
--- trunk/documentation/README (rev 0)
+++ trunk/documentation/README 2012-10-24 21:54:40 UTC (rev 44615)
@@ -0,0 +1,5 @@
+This project have moved to https://github.com/jbosstools/jbosstools-documentation
+
+If you got questions regarding this project move and/or think you need maintance work done on these sources contact jbosstools-dev(a)lists.jboss.org
+
+Thank you!
Deleted: trunk/documentation/index.html
===================================================================
--- trunk/documentation/index.html 2012-10-24 21:13:47 UTC (rev 44614)
+++ trunk/documentation/index.html 2012-10-24 21:54:40 UTC (rev 44615)
@@ -1,37 +0,0 @@
-<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
-<html>
- <head>
- <title>JBoss Tools Docs</title>
- <link rel="stylesheet" href="http://docs.jboss.org/tools/css/tools.css" type="text/css"/>
- </head>
- <body>
- <div class="book" lang="en-US">
- <div class="titlepage">
- <div xmlns="" id="overlay"> </div>
- <p id="title">
- <a href="http://www.jboss.org" class="site_href"><strong>JBoss.org</strong></a>
- <a href="http://docs.jboss.org/" class="doc_href"><strong>Community Documentation</strong></a>
- </p>
- <div><h1 class="title">JBoss Tools Docs</h1></div>
- <hr/>
- </div>
- <table id="tools">
-
-<tr><td><a href="nightly/trunk/">nightly/trunk/</a></td><td align="left"></td><td></td></tr>
-<tr><td><a href="3.3.0.Final/">3.3.0.Final/</a> or <a href="3.3.0.Final_archive.zip">3.3.0.Final_archive.zip</a></td><td align="left">21-Jun-2012 22:24</td><td>166M</td></tr>
-<tr><td><a href="3.2.1.GA/">3.2.1.GA/</a></td><td align="left">23-Aug-2011 19:08 </td></tr>
-<tr><td colspan="3"> </td></tr>
-<tr><td><a href="archive/">archive/</a></td><td align="left">06-Apr-2012 01:44 </td></tr>
-<tr><td><a href="experimental/">experimental/</a></td><td align="left">29-Oct-2009 18:42 </td></tr>
-<tr><td><a href="latest/">latest/</a></td><td align="left">21-Dec-2011 20:42 </td></tr>
-<tr><td><a href="movies/">movies/</a></td><td align="left">18-Apr-2012 04:08 </td></tr>
-<tr><td><a href="resources/">resources/</a></td><td align="left">26-Jun-2011 22:27 </td></tr>
-<tr><td><a href="whatsnew/">whatsnew/</a></td><td align="left">21-Jun-2012 01:16 </td></tr>
-<tr><td colspan="3"> </td></tr>
-<tr><td><a href="OLD/">OLD/</a></td><td align="left">03-Jul-2012 13:19 </td></tr>
-
- </table>
- <address style="float:right">Updated 2012-07-03</address>
- </div>
- </body>
-</html>
Added: trunk/drools/README
===================================================================
--- trunk/drools/README (rev 0)
+++ trunk/drools/README 2012-10-24 21:54:40 UTC (rev 44615)
@@ -0,0 +1,10 @@
+Drools has moved to github:
+
+https://github.com/droolsjbpm/
+http://www.jboss.org/drools/
+
+Drools docs have moved here:
+
+http://www.jboss.org/drools/documentation.html
+http://docs.jboss.org/drools/release/
+
Deleted: trunk/drools/README.txt
===================================================================
--- trunk/drools/README.txt 2012-10-24 21:13:47 UTC (rev 44614)
+++ trunk/drools/README.txt 2012-10-24 21:54:40 UTC (rev 44615)
@@ -1,10 +0,0 @@
-Drools has moved to github:
-
-https://github.com/droolsjbpm/
-http://www.jboss.org/drools/
-
-Drools docs have moved here:
-
-http://www.jboss.org/drools/documentation.html
-http://docs.jboss.org/drools/release/
-
Added: trunk/esb/README
===================================================================
--- trunk/esb/README (rev 0)
+++ trunk/esb/README 2012-10-24 21:54:40 UTC (rev 44615)
@@ -0,0 +1,5 @@
+This project have moved to https://github.com/jbosstools/jbosstools-esb
+
+If you got questions regarding this project move and/or think you need maintance work done on these sources contact jbosstools-dev(a)lists.jboss.org
+
+Thank you!
Deleted: trunk/esb/pom.xml
===================================================================
--- trunk/esb/pom.xml 2012-10-24 21:13:47 UTC (rev 44614)
+++ trunk/esb/pom.xml 2012-10-24 21:54:40 UTC (rev 44615)
@@ -1,48 +0,0 @@
-<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>parent</artifactId>
- <version>4.0.0.Beta2-SNAPSHOT</version>
- <relativePath>../build/parent/pom.xml</relativePath>
- </parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>esb</artifactId>
- <name>esb.all</name>
- <version>1.5.0-SNAPSHOT</version>
- <packaging>pom</packaging>
- <!--
- NOTE: if you don't have build/ checked out into a folder parallel to this one, the relativePath resolution above will fail. .
- build parent pom (run `mvn install` in ~/33x/build/parent/ folder), then after building upstream components locally (eg., ~/33x/tests, ~/33x/common, ~/33x/as):
- cd ~/33x/esb; mvn3 clean install
- or use the bootstrap profile which will build upstream and this component in a single build:
- cd ~/33x/build; mvn clean install -Pesb-bootstrap
- or, if not building upstream locally, use (see ~/33x/build/parent/pom.xml for other profiles you can use too):
- cd ~/33x/esb; mvn3 clean install -P jbosstools-nightly
- to skip running tests (compile only) use -Dmaven.test.skip
- cd ~/33x/esb; mvn3 clean install -Dmaven.test.skip
- -->
- <modules>
- <module>features</module>
- <module>plugins</module>
- <module>tests</module>
- <module>site</module>
- </modules>
-
- <repositories>
- <!-- To resolve parent artifact -->
- <repository>
- <id>jboss-public-repository-group</id>
- <name>JBoss Public Repository Group</name>
- <url>http://repository.jboss.org/nexus/content/groups/public/</url>
- </repository>
- <repository>
- <id>jboss-snapshots-repository</id>
- <name>JBoss Snapshots Repository</name>
- <url>https://repository.jboss.org/nexus/content/repositories/snapshots/</url>
- </repository>
- </repositories>
-</project>
-
Added: trunk/examples/README
===================================================================
--- trunk/examples/README (rev 0)
+++ trunk/examples/README 2012-10-24 21:54:40 UTC (rev 44615)
@@ -0,0 +1,5 @@
+This project have moved to https://github.com/jbosstools/jbosstools-central
+
+If you got questions regarding this project move and/or think you need maintance work done on these sources contact jbosstools-dev(a)lists.jboss.org
+
+Thank you!
Deleted: trunk/examples/pom.xml
===================================================================
--- trunk/examples/pom.xml 2012-10-24 21:13:47 UTC (rev 44614)
+++ trunk/examples/pom.xml 2012-10-24 21:54:40 UTC (rev 44615)
@@ -1,23 +0,0 @@
-<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>parent</artifactId>
- <version>4.0.0.Beta2-SNAPSHOT</version>
- <relativePath>../build/parent/pom.xml</relativePath>
- </parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>examples</artifactId>
- <version>1.4.0-SNAPSHOT</version>
- <name>examples.all</name>
- <packaging>pom</packaging>
- <modules>
- <module>features</module>
- <module>plugins</module>
- <module>tests</module>
- <module>site</module>
- </modules>
-</project>
-
Added: trunk/forge/README
===================================================================
--- trunk/forge/README (rev 0)
+++ trunk/forge/README 2012-10-24 21:54:40 UTC (rev 44615)
@@ -0,0 +1,5 @@
+This project have moved to https://github.com/jbosstools/jbosstools-forge
+
+If you got questions regarding this project move and/or think you need maintance work done on these sources contact jbosstools-dev(a)lists.jboss.org
+
+Thank you!
Deleted: trunk/forge/pom.xml
===================================================================
--- trunk/forge/pom.xml 2012-10-24 21:13:47 UTC (rev 44614)
+++ trunk/forge/pom.xml 2012-10-24 21:54:40 UTC (rev 44615)
@@ -1,23 +0,0 @@
-<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>parent</artifactId>
- <version>4.0.0.Beta2-SNAPSHOT</version>
- <relativePath>../build/parent/pom.xml</relativePath>
- </parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>forge</artifactId>
- <version>1.1.0-SNAPSHOT</version>
- <name>forge.all</name>
- <packaging>pom</packaging>
- <modules>
- <module>plugins</module>
- <module>tests</module>
- <module>features</module>
- <module>site</module>
- </modules>
-</project>
-
Added: trunk/freemarker/README
===================================================================
--- trunk/freemarker/README (rev 0)
+++ trunk/freemarker/README 2012-10-24 21:54:40 UTC (rev 44615)
@@ -0,0 +1,5 @@
+This project have moved to https://github.com/jbosstools/jbosstools-freemarker
+
+If you got questions regarding this project move and/or think you need maintance work done on these sources contact jbosstools-dev(a)lists.jboss.org
+
+Thank you!
Deleted: trunk/freemarker/pom.xml
===================================================================
--- trunk/freemarker/pom.xml 2012-10-24 21:13:47 UTC (rev 44614)
+++ trunk/freemarker/pom.xml 2012-10-24 21:54:40 UTC (rev 44615)
@@ -1,23 +0,0 @@
-<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>parent</artifactId>
- <version>4.0.0.Beta2-SNAPSHOT</version>
- <relativePath>../build/parent/pom.xml</relativePath>
- </parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>freemarker</artifactId>
- <version>1.3.0-SNAPSHOT</version>
- <name>freemarker.all</name>
- <packaging>pom</packaging>
- <modules>
- <module>plugins</module>
- <module>features</module>
- <module>site</module>
- <module>tests</module>
- </modules>
-</project>
-
Added: trunk/gwt/README
===================================================================
--- trunk/gwt/README (rev 0)
+++ trunk/gwt/README 2012-10-24 21:54:40 UTC (rev 44615)
@@ -0,0 +1,5 @@
+This project have moved to https://github.com/jbosstools/jbosstools-gwt
+
+If you got questions regarding this project move and/or think you need maintance work done on these sources contact jbosstools-dev(a)lists.jboss.org
+
+Thank you!
Deleted: trunk/gwt/pom.xml
===================================================================
--- trunk/gwt/pom.xml 2012-10-24 21:13:47 UTC (rev 44614)
+++ trunk/gwt/pom.xml 2012-10-24 21:54:40 UTC (rev 44615)
@@ -1,22 +0,0 @@
-<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>parent</artifactId>
- <version>4.0.0.Beta2-SNAPSHOT</version>
- <relativePath>../build/parent/pom.xml</relativePath>
- </parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>gwt</artifactId>
- <version>1.1.0-SNAPSHOT</version>
- <name>gwt.all</name>
- <packaging>pom</packaging>
- <modules>
- <module>features</module>
- <module>plugins</module>
- <module>tests</module>
- <module>site</module>
- </modules>
-</project>
-
Added: trunk/hibernatetools/README
===================================================================
--- trunk/hibernatetools/README (rev 0)
+++ trunk/hibernatetools/README 2012-10-24 21:54:40 UTC (rev 44615)
@@ -0,0 +1,5 @@
+This project have moved to https://github.com/jbosstools/jbosstools-hibernate
+
+If you got questions regarding this project move and/or think you need maintance work done on these sources contact jbosstools-dev(a)lists.jboss.org
+
+Thank you!
Deleted: trunk/hibernatetools/pom.xml
===================================================================
--- trunk/hibernatetools/pom.xml 2012-10-24 21:13:47 UTC (rev 44614)
+++ trunk/hibernatetools/pom.xml 2012-10-24 21:54:40 UTC (rev 44615)
@@ -1,22 +0,0 @@
-<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>parent</artifactId>
- <version>4.0.0.Beta2-SNAPSHOT</version>
- <relativePath>../build/parent/pom.xml</relativePath>
- </parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>hibernatetools</artifactId>
- <name>hibernatetools.all</name>
- <version>3.6.0-SNAPSHOT</version>
- <packaging>pom</packaging>
- <modules>
- <module>features</module>
- <module>plugins</module>
- <module>tests</module>
- <module>site</module>
- </modules>
-</project>
-
Added: trunk/jbpm/README
===================================================================
--- trunk/jbpm/README (rev 0)
+++ trunk/jbpm/README 2012-10-24 21:54:40 UTC (rev 44615)
@@ -0,0 +1,5 @@
+This project have moved to https://github.com/jbosstools/jbosstools-jbpm
+
+If you got questions regarding this project move and/or think you need maintance work done on these sources contact jbosstools-dev(a)lists.jboss.org
+
+Thank you!
Deleted: trunk/jbpm/pom.xml
===================================================================
--- trunk/jbpm/pom.xml 2012-10-24 21:13:47 UTC (rev 44614)
+++ trunk/jbpm/pom.xml 2012-10-24 21:54:40 UTC (rev 44615)
@@ -1,22 +0,0 @@
-<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>parent</artifactId>
- <version>4.0.0.Beta2-SNAPSHOT</version>
- <relativePath>../build/parent/pom.xml</relativePath>
- </parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>jbpm</artifactId>
- <name>jbpm.all</name>
- <version>4.5.0-SNAPSHOT</version>
- <packaging>pom</packaging>
- <modules>
- <module>plugins</module>
- <module>tests</module>
- <module>features</module>
- <module>site</module>
- </modules>
-</project>
-
Added: trunk/jmx/README
===================================================================
--- trunk/jmx/README (rev 0)
+++ trunk/jmx/README 2012-10-24 21:54:40 UTC (rev 44615)
@@ -0,0 +1,5 @@
+This project have moved to https://github.com/jbosstools/jbosstools-server
+
+If you got questions regarding this project move and/or think you need maintance work done on these sources contact jbosstools-dev(a)lists.jboss.org
+
+Thank you!
Deleted: trunk/jmx/pom.xml
===================================================================
--- trunk/jmx/pom.xml 2012-10-24 21:13:47 UTC (rev 44614)
+++ trunk/jmx/pom.xml 2012-10-24 21:54:40 UTC (rev 44615)
@@ -1,22 +0,0 @@
-<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>parent</artifactId>
- <version>4.0.0.Beta2-SNAPSHOT</version>
- <relativePath>../build/parent/pom.xml</relativePath>
- </parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>jmx</artifactId>
- <name>jmx.all</name>
- <version>1.4.0-SNAPSHOT</version>
- <packaging>pom</packaging>
- <modules>
- <module>plugins</module>
- <module>features</module>
- <module>site</module>
- <module>tests</module>
- </modules>
-</project>
Added: trunk/jsf/README
===================================================================
--- trunk/jsf/README (rev 0)
+++ trunk/jsf/README 2012-10-24 21:54:40 UTC (rev 44615)
@@ -0,0 +1,5 @@
+This project have moved to https://github.com/jbosstools/jbosstools-javaee
+
+If you got questions regarding this project move and/or think you need maintance work done on these sources contact jbosstools-dev(a)lists.jboss.org
+
+Thank you!
Deleted: trunk/jsf/pom.xml
===================================================================
--- trunk/jsf/pom.xml 2012-10-24 21:13:47 UTC (rev 44614)
+++ trunk/jsf/pom.xml 2012-10-24 21:54:40 UTC (rev 44615)
@@ -1,21 +0,0 @@
-<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>parent</artifactId>
- <version>4.0.0.Beta2-SNAPSHOT</version>
- <relativePath>../build/parent/pom.xml</relativePath>
- </parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>jsf</artifactId>
- <name>jsf.all</name>
- <version>3.4.0-SNAPSHOT</version>
- <packaging>pom</packaging>
- <modules>
- <module>plugins</module>
- <module>tests</module>
- <module>features</module>
- <module>site</module>
- </modules>
-</project>
-
Added: trunk/jst/README
===================================================================
--- trunk/jst/README (rev 0)
+++ trunk/jst/README 2012-10-24 21:54:40 UTC (rev 44615)
@@ -0,0 +1,5 @@
+This project have moved to https://github.com/jbosstools/jbosstools-jst
+
+If you got questions regarding this project move and/or think you need maintance work done on these sources contact jbosstools-dev(a)lists.jboss.org
+
+Thank you!
Deleted: trunk/jst/pom.xml
===================================================================
--- trunk/jst/pom.xml 2012-10-24 21:13:47 UTC (rev 44614)
+++ trunk/jst/pom.xml 2012-10-24 21:54:40 UTC (rev 44615)
@@ -1,21 +0,0 @@
-<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>
- <groupId>org.jboss.tools</groupId>
- <artifactId>jst</artifactId>
- <name>jst.all</name>
- <version>3.4.0-SNAPSHOT</version>
- <parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>parent</artifactId>
- <version>4.0.0.Beta2-SNAPSHOT</version>
- <relativePath>../build/parent/pom.xml</relativePath>
- </parent>
- <packaging>pom</packaging>
- <modules>
- <module>plugins</module>
- <module>tests</module>
- <module>features</module>
- <module>site</module>
- </modules>
-</project>
-
Added: trunk/maven/README
===================================================================
--- trunk/maven/README (rev 0)
+++ trunk/maven/README 2012-10-24 21:54:40 UTC (rev 44615)
@@ -0,0 +1,5 @@
+This project have moved to https://github.com/jbosstools/jbosstools-maven
+
+If you got questions regarding this project move and/or think you need maintance work done on these sources contact jbosstools-dev(a)lists.jboss.org
+
+Thank you!
Deleted: trunk/maven/pom.xml
===================================================================
--- trunk/maven/pom.xml 2012-10-24 21:13:47 UTC (rev 44614)
+++ trunk/maven/pom.xml 2012-10-24 21:54:40 UTC (rev 44615)
@@ -1,61 +0,0 @@
-<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>parent</artifactId>
- <version>4.0.0.Beta2-SNAPSHOT</version>
- <relativePath>../build/parent/pom.xml</relativePath>
- </parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>maven</artifactId>
- <version>1.4.0-SNAPSHOT</version>
- <name>maven.all</name>
- <packaging>pom</packaging>
- <modules>
- <module>features</module>
- <module>plugins</module>
- <module>tests</module>
- <module>site</module>
- </modules>
- <build>
- <pluginManagement>
- <plugins>
- <!--This plugin's configuration is used to store Eclipse m2e settings
- only. It has no influence on the Maven build itself. -->
- <plugin>
- <groupId>org.eclipse.m2e</groupId>
- <artifactId>lifecycle-mapping</artifactId>
- <version>1.0.0</version>
- <configuration>
- <lifecycleMappingMetadata>
- <pluginExecutions>
- <pluginExecution>
- <pluginExecutionFilter>
- <groupId>
- org.apache.maven.plugins
- </groupId>
- <artifactId>
- maven-antrun-plugin
- </artifactId>
- <versionRange>
- [1.3,)
- </versionRange>
- <goals>
- <goal>run</goal>
- </goals>
- </pluginExecutionFilter>
- <action>
- <ignore></ignore>
- </action>
- </pluginExecution>
- </pluginExecutions>
- </lifecycleMappingMetadata>
- </configuration>
- </plugin>
- </plugins>
- </pluginManagement>
- </build>
-</project>
-
Modified: trunk/modeshape/README
===================================================================
--- trunk/modeshape/README 2012-10-24 21:13:47 UTC (rev 44614)
+++ trunk/modeshape/README 2012-10-24 21:54:40 UTC (rev 44615)
@@ -3,4 +3,3 @@
If you got questions regarding this project move and/or think you need maintance work done on these sources contact jbosstools-dev(a)lists.jboss.org
Thank you!
-.
\ No newline at end of file
Added: trunk/openshift/README
===================================================================
--- trunk/openshift/README (rev 0)
+++ trunk/openshift/README 2012-10-24 21:54:40 UTC (rev 44615)
@@ -0,0 +1,5 @@
+This project have moved to https://github.com/jbosstools/jbosstools-openshift
+
+If you got questions regarding this project move and/or think you need maintance work done on these sources contact jbosstools-dev(a)lists.jboss.org
+
+Thank you!
Deleted: trunk/openshift/pom.xml
===================================================================
--- trunk/openshift/pom.xml 2012-10-24 21:13:47 UTC (rev 44614)
+++ trunk/openshift/pom.xml 2012-10-24 21:54:40 UTC (rev 44615)
@@ -1,46 +0,0 @@
-<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>parent</artifactId>
- <version>4.0.0.Beta2-SNAPSHOT</version>
- <relativePath>../build/parent/pom.xml</relativePath>
- </parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>openshift</artifactId>
- <name>openshift.all</name>
- <version>2.4.0-SNAPSHOT</version>
- <packaging>pom</packaging>
- <modules>
- <module>plugins</module>
- <module>tests</module>
- <module>features</module>
- <module>site</module>
- </modules>
- <profiles>
- <!-- use with github repos -->
- <profile>
- <id>bootstrap</id>
- <modules>
- <module>../base</module>
- <module>../server</module>
- </modules>
- </profile>
- <!-- deprecated; use with svn repos -->
- <profile>
- <id>bootstrap-svn</id>
- <modules>
- <module>../tests</module>
- <module>../common</module>
- <module>../runtime</module>
- <module>../usage</module>
-
- <module>../jmx</module>
- <module>../archives</module>
- <module>../as</module>
- </modules>
- </profile>
- </profiles>
-</project>
-
Modified: trunk/pom.xml
===================================================================
--- trunk/pom.xml 2012-10-24 21:13:47 UTC (rev 44614)
+++ trunk/pom.xml 2012-10-24 21:54:40 UTC (rev 44615)
@@ -10,6 +10,6 @@
<module>build/parent</module>
<module>build</module>
</modules>
-
+<!--test-->
</project>
Added: trunk/portlet/README
===================================================================
--- trunk/portlet/README (rev 0)
+++ trunk/portlet/README 2012-10-24 21:54:40 UTC (rev 44615)
@@ -0,0 +1,5 @@
+This project have moved to https://github.com/jbosstools/jbosstools-portlet
+
+If you got questions regarding this project move and/or think you need maintance work done on these sources contact jbosstools-dev(a)lists.jboss.org
+
+Thank you!
Deleted: trunk/portlet/pom.xml
===================================================================
--- trunk/portlet/pom.xml 2012-10-24 21:13:47 UTC (rev 44614)
+++ trunk/portlet/pom.xml 2012-10-24 21:54:40 UTC (rev 44615)
@@ -1,21 +0,0 @@
-<?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</groupId>
- <artifactId>parent</artifactId>
- <version>4.0.0.Beta2-SNAPSHOT</version>
- <relativePath>../build/parent/pom.xml</relativePath>
- </parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>portlet</artifactId>
- <version>1.4.0-SNAPSHOT</version>
- <name>portlet.all</name>
- <packaging>pom</packaging>
- <modules>
- <module>features</module>
- <module>plugins</module>
- <module>tests</module>
- <module>site</module>
- </modules>
-</project>
Added: trunk/runtime/README
===================================================================
--- trunk/runtime/README (rev 0)
+++ trunk/runtime/README 2012-10-24 21:54:40 UTC (rev 44615)
@@ -0,0 +1,5 @@
+This project have moved to https://github.com/jbosstools/jbosstools-base
+
+If you got questions regarding this project move and/or think you need maintance work done on these sources contact jbosstools-dev(a)lists.jboss.org
+
+Thank you!
Deleted: trunk/runtime/pom.xml
===================================================================
--- trunk/runtime/pom.xml 2012-10-24 21:13:47 UTC (rev 44614)
+++ trunk/runtime/pom.xml 2012-10-24 21:54:40 UTC (rev 44615)
@@ -1,28 +0,0 @@
-<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>parent</artifactId>
- <version>4.0.0.Beta2-SNAPSHOT</version>
- <relativePath>../build/parent/pom.xml</relativePath>
- </parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>runtime</artifactId>
- <version>2.0.0-SNAPSHOT</version>
- <name>runtime.all</name>
- <packaging>pom</packaging>
- <modules>
- <module>plugins</module>
- <module>tests</module>
- <module>features</module>
- <module>site</module>
- </modules>
- <!-- to build, need to resolve TP and upstream components
- mvn clean install -f ../build/pom-core.xml -Pruntime-bootstrap,local.site,jbosstools-nightly-staging-composite
- or
- mvn clean install -Pdefault,jbosstools-nightly-staging-composite
- -->
-</project>
-
Added: trunk/runtime-soa/README
===================================================================
--- trunk/runtime-soa/README (rev 0)
+++ trunk/runtime-soa/README 2012-10-24 21:54:40 UTC (rev 44615)
@@ -0,0 +1,5 @@
+This project have moved to https://github.com/jbosstools/jbosstools-runtime-soa
+
+If you got questions regarding this project move and/or think you need maintance work done on these sources contact jbosstools-dev(a)lists.jboss.org
+
+Thank you!
Deleted: trunk/runtime-soa/pom.xml
===================================================================
--- trunk/runtime-soa/pom.xml 2012-10-24 21:13:47 UTC (rev 44614)
+++ trunk/runtime-soa/pom.xml 2012-10-24 21:54:40 UTC (rev 44615)
@@ -1,52 +0,0 @@
-<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>parent</artifactId>
- <version>4.0.0.Beta2-SNAPSHOT</version>
- <relativePath>../build/parent/pom.xml</relativePath>
- </parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>runtime-soa</artifactId>
- <version>1.4.0-SNAPSHOT</version>
- <name>runtime-soa.all</name>
- <packaging>pom</packaging>
- <modules>
- <module>plugins</module>
- <module>features</module>
- <module>site</module>
- </modules>
- <!-- to build, need to resolve TP and upstream components
- mvn clean install -f ../build/pom-soa-tooling.xml -Pruntime-soa-bootstrap,local.site,jbosstools-nightly-staging-composite,jbosstools-nightly-staging-composite-soa-tooling
- or
- mvn clean install -Pdefault,jbosstools-nightly-staging-composite,jbosstools-nightly-staging-composite-soa-tooling
- -->
-
- <repositories>
- <repository>
- <id>jbosstools-nightly-tests</id>
- <url>${jbosstools-nightly-tests}</url>
- <layout>p2</layout>
- <snapshots>
- <enabled>true</enabled>
- </snapshots>
- <releases>
- <enabled>true</enabled>
- </releases>
- </repository>
- <repository>
- <id>droolsjbpm54</id>
- <url>http://download.jboss.org/drools/release/5.4.0.Final/org.drools.updatesite/</url>
- <layout>p2</layout>
- <snapshots>
- <enabled>true</enabled>
- </snapshots>
- <releases>
- <enabled>true</enabled>
- </releases>
- </repository>
- </repositories>
-</project>
-
Added: trunk/seam/README
===================================================================
--- trunk/seam/README (rev 0)
+++ trunk/seam/README 2012-10-24 21:54:40 UTC (rev 44615)
@@ -0,0 +1,5 @@
+This project have moved to https://github.com/jbosstools/jbosstools-seam
+
+If you got questions regarding this project move and/or think you need maintance work done on these sources contact jbosstools-dev(a)lists.jboss.org
+
+Thank you!
Deleted: trunk/seam/pom.xml
===================================================================
--- trunk/seam/pom.xml 2012-10-24 21:13:47 UTC (rev 44614)
+++ trunk/seam/pom.xml 2012-10-24 21:54:40 UTC (rev 44615)
@@ -1,24 +0,0 @@
-<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>parent</artifactId>
- <version>4.0.0.Beta2-SNAPSHOT</version>
- <relativePath>../build/parent/pom.xml</relativePath>
- </parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>seam</artifactId>
- <name>seam.all</name>
- <version>3.4.0-SNAPSHOT</version>
- <packaging>pom</packaging>
- <modules>
- <module>features</module>
- <module>plugins</module>
- <module>tests</module>
- <module>site</module>
- </modules>
-</project>
-
Added: trunk/struts/README
===================================================================
--- trunk/struts/README (rev 0)
+++ trunk/struts/README 2012-10-24 21:54:40 UTC (rev 44615)
@@ -0,0 +1,5 @@
+This project have moved to https://github.com/jbosstools/jbosstools-javaee
+
+If you got questions regarding this project move and/or think you need maintance work done on these sources contact jbosstools-dev(a)lists.jboss.org
+
+Thank you!
Deleted: trunk/struts/pom.xml
===================================================================
--- trunk/struts/pom.xml 2012-10-24 21:13:47 UTC (rev 44614)
+++ trunk/struts/pom.xml 2012-10-24 21:54:40 UTC (rev 44615)
@@ -1,22 +0,0 @@
-<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>parent</artifactId>
- <version>4.0.0.Beta2-SNAPSHOT</version>
- <relativePath>../build/parent/pom.xml</relativePath>
- </parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>struts</artifactId>
- <name>struts.all</name>
- <version>3.4.0-SNAPSHOT</version>
- <packaging>pom</packaging>
- <modules>
- <module>features</module>
- <module>plugins</module>
- <module>tests</module>
- <module>site</module>
- </modules>
-</project>
-
Added: trunk/tests/README
===================================================================
--- trunk/tests/README (rev 0)
+++ trunk/tests/README 2012-10-24 21:54:40 UTC (rev 44615)
@@ -0,0 +1,5 @@
+This project have moved to https://github.com/jbosstools/jbosstools-base
+
+If you got questions regarding this project move and/or think you need maintance work done on these sources contact jbosstools-dev(a)lists.jboss.org
+
+Thank you!
Deleted: trunk/tests/pom.xml
===================================================================
--- trunk/tests/pom.xml 2012-10-24 21:13:47 UTC (rev 44614)
+++ trunk/tests/pom.xml 2012-10-24 21:54:40 UTC (rev 44615)
@@ -1,22 +0,0 @@
-<?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</groupId>
- <artifactId>parent</artifactId>
- <version>4.0.0.Beta2-SNAPSHOT</version>
- <relativePath>../build/parent/pom.xml</relativePath>
- </parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>tests</artifactId>
- <name>tests.all</name>
- <version>3.4.0-SNAPSHOT</version>
- <packaging>pom</packaging>
- <modules>
- <module>plugins</module>
- <module>tests</module>
- <module>features</module>
- <module>site</module>
- <module>scripts</module>
- </modules>
-</project>
Added: trunk/usage/README
===================================================================
--- trunk/usage/README (rev 0)
+++ trunk/usage/README 2012-10-24 21:54:40 UTC (rev 44615)
@@ -0,0 +1,5 @@
+This project have moved to https://github.com/jbosstools/jbosstools-base
+
+If you got questions regarding this project move and/or think you need maintance work done on these sources contact jbosstools-dev(a)lists.jboss.org
+
+Thank you!
Deleted: trunk/usage/pom.xml
===================================================================
--- trunk/usage/pom.xml 2012-10-24 21:13:47 UTC (rev 44614)
+++ trunk/usage/pom.xml 2012-10-24 21:54:40 UTC (rev 44615)
@@ -1,23 +0,0 @@
-<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>parent</artifactId>
- <version>4.0.0.Beta2-SNAPSHOT</version>
- <relativePath>../build/parent/pom.xml</relativePath>
- </parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>usage</artifactId>
- <version>1.2.0-SNAPSHOT</version>
- <name>usage.all</name>
- <packaging>pom</packaging>
- <modules>
- <module>plugins</module>
- <module>tests</module>
- <module>features</module>
- <module>site</module>
- </modules>
-</project>
-
Added: trunk/vpe/README
===================================================================
--- trunk/vpe/README (rev 0)
+++ trunk/vpe/README 2012-10-24 21:54:40 UTC (rev 44615)
@@ -0,0 +1,5 @@
+This project have moved to https://github.com/jbosstools/jbosstools-vpe
+
+If you got questions regarding this project move and/or think you need maintance work done on these sources contact jbosstools-dev(a)lists.jboss.org
+
+Thank you!
Deleted: trunk/vpe/pom.xml
===================================================================
--- trunk/vpe/pom.xml 2012-10-24 21:13:47 UTC (rev 44614)
+++ trunk/vpe/pom.xml 2012-10-24 21:54:40 UTC (rev 44615)
@@ -1,21 +0,0 @@
-<?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</groupId>
- <artifactId>parent</artifactId>
- <version>4.0.0.Beta2-SNAPSHOT</version>
- <relativePath>../build/parent/pom.xml</relativePath>
- </parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>vpe</artifactId>
- <version>3.4.0-SNAPSHOT</version>
- <name>vpe.all</name>
- <packaging>pom</packaging>
- <modules>
- <module>plugins</module>
- <module>tests</module>
- <module>features</module>
- <module>site</module>
- </modules>
-</project>
Added: trunk/ws/README
===================================================================
--- trunk/ws/README (rev 0)
+++ trunk/ws/README 2012-10-24 21:54:40 UTC (rev 44615)
@@ -0,0 +1,5 @@
+This project have moved to https://github.com/jbosstools/jbosstools-webservices
+
+If you got questions regarding this project move and/or think you need maintance work done on these sources contact jbosstools-dev(a)lists.jboss.org
+
+Thank you!
Deleted: trunk/ws/pom.xml
===================================================================
--- trunk/ws/pom.xml 2012-10-24 21:13:47 UTC (rev 44614)
+++ trunk/ws/pom.xml 2012-10-24 21:54:40 UTC (rev 44615)
@@ -1,47 +0,0 @@
-<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>parent</artifactId>
- <version>4.0.0.Beta2-SNAPSHOT</version>
- <relativePath>../build/parent/pom.xml</relativePath>
- </parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>ws</artifactId>
- <name>ws.all</name>
- <version>1.4.0-SNAPSHOT</version>
- <packaging>pom</packaging>
- <modules>
- <module>plugins</module>
- <module>tests</module>
- <module>features</module>
- <module>site</module>
- </modules>
- <profiles>
- <!-- use with github repos -->
- <profile>
- <id>bootstrap</id>
- <modules>
- <module>../base</module>
- <module>../server</module>
- </modules>
- </profile>
- <!-- deprecated; use with svn repos -->
- <profile>
- <id>bootstrap-svn</id>
- <modules>
- <module>../tests</module>
- <module>../common</module>
- <module>../runtime</module>
- <module>../usage</module>
-
- <module>../jmx</module>
- <module>../archives</module>
- <module>../as</module>
- </modules>
- </profile>
- </profiles>
-</project>
-
Added: trunk/xulrunner/README
===================================================================
--- trunk/xulrunner/README (rev 0)
+++ trunk/xulrunner/README 2012-10-24 21:54:40 UTC (rev 44615)
@@ -0,0 +1,5 @@
+This project have moved to https://github.com/jbosstools/jbosstools-xulrunner
+
+If you got questions regarding this project move and/or think you need maintance work done on these sources contact jbosstools-dev(a)lists.jboss.org
+
+Thank you!
Deleted: trunk/xulrunner/pom.xml
===================================================================
--- trunk/xulrunner/pom.xml 2012-10-24 21:13:47 UTC (rev 44614)
+++ trunk/xulrunner/pom.xml 2012-10-24 21:54:40 UTC (rev 44615)
@@ -1,21 +0,0 @@
-<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>parent</artifactId>
- <version>4.0.0.Beta2-SNAPSHOT</version>
- <relativePath>../build/parent/pom.xml</relativePath>
- </parent>
- <groupId>org.jboss.tools</groupId>
- <artifactId>xulrunner</artifactId>
- <name>xulrunner.all</name>
- <version>1.9.2-SNAPSHOT</version>
- <packaging>pom</packaging>
- <modules>
- <module>features</module>
- <module>plugins</module>
- <module>site</module>
- </modules>
-</project>
-
12 years, 2 months
JBoss Tools SVN: r44613 - branches/jbosstools-4.0.0.Beta1/archives/tests/org.jboss.ide.eclipse.archives.test/src/org/jboss/ide/eclipse/archives/test.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2012-10-23 20:48:54 -0400 (Tue, 23 Oct 2012)
New Revision: 44613
Modified:
branches/jbosstools-4.0.0.Beta1/archives/tests/org.jboss.ide.eclipse.archives.test/src/org/jboss/ide/eclipse/archives/test/ArchivesTestSuite.java
Log:
https://issues.jboss.org/browse/JBIDE-12918 Cannot deploy archive on the server
fixed compilation error related to missing class in test plugin
Modified: branches/jbosstools-4.0.0.Beta1/archives/tests/org.jboss.ide.eclipse.archives.test/src/org/jboss/ide/eclipse/archives/test/ArchivesTestSuite.java
===================================================================
--- branches/jbosstools-4.0.0.Beta1/archives/tests/org.jboss.ide.eclipse.archives.test/src/org/jboss/ide/eclipse/archives/test/ArchivesTestSuite.java 2012-10-23 16:45:15 UTC (rev 44612)
+++ branches/jbosstools-4.0.0.Beta1/archives/tests/org.jboss.ide.eclipse.archives.test/src/org/jboss/ide/eclipse/archives/test/ArchivesTestSuite.java 2012-10-24 00:48:54 UTC (rev 44613)
@@ -20,7 +20,6 @@
import org.jboss.ide.eclipse.archives.test.model.ModelCreationTest;
import org.jboss.ide.eclipse.archives.test.model.ModelTruezipBridgeTest;
import org.jboss.ide.eclipse.archives.test.model.ModelUtilTest;
-import org.jboss.ide.eclipse.archives.test.model.ReadWriteTest;
import org.jboss.ide.eclipse.archives.test.model.XBMarshallTest;
import org.jboss.ide.eclipse.archives.test.model.XBUnmarshallTest;
import org.jboss.ide.eclipse.archives.test.projects.InnerZipResourceTimestampTest;
@@ -39,7 +38,6 @@
suite.addTestSuite(ArchivesCoreTest.class);
suite.addTestSuite(XBMarshallTest.class);
suite.addTestSuite(XBUnmarshallTest.class);
- suite.addTestSuite(ReadWriteTest.class);
suite.addTestSuite(TruezipUtilTest.class);
suite.addTestSuite(ModelUtilTest.class);
suite.addTestSuite(DirectoryScannerTest.class);
12 years, 2 months
JBoss Tools SVN: r44612 - in branches/jbosstools-4.0.0.Beta1/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal: ui/wizard/connection and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: adietish
Date: 2012-10-23 12:45:15 -0400 (Tue, 23 Oct 2012)
New Revision: 44612
Modified:
branches/jbosstools-4.0.0.Beta1/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/core/connection/Connection.java
branches/jbosstools-4.0.0.Beta1/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/connection/ConnectionWizardPageModel.java
Log:
[JBIDE-12922] not setting setRememberPassword when setting password any more
Modified: branches/jbosstools-4.0.0.Beta1/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/core/connection/Connection.java
===================================================================
--- branches/jbosstools-4.0.0.Beta1/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/core/connection/Connection.java 2012-10-23 14:39:24 UTC (rev 44611)
+++ branches/jbosstools-4.0.0.Beta1/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/core/connection/Connection.java 2012-10-23 16:45:15 UTC (rev 44612)
@@ -146,7 +146,7 @@
public String setPassword(String password) {
this.password = password;
- setRememberPassword(!StringUtils.isEmpty(password));
+// setRememberPassword(!StringUtils.isEmpty(password));
this.passwordLoaded = true;
clearUser();
return password;
Modified: branches/jbosstools-4.0.0.Beta1/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/connection/ConnectionWizardPageModel.java
===================================================================
--- branches/jbosstools-4.0.0.Beta1/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/connection/ConnectionWizardPageModel.java 2012-10-23 14:39:24 UTC (rev 44611)
+++ branches/jbosstools-4.0.0.Beta1/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/connection/ConnectionWizardPageModel.java 2012-10-23 16:45:15 UTC (rev 44612)
@@ -126,6 +126,7 @@
firePropertyChange(PROPERTY_SERVER, oldValue.getHost(), this.editedConnection.getHost());
firePropertyChange(PROPERTY_USERNAME, oldValue.getUsername(), this.editedConnection.getUsername());
firePropertyChange(PROPERTY_PASSWORD, oldValue.getPassword(), this.editedConnection.getPassword());
+ firePropertyChange(PROPERTY_REMEMBER_PASSWORD, oldValue.isRememberPassword(), this.editedConnection.isRememberPassword());
}
public Connection getSelectedConnection() {
12 years, 2 months
JBoss Tools SVN: r44611 - branches/jbosstools-4.0.0.Beta1/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/core/connection.
by jbosstools-commits@lists.jboss.org
Author: adietish
Date: 2012-10-23 10:39:24 -0400 (Tue, 23 Oct 2012)
New Revision: 44611
Modified:
branches/jbosstools-4.0.0.Beta1/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/core/connection/Connection.java
Log:
[JBIDE-12923] fixed parsing of connection-url when loading it from preferences. URI gets confused by empty host name (returns null username), URL allows empty host name.
Modified: branches/jbosstools-4.0.0.Beta1/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/core/connection/Connection.java
===================================================================
--- branches/jbosstools-4.0.0.Beta1/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/core/connection/Connection.java 2012-10-23 14:32:27 UTC (rev 44610)
+++ branches/jbosstools-4.0.0.Beta1/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/core/connection/Connection.java 2012-10-23 14:39:24 UTC (rev 44611)
@@ -78,7 +78,7 @@
UrlPortions portions = UrlUtils.toPortions(url);
this.username = portions.getUsername();
Assert.isLegal(
- StringUtils.isEmpty(username),
+ !StringUtils.isEmpty(username),
NLS.bind("There is no no username for connection to url {0}", url.toString()));
this.password = portions.getPassword();
setHost(portions.getHost());
12 years, 2 months
JBoss Tools SVN: r44610 - in branches/jbosstools-4.0.0.Beta1/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal: core/connection and 2 other directories.
by jbosstools-commits@lists.jboss.org
Author: adietish
Date: 2012-10-23 10:32:27 -0400 (Tue, 23 Oct 2012)
New Revision: 44610
Modified:
branches/jbosstools-4.0.0.Beta1/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/core/behaviour/ExpressServerUtils.java
branches/jbosstools-4.0.0.Beta1/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/core/connection/Connection.java
branches/jbosstools-4.0.0.Beta1/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/core/connection/ConnectionUtils.java
branches/jbosstools-4.0.0.Beta1/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/core/connection/ConnectionsModel.java
branches/jbosstools-4.0.0.Beta1/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/core/util/UrlUtils.java
branches/jbosstools-4.0.0.Beta1/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/behaviour/ExpressDetailsSection.java
Log:
[JBIDE-12923] fixed parsing of connection-url when loading it from preferences. URI gets confused by empty host name (returns null username), URL allows empty host name.
Modified: branches/jbosstools-4.0.0.Beta1/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/core/behaviour/ExpressServerUtils.java
===================================================================
--- branches/jbosstools-4.0.0.Beta1/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/core/behaviour/ExpressServerUtils.java 2012-10-23 12:13:59 UTC (rev 44609)
+++ branches/jbosstools-4.0.0.Beta1/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/core/behaviour/ExpressServerUtils.java 2012-10-23 14:32:27 UTC (rev 44610)
@@ -12,7 +12,6 @@
import java.io.UnsupportedEncodingException;
import java.net.MalformedURLException;
-import java.net.URISyntaxException;
import java.util.ArrayList;
import java.util.Iterator;
import java.util.List;
@@ -173,7 +172,7 @@
connectionValue = ConnectionUtils.getUrlForUsername(username);
} catch (UnsupportedEncodingException e) {
OpenShiftUIActivator.log(NLS.bind("Could not get connection url for user {0}", username), e);
- } catch (URISyntaxException e) {
+ } catch (MalformedURLException e) {
OpenShiftUIActivator.log(NLS.bind("Could not get connection url for user {0}", username), e);
}
}
Modified: branches/jbosstools-4.0.0.Beta1/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/core/connection/Connection.java
===================================================================
--- branches/jbosstools-4.0.0.Beta1/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/core/connection/Connection.java 2012-10-23 12:13:59 UTC (rev 44609)
+++ branches/jbosstools-4.0.0.Beta1/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/core/connection/Connection.java 2012-10-23 14:32:27 UTC (rev 44610)
@@ -15,10 +15,11 @@
import java.io.UnsupportedEncodingException;
import java.net.MalformedURLException;
import java.net.SocketTimeoutException;
-import java.net.URI;
import java.net.URL;
import java.util.List;
+import org.eclipse.core.runtime.Assert;
+import org.eclipse.osgi.util.NLS;
import org.jboss.tools.openshift.express.internal.core.util.UrlUtils;
import org.jboss.tools.openshift.express.internal.core.util.UrlUtils.UrlPortions;
import org.jboss.tools.openshift.express.internal.ui.OpenShiftUIActivator;
@@ -73,9 +74,12 @@
this.prompter = prompter;
}
- public Connection(URI url, ICredentialsPrompter prompter) throws UnsupportedEncodingException {
+ public Connection(URL url, ICredentialsPrompter prompter) throws UnsupportedEncodingException {
UrlPortions portions = UrlUtils.toPortions(url);
this.username = portions.getUsername();
+ Assert.isLegal(
+ StringUtils.isEmpty(username),
+ NLS.bind("There is no no username for connection to url {0}", url.toString()));
this.password = portions.getPassword();
setHost(portions.getHost());
this.prompter = prompter;
Modified: branches/jbosstools-4.0.0.Beta1/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/core/connection/ConnectionUtils.java
===================================================================
--- branches/jbosstools-4.0.0.Beta1/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/core/connection/ConnectionUtils.java 2012-10-23 12:13:59 UTC (rev 44609)
+++ branches/jbosstools-4.0.0.Beta1/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/core/connection/ConnectionUtils.java 2012-10-23 14:32:27 UTC (rev 44610)
@@ -11,7 +11,7 @@
package org.jboss.tools.openshift.express.internal.core.connection;
import java.io.UnsupportedEncodingException;
-import java.net.URISyntaxException;
+import java.net.MalformedURLException;
import org.jboss.tools.openshift.express.internal.core.util.UrlUtils;
import org.jboss.tools.openshift.express.internal.core.util.UrlUtils.UrlPortions;
@@ -30,7 +30,7 @@
// inhibit instantiation
}
- public static String getUrlForUsername(String username) throws UnsupportedEncodingException, URISyntaxException {
+ public static String getUrlForUsername(String username) throws UnsupportedEncodingException, MalformedURLException {
UrlPortions portions = UrlUtils.toPortions(getDefaultHostUrl());
return UrlUtils.getUrlFor(username, portions.getHost(), portions.getProtocol());
}
Modified: branches/jbosstools-4.0.0.Beta1/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/core/connection/ConnectionsModel.java
===================================================================
--- branches/jbosstools-4.0.0.Beta1/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/core/connection/ConnectionsModel.java 2012-10-23 12:13:59 UTC (rev 44609)
+++ branches/jbosstools-4.0.0.Beta1/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/core/connection/ConnectionsModel.java 2012-10-23 14:32:27 UTC (rev 44610)
@@ -11,8 +11,8 @@
package org.jboss.tools.openshift.express.internal.core.connection;
import java.io.UnsupportedEncodingException;
-import java.net.URI;
-import java.net.URISyntaxException;
+import java.net.MalformedURLException;
+import java.net.URL;
import java.util.ArrayList;
import java.util.Collection;
import java.util.HashMap;
@@ -173,13 +173,15 @@
for (int i = 0; i < connections.length; i++) {
Connection connection = null;
try {
- URI connectionUrl = new URI(connections[i]);
+ URL connectionUrl = new URL(connections[i]);
connection = new Connection(connectionUrl, new CredentialsPrompter());
addConnection(connection);
- } catch (URISyntaxException e) {
+ } catch (MalformedURLException e) {
OpenShiftUIActivator.log(NLS.bind("Could not add connection for {0}.", connections[i]), e);
} catch (UnsupportedEncodingException e) {
OpenShiftUIActivator.log(NLS.bind("Could not add connection for {0}.", connections[i]), e);
+ } catch (IllegalArgumentException e) {
+ OpenShiftUIActivator.log(NLS.bind("Could not add connection for {0}.", connections[i]), e);
}
}
}
Modified: branches/jbosstools-4.0.0.Beta1/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/core/util/UrlUtils.java
===================================================================
--- branches/jbosstools-4.0.0.Beta1/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/core/util/UrlUtils.java 2012-10-23 12:13:59 UTC (rev 44609)
+++ branches/jbosstools-4.0.0.Beta1/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/core/util/UrlUtils.java 2012-10-23 14:32:27 UTC (rev 44610)
@@ -11,8 +11,8 @@
package org.jboss.tools.openshift.express.internal.core.util;
import java.io.UnsupportedEncodingException;
-import java.net.URI;
-import java.net.URISyntaxException;
+import java.net.MalformedURLException;
+import java.net.URL;
import java.net.URLDecoder;
import java.net.URLEncoder;
@@ -34,11 +34,11 @@
// inhibit instantiation
}
- public static UrlPortions toPortions(String url) throws UnsupportedEncodingException, URISyntaxException {
- return new UrlPortions(new URI(url));
+ public static UrlPortions toPortions(String url) throws UnsupportedEncodingException, MalformedURLException {
+ return new UrlPortions(new URL(url));
}
- public static UrlPortions toPortions(URI url) throws UnsupportedEncodingException {
+ public static UrlPortions toPortions(URL url) throws UnsupportedEncodingException {
return new UrlPortions(url);
}
@@ -49,7 +49,7 @@
private String password;
private String host;
- private UrlPortions(URI url) throws UnsupportedEncodingException {
+ private UrlPortions(URL url) throws UnsupportedEncodingException {
String userInfo = url.getUserInfo();
if (userInfo != null) {
String[] userInfos = url.getUserInfo().split(":");
@@ -61,7 +61,7 @@
}
}
this.host = url.getHost();
- this.protocol = url.getScheme();
+ this.protocol = url.getProtocol();
}
public String getUsername() {
Modified: branches/jbosstools-4.0.0.Beta1/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/behaviour/ExpressDetailsSection.java
===================================================================
--- branches/jbosstools-4.0.0.Beta1/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/behaviour/ExpressDetailsSection.java 2012-10-23 12:13:59 UTC (rev 44609)
+++ branches/jbosstools-4.0.0.Beta1/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/behaviour/ExpressDetailsSection.java 2012-10-23 14:32:27 UTC (rev 44610)
@@ -11,8 +11,8 @@
package org.jboss.tools.openshift.express.internal.ui.behaviour;
import java.io.UnsupportedEncodingException;
-import java.net.URI;
-import java.net.URISyntaxException;
+import java.net.MalformedURLException;
+import java.net.URL;
import java.util.Arrays;
import org.eclipse.core.resources.IFolder;
@@ -137,9 +137,9 @@
String connectionLabel = "";
if (!StringUtils.isEmpty(connectionUrl)) {
try {
- Connection connection = new Connection(new URI(connectionUrl), null);
+ Connection connection = new Connection(new URL(connectionUrl), null);
connectionLabel = connection.getUsername() + " - " + connection.getHost();
- } catch (URISyntaxException e) {
+ } catch (MalformedURLException e) {
OpenShiftUIActivator.log(NLS.bind("Could not get URL for connection {0}", connectionUrl), e);
} catch (UnsupportedEncodingException e) {
OpenShiftUIActivator.log(NLS.bind("Could not get URL for connection {0}", connectionUrl), e);
12 years, 2 months