JBoss Tools SVN: r38044 - trunk/common/plugins/org.jboss.tools.common/src/org/jboss/tools/common/refactoring.
by jbosstools-commits@lists.jboss.org
Author: dazarov
Date: 2012-01-23 14:57:46 -0500 (Mon, 23 Jan 2012)
New Revision: 38044
Modified:
trunk/common/plugins/org.jboss.tools.common/src/org/jboss/tools/common/refactoring/MarkerResolutionUtils.java
Log:
Add the code which is supposed to be inserted by the Quick Fix into its description https://issues.jboss.org/browse/JBIDE-10636
Modified: trunk/common/plugins/org.jboss.tools.common/src/org/jboss/tools/common/refactoring/MarkerResolutionUtils.java
===================================================================
--- trunk/common/plugins/org.jboss.tools.common/src/org/jboss/tools/common/refactoring/MarkerResolutionUtils.java 2012-01-23 19:09:36 UTC (rev 38043)
+++ trunk/common/plugins/org.jboss.tools.common/src/org/jboss/tools/common/refactoring/MarkerResolutionUtils.java 2012-01-23 19:57:46 UTC (rev 38044)
@@ -608,8 +608,6 @@
private ArrayList<TextEdit> edits = new ArrayList<TextEdit>();
private ArrayList<Region> regions = new ArrayList<Region>();
- //private int lastOffset = 0;
-
public EditSet(TextEdit edit){
addEdits(edit);
sort();
@@ -658,27 +656,15 @@
text = ((ReplaceEdit) edit).getText();
addings = text.length()-edit.getLength();
}else if(edit instanceof DeleteEdit){
-// text = NEW_LINE+current.substring(edit.getOffset(), edit.getOffset()+edit.getLength());
- //addings = -text.length();
-
int offset = edit.getOffset()+delta;
int length = edit.getLength();
- regions.add(new Region(offset, length));
- //lastOffset = offset+length;
-//
-// // select
-// String before = preview.substring(0, offset);
-// String after = preview.substring(offset);
-// preview = before+OPEN_DEL+text+CLOSE_DEL+after;
-//
-// delta += OPEN_DEL.length()+CLOSE_DEL.length()+addings;
-// text = null;
+ regions.add(new Region(offset, 0));
+ delta -= length;
}
if(text != null){
int offset = edit.getOffset()+delta;
int length = text.length();
regions.add(new Region(offset, length));
- //lastOffset = offset+length;
// select
String before = preview.substring(0, offset);
@@ -701,6 +687,9 @@
if(prevRegion != null){
lowLimit = prevRegion.offset+prevRegion.length;
}
+ if(position > preview.length()-1){
+ position = preview.length()-1;
+ }
while(position >= lowLimit){
char c = preview.charAt(position);
if(c == C_NEW_LINE){
@@ -751,7 +740,9 @@
if(index == 0 && region.offset != 0){
buffer.append(DOTS+NEW_LINE);
}
- buffer.append(preview.substring(region.offset, region.offset + region.length));
+ if(region.length > 0){
+ buffer.append(preview.substring(region.offset, region.offset + region.length));
+ }
if((region.offset + region.length) < (preview.length()-1)){
if(index == regions.size()-1){
buffer.append(NEW_LINE+DOTS);
12 years, 11 months
JBoss Tools SVN: r38043 - trunk/build/aggregate.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2012-01-23 14:09:36 -0500 (Mon, 23 Jan 2012)
New Revision: 38043
Modified:
trunk/build/aggregate/build.xml
Log:
this script no longer depends on ../build.xml, which should soon be deprecated. JBIDE-10690
Modified: trunk/build/aggregate/build.xml
===================================================================
--- trunk/build/aggregate/build.xml 2012-01-23 19:02:56 UTC (rev 38042)
+++ trunk/build/aggregate/build.xml 2012-01-23 19:09:36 UTC (rev 38043)
@@ -17,23 +17,6 @@
</condition>
<mkdir dir="${COMMON_TOOLS}" />
- <condition property="build.xml" value="/home/hudson/static_build_env/jbds/tools/sources/build/build.xml">
- <available file="/home/hudson/static_build_env/jbds/tools/sources/build/build.xml" type="file" />
- </condition>
- <condition property="build.xml" value="${basedir}/../build/build.xml">
- <available file="${basedir}/../build/build.xml" type="file" />
- </condition>
- <condition property="build.xml" value="${basedir}/../build.xml">
- <available file="${basedir}/../build.xml" type="file" />
- </condition>
- <condition property="build.xml" value="${basedir}/../../build/build.xml">
- <available file="${basedir}/../../build/build.xml" type="file" />
- </condition>
- <condition property="build.xml" value="${basedir}/../../build.xml">
- <available file="${basedir}/../../build.xml" type="file" />
- </condition>
- <!-- if can't calculate where build/build.xml is located, must pass in path from parent when calling this script -->
-
<property name="update.site.source.dir" value="${output.dir}/target/site" />
<!-- load properties from file -->
@@ -48,7 +31,8 @@
<property name="web.content.files" value="index.html, web/*.css, README*, *directory.xml, site.xml, site.properties" />
<target name="init">
- <ant antfile="${build.xml}" target="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" />
@@ -62,6 +46,16 @@
<target name="basic.build" description="JBT aggregate update site extra processing steps" depends="init,check.target,unpack.content.jar,remove.references,add.associate.sites,remove.uncategorized.category,add.web.content,pack.content.jar,pack.zip" />
<target name="custom.build" description="JBT aggregate update site extra processing steps" depends="basic.build,collect.zips,collect.metadata,create.summary.file" />
+ <target name="get.ant-contrib" unless="ant-contrib.jar.exists">
+ <property name="ANTCONTRIB_MIRROR" value="http://downloads.sourceforge.net/ant-contrib/" />
+ <get usetimestamp="true" dest="${COMMON_TOOLS}/ant-contrib-1.0b2-bin.zip" src="${ANTCONTRIB_MIRROR}/ant-contrib-1.0b2-bin.zip" />
+ <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.saxon" unless="saxon.jar.exists">
<!-- or use http://downloads.sourceforge.net/saxon/saxonhe9-3-0-4j.zip ? -->
<property name="SAXON_MIRROR" value="http://downloads.sourceforge.net/project/saxon/Saxon-HE/9.3/saxonhe9-3-0-..." />
12 years, 11 months
JBoss Tools SVN: r38042 - trunk/build/aggregate/soa-site.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2012-01-23 14:02:56 -0500 (Mon, 23 Jan 2012)
New Revision: 38042
Modified:
trunk/build/aggregate/soa-site/index.html
Log:
regen index
Modified: trunk/build/aggregate/soa-site/index.html
===================================================================
--- trunk/build/aggregate/soa-site/index.html 2012-01-23 19:02:48 UTC (rev 38041)
+++ trunk/build/aggregate/soa-site/index.html 2012-01-23 19:02:56 UTC (rev 38042)
@@ -30,7 +30,7 @@
<tr class="light-row" style="height: 30px">
<td class="bodyText">
<p class="bodyText">This is the <b>Nightly Build</b>
- Update Site for JBoss Tools - SOA Tooling.
+ Update Site for JBoss Tools - SOA Tooling.
<blockquote style="border: 1px dashed #1778be; padding: 2px">
<ol>
<li>To <a class="link"
@@ -63,22 +63,6 @@
</blockquote>
</td>
</tr>
-
- <!--
- <tr class="dark-row" style="height: 90px">
- <td class="bodyText">
- <p class="bodyText"><b class="bodyText" style="color: red;">NOTE:</b>
-Some features (such as BIRT, Maven, or GWT) require additional third-party prerequisites not available from Eclipse.org or JBoss.org. These can be installed from the following composite update site mirror, which should be added automatically when you add the JBoss Tools update site to your Eclipse's list of Available Software Sites. To verify which sites are enabled, open <code><strong>Window > Preferences > Install/Update > Available Software Sites</strong></code>. To add sites, Click the <code><strong>Add...</strong></code> button, then right-click the link(s) below, copy the link(s), and paste them into Eclipse one by one as needed.
- </p>
-
- <ul>
- <li><a href="http://download.jboss.org/jbosstools/updates/indigo/SR1/">JBoss Tools Requirements - Composite Mirror - Indigo SR1</a></li>
- <li><a href="http://download.jboss.org/jbosstools/updates/development/indigo/">JBoss Tools Core Updates - Stable Milestone - Indigo</a></li>
- </ul>
- </td>
- </tr>
- -->
-
</table>
</td>
<td>      </td>
@@ -96,24 +80,22 @@
</th>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.savara.tools.feature_2.0.0.v20111029-0232-H268-M5.jar" style="font-size:x-small">org.jboss.savara.tools.feature</a></td>
- <td><span style="font-size:x-small">2.0.0.v20111029-0232-H268-M5</span></td>
+ <td class="rowLine"><a href="features/org.jboss.savara.tools.feature_2.0.0.v20120123-1527-H349-M6.jar" style="font-size:x-small">org.jboss.savara.tools.feature</a></td>
+ <td><span style="font-size:x-small">2.0.0.v20120123-1527-H349-M6</span></td>
<td><span style="font-size:x-small">
|
SOATools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.esb.feature_1.5.0.v20111031-1835-H539-Beta1.jar" style="font-size:x-small">org.jboss.tools.esb.feature</a></td>
- <td><span style="font-size:x-small">1.5.0.v20111031-1835-H539-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.bpel.feature_1.1.0.v20120123-1508-H623-Beta1.jar" style="font-size:x-small">org.jboss.tools.bpel.feature</a></td>
+ <td><span style="font-size:x-small">1.1.0.v20120123-1508-H623-Beta1</span></td>
<td><span style="font-size:x-small">
|
- AbridgedTools</span><span style="font-size:x-small">
- |
SOATools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.jbpm.common.feature_4.4.0.v20111029-0927-H494-Beta1.jar" style="font-size:x-small">org.jboss.tools.jbpm.common.feature</a></td>
- <td><span style="font-size:x-small">4.4.0.v20111029-0927-H494-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.esb.feature_1.5.0.v20120116-0924-H663-Beta1.jar" style="font-size:x-small">org.jboss.tools.esb.feature</a></td>
+ <td><span style="font-size:x-small">1.5.0.v20120116-0924-H663-Beta1</span></td>
<td><span style="font-size:x-small">
|
AbridgedTools</span><span style="font-size:x-small">
@@ -121,8 +103,8 @@
SOATools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.jbpm.convert.feature_1.0.0.v20111029-0927-H494-Beta1.jar" style="font-size:x-small">org.jboss.tools.jbpm.convert.feature</a></td>
- <td><span style="font-size:x-small">1.0.0.v20111029-0927-H494-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.jbpm.common.feature_4.4.0.v20120123-1518-H608-Beta1.jar" style="font-size:x-small">org.jboss.tools.jbpm.common.feature</a></td>
+ <td><span style="font-size:x-small">4.4.0.v20120123-1518-H608-Beta1</span></td>
<td><span style="font-size:x-small">
|
AbridgedTools</span><span style="font-size:x-small">
@@ -130,8 +112,8 @@
SOATools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.jbpm3.feature_3.2.1.v20111029-0927-H494-Beta1.jar" style="font-size:x-small">org.jboss.tools.jbpm3.feature</a></td>
- <td><span style="font-size:x-small">3.2.1.v20111029-0927-H494-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.jbpm.convert.feature_1.0.0.v20120123-1518-H608-Beta1.jar" style="font-size:x-small">org.jboss.tools.jbpm.convert.feature</a></td>
+ <td><span style="font-size:x-small">1.0.0.v20120123-1518-H608-Beta1</span></td>
<td><span style="font-size:x-small">
|
AbridgedTools</span><span style="font-size:x-small">
@@ -139,8 +121,8 @@
SOATools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.jbpm4.feature_4.0.0.v20111029-0927-H494-Beta1.jar" style="font-size:x-small">org.jboss.tools.jbpm4.feature</a></td>
- <td><span style="font-size:x-small">4.0.0.v20111029-0927-H494-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.jbpm3.feature_3.2.1.v20120123-1518-H608-Beta1.jar" style="font-size:x-small">org.jboss.tools.jbpm3.feature</a></td>
+ <td><span style="font-size:x-small">3.2.1.v20120123-1518-H608-Beta1</span></td>
<td><span style="font-size:x-small">
|
AbridgedTools</span><span style="font-size:x-small">
@@ -148,54 +130,63 @@
SOATools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.modeshape.rest.feature_1.1.0.v20111031-2004-H421-Beta1.jar" style="font-size:x-small">org.jboss.tools.modeshape.rest.feature</a></td>
- <td><span style="font-size:x-small">1.1.0.v20111031-2004-H421-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.jbpm4.feature_4.0.0.v20120123-1518-H608-Beta1.jar" style="font-size:x-small">org.jboss.tools.jbpm4.feature</a></td>
+ <td><span style="font-size:x-small">4.0.0.v20120123-1518-H608-Beta1</span></td>
<td><span style="font-size:x-small">
|
AbridgedTools</span><span style="font-size:x-small">
|
- GeneralTools</span></td>
+ SOATools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.runtime.core.feature_1.3.0.v20111029-1910-H464-Beta1.jar" style="font-size:x-small">org.jboss.tools.runtime.core.feature</a></td>
- <td><span style="font-size:x-small">1.3.0.v20111029-1910-H464-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.modeshape.rest.feature_1.1.0.v20120123-1514-H542-Beta1.jar" style="font-size:x-small">org.jboss.tools.modeshape.rest.feature</a></td>
+ <td><span style="font-size:x-small">1.1.0.v20120123-1514-H542-Beta1</span></td>
<td><span style="font-size:x-small">
|
- AbridgedTools</span></td>
+ AbridgedTools</span><span style="font-size:x-small">
+ |
+ GeneralTools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.runtime.drools.detector.feature_1.3.0.v20111029-1910-H464-Beta1.jar" style="font-size:x-small">org.jboss.tools.runtime.drools.detector.feature</a></td>
- <td><span style="font-size:x-small">1.3.0.v20111029-1910-H464-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.runtime.core.feature_1.3.0.v20120123-0217-H541-Beta1.jar" style="font-size:x-small">org.jboss.tools.runtime.core.feature</a></td>
+ <td><span style="font-size:x-small">1.3.0.v20120123-0217-H541-Beta1</span></td>
<td><span style="font-size:x-small">
|
AbridgedTools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.runtime.esb.detector.feature_1.3.0.v20111029-1910-H464-Beta1.jar" style="font-size:x-small">org.jboss.tools.runtime.esb.detector.feature</a></td>
- <td><span style="font-size:x-small">1.3.0.v20111029-1910-H464-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.runtime.drools.detector.feature_1.3.0.v20120123-0217-H541-Beta1.jar" style="font-size:x-small">org.jboss.tools.runtime.drools.detector.feature</a></td>
+ <td><span style="font-size:x-small">1.3.0.v20120123-0217-H541-Beta1</span></td>
<td><span style="font-size:x-small">
|
AbridgedTools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.runtime.feature_1.3.0.v20111029-1910-H464-Beta1.jar" style="font-size:x-small">org.jboss.tools.runtime.feature</a></td>
- <td><span style="font-size:x-small">1.3.0.v20111029-1910-H464-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.runtime.esb.detector.feature_1.3.0.v20120123-0217-H541-Beta1.jar" style="font-size:x-small">org.jboss.tools.runtime.esb.detector.feature</a></td>
+ <td><span style="font-size:x-small">1.3.0.v20120123-0217-H541-Beta1</span></td>
<td><span style="font-size:x-small">
|
AbridgedTools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.runtime.jbpm.detector.feature_1.3.0.v20111029-1910-H464-Beta1.jar" style="font-size:x-small">org.jboss.tools.runtime.jbpm.detector.feature</a></td>
- <td><span style="font-size:x-small">1.3.0.v20111029-1910-H464-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.runtime.feature_1.3.0.v20120123-0217-H541-Beta1.jar" style="font-size:x-small">org.jboss.tools.runtime.feature</a></td>
+ <td><span style="font-size:x-small">1.3.0.v20120123-0217-H541-Beta1</span></td>
<td><span style="font-size:x-small">
|
AbridgedTools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.jboss.tools.smooks.feature_1.3.0.v20111029-0922-H479-Beta1.jar" style="font-size:x-small">org.jboss.tools.smooks.feature</a></td>
- <td><span style="font-size:x-small">1.3.0.v20111029-0922-H479-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.jboss.tools.runtime.jbpm.detector.feature_1.3.0.v20120123-0217-H541-Beta1.jar" style="font-size:x-small">org.jboss.tools.runtime.jbpm.detector.feature</a></td>
+ <td><span style="font-size:x-small">1.3.0.v20120123-0217-H541-Beta1</span></td>
<td><span style="font-size:x-small">
|
+ AbridgedTools</span></td>
+ </tr>
+ <tr style="background-color:
							#FFFFFF
						">
+ <td class="rowLine"><a href="features/org.jboss.tools.smooks.feature_1.3.0.v20120123-1728-H606-Beta1.jar" style="font-size:x-small">org.jboss.tools.smooks.feature</a></td>
+ <td><span style="font-size:x-small">1.3.0.v20120123-1728-H606-Beta1</span></td>
+ <td><span style="font-size:x-small">
+ |
AbridgedTools</span><span style="font-size:x-small">
|
SOATools</span><span style="font-size:x-small">
@@ -204,9 +195,9 @@
|
GeneralTools</span></td>
</tr>
- <tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.jboss.tools.usage.feature_1.1.0.v20111031-1957-H438-Beta1.jar" style="font-size:x-small">org.jboss.tools.usage.feature</a></td>
- <td><span style="font-size:x-small">1.1.0.v20111031-1957-H438-Beta1</span></td>
+ <tr style="background-color:
							#EEEEEE
						">
+ <td class="rowLine"><a href="features/org.jboss.tools.usage.feature_1.1.0.v20120123-1454-H532-Beta1.jar" style="font-size:x-small">org.jboss.tools.usage.feature</a></td>
+ <td><span style="font-size:x-small">1.1.0.v20120123-1454-H532-Beta1</span></td>
<td><span style="font-size:x-small">
|
AbridgedTools</span></td>
@@ -249,40 +240,49 @@
SOATools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.pi4soa.core.feature_3.1.1.v20111029-0151-H169-Beta1.jar" style="font-size:x-small">org.pi4soa.core.feature</a></td>
- <td><span style="font-size:x-small">3.1.1.v20111029-0151-H169-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.pi4soa.core.feature_3.1.2.v20120123-1450-H216-Beta1.jar" style="font-size:x-small">org.pi4soa.core.feature</a></td>
+ <td><span style="font-size:x-small">3.1.2.v20120123-1450-H216-Beta1</span></td>
<td><span style="font-size:x-small">
|
SOATools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.savara.tools.feature_2.0.0.v20111029-0232-H268-M5.jar" style="font-size:x-small">org.savara.tools.feature</a></td>
- <td><span style="font-size:x-small">2.0.0.v20111029-0232-H268-M5</span></td>
+ <td class="rowLine"><a href="features/org.savara.tools.feature_2.0.0.v20120123-1527-H349-M6.jar" style="font-size:x-small">org.savara.tools.feature</a></td>
+ <td><span style="font-size:x-small">2.0.0.v20120123-1527-H349-M6</span></td>
<td><span style="font-size:x-small">
|
SOATools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.teiid.datatools.connectivity.feature_7.6.0.v20111031-2008-H748-Beta1.jar" style="font-size:x-small">org.teiid.datatools.connectivity.feature</a></td>
- <td><span style="font-size:x-small">7.6.0.v20111031-2008-H748-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.switchyard.tools.feature_0.4.0.v20120118-1940-H46-CI.jar" style="font-size:x-small">org.switchyard.tools.feature</a></td>
+ <td><span style="font-size:x-small">0.4.0.v20120118-1940-H46-CI</span></td>
<td><span style="font-size:x-small">
|
- DataTools</span></td>
+ AbridgedTools</span><span style="font-size:x-small">
+ |
+ SOATools</span></td>
</tr>
<tr style="background-color:
							#EEEEEE
						">
- <td class="rowLine"><a href="features/org.teiid.designer.feature_7.6.0.v20111031-2008-H748-Beta1.jar" style="font-size:x-small">org.teiid.designer.feature</a></td>
- <td><span style="font-size:x-small">7.6.0.v20111031-2008-H748-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.teiid.datatools.connectivity.feature_7.7.0.v20120123-1546-H901-Beta1.jar" style="font-size:x-small">org.teiid.datatools.connectivity.feature</a></td>
+ <td><span style="font-size:x-small">7.7.0.v20120123-1546-H901-Beta1</span></td>
<td><span style="font-size:x-small">
|
DataTools</span></td>
</tr>
<tr style="background-color:
							#FFFFFF
						">
- <td class="rowLine"><a href="features/org.teiid.designer.runtime.feature_7.6.0.v20111031-2008-H748-Beta1.jar" style="font-size:x-small">org.teiid.designer.runtime.feature</a></td>
- <td><span style="font-size:x-small">7.6.0.v20111031-2008-H748-Beta1</span></td>
+ <td class="rowLine"><a href="features/org.teiid.designer.feature_7.7.0.v20120123-1546-H901-Beta1.jar" style="font-size:x-small">org.teiid.designer.feature</a></td>
+ <td><span style="font-size:x-small">7.7.0.v20120123-1546-H901-Beta1</span></td>
<td><span style="font-size:x-small">
|
DataTools</span></td>
</tr>
+ <tr style="background-color:
							#EEEEEE
						">
+ <td class="rowLine"><a href="features/org.teiid.designer.runtime.feature_7.7.0.v20120123-1546-H901-Beta1.jar" style="font-size:x-small">org.teiid.designer.runtime.feature</a></td>
+ <td><span style="font-size:x-small">7.7.0.v20120123-1546-H901-Beta1</span></td>
+ <td><span style="font-size:x-small">
+ |
+ DataTools</span></td>
+ </tr>
<tr style="background-color:#DDDDDD">
<th colspan="1" style="font-size:small">Metadata</th>
<th colspan="1" style="font-size:small"></th>
@@ -299,7 +299,11 @@
<a href="plugins/" style="font-size:x-small">plugins</a>
::
<a href="features/" style="font-size:x-small">features</a></td>
- <td class="rowLine" colspan="1"></td>
+ <td class="rowLine" colspan="1">
+
+ :: <a href="site.properties" style="font-size:x-small">site.properties</a>
+
+ </td>
</tr>
</table><br xmlns="http://www.w3.org/1999/xhtml" xmlns:xalan="http://xml.apache.org/xalan"></br>
</td>
12 years, 11 months
JBoss Tools SVN: r38039 - in trunk/build: parent and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2012-01-23 14:02:29 -0500 (Mon, 23 Jan 2012)
New Revision: 38039
Modified:
trunk/build/aggregate/soa-site/pom.xml
trunk/build/parent/pom.xml
Log:
JBIDE-10671 now that we have a separate SOA Tooling composite staging site, use that instead
Modified: trunk/build/aggregate/soa-site/pom.xml
===================================================================
--- trunk/build/aggregate/soa-site/pom.xml 2012-01-23 18:40:03 UTC (rev 38038)
+++ trunk/build/aggregate/soa-site/pom.xml 2012-01-23 19:02:29 UTC (rev 38039)
@@ -83,6 +83,18 @@
<repositories>
<repository>
+ <id>jbosstools-nightly-staging-composite-soa-tooling</id>
+ <url>${jbosstools-nightly-staging-composite-soa-tooling}</url>
+ <layout>p2</layout>
+ <snapshots>
+ <enabled>true</enabled>
+ </snapshots>
+ <releases>
+ <enabled>true</enabled>
+ </releases>
+ </repository>
+ <!-- JBIDE-10670 - TODO: instead of upstream staging bits, use ${jbosstools-nightly} ? -->
+ <repository>
<id>jbosstools-nightly-staging-composite</id>
<url>${jbosstools-nightly-staging-composite}</url>
<layout>p2</layout>
Modified: trunk/build/parent/pom.xml
===================================================================
--- trunk/build/parent/pom.xml 2012-01-23 18:40:03 UTC (rev 38038)
+++ trunk/build/parent/pom.xml 2012-01-23 19:02:29 UTC (rev 38039)
@@ -42,8 +42,11 @@
<!-- 2a. URL of latest JBT nightly staging composite site (all the components
in once place) -->
<!-- for trunk use _composite_/trunk; for 3.3_stable_branch, use _composite_/3.3.indigo -->
- <jbosstools-nightly-staging-composite>http://download.jboss.org/jbosstools/builds/staging/_composite_/trunk/</jbosstools-nightly-staging-composite>
+ <jbosstools-nightly-staging-composite>http://download.jboss.org/jbosstools/builds/staging/_composite_/core/trunk/</jbosstools-nightly-staging-composite>
+ <!-- this site is not enabled by default as SOA Tooling is a downstream project (sorta). -->
+ <jbosstools-nightly-staging-composite-soa-tooling>http://download.jboss.org/jbosstools/builds/staging/_composite_/soa-tooli...</jbosstools-nightly-staging-composite>
+
<!-- 2b. or use -Plocal.composite -Dlocal.composite=file:///path/to/mirror/of/composite/staging/site/ -->
<!-- for trunk use _composite_/trunk; for 3.3_stable_branch, use _composite_/3.3.indigo -->
<local.composite>file:///home/hudson/static_build_env/jbds/builds/staging/_composite_/trunk/</local.composite>
12 years, 11 months
JBoss Tools SVN: r38037 - in trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-tooling: trunk and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2012-01-23 13:32:06 -0500 (Mon, 23 Jan 2012)
New Revision: 38037
Modified:
trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-toolin...
trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-toolin...
trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-toolin...
trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-toolin...
Log:
fix path to SwitchYard bits
Modified: trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-toolin...
===================================================================
--- trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-toolin... 2012-01-23 18:30:47 UTC (rev 38036)
+++ trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-toolin... 2012-01-23 18:32:06 UTC (rev 38037)
@@ -7,7 +7,7 @@
get new time w/
date +%s000
-->
-<property name='p2.timestamp' value='1327337910000'/>
+<property name='p2.timestamp' value='1327343492000'/>
</properties>
<children size='9'>
@@ -20,7 +20,7 @@
<child location='../../../../staging/jbosstools-3.3_stable_branch.component--jbpm/all/repo/'/>
<child location='../../../../staging/jbosstools-3.3_stable_branch.component--modeshape/all/repo/'/>
<child location='http://download.jboss.org/savara/releases/updates/2.0.x/' />
-<child location='../../../../staging/SwitchYard-Tools/all/repo/'/>
+<child location='../../../../staging/SwitchYard-Tools/eclipse/'/>
<child location='../../../../staging/jbosstools-teiid-designer-7.6_stable_branch/all/repo/'/>
<!-- <child location='../../savara-tools-eclipse-master/all/repo/'/> -->
Modified: trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-toolin...
===================================================================
--- trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-toolin... 2012-01-23 18:30:47 UTC (rev 38036)
+++ trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-toolin... 2012-01-23 18:32:06 UTC (rev 38037)
@@ -7,7 +7,7 @@
get new time w/
date +%s000
-->
-<property name='p2.timestamp' value='1327337910000'/>
+<property name='p2.timestamp' value='1327343495000'/>
</properties>
<children size='9'>
@@ -20,7 +20,7 @@
<child location='../../../../staging/jbosstools-3.3_stable_branch.component--jbpm/all/repo/'/>
<child location='../../../../staging/jbosstools-3.3_stable_branch.component--modeshape/all/repo/'/>
<child location='http://download.jboss.org/savara/releases/updates/2.0.x/' />
-<child location='../../../../staging/SwitchYard-Tools/all/repo/'/>
+<child location='../../../../staging/SwitchYard-Tools/eclipse/'/>
<child location='../../../../staging/jbosstools-teiid-designer-7.6_stable_branch/all/repo/'/>
<!-- <child location='../../savara-tools-eclipse-master/all/repo/'/> -->
Modified: trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-toolin...
===================================================================
--- trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-toolin... 2012-01-23 18:30:47 UTC (rev 38036)
+++ trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-toolin... 2012-01-23 18:32:06 UTC (rev 38037)
@@ -7,7 +7,7 @@
get new time w/
date +%s000
-->
-<property name='p2.timestamp' value='1327337910000'/>
+<property name='p2.timestamp' value='1327343487000'/>
</properties>
<children size='18'>
@@ -20,7 +20,7 @@
<child location='../../../../staging/jbosstools-3.3_trunk.component--jbpm/all/repo/'/>
<child location='../../../../staging/jbosstools-3.3_trunk.component--modeshape/all/repo/'/>
<child location='../../../../staging/savara-tools-eclipse-master/all/repo/'/>
-<child location='../../../../staging/SwitchYard-Tools/all/repo/'/>
+<child location='../../../../staging/SwitchYard-Tools/eclipse/'/>
<child location='../../../../staging/jbosstools-teiid-designer_trunk/all/repo/'/>
<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--bpel/all/repo/'/>
@@ -30,7 +30,7 @@
<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--jbpm/all/repo/'/>
<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--modeshape/all/repo/'/>
<child location='../../../../staging.previous/savara-tools-eclipse-master/all/repo/'/>
-<child location='../../../../staging.previous/SwitchYard-Tools/all/repo/'/>
+<child location='../../../../staging.previous/SwitchYard-Tools/eclipse/'/>
<child location='../../../../staging.previous/jbosstools-teiid-designer_trunk/all/repo/'/>
<!-- <child location='http://download.jboss.org/savara/releases/updates/2.0.x/' /> -->
Modified: trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-toolin...
===================================================================
--- trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-toolin... 2012-01-23 18:30:47 UTC (rev 38036)
+++ trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-toolin... 2012-01-23 18:32:06 UTC (rev 38037)
@@ -7,7 +7,7 @@
get new time w/
date +%s000
-->
-<property name='p2.timestamp' value='1327337910000'/>
+<property name='p2.timestamp' value='1327343490000'/>
</properties>
<children size='18'>
@@ -20,7 +20,7 @@
<child location='../../../../staging/jbosstools-3.3_trunk.component--jbpm/all/repo/'/>
<child location='../../../../staging/jbosstools-3.3_trunk.component--modeshape/all/repo/'/>
<child location='../../../../staging/savara-tools-eclipse-master/all/repo/'/>
-<child location='../../../../staging/SwitchYard-Tools/all/repo/'/>
+<child location='../../../../staging/SwitchYard-Tools/eclipse/'/>
<child location='../../../../staging/jbosstools-teiid-designer_trunk/all/repo/'/>
<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--bpel/all/repo/'/>
@@ -30,7 +30,7 @@
<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--jbpm/all/repo/'/>
<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--modeshape/all/repo/'/>
<child location='../../../../staging.previous/savara-tools-eclipse-master/all/repo/'/>
-<child location='../../../../staging.previous/SwitchYard-Tools/all/repo/'/>
+<child location='../../../../staging.previous/SwitchYard-Tools/eclipse/'/>
<child location='../../../../staging.previous/jbosstools-teiid-designer_trunk/all/repo/'/>
<!-- <child location='http://download.jboss.org/savara/releases/updates/2.0.x/' /> -->
12 years, 11 months
JBoss Tools SVN: r38036 - in trunk: common/plugins/org.jboss.tools.common/src/org/jboss/tools/common/refactoring and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: dazarov
Date: 2012-01-23 13:30:47 -0500 (Mon, 23 Jan 2012)
New Revision: 38036
Modified:
trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/marker/DeleteAnnotationMarkerResolution.java
trunk/common/plugins/org.jboss.tools.common/src/org/jboss/tools/common/refactoring/MarkerResolutionUtils.java
Log:
Add the code which is supposed to be inserted by the Quick Fix into its description https://issues.jboss.org/browse/JBIDE-10636
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/marker/DeleteAnnotationMarkerResolution.java
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/marker/DeleteAnnotationMarkerResolution.java 2012-01-23 18:25:26 UTC (rev 38035)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.ui/src/org/jboss/tools/cdi/ui/marker/DeleteAnnotationMarkerResolution.java 2012-01-23 18:30:47 UTC (rev 38036)
@@ -21,6 +21,7 @@
import org.eclipse.jdt.core.IType;
import org.eclipse.jdt.core.JavaModelException;
import org.eclipse.jdt.core.refactoring.CompilationUnitChange;
+import org.eclipse.ltk.core.refactoring.TextChange;
import org.eclipse.osgi.util.NLS;
import org.eclipse.swt.graphics.Image;
import org.eclipse.text.edits.MultiTextEdit;
@@ -29,12 +30,15 @@
import org.jboss.tools.cdi.internal.core.refactoring.CDIMarkerResolutionUtils;
import org.jboss.tools.cdi.ui.CDIUIMessages;
import org.jboss.tools.cdi.ui.CDIUIPlugin;
+import org.jboss.tools.common.refactoring.MarkerResolutionUtils;
+import org.jboss.tools.common.ui.CommonUIPlugin;
public class DeleteAnnotationMarkerResolution implements
IMarkerResolution2 {
private IJavaElement element;
private String qualifiedName;
private String label;
+ private String description;
public DeleteAnnotationMarkerResolution(IJavaElement element, String qualifiedName){
this.element = element;
@@ -63,6 +67,7 @@
}
label = NLS.bind(CDIUIMessages.DELETE_ANNOTATION_MARKER_RESOLUTION_TITLE, new String[]{shortName, element.getElementName(), type});
+ description = getPreview();
}
@Override
@@ -76,15 +81,9 @@
ICompilationUnit original = CDIMarkerResolutionUtils.getJavaMember(element).getCompilationUnit();
ICompilationUnit compilationUnit = original.getWorkingCopy(new NullProgressMonitor());
- CompilationUnitChange change = new CompilationUnitChange("", compilationUnit);
+ CompilationUnitChange change = getChange(compilationUnit);
- MultiTextEdit edit = new MultiTextEdit();
-
- change.setEdit(edit);
-
- CDIMarkerResolutionUtils.deleteAnnotation(qualifiedName, compilationUnit, element, edit);
-
- if(edit.hasChildren()){
+ if(change.getEdit().hasChildren()){
change.perform(new NullProgressMonitor());
original.reconcile(ICompilationUnit.NO_AST, false, null, new NullProgressMonitor());
}
@@ -94,9 +93,43 @@
}
}
+ private CompilationUnitChange getChange(ICompilationUnit compilationUnit) throws JavaModelException{
+ CompilationUnitChange change = new CompilationUnitChange("", compilationUnit);
+
+ MultiTextEdit edit = new MultiTextEdit();
+
+ change.setEdit(edit);
+
+ CDIMarkerResolutionUtils.deleteAnnotation(qualifiedName, compilationUnit, element, edit);
+
+ return change;
+ }
+
+ private CompilationUnitChange getPreviewChange(){
+ try{
+ ICompilationUnit original = CDIMarkerResolutionUtils.getJavaMember(element).getCompilationUnit();
+
+ return getChange(original);
+ }catch(CoreException ex){
+ CDIUIPlugin.getDefault().logError(ex);
+ }
+ return null;
+ }
+
+ protected String getPreview(){
+ TextChange previewChange = getPreviewChange();
+
+ try {
+ return MarkerResolutionUtils.getPreview(previewChange);
+ } catch (CoreException e) {
+ CommonUIPlugin.getDefault().logError(e);
+ }
+ return label;
+ }
+
@Override
public String getDescription() {
- return label;
+ return description;
}
@Override
Modified: trunk/common/plugins/org.jboss.tools.common/src/org/jboss/tools/common/refactoring/MarkerResolutionUtils.java
===================================================================
--- trunk/common/plugins/org.jboss.tools.common/src/org/jboss/tools/common/refactoring/MarkerResolutionUtils.java 2012-01-23 18:25:26 UTC (rev 38035)
+++ trunk/common/plugins/org.jboss.tools.common/src/org/jboss/tools/common/refactoring/MarkerResolutionUtils.java 2012-01-23 18:30:47 UTC (rev 38036)
@@ -60,6 +60,8 @@
public static final String CLOSE_BRACE = "}"; //$NON-NLS-1$
public static final String OPEN_BOLD = "<b>"; //$NON-NLS-1$
public static final String CLOSE_BOLD = "</b>"; //$NON-NLS-1$
+ public static final String OPEN_DEL = "<del>"; //$NON-NLS-1$
+ public static final String CLOSE_DEL = "</del>"; //$NON-NLS-1$
public static final String NEW_LINE = "\n"; //$NON-NLS-1$
public static final String LINE_BREAK = "<br>"; //$NON-NLS-1$
@@ -584,13 +586,14 @@
return null;
String preview = previewChange.getPreviewContent(new NullProgressMonitor());
+ String current = previewChange.getCurrentContent(new NullProgressMonitor());
TextEdit edit = previewChange.getEdit();
EditSet editSet = new EditSet(edit);
// select
- preview = editSet.select(preview);
+ preview = editSet.select(preview, current);
// cut
preview = editSet.cut(preview);
@@ -605,7 +608,7 @@
private ArrayList<TextEdit> edits = new ArrayList<TextEdit>();
private ArrayList<Region> regions = new ArrayList<Region>();
- private int lastOffset = 0;
+ //private int lastOffset = 0;
public EditSet(TextEdit edit){
addEdits(edit);
@@ -620,21 +623,30 @@
}
private void sort(){
- }
-
- private int getFirstOffset(){
- if(edits.size() > 0){
- return edits.get(0).getOffset();
- }else{
- return 0;
+ if(edits.size() < 2){
+ return;
}
+ ArrayList<TextEdit> sorted = new ArrayList<TextEdit>();
+ int offset = 0;
+ int distance = 0;
+ int number = edits.size();
+ for(int i = 0; i < number; i++){
+ TextEdit edit = edits.get(0);
+ distance = edit.getOffset()-offset;
+ for(TextEdit e : edits){
+ if((e.getOffset()-offset) < distance){
+ distance = e.getOffset()-offset;
+ edit = e;
+ }
+ }
+ sorted.add(edit);
+ edits.remove(edit);
+ offset = edit.getOffset();
+ }
+ edits = sorted;
}
- private int getLastOffset(){
- return lastOffset;
- }
-
- public String select(String preview){
+ public String select(String preview, String current){
int delta = 0;
for(TextEdit edit : edits){
String text = null;
@@ -645,12 +657,28 @@
}else if(edit instanceof ReplaceEdit){
text = ((ReplaceEdit) edit).getText();
addings = text.length()-edit.getLength();
+ }else if(edit instanceof DeleteEdit){
+// text = NEW_LINE+current.substring(edit.getOffset(), edit.getOffset()+edit.getLength());
+ //addings = -text.length();
+
+ int offset = edit.getOffset()+delta;
+ int length = edit.getLength();
+ regions.add(new Region(offset, length));
+ //lastOffset = offset+length;
+//
+// // select
+// String before = preview.substring(0, offset);
+// String after = preview.substring(offset);
+// preview = before+OPEN_DEL+text+CLOSE_DEL+after;
+//
+// delta += OPEN_DEL.length()+CLOSE_DEL.length()+addings;
+// text = null;
}
if(text != null){
int offset = edit.getOffset()+delta;
int length = text.length();
regions.add(new Region(offset, length));
- lastOffset = offset+length;
+ //lastOffset = offset+length;
// select
String before = preview.substring(0, offset);
@@ -684,7 +712,7 @@
}
position--;
}
- if(prevRegion != null && position == prevRegion.offset+prevRegion.length){
+ if(prevRegion != null && position <= prevRegion.offset+prevRegion.length){
prevRegion.active = false;
int shift = region.offset - prevRegion.offset;
region.offset = prevRegion.offset;
12 years, 11 months
JBoss Tools SVN: r38035 - in trunk/download.jboss.org/jbosstools/builds/staging/_composite_: 3.3.indigo and 7 other directories.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2012-01-23 13:25:26 -0500 (Mon, 23 Jan 2012)
New Revision: 38035
Added:
trunk/download.jboss.org/jbosstools/builds/staging/_composite_/core/
trunk/download.jboss.org/jbosstools/builds/staging/_composite_/core/3.3.i...
trunk/download.jboss.org/jbosstools/builds/staging/_composite_/core/3.3.i...
trunk/download.jboss.org/jbosstools/builds/staging/_composite_/core/3.3.i...
trunk/download.jboss.org/jbosstools/builds/staging/_composite_/core/trunk/
trunk/download.jboss.org/jbosstools/builds/staging/_composite_/core/trunk...
trunk/download.jboss.org/jbosstools/builds/staging/_composite_/core/trunk...
trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-tooling/
trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-toolin...
trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-toolin...
trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-toolin...
trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-toolin...
trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-toolin...
trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-toolin...
Modified:
trunk/download.jboss.org/jbosstools/builds/staging/_composite_/3.3.indigo...
trunk/download.jboss.org/jbosstools/builds/staging/_composite_/3.3.indigo...
trunk/download.jboss.org/jbosstools/builds/staging/_composite_/trunk/comp...
trunk/download.jboss.org/jbosstools/builds/staging/_composite_/trunk/comp...
Log:
https://issues.jboss.org/browse/JBIDE-10671 split 2 _composite_/{trunk,3.3.indigo} sites into 4: _composite_/{core,soa-tooling}/{trunk,3.3.indigo}. Root sites composite the children and are marked deprecated so onld behaviour should be unchanged. Next, can point builds at only the child sites to make builds faster
Modified: trunk/download.jboss.org/jbosstools/builds/staging/_composite_/3.3.indigo...
===================================================================
--- trunk/download.jboss.org/jbosstools/builds/staging/_composite_/3.3.indigo... 2012-01-23 18:18:05 UTC (rev 38034)
+++ trunk/download.jboss.org/jbosstools/builds/staging/_composite_/3.3.indigo... 2012-01-23 18:25:26 UTC (rev 38035)
@@ -6,53 +6,14 @@
<!--
get new time w/
date +%s000
+
+ JBIDE-10671: This file is deprecated. See ../core/3.3.indigo/ and ../soa-tooling/3.3.indigo/
+
-->
-<property name='p2.timestamp' value='1319582202000'/>
+<property name='p2.timestamp' value='1327337910000'/>
</properties>
-<children size='35'>
-
-<child location='../../jbosstools-3.3_stable_branch.component--archives/all/repo/'/>
-<child location='../../jbosstools-3.3_stable_branch.component--as/all/repo/'/>
-<child location='../../jbosstools-3.3_stable_branch.component--birt/all/repo/'/>
-<child location='../../jbosstools-3.3_stable_branch.component--bpel/all/repo/'/>
-<child location='../../jbosstools-3.3_stable_branch.component--cdi/all/repo/'/>
-
-<child location='../../jbosstools-3.3_stable_branch.component--central/all/repo/'/>
-<child location='../../jbosstools-3.3_stable_branch.component--common/all/repo/'/>
-<child location='../../jbosstools-3.3_stable_branch.component--deltacloud/all/repo/'/>
-<child location='../../jbosstools-3.3_stable_branch.component--esb/all/repo/'/>
-<child location='../../jbosstools-3.3_stable_branch.component--examples/all/repo/'/>
-
-<child location='../../jbosstools-3.3_stable_branch.component--flow/all/repo/'/>
-<child location='../../jbosstools-3.3_stable_branch.component--forge/all/repo/'/>
-<child location='../../jbosstools-3.3_stable_branch.component--freemarker/all/repo/'/>
-<child location='../../jbosstools-3.3_stable_branch.component--gwt/all/repo/'/>
-<child location='../../jbosstools-3.3_stable_branch.component--hibernatetools/all/repo/'/>
-
-<child location='../../jbosstools-3.3_stable_branch.component--jbpm/all/repo/'/>
-<child location='../../jbosstools-3.3_stable_branch.component--jmx/all/repo/'/>
-<child location='../../jbosstools-3.3_stable_branch.component--jsf/all/repo/'/>
-<child location='../../jbosstools-3.3_stable_branch.component--jst/all/repo/'/>
-<child location='../../jbosstools-3.3_stable_branch.component--maven/all/repo/'/>
-
-<child location='../../jbosstools-3.3_stable_branch.component--modeshape/all/repo/'/>
-<child location='../../jbosstools-3.3_stable_branch.component--openshift/all/repo/'/>
-<child location='../../jbosstools-3.3_stable_branch.component--portlet/all/repo/'/>
-<child location='../../jbosstools-3.3_stable_branch.component--runtime/all/repo/'/>
-<child location='../../jbosstools-3.3_stable_branch.component--seam/all/repo/'/>
-
-<child location='../../jbosstools-3.3_stable_branch.component--smooks/all/repo/'/>
-<child location='../../jbosstools-3.3_stable_branch.component--struts/all/repo/'/>
-<child location='../../jbosstools-3.3_stable_branch.component--tests/all/repo/'/>
-<child location='../../jbosstools-3.3_stable_branch.component--usage/all/repo/'/>
-<child location='../../jbosstools-3.3_stable_branch.component--vpe/all/repo/'/>
-
-<child location='../../jbosstools-3.3_stable_branch.component--ws/all/repo/'/>
-<!-- <child location='../../savara-tools-eclipse-master/all/repo/'/> -->
-<child location='http://downloads.jboss.org/savara/releases/updates/2.0.x/' />
-<child location='../../jbosstools-teiid-designer-7.6_stable_branch/all/repo/'/>
-<child location='../../jbosstools-drools-5.2_stable_branch/all/repo/'/>
-<child location='../../xulrunner-1.9.2/all/repo/'/>
-
+<children size='2'>
+<child location='../core/3.3.indigo/'/>
+<child location='../soa-tooling/3.3.indigo/'/>
</children>
</repository>
Modified: trunk/download.jboss.org/jbosstools/builds/staging/_composite_/3.3.indigo...
===================================================================
--- trunk/download.jboss.org/jbosstools/builds/staging/_composite_/3.3.indigo... 2012-01-23 18:18:05 UTC (rev 38034)
+++ trunk/download.jboss.org/jbosstools/builds/staging/_composite_/3.3.indigo... 2012-01-23 18:25:26 UTC (rev 38035)
@@ -6,53 +6,14 @@
<!--
get new time w/
date +%s000
+
+ JBIDE-10671: This file is deprecated. See ../core/3.3.indigo/ and ../soa-tooling/3.3.indigo/
+
-->
-<property name='p2.timestamp' value='1319582202000'/>
+<property name='p2.timestamp' value='1327337910000'/>
</properties>
-<children size='35'>
-
-<child location='../../jbosstools-3.3_stable_branch.component--archives/all/repo/'/>
-<child location='../../jbosstools-3.3_stable_branch.component--as/all/repo/'/>
-<child location='../../jbosstools-3.3_stable_branch.component--birt/all/repo/'/>
-<child location='../../jbosstools-3.3_stable_branch.component--bpel/all/repo/'/>
-<child location='../../jbosstools-3.3_stable_branch.component--cdi/all/repo/'/>
-
-<child location='../../jbosstools-3.3_stable_branch.component--central/all/repo/'/>
-<child location='../../jbosstools-3.3_stable_branch.component--common/all/repo/'/>
-<child location='../../jbosstools-3.3_stable_branch.component--deltacloud/all/repo/'/>
-<child location='../../jbosstools-3.3_stable_branch.component--esb/all/repo/'/>
-<child location='../../jbosstools-3.3_stable_branch.component--examples/all/repo/'/>
-
-<child location='../../jbosstools-3.3_stable_branch.component--flow/all/repo/'/>
-<child location='../../jbosstools-3.3_stable_branch.component--forge/all/repo/'/>
-<child location='../../jbosstools-3.3_stable_branch.component--freemarker/all/repo/'/>
-<child location='../../jbosstools-3.3_stable_branch.component--gwt/all/repo/'/>
-<child location='../../jbosstools-3.3_stable_branch.component--hibernatetools/all/repo/'/>
-
-<child location='../../jbosstools-3.3_stable_branch.component--jbpm/all/repo/'/>
-<child location='../../jbosstools-3.3_stable_branch.component--jmx/all/repo/'/>
-<child location='../../jbosstools-3.3_stable_branch.component--jsf/all/repo/'/>
-<child location='../../jbosstools-3.3_stable_branch.component--jst/all/repo/'/>
-<child location='../../jbosstools-3.3_stable_branch.component--maven/all/repo/'/>
-
-<child location='../../jbosstools-3.3_stable_branch.component--modeshape/all/repo/'/>
-<child location='../../jbosstools-3.3_stable_branch.component--openshift/all/repo/'/>
-<child location='../../jbosstools-3.3_stable_branch.component--portlet/all/repo/'/>
-<child location='../../jbosstools-3.3_stable_branch.component--runtime/all/repo/'/>
-<child location='../../jbosstools-3.3_stable_branch.component--seam/all/repo/'/>
-
-<child location='../../jbosstools-3.3_stable_branch.component--smooks/all/repo/'/>
-<child location='../../jbosstools-3.3_stable_branch.component--struts/all/repo/'/>
-<child location='../../jbosstools-3.3_stable_branch.component--tests/all/repo/'/>
-<child location='../../jbosstools-3.3_stable_branch.component--usage/all/repo/'/>
-<child location='../../jbosstools-3.3_stable_branch.component--vpe/all/repo/'/>
-
-<child location='../../jbosstools-3.3_stable_branch.component--ws/all/repo/'/>
-<!-- <child location='../../savara-tools-eclipse-master/all/repo/'/> -->
-<child location='http://downloads.jboss.org/savara/releases/updates/2.0.x/' />
-<child location='../../jbosstools-teiid-designer-7.6_stable_branch/all/repo/'/>
-<child location='../../jbosstools-drools-5.2_stable_branch/all/repo/'/>
-<child location='../../xulrunner-1.9.2/all/repo/'/>
-
+<children size='2'>
+<child location='../core/3.3.indigo/'/>
+<child location='../soa-tooling/3.3.indigo/'/>
</children>
</repository>
Added: trunk/download.jboss.org/jbosstools/builds/staging/_composite_/core/3.3.i...
===================================================================
--- trunk/download.jboss.org/jbosstools/builds/staging/_composite_/core/3.3.i... (rev 0)
+++ trunk/download.jboss.org/jbosstools/builds/staging/_composite_/core/3.3.i... 2012-01-23 18:25:26 UTC (rev 38035)
@@ -0,0 +1,48 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<?compositeArtifactRepository version='1.0.0'?>
+<repository name='JBoss Tools - Core - Staging Repository' type='org.eclipse.equinox.internal.p2.artifact.repository.CompositeArtifactRepository' version='1.0.0'>
+<properties size='2'>
+<property name='p2.compressed' value='true'/>
+<!--
+ get new time w/
+ date +%s000
+-->
+<property name='p2.timestamp' value='1327337910000'/>
+</properties>
+<children size='28'>
+
+<!-- JBT Core: 28 x 1 = 28 -->
+
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--archives/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--as/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--birt/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--cdi/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--central/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--common/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--deltacloud/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--examples/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--forge/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--freemarker/all/repo/'/>
+
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--gwt/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--hibernatetools/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--jmx/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--jsf/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--jst/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--maven/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--openshift/all/repo/'/>
+<child location='../../../../staging/openshift-java-client-master/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--portlet/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--runtime/all/repo/'/>
+
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--seam/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--smooks/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--struts/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--tests/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--usage/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--vpe/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--ws/all/repo/'/>
+<child location='../../../../staging/xulrunner-1.9.2/all/repo/'/>
+
+</children>
+</repository>
Added: trunk/download.jboss.org/jbosstools/builds/staging/_composite_/core/3.3.i...
===================================================================
--- trunk/download.jboss.org/jbosstools/builds/staging/_composite_/core/3.3.i... (rev 0)
+++ trunk/download.jboss.org/jbosstools/builds/staging/_composite_/core/3.3.i... 2012-01-23 18:25:26 UTC (rev 38035)
@@ -0,0 +1,48 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<?compositeMetadataRepository version='1.0.0'?>
+<repository name='JBoss Tools - Core - Staging Repository' type='org.eclipse.equinox.internal.p2.metadata.repository.CompositeMetadataRepository' version='1.0.0'>
+<properties size='2'>
+<property name='p2.compressed' value='true'/>
+<!--
+ get new time w/
+ date +%s000
+-->
+<property name='p2.timestamp' value='1327337910000'/>
+</properties>
+<children size='28'>
+
+<!-- JBT Core: 28 x 1 = 28 -->
+
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--archives/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--as/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--birt/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--cdi/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--central/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--common/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--deltacloud/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--examples/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--forge/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--freemarker/all/repo/'/>
+
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--gwt/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--hibernatetools/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--jmx/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--jsf/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--jst/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--maven/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--openshift/all/repo/'/>
+<child location='../../../../staging/openshift-java-client-master/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--portlet/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--runtime/all/repo/'/>
+
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--seam/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--smooks/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--struts/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--tests/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--usage/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--vpe/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--ws/all/repo/'/>
+<child location='../../../../staging/xulrunner-1.9.2/all/repo/'/>
+
+</children>
+</repository>
Added: trunk/download.jboss.org/jbosstools/builds/staging/_composite_/core/trunk...
===================================================================
--- trunk/download.jboss.org/jbosstools/builds/staging/_composite_/core/trunk... (rev 0)
+++ trunk/download.jboss.org/jbosstools/builds/staging/_composite_/core/trunk... 2012-01-23 18:25:26 UTC (rev 38035)
@@ -0,0 +1,79 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<?compositeArtifactRepository version='1.0.0'?>
+<repository name='JBoss Tools - Core - Staging Repository' type='org.eclipse.equinox.internal.p2.artifact.repository.CompositeArtifactRepository' version='1.0.0'>
+<properties size='2'>
+<property name='p2.compressed' value='true'/>
+<!--
+ get new time w/
+ date +%s000
+-->
+<property name='p2.timestamp' value='1327337910000'/>
+</properties>
+<children size='56'>
+
+<!-- JBT Core: 28 x 2 = 56 -->
+
+<child location='../../../../staging/jbosstools-3.3_trunk.component--archives/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--as/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--birt/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--cdi/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--central/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--common/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--deltacloud/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--examples/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--forge/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--freemarker/all/repo/'/>
+
+<child location='../../../../staging/jbosstools-3.3_trunk.component--gwt/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--hibernatetools/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--jmx/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--jsf/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--jst/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--maven/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--openshift/all/repo/'/>
+<child location='../../../../staging/openshift-java-client-master/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--portlet/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--runtime/all/repo/'/>
+
+<child location='../../../../staging/jbosstools-3.3_trunk.component--seam/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--smooks/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--struts/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--tests/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--usage/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--vpe/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--ws/all/repo/'/>
+<child location='../../../../staging/xulrunner-1.9.2/all/repo/'/>
+
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--archives/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--as/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--birt/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--cdi/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--central/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--common/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--deltacloud/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--examples/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--forge/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--freemarker/all/repo/'/>
+
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--gwt/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--hibernatetools/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--jmx/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--jsf/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--jst/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--maven/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--openshift/all/repo/'/>
+<child location='../../../../staging.previous/openshift-java-client-master/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--portlet/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--runtime/all/repo/'/>
+
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--seam/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--smooks/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--struts/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--tests/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--usage/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--vpe/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--ws/all/repo/'/>
+<child location='../../../../staging.previous/xulrunner-1.9.2/all/repo/'/>
+
+</children>
+</repository>
Added: trunk/download.jboss.org/jbosstools/builds/staging/_composite_/core/trunk...
===================================================================
--- trunk/download.jboss.org/jbosstools/builds/staging/_composite_/core/trunk... (rev 0)
+++ trunk/download.jboss.org/jbosstools/builds/staging/_composite_/core/trunk... 2012-01-23 18:25:26 UTC (rev 38035)
@@ -0,0 +1,79 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<?compositeMetadataRepository version='1.0.0'?>
+<repository name='JBoss Tools - Core - Staging Repository' type='org.eclipse.equinox.internal.p2.metadata.repository.CompositeMetadataRepository' version='1.0.0'>
+<properties size='2'>
+<property name='p2.compressed' value='true'/>
+<!--
+ get new time w/
+ date +%s000
+-->
+<property name='p2.timestamp' value='1327337910000'/>
+</properties>
+<children size='56'>
+
+<!-- JBT Core: 28 x 2 = 56 -->
+
+<child location='../../../../staging/jbosstools-3.3_trunk.component--archives/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--as/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--birt/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--cdi/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--central/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--common/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--deltacloud/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--examples/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--forge/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--freemarker/all/repo/'/>
+
+<child location='../../../../staging/jbosstools-3.3_trunk.component--gwt/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--hibernatetools/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--jmx/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--jsf/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--jst/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--maven/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--openshift/all/repo/'/>
+<child location='../../../../staging/openshift-java-client-master/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--portlet/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--runtime/all/repo/'/>
+
+<child location='../../../../staging/jbosstools-3.3_trunk.component--seam/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--smooks/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--struts/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--tests/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--usage/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--vpe/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--ws/all/repo/'/>
+<child location='../../../../staging/xulrunner-1.9.2/all/repo/'/>
+
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--archives/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--as/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--birt/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--cdi/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--central/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--common/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--deltacloud/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--examples/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--forge/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--freemarker/all/repo/'/>
+
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--gwt/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--hibernatetools/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--jmx/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--jsf/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--jst/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--maven/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--openshift/all/repo/'/>
+<child location='../../../../staging.previous/openshift-java-client-master/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--portlet/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--runtime/all/repo/'/>
+
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--seam/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--smooks/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--struts/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--tests/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--usage/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--vpe/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--ws/all/repo/'/>
+<child location='../../../../staging.previous/xulrunner-1.9.2/all/repo/'/>
+
+</children>
+</repository>
Added: trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-toolin...
===================================================================
--- trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-toolin... (rev 0)
+++ trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-toolin... 2012-01-23 18:25:26 UTC (rev 38035)
@@ -0,0 +1,29 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<?compositeArtifactRepository version='1.0.0'?>
+<repository name='JBoss Tools - SOA Tooling - Staging Repository' type='org.eclipse.equinox.internal.p2.artifact.repository.CompositeArtifactRepository' version='1.0.0'>
+<properties size='2'>
+<property name='p2.compressed' value='true'/>
+<!--
+ get new time w/
+ date +%s000
+-->
+<property name='p2.timestamp' value='1327337910000'/>
+</properties>
+<children size='9'>
+
+<!-- SOA Tooling : 9 x 1 = 9 -->
+
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--bpel/all/repo/'/>
+<child location='../../../../staging/jbosstools-drools-5.2_stable_branch/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--esb/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--flow/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--jbpm/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--modeshape/all/repo/'/>
+<child location='http://download.jboss.org/savara/releases/updates/2.0.x/' />
+<child location='../../../../staging/SwitchYard-Tools/all/repo/'/>
+<child location='../../../../staging/jbosstools-teiid-designer-7.6_stable_branch/all/repo/'/>
+
+<!-- <child location='../../savara-tools-eclipse-master/all/repo/'/> -->
+
+</children>
+</repository>
Added: trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-toolin...
===================================================================
--- trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-toolin... (rev 0)
+++ trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-toolin... 2012-01-23 18:25:26 UTC (rev 38035)
@@ -0,0 +1,29 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<?compositeMetadataRepository version='1.0.0'?>
+<repository name='JBoss Tools - SOA Tooling - Staging Repository' type='org.eclipse.equinox.internal.p2.metadata.repository.CompositeMetadataRepository' version='1.0.0'>
+<properties size='2'>
+<property name='p2.compressed' value='true'/>
+<!--
+ get new time w/
+ date +%s000
+-->
+<property name='p2.timestamp' value='1327337910000'/>
+</properties>
+<children size='9'>
+
+<!-- SOA Tooling : 9 x 1 = 9 -->
+
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--bpel/all/repo/'/>
+<child location='../../../../staging/jbosstools-drools-5.2_stable_branch/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--esb/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--flow/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--jbpm/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--modeshape/all/repo/'/>
+<child location='http://download.jboss.org/savara/releases/updates/2.0.x/' />
+<child location='../../../../staging/SwitchYard-Tools/all/repo/'/>
+<child location='../../../../staging/jbosstools-teiid-designer-7.6_stable_branch/all/repo/'/>
+
+<!-- <child location='../../savara-tools-eclipse-master/all/repo/'/> -->
+
+</children>
+</repository>
Added: trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-toolin...
===================================================================
--- trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-toolin... (rev 0)
+++ trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-toolin... 2012-01-23 18:25:26 UTC (rev 38035)
@@ -0,0 +1,39 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<?compositeArtifactRepository version='1.0.0'?>
+<repository name='JBoss Tools - SOA Tooling - Staging Repository' type='org.eclipse.equinox.internal.p2.artifact.repository.CompositeArtifactRepository' version='1.0.0'>
+<properties size='2'>
+<property name='p2.compressed' value='true'/>
+<!--
+ get new time w/
+ date +%s000
+-->
+<property name='p2.timestamp' value='1327337910000'/>
+</properties>
+<children size='18'>
+
+<!-- SOA Tooling : 9 x 2 = 18 -->
+
+<child location='../../../../staging/jbosstools-3.3_trunk.component--bpel/all/repo/'/>
+<child location='../../../../staging/jbosstools-drools-5.2_trunk/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--esb/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--flow/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--jbpm/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--modeshape/all/repo/'/>
+<child location='../../../../staging/savara-tools-eclipse-master/all/repo/'/>
+<child location='../../../../staging/SwitchYard-Tools/all/repo/'/>
+<child location='../../../../staging/jbosstools-teiid-designer_trunk/all/repo/'/>
+
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--bpel/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--esb/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-drools-5.2_trunk/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--flow/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--jbpm/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--modeshape/all/repo/'/>
+<child location='../../../../staging.previous/savara-tools-eclipse-master/all/repo/'/>
+<child location='../../../../staging.previous/SwitchYard-Tools/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-teiid-designer_trunk/all/repo/'/>
+
+<!-- <child location='http://download.jboss.org/savara/releases/updates/2.0.x/' /> -->
+
+</children>
+</repository>
Added: trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-toolin...
===================================================================
--- trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-toolin... (rev 0)
+++ trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-toolin... 2012-01-23 18:25:26 UTC (rev 38035)
@@ -0,0 +1,39 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<?compositeMetadataRepository version='1.0.0'?>
+<repository name='JBoss Tools - SOA Tooling - Staging Repository' type='org.eclipse.equinox.internal.p2.metadata.repository.CompositeMetadataRepository' version='1.0.0'>
+<properties size='2'>
+<property name='p2.compressed' value='true'/>
+<!--
+ get new time w/
+ date +%s000
+-->
+<property name='p2.timestamp' value='1327337910000'/>
+</properties>
+<children size='18'>
+
+<!-- SOA Tooling : 9 x 2 = 18 -->
+
+<child location='../../../../staging/jbosstools-3.3_trunk.component--bpel/all/repo/'/>
+<child location='../../../../staging/jbosstools-drools-5.2_trunk/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--esb/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--flow/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--jbpm/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--modeshape/all/repo/'/>
+<child location='../../../../staging/savara-tools-eclipse-master/all/repo/'/>
+<child location='../../../../staging/SwitchYard-Tools/all/repo/'/>
+<child location='../../../../staging/jbosstools-teiid-designer_trunk/all/repo/'/>
+
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--bpel/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--esb/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-drools-5.2_trunk/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--flow/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--jbpm/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--modeshape/all/repo/'/>
+<child location='../../../../staging.previous/savara-tools-eclipse-master/all/repo/'/>
+<child location='../../../../staging.previous/SwitchYard-Tools/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-teiid-designer_trunk/all/repo/'/>
+
+<!-- <child location='http://download.jboss.org/savara/releases/updates/2.0.x/' /> -->
+
+</children>
+</repository>
Modified: trunk/download.jboss.org/jbosstools/builds/staging/_composite_/trunk/comp...
===================================================================
--- trunk/download.jboss.org/jbosstools/builds/staging/_composite_/trunk/comp... 2012-01-23 18:18:05 UTC (rev 38034)
+++ trunk/download.jboss.org/jbosstools/builds/staging/_composite_/trunk/comp... 2012-01-23 18:25:26 UTC (rev 38035)
@@ -6,101 +6,14 @@
<!--
get new time w/
date +%s000
--->
-<property name='p2.timestamp' value='1319582229000'/>
-</properties>
-<children size='70'>
-<child location='../../../staging/jbosstools-3.3_trunk.component--archives/all/repo/'/>
-<child location='../../../staging/jbosstools-3.3_trunk.component--as/all/repo/'/>
-<child location='../../../staging/jbosstools-3.3_trunk.component--birt/all/repo/'/>
-<child location='../../../staging/jbosstools-3.3_trunk.component--bpel/all/repo/'/>
-<child location='../../../staging/jbosstools-3.3_trunk.component--cdi/all/repo/'/>
+ JBIDE-10671: This file is deprecated. See ../core/trunk/ and ../soa-tooling/trunk/
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--archives/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--as/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--birt/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--bpel/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--cdi/all/repo/'/>
-
-<child location='../../../staging/jbosstools-3.3_trunk.component--central/all/repo/'/>
-<child location='../../../staging/jbosstools-3.3_trunk.component--common/all/repo/'/>
-<child location='../../../staging/jbosstools-3.3_trunk.component--deltacloud/all/repo/'/>
-<child location='../../../staging/jbosstools-3.3_trunk.component--esb/all/repo/'/>
-<child location='../../../staging/SwitchYard-Tools/all/repo/'/>
-<child location='../../../staging/jbosstools-3.3_trunk.component--examples/all/repo/'/>
-
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--central/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--common/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--deltacloud/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--esb/all/repo/'/>
-<child location='../../../staging.previous/SwitchYard-Tools/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--examples/all/repo/'/>
-
-<child location='../../../staging/jbosstools-3.3_trunk.component--flow/all/repo/'/>
-<child location='../../../staging/jbosstools-3.3_trunk.component--forge/all/repo/'/>
-<child location='../../../staging/jbosstools-3.3_trunk.component--freemarker/all/repo/'/>
-<child location='../../../staging/jbosstools-3.3_trunk.component--gwt/all/repo/'/>
-<child location='../../../staging/jbosstools-3.3_trunk.component--hibernatetools/all/repo/'/>
-
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--flow/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--forge/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--freemarker/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--gwt/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--hibernatetools/all/repo/'/>
-
-<child location='../../../staging/jbosstools-3.3_trunk.component--jbpm/all/repo/'/>
-<child location='../../../staging/jbosstools-3.3_trunk.component--jmx/all/repo/'/>
-<child location='../../../staging/jbosstools-3.3_trunk.component--jsf/all/repo/'/>
-<child location='../../../staging/jbosstools-3.3_trunk.component--jst/all/repo/'/>
-<child location='../../../staging/jbosstools-3.3_trunk.component--maven/all/repo/'/>
-
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--jbpm/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--jmx/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--jsf/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--jst/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--maven/all/repo/'/>
-
-<child location='../../../staging/jbosstools-3.3_trunk.component--modeshape/all/repo/'/>
-<child location='../../../staging/jbosstools-3.3_trunk.component--openshift/all/repo/'/>
-<child location='../../../staging/jbosstools-3.3_trunk.component--portlet/all/repo/'/>
-<child location='../../../staging/jbosstools-3.3_trunk.component--runtime/all/repo/'/>
-<child location='../../../staging/jbosstools-3.3_trunk.component--seam/all/repo/'/>
-
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--modeshape/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--openshift/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--portlet/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--runtime/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--seam/all/repo/'/>
-
-<child location='../../../staging/jbosstools-3.3_trunk.component--smooks/all/repo/'/>
-<child location='../../../staging/jbosstools-3.3_trunk.component--struts/all/repo/'/>
-<child location='../../../staging/jbosstools-3.3_trunk.component--tests/all/repo/'/>
-<child location='../../../staging/jbosstools-3.3_trunk.component--usage/all/repo/'/>
-<child location='../../../staging/jbosstools-3.3_trunk.component--vpe/all/repo/'/>
-
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--smooks/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--struts/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--tests/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--usage/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--vpe/all/repo/'/>
-
-<child location='../../../staging/jbosstools-3.3_trunk.component--ws/all/repo/'/>
-<child location='../../../staging/jbosstools-drools-5.2_trunk/all/repo/'/>
-<child location='../../../staging/jbosstools-teiid-designer_trunk/all/repo/'/>
-<child location='../../../staging/savara-tools-eclipse-master/all/repo/'/>
-<child location='../../../staging/xulrunner-1.9.2/all/repo/'/>
-
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--ws/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-drools-5.2_trunk/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-teiid-designer_trunk/all/repo/'/>
-<child location='../../../staging.previous/savara-tools-eclipse-master/all/repo/'/>
-<child location='../../../staging.previous/xulrunner-1.9.2/all/repo/'/>
-
-<!-- <child location='http://downloads.jboss.org/savara/releases/updates/2.0.x/' /> -->
-
-<child location='http://download.jboss.org/jbosstools/builds/staging/openshift-java-client...'/>
-<child location='http://download.jboss.org/jbosstools/builds/staging.previous/openshift-ja...'/>
-
+-->
+<property name='p2.timestamp' value='1327337910000'/>
+</properties>
+<children size='2'>
+<child location='../core/trunk/'/>
+<child location='../soa-tooling/trunk/'/>
</children>
</repository>
Modified: trunk/download.jboss.org/jbosstools/builds/staging/_composite_/trunk/comp...
===================================================================
--- trunk/download.jboss.org/jbosstools/builds/staging/_composite_/trunk/comp... 2012-01-23 18:18:05 UTC (rev 38034)
+++ trunk/download.jboss.org/jbosstools/builds/staging/_composite_/trunk/comp... 2012-01-23 18:25:26 UTC (rev 38035)
@@ -6,101 +6,14 @@
<!--
get new time w/
date +%s000
--->
-<property name='p2.timestamp' value='1319582229000'/>
-</properties>
-<children size='70'>
-<child location='../../../staging/jbosstools-3.3_trunk.component--archives/all/repo/'/>
-<child location='../../../staging/jbosstools-3.3_trunk.component--as/all/repo/'/>
-<child location='../../../staging/jbosstools-3.3_trunk.component--birt/all/repo/'/>
-<child location='../../../staging/jbosstools-3.3_trunk.component--bpel/all/repo/'/>
-<child location='../../../staging/jbosstools-3.3_trunk.component--cdi/all/repo/'/>
+ JBIDE-10671: This file is deprecated. See ../core/trunk/ and ../soa-tooling/trunk/
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--archives/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--as/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--birt/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--bpel/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--cdi/all/repo/'/>
-
-<child location='../../../staging/jbosstools-3.3_trunk.component--central/all/repo/'/>
-<child location='../../../staging/jbosstools-3.3_trunk.component--common/all/repo/'/>
-<child location='../../../staging/jbosstools-3.3_trunk.component--deltacloud/all/repo/'/>
-<child location='../../../staging/jbosstools-3.3_trunk.component--esb/all/repo/'/>
-<child location='../../../staging/SwitchYard-Tools/all/repo/'/>
-<child location='../../../staging/jbosstools-3.3_trunk.component--examples/all/repo/'/>
-
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--central/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--common/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--deltacloud/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--esb/all/repo/'/>
-<child location='../../../staging.previous/SwitchYard-Tools/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--examples/all/repo/'/>
-
-<child location='../../../staging/jbosstools-3.3_trunk.component--flow/all/repo/'/>
-<child location='../../../staging/jbosstools-3.3_trunk.component--forge/all/repo/'/>
-<child location='../../../staging/jbosstools-3.3_trunk.component--freemarker/all/repo/'/>
-<child location='../../../staging/jbosstools-3.3_trunk.component--gwt/all/repo/'/>
-<child location='../../../staging/jbosstools-3.3_trunk.component--hibernatetools/all/repo/'/>
-
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--flow/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--forge/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--freemarker/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--gwt/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--hibernatetools/all/repo/'/>
-
-<child location='../../../staging/jbosstools-3.3_trunk.component--jbpm/all/repo/'/>
-<child location='../../../staging/jbosstools-3.3_trunk.component--jmx/all/repo/'/>
-<child location='../../../staging/jbosstools-3.3_trunk.component--jsf/all/repo/'/>
-<child location='../../../staging/jbosstools-3.3_trunk.component--jst/all/repo/'/>
-<child location='../../../staging/jbosstools-3.3_trunk.component--maven/all/repo/'/>
-
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--jbpm/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--jmx/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--jsf/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--jst/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--maven/all/repo/'/>
-
-<child location='../../../staging/jbosstools-3.3_trunk.component--modeshape/all/repo/'/>
-<child location='../../../staging/jbosstools-3.3_trunk.component--openshift/all/repo/'/>
-<child location='../../../staging/jbosstools-3.3_trunk.component--portlet/all/repo/'/>
-<child location='../../../staging/jbosstools-3.3_trunk.component--runtime/all/repo/'/>
-<child location='../../../staging/jbosstools-3.3_trunk.component--seam/all/repo/'/>
-
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--modeshape/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--openshift/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--portlet/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--runtime/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--seam/all/repo/'/>
-
-<child location='../../../staging/jbosstools-3.3_trunk.component--smooks/all/repo/'/>
-<child location='../../../staging/jbosstools-3.3_trunk.component--struts/all/repo/'/>
-<child location='../../../staging/jbosstools-3.3_trunk.component--tests/all/repo/'/>
-<child location='../../../staging/jbosstools-3.3_trunk.component--usage/all/repo/'/>
-<child location='../../../staging/jbosstools-3.3_trunk.component--vpe/all/repo/'/>
-
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--smooks/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--struts/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--tests/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--usage/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--vpe/all/repo/'/>
-
-<child location='../../../staging/jbosstools-3.3_trunk.component--ws/all/repo/'/>
-<child location='../../../staging/jbosstools-drools-5.2_trunk/all/repo/'/>
-<child location='../../../staging/jbosstools-teiid-designer_trunk/all/repo/'/>
-<child location='../../../staging/savara-tools-eclipse-master/all/repo/'/>
-<child location='../../../staging/xulrunner-1.9.2/all/repo/'/>
-
-<child location='../../../staging.previous/jbosstools-3.3_trunk.component--ws/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-drools-5.2_trunk/all/repo/'/>
-<child location='../../../staging.previous/jbosstools-teiid-designer_trunk/all/repo/'/>
-<child location='../../../staging.previous/savara-tools-eclipse-master/all/repo/'/>
-<child location='../../../staging.previous/xulrunner-1.9.2/all/repo/'/>
-
-<!-- <child location='http://downloads.jboss.org/savara/releases/updates/2.0.x/' /> -->
-
-<child location='http://download.jboss.org/jbosstools/builds/staging/openshift-java-client...'/>
-<child location='http://download.jboss.org/jbosstools/builds/staging.previous/openshift-ja...'/>
-
+-->
+<property name='p2.timestamp' value='1327337910000'/>
+</properties>
+<children size='2'>
+<child location='../core/trunk/'/>
+<child location='../soa-tooling/trunk/'/>
</children>
</repository>
12 years, 11 months