JBoss Tools SVN: r23295 - trunk/jsf/tests/org.jboss.tools.jsf.vpe.jbpm.test.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-07-07 21:53:38 -0400 (Wed, 07 Jul 2010)
New Revision: 23295
Modified:
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jbpm.test/pom.xml
Log:
fix versions
Modified: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jbpm.test/pom.xml
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jbpm.test/pom.xml 2010-07-07 22:42:06 UTC (rev 23294)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jbpm.test/pom.xml 2010-07-08 01:53:38 UTC (rev 23295)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.jsf.tests</groupId>
<artifactId>org.jboss.tools.jsf.vpe.jbpm.test</artifactId>
- <version>1.1.0-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
<emma.filter>org.jboss.tools.jsf.vpe.jbpm*</emma.filter>
15 years, 9 months
JBoss Tools SVN: r23294 - in trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui: utils and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: bfitzpat
Date: 2010-07-07 18:42:06 -0400 (Wed, 07 Jul 2010)
New Revision: 23294
Modified:
trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/messages/JBossWSUI.properties
trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/messages/JBossWSUIMessages.java
trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/utils/JAXWSTester2.java
trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/views/JAXRSWSTestView.java
Log:
[JBIDE-6577] Updates to fix issue with key listener and more with canceling the invocation
Modified: trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/messages/JBossWSUI.properties
===================================================================
--- trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/messages/JBossWSUI.properties 2010-07-07 21:13:45 UTC (rev 23293)
+++ trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/messages/JBossWSUI.properties 2010-07-07 22:42:06 UTC (rev 23294)
@@ -93,6 +93,7 @@
JAXRSWSTestView_JAXRS_Success_Status=Successful JAX-RS Web Service Execution
JAXRSWSTestView_JAXWS_Success_Status=Successful JAX-WS Web Service Execution
JAXRSWSTestView_Message_Service_Invocation_Cancelled=Service invocation cancelled by user.
+JAXRSWSTestView_Message_Unsuccessful_Test=Test unsuccessful: Check the URL, request message, and parameter values.
JAXRSWSTestView_Open_Monitor_Button=Open Monitor
JAXRSWSTestView_Open_Response_Tag_Contents_in_XML_Editor=Open &Response tag contents in XML Editor
JAXRSWSTestView_Open_Result_in_XML_Editor=&Open in XML Editor
Modified: trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/messages/JBossWSUIMessages.java
===================================================================
--- trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/messages/JBossWSUIMessages.java 2010-07-07 21:13:45 UTC (rev 23293)
+++ trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/messages/JBossWSUIMessages.java 2010-07-07 22:42:06 UTC (rev 23294)
@@ -124,6 +124,7 @@
public static String JAXRSWSTestView_JAXRS_Success_Status;
public static String JAXRSWSTestView_JAXWS_Success_Status;
public static String JAXRSWSTestView_Message_Service_Invocation_Cancelled;
+ public static String JAXRSWSTestView_Message_Unsuccessful_Test;
public static String JAXRSWSTestView_Open_Monitor_Button;
public static String JAXRSWSTestView_Open_Response_Tag_Contents_in_XML_Editor;
public static String JAXRSWSTestView_Open_Result_in_XML_Editor;
Modified: trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/utils/JAXWSTester2.java
===================================================================
--- trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/utils/JAXWSTester2.java 2010-07-07 21:13:45 UTC (rev 23293)
+++ trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/utils/JAXWSTester2.java 2010-07-07 22:42:06 UTC (rev 23294)
@@ -102,7 +102,7 @@
Response<SOAPMessage> response = d.invokeAsync(m);
while (!response.isDone()){
- //go off and do some work
+ //go off and do some work
if (monitor != null) {
if (monitor.isCanceled()) {
response.cancel(true);
Modified: trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/views/JAXRSWSTestView.java
===================================================================
--- trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/views/JAXRSWSTestView.java 2010-07-07 21:13:45 UTC (rev 23293)
+++ trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/views/JAXRSWSTestView.java 2010-07-07 22:42:06 UTC (rev 23294)
@@ -222,7 +222,7 @@
public void keyReleased(KeyEvent e) {
setControlsForSelectedURL();
- if (e.keyCode == SWT.CR) {
+ if (e.keyCode == SWT.CR && e.stateMask == SWT.CTRL) {
handleTest(wsTypeCombo.getText());
}
}
@@ -577,8 +577,17 @@
private void setControlsForSelectedURL() {
if (urlCombo.getText().trim().length() > 0) {
- testButton.setEnabled(true);
- addTCPIPMonitorButton.setEnabled(true);
+ String urlText = urlCombo.getText();
+ try {
+ new URL(urlText);
+ testButton.setEnabled(true);
+ addTCPIPMonitorButton.setEnabled(true);
+ } catch (MalformedURLException mue) {
+ testButton.setEnabled(false);
+ addTCPIPMonitorButton.setEnabled(false);
+
+ return;
+ }
} else {
testButton.setEnabled(false);
addTCPIPMonitorButton.setEnabled(false);
@@ -779,6 +788,14 @@
*/
private void handleTest(final String wsTech) {
+ String urlText = urlCombo.getText();
+ try {
+ new URL(urlText);
+ } catch (MalformedURLException mue) {
+ // do nothing, but return since we don't have a working URL
+ return;
+ }
+
if (urlCombo.getItemCount() > 0) {
java.util.List<String> aList = Arrays.asList(urlCombo.getItems());
if (!aList.contains(urlCombo.getText())) {
@@ -858,20 +875,32 @@
// JAXWSTester tester = new JAXWSTester();
// tester.doTest(url, action, body);
JAXWSTester2 tester = new JAXWSTester2();
+ boolean itRan = false;
while (!monitor.isCanceled()) {
try {
- // call the service
- tester.doTest(monitor, url, action, serviceNSMessage[0], serviceNSMessage[1], serviceNSMessage[2], body);
+ if (!itRan && serviceNSMessage != null && serviceNSMessage.length == 3) {
+ itRan = true;
+ // call the service
+ tester.doTest(monitor, url, action, serviceNSMessage[0], serviceNSMessage[1], serviceNSMessage[2], body);
+ } else {
+ break;
+ }
} catch (InterruptedException ie) {
monitor.setCanceled(true);
}
}
if (monitor.isCanceled()) {
- WSTestStatus status = new WSTestStatus(IStatus.WARNING,
+ WSTestStatus status = new WSTestStatus(IStatus.OK,
JBossWSUIPlugin.PLUGIN_ID,
JBossWSUIMessages.JAXRSWSTestView_Message_Service_Invocation_Cancelled);
return status;
}
+ if (!itRan) {
+ WSTestStatus status = new WSTestStatus(IStatus.OK,
+ JBossWSUIPlugin.PLUGIN_ID,
+ JBossWSUIMessages.JAXRSWSTestView_Message_Unsuccessful_Test);
+ return status;
+ }
// tester.doTest(url, action, serviceNSMessage[0], serviceNSMessage[1], serviceNSMessage[2], body);
monitor.worked(70);
String result = tester.getResultBody();
@@ -905,7 +934,7 @@
monitor.worked(10);
return status;
} catch (Exception e) {
- WSTestStatus status = new WSTestStatus(IStatus.ERROR,
+ WSTestStatus status = new WSTestStatus(IStatus.OK,
JBossWSUIPlugin.PLUGIN_ID,
JBossWSUIMessages.JAXRSWSTestView_Exception_Status + e.getLocalizedMessage());
status.setResultsText(e.toString());
15 years, 9 months
JBoss Tools SVN: r23293 - branches/jbosstools-3.2.0.M1/build.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-07-07 17:13:45 -0400 (Wed, 07 Jul 2010)
New Revision: 23293
Modified:
branches/jbosstools-3.2.0.M1/build/publish.sh
Log:
prevent duplicate nested update sites
Modified: branches/jbosstools-3.2.0.M1/build/publish.sh
===================================================================
--- branches/jbosstools-3.2.0.M1/build/publish.sh 2010-07-07 21:11:52 UTC (rev 23292)
+++ branches/jbosstools-3.2.0.M1/build/publish.sh 2010-07-07 21:13:45 UTC (rev 23293)
@@ -33,15 +33,15 @@
# if component zips exist, copy them too; first site.zip, then site_assembly.zip
for z in $(find ${WORKSPACE}/sources/*/site/target -type f -name "site*.zip" | sort -r); do
- #if [[ -f $z ]]; then
- y=${z%%/site/target/*}; y=${y##*/}
+ y=${z%%/site/target/*}; y=${y##*/}
+ if [[ $y != "aggregate" ]]; then # prevent duplicate nested sites
#echo "[$y] $z ..."
# unzip into workspace for publishing as unpacked site
mkdir -p ${WORKSPACE}/site/${JOB_NAME}/$y
unzip -u -o -q -d ${WORKSPACE}/site/${JOB_NAME}/$y $z
# copy into workspace for access by bucky aggregator (same name every time)
rsync -aq $z ${WORKSPACE}/site/${JOB_NAME}/${y}-Update-SNAPSHOT.zip
- #fi
+ fi
done
# if zips exist produced & renamed by ant script, copy them too
15 years, 9 months
JBoss Tools SVN: r23292 - trunk/build.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-07-07 17:11:52 -0400 (Wed, 07 Jul 2010)
New Revision: 23292
Modified:
trunk/build/publish.sh
Log:
prevent duplicate nested update site
Modified: trunk/build/publish.sh
===================================================================
--- trunk/build/publish.sh 2010-07-07 20:45:28 UTC (rev 23291)
+++ trunk/build/publish.sh 2010-07-07 21:11:52 UTC (rev 23292)
@@ -33,15 +33,15 @@
# if component zips exist, copy them too; first site.zip, then site_assembly.zip
for z in $(find ${WORKSPACE}/sources/*/site/target -type f -name "site*.zip" | sort -r); do
- #if [[ -f $z ]]; then
- y=${z%%/site/target/*}; y=${y##*/}
+ y=${z%%/site/target/*}; y=${y##*/}
+ if [[ $y != "aggregate" ]]; then # prevent duplicate nested sites
#echo "[$y] $z ..."
# unzip into workspace for publishing as unpacked site
mkdir -p ${WORKSPACE}/site/${JOB_NAME}/$y
unzip -u -o -q -d ${WORKSPACE}/site/${JOB_NAME}/$y $z
# copy into workspace for access by bucky aggregator (same name every time)
rsync -aq $z ${WORKSPACE}/site/${JOB_NAME}/${y}-Update-SNAPSHOT.zip
- #fi
+ fi
done
# if zips exist produced & renamed by ant script, copy them too
15 years, 9 months
JBoss Tools SVN: r23291 - trunk/common/plugins/org.jboss.tools.common.model/META-INF.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-07-07 16:45:28 -0400 (Wed, 07 Jul 2010)
New Revision: 23291
Modified:
trunk/common/plugins/org.jboss.tools.common.model/META-INF/MANIFEST.MF
Log:
add jem.util
Modified: trunk/common/plugins/org.jboss.tools.common.model/META-INF/MANIFEST.MF
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.model/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
+++ trunk/common/plugins/org.jboss.tools.common.model/META-INF/MANIFEST.MF 2010-07-07 20:45:28 UTC (rev 23291)
@@ -79,6 +79,7 @@
org.eclipse.ltk.ui.refactoring,
org.eclipse.wst.common.uriresolver,
org.eclipse.wst.common.modulecore,
+ org.eclipse.jem.util,
org.eclipse.wst.common.emfworkbench.integration,
org.eclipse.core.resources;visibility:=reexport,
org.eclipse.core.runtime;visibility:=reexport
15 years, 9 months
JBoss Tools SVN: r23290 - in branches/jbosstools-3.2.0.M1: archives/features/org.jboss.ide.eclipse.archives.feature and 320 other directories.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-07-07 16:35:26 -0400 (Wed, 07 Jul 2010)
New Revision: 23290
Modified:
branches/jbosstools-3.2.0.M1/archives/features/org.jboss.ide.eclipse.archives.feature/feature.xml
branches/jbosstools-3.2.0.M1/archives/features/org.jboss.ide.eclipse.archives.feature/pom.xml
branches/jbosstools-3.2.0.M1/archives/plugins/org.jboss.ide.eclipse.archives.core/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/archives/plugins/org.jboss.ide.eclipse.archives.core/pom.xml
branches/jbosstools-3.2.0.M1/archives/plugins/org.jboss.ide.eclipse.archives.jdt.integration/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/archives/plugins/org.jboss.ide.eclipse.archives.jdt.integration/pom.xml
branches/jbosstools-3.2.0.M1/archives/plugins/org.jboss.ide.eclipse.archives.ui/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/archives/plugins/org.jboss.ide.eclipse.archives.ui/pom.xml
branches/jbosstools-3.2.0.M1/archives/tests/org.jboss.ide.eclipse.archives.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/archives/tests/org.jboss.ide.eclipse.archives.test/pom.xml
branches/jbosstools-3.2.0.M1/archives/tests/org.jboss.ide.eclipse.archives.ui.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/archives/tests/org.jboss.ide.eclipse.archives.ui.test/pom.xml
branches/jbosstools-3.2.0.M1/as/features/org.jboss.ide.eclipse.as.feature/feature.xml
branches/jbosstools-3.2.0.M1/as/features/org.jboss.ide.eclipse.as.feature/pom.xml
branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.archives.webtools/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.archives.webtools/pom.xml
branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.as.classpath.core/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.as.classpath.core/pom.xml
branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.as.core/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.as.core/pom.xml
branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.as.ssh/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.as.ssh/pom.xml
branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.as.ui/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.as.ui/pom.xml
branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.as.wtp.core/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.as.wtp.core/pom.xml
branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.as.wtp.ui/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.as.wtp.ui/pom.xml
branches/jbosstools-3.2.0.M1/as/tests/org.jboss.ide.eclipse.as.archives.integration.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/as/tests/org.jboss.ide.eclipse.as.archives.integration.test/pom.xml
branches/jbosstools-3.2.0.M1/as/tests/org.jboss.ide.eclipse.as.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/as/tests/org.jboss.ide.eclipse.as.test/pom.xml
branches/jbosstools-3.2.0.M1/as/tests/org.jboss.ide.eclipse.as.ui.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/as/tests/org.jboss.ide.eclipse.as.ui.test/pom.xml
branches/jbosstools-3.2.0.M1/birt/features/org.jboss.tools.birt.feature/feature.xml
branches/jbosstools-3.2.0.M1/birt/features/org.jboss.tools.birt.feature/pom.xml
branches/jbosstools-3.2.0.M1/birt/plugins/org.jboss.tools.birt.core/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/birt/plugins/org.jboss.tools.birt.core/pom.xml
branches/jbosstools-3.2.0.M1/birt/plugins/org.jboss.tools.birt.oda/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/birt/plugins/org.jboss.tools.birt.oda/pom.xml
branches/jbosstools-3.2.0.M1/birt/tests/org.jboss.tools.birt.core.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/birt/tests/org.jboss.tools.birt.core.test/pom.xml
branches/jbosstools-3.2.0.M1/bpel/features/org.jboss.tools.bpel.tests.feature/feature.xml
branches/jbosstools-3.2.0.M1/bpel/features/org.jboss.tools.bpel.tests.feature/pom.xml
branches/jbosstools-3.2.0.M1/bpel/plugins/org.eclipse.bpel.apache.ode.deploy.ui/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/bpel/plugins/org.eclipse.bpel.apache.ode.deploy.ui/pom.xml
branches/jbosstools-3.2.0.M1/bpel/plugins/org.eclipse.bpel.model/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/bpel/plugins/org.eclipse.bpel.model/pom.xml
branches/jbosstools-3.2.0.M1/bpel/plugins/org.eclipse.bpel.ui/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/bpel/plugins/org.eclipse.bpel.ui/pom.xml
branches/jbosstools-3.2.0.M1/bpel/plugins/org.eclipse.bpel.validator/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/bpel/plugins/org.eclipse.bpel.validator/pom.xml
branches/jbosstools-3.2.0.M1/bpel/tests/org.jboss.tools.bpel.ui.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/bpel/tests/org.jboss.tools.bpel.ui.test/pom.xml
branches/jbosstools-3.2.0.M1/build/aggregate/site/pom.xml
branches/jbosstools-3.2.0.M1/cdi/features/org.jboss.tools.cdi.feature/feature.xml
branches/jbosstools-3.2.0.M1/cdi/features/org.jboss.tools.cdi.feature/pom.xml
branches/jbosstools-3.2.0.M1/cdi/plugins/org.jboss.tools.cdi.core/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/cdi/plugins/org.jboss.tools.cdi.core/pom.xml
branches/jbosstools-3.2.0.M1/cdi/plugins/org.jboss.tools.cdi.text.ext/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/cdi/plugins/org.jboss.tools.cdi.text.ext/pom.xml
branches/jbosstools-3.2.0.M1/cdi/plugins/org.jboss.tools.cdi.ui/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/cdi/plugins/org.jboss.tools.cdi.ui/pom.xml
branches/jbosstools-3.2.0.M1/cdi/tests/org.jboss.tools.cdi.core.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/cdi/tests/org.jboss.tools.cdi.core.test/pom.xml
branches/jbosstools-3.2.0.M1/cdi/tests/org.jboss.tools.cdi.text.ext.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/cdi/tests/org.jboss.tools.cdi.text.ext.test/pom.xml
branches/jbosstools-3.2.0.M1/cdi/tests/org.jboss.tools.cdi.ui.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/cdi/tests/org.jboss.tools.cdi.ui.test/pom.xml
branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.el.core/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.el.core/pom.xml
branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.el.ui/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.el.ui/pom.xml
branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.model.ui/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.model.ui/pom.xml
branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.model/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.model/pom.xml
branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.projecttemplates/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.projecttemplates/pom.xml
branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.resref.ui/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.resref.ui/pom.xml
branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.text.ext/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.text.ext/pom.xml
branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.text.xml/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.text.xml/pom.xml
branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.ui/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.ui/pom.xml
branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.verification/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.verification/pom.xml
branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common/pom.xml
branches/jbosstools-3.2.0.M1/common/tests/org.jboss.tools.common.el.core.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/common/tests/org.jboss.tools.common.el.core.test/pom.xml
branches/jbosstools-3.2.0.M1/common/tests/org.jboss.tools.common.model.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/common/tests/org.jboss.tools.common.model.test/pom.xml
branches/jbosstools-3.2.0.M1/common/tests/org.jboss.tools.common.model.ui.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/common/tests/org.jboss.tools.common.model.ui.test/pom.xml
branches/jbosstools-3.2.0.M1/common/tests/org.jboss.tools.common.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/common/tests/org.jboss.tools.common.test/pom.xml
branches/jbosstools-3.2.0.M1/common/tests/org.jboss.tools.common.verification.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/common/tests/org.jboss.tools.common.verification.test/pom.xml
branches/jbosstools-3.2.0.M1/common/tests/org.jboss.tools.common.verification.ui.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/common/tests/org.jboss.tools.common.verification.ui.test/pom.xml
branches/jbosstools-3.2.0.M1/esb/plugins/org.jboss.tools.esb.core/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/esb/plugins/org.jboss.tools.esb.core/pom.xml
branches/jbosstools-3.2.0.M1/esb/plugins/org.jboss.tools.esb.project.core/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/esb/plugins/org.jboss.tools.esb.project.core/pom.xml
branches/jbosstools-3.2.0.M1/esb/plugins/org.jboss.tools.esb.project.ui/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/esb/plugins/org.jboss.tools.esb.project.ui/pom.xml
branches/jbosstools-3.2.0.M1/esb/tests/org.jboss.tools.esb.core.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/esb/tests/org.jboss.tools.esb.core.test/pom.xml
branches/jbosstools-3.2.0.M1/esb/tests/org.jboss.tools.esb.project.core.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/esb/tests/org.jboss.tools.esb.project.core.test/pom.xml
branches/jbosstools-3.2.0.M1/freemarker/tests/org.jboss.ide.eclipse.freemarker.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/freemarker/tests/org.jboss.ide.eclipse.freemarker.test/pom.xml
branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.hibernate.eclipse.console/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.hibernate.eclipse.console/pom.xml
branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.hibernate.eclipse.jdt.ui/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.hibernate.eclipse.jdt.ui/pom.xml
branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.hibernate.eclipse.mapper/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.hibernate.eclipse.mapper/pom.xml
branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.hibernate.eclipse/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.hibernate.eclipse/pom.xml
branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.core/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.core/pom.xml
branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/pom.xml
branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.jboss.tools.hibernate.ui/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.jboss.tools.hibernate.ui/pom.xml
branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.jboss.tools.hibernate.xml.ui/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.jboss.tools.hibernate.xml.ui/pom.xml
branches/jbosstools-3.2.0.M1/hibernatetools/tests/org.hibernate.eclipse.console.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/hibernatetools/tests/org.hibernate.eclipse.console.test/pom.xml
branches/jbosstools-3.2.0.M1/hibernatetools/tests/org.hibernate.eclipse.jdt.ui.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/hibernatetools/tests/org.hibernate.eclipse.jdt.ui.test/pom.xml
branches/jbosstools-3.2.0.M1/hibernatetools/tests/org.jboss.tools.hibernate.jpt.core.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/hibernatetools/tests/org.jboss.tools.hibernate.jpt.core.test/pom.xml
branches/jbosstools-3.2.0.M1/hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test/pom.xml
branches/jbosstools-3.2.0.M1/hibernatetools/tests/org.jboss.tools.hibernate.ui.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/hibernatetools/tests/org.jboss.tools.hibernate.ui.test/pom.xml
branches/jbosstools-3.2.0.M1/jbpm/features/org.jboss.tools.jbpm.common.feature/feature.xml
branches/jbosstools-3.2.0.M1/jbpm/features/org.jboss.tools.jbpm.common.feature/pom.xml
branches/jbosstools-3.2.0.M1/jbpm/features/org.jboss.tools.jbpm3.tests.feature/feature.xml
branches/jbosstools-3.2.0.M1/jbpm/features/org.jboss.tools.jbpm3.tests.feature/pom.xml
branches/jbosstools-3.2.0.M1/jbpm/features/org.jboss.tools.jbpm4.tests.feature/feature.xml
branches/jbosstools-3.2.0.M1/jbpm/features/org.jboss.tools.jbpm4.tests.feature/pom.xml
branches/jbosstools-3.2.0.M1/jbpm/plugins/org.jboss.tools.jbpm.common/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/jbpm/plugins/org.jboss.tools.jbpm.common/pom.xml
branches/jbosstools-3.2.0.M1/jbpm/plugins/org.jboss.tools.jbpm.convert/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/jbpm/plugins/org.jboss.tools.jbpm.convert/pom.xml
branches/jbosstools-3.2.0.M1/jbpm/plugins/org.jbpm.gd.jpdl/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/jbpm/plugins/org.jbpm.gd.jpdl/pom.xml
branches/jbosstools-3.2.0.M1/jbpm/tests/org.jboss.tools.jbpm.convert.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/jbpm/tests/org.jboss.tools.jbpm.convert.test/pom.xml
branches/jbosstools-3.2.0.M1/jmx/features/org.jboss.tools.jmx.tests.feature/feature.xml
branches/jbosstools-3.2.0.M1/jmx/features/org.jboss.tools.jmx.tests.feature/pom.xml
branches/jbosstools-3.2.0.M1/jmx/plugins/org.jboss.tools.jmx.core/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/jmx/plugins/org.jboss.tools.jmx.core/pom.xml
branches/jbosstools-3.2.0.M1/jmx/plugins/org.jboss.tools.jmx.ui/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/jmx/plugins/org.jboss.tools.jmx.ui/pom.xml
branches/jbosstools-3.2.0.M1/jsf/features/org.jboss.tools.richfaces.feature/feature.xml
branches/jbosstools-3.2.0.M1/jsf/features/org.jboss.tools.richfaces.feature/pom.xml
branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.doc.user/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.doc.user/pom.xml
branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.text.ext.facelets/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.text.ext.facelets/pom.xml
branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.text.ext.richfaces/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.text.ext.richfaces/pom.xml
branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.text.ext/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.text.ext/pom.xml
branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.ui/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.ui/pom.xml
branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.vpe.jsf/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.vpe.jsf/pom.xml
branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.vpe.richfaces/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.vpe.richfaces/pom.xml
branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.vpe.seam/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.vpe.seam/pom.xml
branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf/pom.xml
branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.test/pom.xml
branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.text.ext.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.text.ext.test/pom.xml
branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.ui.bot.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.ui.bot.test/pom.xml
branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.ui.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.ui.test/pom.xml
branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.verification.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.verification.test/pom.xml
branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.ajax4jsf.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.ajax4jsf.test/pom.xml
branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.facelets.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.facelets.test/pom.xml
branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.jbpm.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.jbpm.test/pom.xml
branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/pom.xml
branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.jstl.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.jstl.test/pom.xml
branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.myfaces.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.myfaces.test/pom.xml
branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/pom.xml
branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.seam.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.seam.test/pom.xml
branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.css/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.css/pom.xml
branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.firstrun/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.firstrun/pom.xml
branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.jsp/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.jsp/pom.xml
branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.text.ext/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.text.ext/pom.xml
branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.web.kb/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.web.kb/pom.xml
branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.web.tiles.ui/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.web.tiles.ui/pom.xml
branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.web.ui/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.web.ui/pom.xml
branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.web/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.web/pom.xml
branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.jst.css.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.jst.css.test/pom.xml
branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.jst.jsp.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.jst.jsp.test/pom.xml
branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.jst.ui.bot.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.jst.ui.bot.test/pom.xml
branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.jst.web.kb.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.jst.web.kb.test/pom.xml
branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.jst.web.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.jst.web.test/pom.xml
branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.jst.web.ui.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.jst.web.ui.test/pom.xml
branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.ui.bot.ext/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.ui.bot.ext/pom.xml
branches/jbosstools-3.2.0.M1/maven/features/org.jboss.tools.maven.cdi.feature/feature.xml
branches/jbosstools-3.2.0.M1/maven/features/org.jboss.tools.maven.feature/feature.xml
branches/jbosstools-3.2.0.M1/maven/features/org.jboss.tools.maven.feature/pom.xml
branches/jbosstools-3.2.0.M1/maven/features/org.jboss.tools.maven.hibernate.feature/feature.xml
branches/jbosstools-3.2.0.M1/maven/features/org.jboss.tools.maven.jsf.feature/feature.xml
branches/jbosstools-3.2.0.M1/maven/features/org.jboss.tools.maven.portlet.feature/feature.xml
branches/jbosstools-3.2.0.M1/maven/features/org.jboss.tools.maven.seam.feature/feature.xml
branches/jbosstools-3.2.0.M1/maven/features/org.jboss.tools.maven.seam.feature/pom.xml
branches/jbosstools-3.2.0.M1/maven/plugins/org.jboss.tools.maven.core/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/maven/plugins/org.jboss.tools.maven.core/pom.xml
branches/jbosstools-3.2.0.M1/maven/plugins/org.jboss.tools.maven.seam/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/maven/plugins/org.jboss.tools.maven.seam/pom.xml
branches/jbosstools-3.2.0.M1/modeshape/plugins/org.jboss.tools.modeshape.rest/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/modeshape/plugins/org.jboss.tools.modeshape.rest/pom.xml
branches/jbosstools-3.2.0.M1/modeshape/tests/org.jboss.tools.modeshape.rest.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/modeshape/tests/org.jboss.tools.modeshape.rest.test/pom.xml
branches/jbosstools-3.2.0.M1/parent-pom.xml
branches/jbosstools-3.2.0.M1/portlet/plugins/org.jboss.tools.portlet.core/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/portlet/plugins/org.jboss.tools.portlet.core/pom.xml
branches/jbosstools-3.2.0.M1/portlet/plugins/org.jboss.tools.portlet.ui/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/portlet/plugins/org.jboss.tools.portlet.ui/pom.xml
branches/jbosstools-3.2.0.M1/portlet/tests/org.jboss.tools.portlet.core.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/portlet/tests/org.jboss.tools.portlet.core.test/pom.xml
branches/jbosstools-3.2.0.M1/profiler/features/org.jboss.tools.profiler.feature/feature.xml
branches/jbosstools-3.2.0.M1/profiler/features/org.jboss.tools.profiler.feature/pom.xml
branches/jbosstools-3.2.0.M1/seam/features/org.jboss.tools.seam.feature/feature.xml
branches/jbosstools-3.2.0.M1/seam/features/org.jboss.tools.seam.feature/pom.xml
branches/jbosstools-3.2.0.M1/seam/features/org.jboss.tools.seam.test.feature/pom.xml
branches/jbosstools-3.2.0.M1/seam/plugins/org.jboss.tools.seam.core/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/seam/plugins/org.jboss.tools.seam.text.ext/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/seam/plugins/org.jboss.tools.seam.ui/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/seam/plugins/org.jboss.tools.seam.xml.ui/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/seam/plugins/org.jboss.tools.seam.xml.ui/pom.xml
branches/jbosstools-3.2.0.M1/seam/plugins/org.jboss.tools.seam.xml/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/seam/tests/org.jboss.tools.seam.core.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/seam/tests/org.jboss.tools.seam.core.test/pom.xml
branches/jbosstools-3.2.0.M1/seam/tests/org.jboss.tools.seam.pages.xml.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/seam/tests/org.jboss.tools.seam.pages.xml.test/pom.xml
branches/jbosstools-3.2.0.M1/seam/tests/org.jboss.tools.seam.ui.bot.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/seam/tests/org.jboss.tools.seam.ui.bot.test/pom.xml
branches/jbosstools-3.2.0.M1/seam/tests/org.jboss.tools.seam.ui.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/seam/tests/org.jboss.tools.seam.ui.test/pom.xml
branches/jbosstools-3.2.0.M1/seam/tests/org.jboss.tools.seam.xml.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/seam/tests/org.jboss.tools.seam.xml.test/pom.xml
branches/jbosstools-3.2.0.M1/smooks/plugins/org.jboss.tools.smooks.core/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/smooks/plugins/org.jboss.tools.smooks.core/pom.xml
branches/jbosstools-3.2.0.M1/smooks/plugins/org.jboss.tools.smooks.runtime/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/smooks/plugins/org.jboss.tools.smooks.runtime/pom.xml
branches/jbosstools-3.2.0.M1/smooks/plugins/org.jboss.tools.smooks.ui/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/smooks/plugins/org.jboss.tools.smooks.ui/pom.xml
branches/jbosstools-3.2.0.M1/struts/plugins/org.jboss.tools.struts/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/struts/plugins/org.jboss.tools.struts/pom.xml
branches/jbosstools-3.2.0.M1/struts/tests/org.jboss.tools.struts.text.ext.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/struts/tests/org.jboss.tools.struts.text.ext.test/pom.xml
branches/jbosstools-3.2.0.M1/struts/tests/org.jboss.tools.struts.ui.bot.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/struts/tests/org.jboss.tools.struts.ui.bot.test/pom.xml
branches/jbosstools-3.2.0.M1/struts/tests/org.jboss.tools.struts.vpe.struts.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/struts/tests/org.jboss.tools.struts.vpe.struts.test/pom.xml
branches/jbosstools-3.2.0.M1/tptp/features/org.jboss.tools.tptp.feature/feature.xml
branches/jbosstools-3.2.0.M1/tptp/features/org.jboss.tools.tptp.feature/pom.xml
branches/jbosstools-3.2.0.M1/tptp/plugins/org.jboss.tools.eclipse.as.tptp/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/tptp/plugins/org.jboss.tools.eclipse.as.tptp/pom.xml
branches/jbosstools-3.2.0.M1/vpe/plugins/org.jboss.tools.vpe.html/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/vpe/plugins/org.jboss.tools.vpe.html/pom.xml
branches/jbosstools-3.2.0.M1/vpe/plugins/org.jboss.tools.vpe.resref/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/vpe/plugins/org.jboss.tools.vpe.resref/pom.xml
branches/jbosstools-3.2.0.M1/vpe/plugins/org.jboss.tools.vpe.ui.palette/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/vpe/plugins/org.jboss.tools.vpe.ui.palette/pom.xml
branches/jbosstools-3.2.0.M1/vpe/plugins/org.jboss.tools.vpe.xulrunner/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/vpe/plugins/org.jboss.tools.vpe.xulrunner/pom.xml
branches/jbosstools-3.2.0.M1/vpe/plugins/org.jboss.tools.vpe/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/vpe/plugins/org.jboss.tools.vpe/pom.xml
branches/jbosstools-3.2.0.M1/vpe/plugins/org.jboss.tools.xulrunner/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/vpe/plugins/org.jboss.tools.xulrunner/pom.xml
branches/jbosstools-3.2.0.M1/vpe/tests/org.jboss.tools.vpe.html.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/vpe/tests/org.jboss.tools.vpe.html.test/pom.xml
branches/jbosstools-3.2.0.M1/vpe/tests/org.jboss.tools.vpe.jsp.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/vpe/tests/org.jboss.tools.vpe.jsp.test/pom.xml
branches/jbosstools-3.2.0.M1/vpe/tests/org.jboss.tools.vpe.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/vpe/tests/org.jboss.tools.vpe.test/pom.xml
branches/jbosstools-3.2.0.M1/vpe/tests/org.jboss.tools.vpe.ui.bot.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/vpe/tests/org.jboss.tools.vpe.ui.bot.test/pom.xml
branches/jbosstools-3.2.0.M1/vpe/tests/org.jboss.tools.vpe.ui.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/vpe/tests/org.jboss.tools.vpe.ui.test/pom.xml
branches/jbosstools-3.2.0.M1/vpe/tests/org.jboss.tools.vpe.xulrunner.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/vpe/tests/org.jboss.tools.vpe.xulrunner.test/pom.xml
branches/jbosstools-3.2.0.M1/workingset/tests/org.jboss.tools.workingset.core.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/workingset/tests/org.jboss.tools.workingset.core.test/pom.xml
branches/jbosstools-3.2.0.M1/ws/plugins/org.jboss.tools.ws.core/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/ws/plugins/org.jboss.tools.ws.core/pom.xml
branches/jbosstools-3.2.0.M1/ws/plugins/org.jboss.tools.ws.creation.core/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/ws/plugins/org.jboss.tools.ws.creation.core/pom.xml
branches/jbosstools-3.2.0.M1/ws/plugins/org.jboss.tools.ws.creation.ui/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/ws/plugins/org.jboss.tools.ws.creation.ui/pom.xml
branches/jbosstools-3.2.0.M1/ws/plugins/org.jboss.tools.ws.ui/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/ws/plugins/org.jboss.tools.ws.ui/pom.xml
branches/jbosstools-3.2.0.M1/ws/tests/org.jboss.tools.ws.core.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/ws/tests/org.jboss.tools.ws.core.test/pom.xml
branches/jbosstools-3.2.0.M1/ws/tests/org.jboss.tools.ws.ui.test/META-INF/MANIFEST.MF
branches/jbosstools-3.2.0.M1/ws/tests/org.jboss.tools.ws.ui.test/pom.xml
Log:
merge changes from trunk into M1 branch
Modified: branches/jbosstools-3.2.0.M1/archives/features/org.jboss.ide.eclipse.archives.feature/feature.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/archives/features/org.jboss.ide.eclipse.archives.feature/feature.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/archives/features/org.jboss.ide.eclipse.archives.feature/feature.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
<feature
id="org.jboss.ide.eclipse.archives.feature"
label="%featureName"
- version="3.1.0.qualifier"
+ version="3.2.0.qualifier"
provider-name="%providerName"
plugin="org.jboss.ide.eclipse.archives.ui">
Modified: branches/jbosstools-3.2.0.M1/archives/features/org.jboss.ide.eclipse.archives.feature/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/archives/features/org.jboss.ide.eclipse.archives.feature/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/archives/features/org.jboss.ide.eclipse.archives.feature/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.archives.features</groupId>
<artifactId>org.jboss.ide.eclipse.archives.feature</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/archives/plugins/org.jboss.ide.eclipse.archives.core/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/archives/plugins/org.jboss.ide.eclipse.archives.core/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/archives/plugins/org.jboss.ide.eclipse.archives.core/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.ide.eclipse.archives.core;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-Activator: org.jboss.ide.eclipse.archives.core.ArchivesCorePlugin
Bundle-Vendor: %Bundle-Vendor.0
Bundle-Localization: plugin
Modified: branches/jbosstools-3.2.0.M1/archives/plugins/org.jboss.ide.eclipse.archives.core/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/archives/plugins/org.jboss.ide.eclipse.archives.core/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/archives/plugins/org.jboss.ide.eclipse.archives.core/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.archives.plugins</groupId>
<artifactId>org.jboss.ide.eclipse.archives.core</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/archives/plugins/org.jboss.ide.eclipse.archives.jdt.integration/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/archives/plugins/org.jboss.ide.eclipse.archives.jdt.integration/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/archives/plugins/org.jboss.ide.eclipse.archives.jdt.integration/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: Archives JDT Integration Plug-in
Bundle-SymbolicName: org.jboss.ide.eclipse.archives.jdt.integration;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-Activator: org.jboss.ide.eclipse.archives.jdt.integration.ArchiveJDTIntegrationPlugin
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
Modified: branches/jbosstools-3.2.0.M1/archives/plugins/org.jboss.ide.eclipse.archives.jdt.integration/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/archives/plugins/org.jboss.ide.eclipse.archives.jdt.integration/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/archives/plugins/org.jboss.ide.eclipse.archives.jdt.integration/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.archives.plugins</groupId>
<artifactId>org.jboss.ide.eclipse.archives.jdt.integration</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/archives/plugins/org.jboss.ide.eclipse.archives.ui/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/archives/plugins/org.jboss.ide.eclipse.archives.ui/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/archives/plugins/org.jboss.ide.eclipse.archives.ui/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.ide.eclipse.archives.ui;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-Activator: org.jboss.ide.eclipse.archives.ui.PackagesUIPlugin
Bundle-Localization: plugin
Require-Bundle: org.eclipse.ui,
Modified: branches/jbosstools-3.2.0.M1/archives/plugins/org.jboss.ide.eclipse.archives.ui/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/archives/plugins/org.jboss.ide.eclipse.archives.ui/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/archives/plugins/org.jboss.ide.eclipse.archives.ui/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.archives.plugins</groupId>
<artifactId>org.jboss.ide.eclipse.archives.ui</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/archives/tests/org.jboss.ide.eclipse.archives.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/archives/tests/org.jboss.ide.eclipse.archives.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/archives/tests/org.jboss.ide.eclipse.archives.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.ide.eclipse.archives.test
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-Activator: org.jboss.ide.eclipse.archives.test.ArchivesTest
Require-Bundle: org.eclipse.core.runtime,
org.junit,
Modified: branches/jbosstools-3.2.0.M1/archives/tests/org.jboss.ide.eclipse.archives.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/archives/tests/org.jboss.ide.eclipse.archives.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/archives/tests/org.jboss.ide.eclipse.archives.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.archives.tests</groupId>
<artifactId>org.jboss.ide.eclipse.archives.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
<emma.filter>org.jboss.ide.eclipse.archives.core*</emma.filter>
Modified: branches/jbosstools-3.2.0.M1/archives/tests/org.jboss.ide.eclipse.archives.ui.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/archives/tests/org.jboss.ide.eclipse.archives.ui.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/archives/tests/org.jboss.ide.eclipse.archives.ui.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: Archives UI Test
Bundle-SymbolicName: org.jboss.ide.eclipse.archives.ui.test
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-Vendor: JBoss by RedHat
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Require-Bundle: org.junit,
Modified: branches/jbosstools-3.2.0.M1/archives/tests/org.jboss.ide.eclipse.archives.ui.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/archives/tests/org.jboss.ide.eclipse.archives.ui.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/archives/tests/org.jboss.ide.eclipse.archives.ui.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.archives.tests</groupId>
<artifactId>org.jboss.ide.eclipse.archives.ui.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
<emma.filter>org.jboss.ide.eclipse.archives.ui*</emma.filter>
Modified: branches/jbosstools-3.2.0.M1/as/features/org.jboss.ide.eclipse.as.feature/feature.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/as/features/org.jboss.ide.eclipse.as.feature/feature.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/as/features/org.jboss.ide.eclipse.as.feature/feature.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
<feature
id="org.jboss.ide.eclipse.as.feature"
label="%featureName"
- version="2.1.0.qualifier"
+ version="2.2.0.qualifier"
provider-name="%providerName"
plugin="org.jboss.ide.eclipse.as.ui">
Modified: branches/jbosstools-3.2.0.M1/as/features/org.jboss.ide.eclipse.as.feature/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/as/features/org.jboss.ide.eclipse.as.feature/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/as/features/org.jboss.ide.eclipse.as.feature/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.as.features</groupId>
<artifactId>org.jboss.ide.eclipse.as.feature</artifactId>
- <version>2.1.0-SNAPSHOT</version>
+ <version>2.2.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.archives.webtools/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.archives.webtools/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.archives.webtools/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.ide.eclipse.archives.webtools;singleton:=true
-Bundle-Version: 2.1.0.qualifier
+Bundle-Version: 2.2.0.qualifier
Bundle-Activator: org.jboss.ide.eclipse.archives.webtools.IntegrationPlugin
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
Modified: branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.archives.webtools/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.archives.webtools/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.archives.webtools/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.archives.plugins</groupId>
<artifactId>org.jboss.ide.eclipse.archives.webtools</artifactId>
- <version>2.1.0-SNAPSHOT</version>
+ <version>2.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.as.classpath.core/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.as.classpath.core/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.as.classpath.core/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.ide.eclipse.as.classpath.core;singleton:=true
-Bundle-Version: 2.1.0.qualifier
+Bundle-Version: 2.2.0.qualifier
Bundle-Activator: org.jboss.ide.eclipse.as.classpath.core.ClasspathCorePlugin
Require-Bundle: org.eclipse.core.runtime,
org.eclipse.jdt.core,
Modified: branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.as.classpath.core/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.as.classpath.core/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.as.classpath.core/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.as.plugins</groupId>
<artifactId>org.jboss.ide.eclipse.as.classpath.core</artifactId>
- <version>2.1.0-SNAPSHOT</version>
+ <version>2.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.as.core/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.as.core/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.as.core/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.ide.eclipse.as.core;singleton:=true
-Bundle-Version: 2.1.0.qualifier
+Bundle-Version: 2.2.0.qualifier
Bundle-Activator: org.jboss.ide.eclipse.as.core.JBossServerCorePlugin
Bundle-Localization: plugin
Require-Bundle: org.eclipse.core.runtime,
Modified: branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.as.core/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.as.core/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.as.core/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.as.plugins</groupId>
<artifactId>org.jboss.ide.eclipse.as.core</artifactId>
- <version>2.1.0-SNAPSHOT</version>
+ <version>2.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.as.ssh/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.as.ssh/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.as.ssh/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -3,7 +3,7 @@
Bundle-Name: %Bundle-Name.0
Bundle-Vendor: %Bundle-Vendor.0
Bundle-SymbolicName: org.jboss.ide.eclipse.as.ssh;singleton:=true
-Bundle-Version: 2.1.0.qualifier
+Bundle-Version: 2.2.0.qualifier
Bundle-Activator: org.jboss.ide.eclipse.as.ssh.SSHDeploymentPlugin
Bundle-Localization: plugin
Require-Bundle: org.eclipse.ui,
Modified: branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.as.ssh/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.as.ssh/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.as.ssh/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.as.plugins</groupId>
<artifactId>org.jboss.ide.eclipse.as.ssh</artifactId>
- <version>2.1.0-SNAPSHOT</version>
+ <version>2.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.as.ui/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.as.ui/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.as.ui/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.ide.eclipse.as.ui;singleton:=true
-Bundle-Version: 2.1.0.qualifier
+Bundle-Version: 2.2.0.qualifier
Bundle-Localization: plugin
Require-Bundle: org.eclipse.ui.ide;bundle-version="[3.5.0,4.0.0)",
org.eclipse.jface.text;bundle-version="[3.5.0,4.0.0)",
Modified: branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.as.ui/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.as.ui/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.as.ui/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.as.plugins</groupId>
<artifactId>org.jboss.ide.eclipse.as.ui</artifactId>
- <version>2.1.0-SNAPSHOT</version>
+ <version>2.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.as.wtp.core/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.as.wtp.core/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.as.wtp.core/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: WTP Overrides Core
Bundle-SymbolicName: org.jboss.ide.eclipse.as.wtp.core;singleton:=true
-Bundle-Version: 2.1.0.qualifier
+Bundle-Version: 2.2.0.qualifier
Bundle-Activator: org.jboss.ide.eclipse.as.wtp.core.ASWTPToolsPlugin
Require-Bundle: org.eclipse.core.runtime,
org.eclipse.wst.server.core;bundle-version="1.1.101",
Modified: branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.as.wtp.core/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.as.wtp.core/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.as.wtp.core/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.as.plugins</groupId>
<artifactId>org.jboss.ide.eclipse.as.wtp.core</artifactId>
- <version>2.1.0-SNAPSHOT</version>
+ <version>2.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.as.wtp.ui/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.as.wtp.ui/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.as.wtp.ui/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: WTP UI Overrides
Bundle-SymbolicName: org.jboss.ide.eclipse.as.wtp.ui;singleton:=true
-Bundle-Version: 2.1.0.qualifier
+Bundle-Version: 2.2.0.qualifier
Bundle-Activator: org.jboss.ide.eclipse.as.wtp.ui.WTPOveridePlugin
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
Modified: branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.as.wtp.ui/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.as.wtp.ui/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/as/plugins/org.jboss.ide.eclipse.as.wtp.ui/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.as.plugins</groupId>
<artifactId>org.jboss.ide.eclipse.as.wtp.ui</artifactId>
- <version>2.1.0-SNAPSHOT</version>
+ <version>2.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/as/tests/org.jboss.ide.eclipse.as.archives.integration.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/as/tests/org.jboss.ide.eclipse.as.archives.integration.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/as/tests/org.jboss.ide.eclipse.as.archives.integration.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.ide.eclipse.as.archives.integration.test
-Bundle-Version: 2.1.0.qualifier
+Bundle-Version: 2.2.0.qualifier
Bundle-Activator: org.jboss.ide.eclipse.as.archives.integration.test.ASArchivesIntegrationTest
Bundle-ActivationPolicy: lazy
Bundle-ClassPath: .
Modified: branches/jbosstools-3.2.0.M1/as/tests/org.jboss.ide.eclipse.as.archives.integration.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/as/tests/org.jboss.ide.eclipse.as.archives.integration.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/as/tests/org.jboss.ide.eclipse.as.archives.integration.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.as.tests</groupId>
<artifactId>org.jboss.ide.eclipse.as.archives.integration.test</artifactId>
- <version>2.1.0-SNAPSHOT</version>
+ <version>2.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: branches/jbosstools-3.2.0.M1/as/tests/org.jboss.ide.eclipse.as.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/as/tests/org.jboss.ide.eclipse.as.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/as/tests/org.jboss.ide.eclipse.as.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.ide.eclipse.as.test
-Bundle-Version: 2.1.0.qualifier
+Bundle-Version: 2.2.0.qualifier
Bundle-Activator: org.jboss.ide.eclipse.as.test.ASTest
Require-Bundle: org.eclipse.core.runtime,
org.junit,
@@ -19,7 +19,7 @@
org.eclipse.jst.jee,
org.eclipse.jst.server.core;bundle-version="1.1.0",
org.jboss.tools.jmx.core.test,
- org.jboss.ide.eclipse.as.ui;bundle-version="1.0.0",
+ org.jboss.ide.eclipse.as.ui,
org.eclipse.ui.navigator;bundle-version="3.3.101",
org.eclipse.jst.common.frameworks;bundle-version="1.1.300",
org.eclipse.jst.j2ee;bundle-version="1.1.301",
@@ -36,10 +36,10 @@
org.eclipse.jem.util;bundle-version="2.0.200",
org.eclipse.jst.j2ee.web;bundle-version="1.1.301",
org.jboss.tools.tests;bundle-version="2.0.0",
- org.jboss.ide.eclipse.as.classpath.core;bundle-version="2.1.0",
- org.jboss.ide.eclipse.as.classpath.ui;bundle-version="2.1.0",
- org.jboss.ide.eclipse.as.wtp.core;bundle-version="2.1.0",
- org.jboss.ide.eclipse.as.wtp.ui;bundle-version="2.1.0",
+ org.jboss.ide.eclipse.as.classpath.core,
+ org.jboss.ide.eclipse.as.classpath.ui,
+ org.jboss.ide.eclipse.as.wtp.core,
+ org.jboss.ide.eclipse.as.wtp.ui,
org.eclipse.jst.jsf.core;bundle-version="1.2.5",
org.eclipse.jpt.core;bundle-version="2.2.1"
Bundle-ActivationPolicy: lazy
Modified: branches/jbosstools-3.2.0.M1/as/tests/org.jboss.ide.eclipse.as.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/as/tests/org.jboss.ide.eclipse.as.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/as/tests/org.jboss.ide.eclipse.as.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.as.tests</groupId>
<artifactId>org.jboss.ide.eclipse.as.test</artifactId>
- <version>2.1.0-SNAPSHOT</version>
+ <version>2.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: branches/jbosstools-3.2.0.M1/as/tests/org.jboss.ide.eclipse.as.ui.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/as/tests/org.jboss.ide.eclipse.as.ui.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/as/tests/org.jboss.ide.eclipse.as.ui.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: Test Plug-in
Bundle-SymbolicName: org.jboss.ide.eclipse.as.ui.test;singleton:=true
-Bundle-Version: 2.1.0.qualifier
+Bundle-Version: 2.2.0.qualifier
Require-Bundle: org.junit,
org.eclipse.ui,
org.jboss.tools.tests,
Modified: branches/jbosstools-3.2.0.M1/as/tests/org.jboss.ide.eclipse.as.ui.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/as/tests/org.jboss.ide.eclipse.as.ui.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/as/tests/org.jboss.ide.eclipse.as.ui.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.as.tests</groupId>
<artifactId>org.jboss.ide.eclipse.as.ui.test</artifactId>
- <version>2.1.0-SNAPSHOT</version>
+ <version>2.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: branches/jbosstools-3.2.0.M1/birt/features/org.jboss.tools.birt.feature/feature.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/birt/features/org.jboss.tools.birt.feature/feature.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/birt/features/org.jboss.tools.birt.feature/feature.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
<feature
id="org.jboss.tools.birt.feature"
label="%featureName"
- version="1.1.0.qualifier"
+ version="1.2.0.qualifier"
provider-name="%providerName"
plugin="org.jboss.tools.birt.oda.ui">
Modified: branches/jbosstools-3.2.0.M1/birt/features/org.jboss.tools.birt.feature/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/birt/features/org.jboss.tools.birt.feature/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/birt/features/org.jboss.tools.birt.feature/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.birt.features</groupId>
<artifactId>org.jboss.tools.birt.feature</artifactId>
- <version>1.1.0-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/birt/plugins/org.jboss.tools.birt.core/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/birt/plugins/org.jboss.tools.birt.core/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/birt/plugins/org.jboss.tools.birt.core/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %BundleName
Bundle-SymbolicName: org.jboss.tools.birt.core;singleton:=true
-Bundle-Version: 1.1.0.qualifier
+Bundle-Version: 1.2.0.qualifier
Bundle-Activator: org.jboss.tools.birt.core.BirtCoreActivator
Bundle-Vendor: %BundleVendor
Bundle-Localization: plugin
Modified: branches/jbosstools-3.2.0.M1/birt/plugins/org.jboss.tools.birt.core/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/birt/plugins/org.jboss.tools.birt.core/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/birt/plugins/org.jboss.tools.birt.core/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.birt.plugins</groupId>
<artifactId>org.jboss.tools.birt.core</artifactId>
- <version>1.1.0-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/birt/plugins/org.jboss.tools.birt.oda/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/birt/plugins/org.jboss.tools.birt.oda/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/birt/plugins/org.jboss.tools.birt.oda/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %plugin.name
Bundle-SymbolicName: org.jboss.tools.birt.oda;singleton:=true
-Bundle-Version: 1.1.0.qualifier
+Bundle-Version: 1.2.0.qualifier
Bundle-ClassPath: .
Bundle-Activator: org.jboss.tools.birt.oda.Activator
Bundle-Vendor: %BundleVendor
Modified: branches/jbosstools-3.2.0.M1/birt/plugins/org.jboss.tools.birt.oda/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/birt/plugins/org.jboss.tools.birt.oda/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/birt/plugins/org.jboss.tools.birt.oda/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.birt.plugins</groupId>
<artifactId>org.jboss.tools.birt.oda</artifactId>
- <version>1.1.0-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/birt/tests/org.jboss.tools.birt.core.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/birt/tests/org.jboss.tools.birt.core.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/birt/tests/org.jboss.tools.birt.core.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: BIRT Core Tests
Bundle-SymbolicName: org.jboss.tools.birt.core.test
-Bundle-Version: 1.1.0.qualifier
+Bundle-Version: 1.2.0.qualifier
Bundle-Vendor: JBoss by RedHat
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Require-Bundle: org.jboss.tools.tests,
Modified: branches/jbosstools-3.2.0.M1/birt/tests/org.jboss.tools.birt.core.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/birt/tests/org.jboss.tools.birt.core.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/birt/tests/org.jboss.tools.birt.core.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.birt.tests</groupId>
<artifactId>org.jboss.tools.birt.core.test</artifactId>
- <version>1.1.0-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
<emma.filter>org.jboss.tools.birt.core*</emma.filter>
Modified: branches/jbosstools-3.2.0.M1/bpel/features/org.jboss.tools.bpel.tests.feature/feature.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/bpel/features/org.jboss.tools.bpel.tests.feature/feature.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/bpel/features/org.jboss.tools.bpel.tests.feature/feature.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
<feature
id="org.jboss.tools.bpel.tests.feature"
label="%featureName"
- version="1.0.0.qualifier"
+ version="1.1.0.qualifier"
provider-name="%featureProvider"
image="eclipse_update_120.jpg">
Modified: branches/jbosstools-3.2.0.M1/bpel/features/org.jboss.tools.bpel.tests.feature/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/bpel/features/org.jboss.tools.bpel.tests.feature/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/bpel/features/org.jboss.tools.bpel.tests.feature/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.bpel.features</groupId>
<artifactId>org.jboss.tools.bpel.tests.feature</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.1.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/bpel/plugins/org.eclipse.bpel.apache.ode.deploy.ui/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/bpel/plugins/org.eclipse.bpel.apache.ode.deploy.ui/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/bpel/plugins/org.eclipse.bpel.apache.ode.deploy.ui/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.bpel.apache.ode.deploy.ui; singleton:=true
-Bundle-Version: 0.5.0.qualifier
+Bundle-Version: 0.6.0.qualifier
Bundle-Activator: org.eclipse.bpel.apache.ode.deploy.ui.Activator
Require-Bundle: org.eclipse.ui;bundle-version="[3.4.0,4.0.0)",
org.eclipse.core.runtime;bundle-version="[3.4.0,4.0.0)",
Modified: branches/jbosstools-3.2.0.M1/bpel/plugins/org.eclipse.bpel.apache.ode.deploy.ui/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/bpel/plugins/org.eclipse.bpel.apache.ode.deploy.ui/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/bpel/plugins/org.eclipse.bpel.apache.ode.deploy.ui/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.bpel.plugins</groupId>
<artifactId>org.eclipse.bpel.apache.ode.deploy.ui</artifactId>
- <version>0.5.0-SNAPSHOT</version>
+ <version>0.6.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/bpel/plugins/org.eclipse.bpel.model/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/bpel/plugins/org.eclipse.bpel.model/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/bpel/plugins/org.eclipse.bpel.model/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.bpel.model; singleton:=true
-Bundle-Version: 0.5.0.qualifier
+Bundle-Version: 0.6.0.qualifier
Bundle-Activator: org.eclipse.bpel.model.BPELPlugin$Implementation
Bundle-Vendor: %providerName
Bundle-Localization: plugin
Modified: branches/jbosstools-3.2.0.M1/bpel/plugins/org.eclipse.bpel.model/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/bpel/plugins/org.eclipse.bpel.model/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/bpel/plugins/org.eclipse.bpel.model/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.bpel.plugins</groupId>
<artifactId>org.eclipse.bpel.model</artifactId>
- <version>0.5.0-SNAPSHOT</version>
+ <version>0.6.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/bpel/plugins/org.eclipse.bpel.ui/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/bpel/plugins/org.eclipse.bpel.ui/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/bpel/plugins/org.eclipse.bpel.ui/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.bpel.ui; singleton:=true
-Bundle-Version: 0.5.0.qualifier
+Bundle-Version: 0.6.0.qualifier
Bundle-Activator: org.eclipse.bpel.ui.BPELUIPlugin
Bundle-Vendor: %providerName
Bundle-Localization: plugin
Modified: branches/jbosstools-3.2.0.M1/bpel/plugins/org.eclipse.bpel.ui/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/bpel/plugins/org.eclipse.bpel.ui/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/bpel/plugins/org.eclipse.bpel.ui/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.bpel.plugins</groupId>
<artifactId>org.eclipse.bpel.ui</artifactId>
- <version>0.5.0-SNAPSHOT</version>
+ <version>0.6.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/bpel/plugins/org.eclipse.bpel.validator/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/bpel/plugins/org.eclipse.bpel.validator/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/bpel/plugins/org.eclipse.bpel.validator/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.eclipse.bpel.validator;singleton:=true
-Bundle-Version: 0.5.0.qualifier
+Bundle-Version: 0.6.0.qualifier
Bundle-Activator: org.eclipse.bpel.validator.Activator
Bundle-Vendor: %providerName
Bundle-Localization: plugin
Modified: branches/jbosstools-3.2.0.M1/bpel/plugins/org.eclipse.bpel.validator/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/bpel/plugins/org.eclipse.bpel.validator/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/bpel/plugins/org.eclipse.bpel.validator/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.bpel.plugins</groupId>
<artifactId>org.eclipse.bpel.validator</artifactId>
- <version>0.5.0-SNAPSHOT</version>
+ <version>0.6.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/bpel/tests/org.jboss.tools.bpel.ui.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/bpel/tests/org.jboss.tools.bpel.ui.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/bpel/tests/org.jboss.tools.bpel.ui.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: org.jboss.tools.bpel.ui.test
Bundle-SymbolicName: org.jboss.tools.bpel.ui.test
-Bundle-Version: 1.0.0.qualifier
+Bundle-Version: 1.1.0.qualifier
Bundle-Activator: org.jboss.tools.bpel.ui.test.Activator
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
Modified: branches/jbosstools-3.2.0.M1/bpel/tests/org.jboss.tools.bpel.ui.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/bpel/tests/org.jboss.tools.bpel.ui.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/bpel/tests/org.jboss.tools.bpel.ui.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.bpel.tests</groupId>
<artifactId>org.jboss.tools.bpel.ui.test</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.1.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: branches/jbosstools-3.2.0.M1/build/aggregate/site/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/build/aggregate/site/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/build/aggregate/site/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -38,15 +38,7 @@
<enabled>true</enabled>
</snapshots>
</repository>
-<!--
- <repository>
- <id>jbosstools-teiid-designer-snapshot</id>
- <url>http://download.jboss.org/jbosstools/builds/nightly/3.2.helios/jbosstools...</url>
- <layout>p2</layout>
- <snapshots>
- <enabled>true</enabled>
- </snapshots>
- </repository>
--->
+ <!-- <repository> <id>jbosstools-teiid-designer-snapshot</id> <url>http://download.jboss.org/jbosstools/builds/nightly/3.2.helios/jbosstools...</url>
+ <layout>p2</layout> <snapshots> <enabled>true</enabled> </snapshots> </repository> -->
</repositories>
</project>
Modified: branches/jbosstools-3.2.0.M1/cdi/features/org.jboss.tools.cdi.feature/feature.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/cdi/features/org.jboss.tools.cdi.feature/feature.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/cdi/features/org.jboss.tools.cdi.feature/feature.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
<feature
id="org.jboss.tools.cdi.feature"
label="%featureName"
- version="1.0.0.qualifier"
+ version="1.1.0.qualifier"
provider-name="%featureProvider">
<description>
Modified: branches/jbosstools-3.2.0.M1/cdi/features/org.jboss.tools.cdi.feature/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/cdi/features/org.jboss.tools.cdi.feature/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/cdi/features/org.jboss.tools.cdi.feature/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.cdi.features</groupId>
<artifactId>org.jboss.tools.cdi.feature</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.1.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/cdi/plugins/org.jboss.tools.cdi.core/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/cdi/plugins/org.jboss.tools.cdi.core/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/cdi/plugins/org.jboss.tools.cdi.core/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: Context and Dependency Injection Core
Bundle-SymbolicName: org.jboss.tools.cdi.core;singleton:=true
-Bundle-Version: 1.0.0.qualifier
+Bundle-Version: 1.1.0.qualifier
Bundle-Activator: org.jboss.tools.cdi.core.CDICorePlugin
Bundle-Localization: plugin
Require-Bundle: org.eclipse.ui,
Modified: branches/jbosstools-3.2.0.M1/cdi/plugins/org.jboss.tools.cdi.core/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/cdi/plugins/org.jboss.tools.cdi.core/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/cdi/plugins/org.jboss.tools.cdi.core/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.cdi.plugins</groupId>
<artifactId>org.jboss.tools.cdi.core</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.1.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/cdi/plugins/org.jboss.tools.cdi.text.ext/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/cdi/plugins/org.jboss.tools.cdi.text.ext/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/cdi/plugins/org.jboss.tools.cdi.text.ext/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -20,5 +20,5 @@
org.jboss.tools.common;bundle-version="2.0.0",
org.jboss.tools.common.el.core;bundle-version="2.0.0",
org.jboss.tools.common.model;bundle-version="2.0.0"
-Bundle-Version: 1.0.0.qualifier
+Bundle-Version: 1.1.0.qualifier
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Modified: branches/jbosstools-3.2.0.M1/cdi/plugins/org.jboss.tools.cdi.text.ext/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/cdi/plugins/org.jboss.tools.cdi.text.ext/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/cdi/plugins/org.jboss.tools.cdi.text.ext/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.cdi.plugins</groupId>
<artifactId>org.jboss.tools.cdi.text.ext</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.1.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/cdi/plugins/org.jboss.tools.cdi.ui/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/cdi/plugins/org.jboss.tools.cdi.ui/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/cdi/plugins/org.jboss.tools.cdi.ui/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.cdi.ui;singleton:=true
-Bundle-Version: 1.0.0.qualifier
+Bundle-Version: 1.1.0.qualifier
Bundle-Activator: org.jboss.tools.cdi.ui.CDIUIPlugin
Bundle-Localization: plugin
Require-Bundle: org.eclipse.ui,
Modified: branches/jbosstools-3.2.0.M1/cdi/plugins/org.jboss.tools.cdi.ui/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/cdi/plugins/org.jboss.tools.cdi.ui/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/cdi/plugins/org.jboss.tools.cdi.ui/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.cdi.plugins</groupId>
<artifactId>org.jboss.tools.cdi.ui</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.1.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/cdi/tests/org.jboss.tools.cdi.core.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/cdi/tests/org.jboss.tools.cdi.core.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/cdi/tests/org.jboss.tools.cdi.core.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: Contexts and Dependency Injection Test
Bundle-SymbolicName: org.jboss.tools.cdi.core.test
-Bundle-Version: 1.0.0.qualifier
+Bundle-Version: 1.1.0.qualifier
Bundle-Vendor: JBoss by Red Hat
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Require-Bundle: org.jboss.tools.tests,
Modified: branches/jbosstools-3.2.0.M1/cdi/tests/org.jboss.tools.cdi.core.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/cdi/tests/org.jboss.tools.cdi.core.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/cdi/tests/org.jboss.tools.cdi.core.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.cdi.tests</groupId>
<artifactId>org.jboss.tools.cdi.core.test</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.1.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: branches/jbosstools-3.2.0.M1/cdi/tests/org.jboss.tools.cdi.text.ext.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/cdi/tests/org.jboss.tools.cdi.text.ext.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/cdi/tests/org.jboss.tools.cdi.text.ext.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.cdi.text.ext.test
-Bundle-Version: 1.0.0.qualifier
+Bundle-Version: 1.1.0.qualifier
Require-Bundle: org.junit;bundle-version="3.8.2",
org.eclipse.core.resources;bundle-version="3.5.0",
org.eclipse.jface.text;bundle-version="3.5.0",
Modified: branches/jbosstools-3.2.0.M1/cdi/tests/org.jboss.tools.cdi.text.ext.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/cdi/tests/org.jboss.tools.cdi.text.ext.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/cdi/tests/org.jboss.tools.cdi.text.ext.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.cdi.tests</groupId>
<artifactId>org.jboss.tools.cdi.text.ext.test</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.1.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: branches/jbosstools-3.2.0.M1/cdi/tests/org.jboss.tools.cdi.ui.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/cdi/tests/org.jboss.tools.cdi.ui.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/cdi/tests/org.jboss.tools.cdi.ui.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: Contexts and Dependency Injection UI Test
Bundle-SymbolicName: org.jboss.tools.cdi.ui.test
-Bundle-Version: 1.0.0.qualifier
+Bundle-Version: 1.1.0.qualifier
Bundle-Vendor: JBoss by Red Hat
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Require-Bundle: org.junit,
Modified: branches/jbosstools-3.2.0.M1/cdi/tests/org.jboss.tools.cdi.ui.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/cdi/tests/org.jboss.tools.cdi.ui.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/cdi/tests/org.jboss.tools.cdi.ui.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.cdi.tests</groupId>
<artifactId>org.jboss.tools.cdi.ui.test</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.1.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -27,7 +27,7 @@
org.eclipse.ui.workbench.texteditor,
org.eclipse.jface.text,
org.apache.commons.httpclient;bundle-version="3.1.0"
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-ActivationPolicy: lazy
Bundle-ManifestVersion: 2
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Modified: branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.common.plugins</groupId>
<artifactId>org.jboss.tools.common</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.el.core/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.el.core/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.el.core/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -5,7 +5,7 @@
Bundle-Localization: plugin
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.common.el.core;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Export-Package: org.jboss.tools.common.el.core,
org.jboss.tools.common.el.core.ca,
org.jboss.tools.common.el.core.model,
Modified: branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.el.core/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.el.core/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.el.core/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.common.plugins</groupId>
<artifactId>org.jboss.tools.common.el.core</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.el.ui/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.el.ui/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.el.ui/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -4,7 +4,7 @@
Bundle-Localization: plugin
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.common.el.ui;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Export-Package: org.jboss.tools.common.el.ui,
org.jboss.tools.common.el.ui.ca
Bundle-Activator: org.jboss.tools.common.el.ui.ElUiPlugin
Modified: branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.el.ui/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.el.ui/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.el.ui/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.common.plugins</groupId>
<artifactId>org.jboss.tools.common.el.ui</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.model/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.model/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.model/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -82,5 +82,5 @@
org.eclipse.wst.common.emfworkbench.integration,
org.eclipse.core.resources;visibility:=reexport,
org.eclipse.core.runtime;visibility:=reexport
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Modified: branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.model/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.model/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.model/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.common.plugins</groupId>
<artifactId>org.jboss.tools.common.model</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.model.ui/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.model.ui/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.model.ui/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -92,5 +92,5 @@
org.eclipse.pde.ui,
org.eclipse.core.expressions;bundle-version="[3.4.100,4.0.0)",
org.jboss.tools.common.ui
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Modified: branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.model.ui/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.model.ui/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.model.ui/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.common.plugins</groupId>
<artifactId>org.jboss.tools.common.model.ui</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.projecttemplates/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.projecttemplates/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.projecttemplates/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
Require-Bundle: org.eclipse.core.runtime,
org.eclipse.ui,
org.jboss.tools.common
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-ActivationPolicy: lazy
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Modified: branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.projecttemplates/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.projecttemplates/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.projecttemplates/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.common.plugins</groupId>
<artifactId>org.jboss.tools.common.projecttemplates</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.resref.ui/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.resref.ui/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.resref.ui/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.common.resref.ui
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-Activator: org.jboss.tools.common.resref.ui.Activator
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
Modified: branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.resref.ui/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.resref.ui/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.resref.ui/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.common.plugins</groupId>
<artifactId>org.jboss.tools.common.resref.ui</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.text.ext/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.text.ext/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.text.ext/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -7,7 +7,7 @@
org.jboss.tools.common.text.ext.hyperlink.xpl,
org.jboss.tools.common.text.ext.util,
org.jboss.tools.common.text.ext.util.xpl
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-Name: %Bundle-Name.0
Bundle-ManifestVersion: 2
Bundle-Vendor: %providerName
Modified: branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.text.ext/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.text.ext/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.text.ext/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.common.plugins</groupId>
<artifactId>org.jboss.tools.common.text.ext</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.text.xml/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.text.xml/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.text.xml/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -25,5 +25,5 @@
org.eclipse.wst.sse.ui,
org.eclipse.wst.sse.core,
org.eclipse.core.resources
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Modified: branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.text.xml/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.text.xml/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.text.xml/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.common.plugins</groupId>
<artifactId>org.jboss.tools.common.text.xml</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.ui/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.ui/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.ui/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.common.ui
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Require-Bundle: org.eclipse.osgi,
org.jboss.tools.common,
org.eclipse.ui,
Modified: branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.ui/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.ui/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.ui/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.common.plugins</groupId>
<artifactId>org.jboss.tools.common.ui</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.verification/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.verification/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.verification/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -22,5 +22,5 @@
org.eclipse.core.resources,
org.eclipse.core.runtime,
org.eclipse.wst.validation
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Modified: branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.verification/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.verification/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/common/plugins/org.jboss.tools.common.verification/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.common.plugins</groupId>
<artifactId>org.jboss.tools.common.verification</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/common/tests/org.jboss.tools.common.el.core.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/common/tests/org.jboss.tools.common.el.core.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/common/tests/org.jboss.tools.common.el.core.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.common.el.core.test;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-ClassPath: .
Bundle-Vendor: %Bundle-Vendor.0
Export-Package: org.jboss.tools.common.el.core.test
Modified: branches/jbosstools-3.2.0.M1/common/tests/org.jboss.tools.common.el.core.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/common/tests/org.jboss.tools.common.el.core.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/common/tests/org.jboss.tools.common.el.core.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.common.tests</groupId>
<artifactId>org.jboss.tools.common.el.core.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
<emma.filter>org.jboss.tools.common.el.core*,org.jboss.tools.common.el.internal.core*</emma.filter>
Modified: branches/jbosstools-3.2.0.M1/common/tests/org.jboss.tools.common.model.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/common/tests/org.jboss.tools.common.model.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/common/tests/org.jboss.tools.common.model.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.common.model.test;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-Vendor: %Bundle-Vendor.0
Export-Package: org.jboss.tools.common.model.test
Require-Bundle:
Modified: branches/jbosstools-3.2.0.M1/common/tests/org.jboss.tools.common.model.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/common/tests/org.jboss.tools.common.model.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/common/tests/org.jboss.tools.common.model.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -10,7 +10,7 @@
</parent>
<groupId>org.jboss.tools.common.tests</groupId>
<artifactId>org.jboss.tools.common.model.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: branches/jbosstools-3.2.0.M1/common/tests/org.jboss.tools.common.model.ui.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/common/tests/org.jboss.tools.common.model.ui.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/common/tests/org.jboss.tools.common.model.ui.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.common.model.ui.test;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Require-Bundle: org.junit;bundle-version="3.8.2";visibility:=reexport,
org.eclipse.jface,
org.jboss.tools.tests,
Modified: branches/jbosstools-3.2.0.M1/common/tests/org.jboss.tools.common.model.ui.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/common/tests/org.jboss.tools.common.model.ui.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/common/tests/org.jboss.tools.common.model.ui.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -10,7 +10,7 @@
</parent>
<groupId>org.jboss.tools.common.tests</groupId>
<artifactId>org.jboss.tools.common.model.ui.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: branches/jbosstools-3.2.0.M1/common/tests/org.jboss.tools.common.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/common/tests/org.jboss.tools.common.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/common/tests/org.jboss.tools.common.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.common.test
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-Vendor: %Bundle-Vendor.0
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
Modified: branches/jbosstools-3.2.0.M1/common/tests/org.jboss.tools.common.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/common/tests/org.jboss.tools.common.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/common/tests/org.jboss.tools.common.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.common.tests</groupId>
<artifactId>org.jboss.tools.common.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: branches/jbosstools-3.2.0.M1/common/tests/org.jboss.tools.common.verification.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/common/tests/org.jboss.tools.common.verification.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/common/tests/org.jboss.tools.common.verification.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.common.verification.test;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-ClassPath: .
Bundle-Vendor: %Bundle-Vendor.0
Export-Package: org.jboss.tools.common.verification.test
Modified: branches/jbosstools-3.2.0.M1/common/tests/org.jboss.tools.common.verification.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/common/tests/org.jboss.tools.common.verification.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/common/tests/org.jboss.tools.common.verification.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.common.tests</groupId>
<artifactId>org.jboss.tools.common.verification.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: branches/jbosstools-3.2.0.M1/common/tests/org.jboss.tools.common.verification.ui.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/common/tests/org.jboss.tools.common.verification.ui.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/common/tests/org.jboss.tools.common.verification.ui.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: Verification UI Test Plug-in
Bundle-SymbolicName: org.jboss.tools.common.verification.ui.test
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Require-Bundle: org.junit,
org.jboss.tools.tests,
org.eclipse.jface,
Modified: branches/jbosstools-3.2.0.M1/common/tests/org.jboss.tools.common.verification.ui.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/common/tests/org.jboss.tools.common.verification.ui.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/common/tests/org.jboss.tools.common.verification.ui.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.common.tests</groupId>
<artifactId>org.jboss.tools.common.verification.ui.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: branches/jbosstools-3.2.0.M1/esb/plugins/org.jboss.tools.esb.core/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/esb/plugins/org.jboss.tools.esb.core/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/esb/plugins/org.jboss.tools.esb.core/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -14,5 +14,5 @@
Require-Bundle: org.jboss.tools.jst.web;visibility:=reexport,
org.eclipse.ui,
org.jboss.tools.esb.project.core
-Bundle-Version: 1.3.0.qualifier
+Bundle-Version: 1.4.0.qualifier
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Modified: branches/jbosstools-3.2.0.M1/esb/plugins/org.jboss.tools.esb.core/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/esb/plugins/org.jboss.tools.esb.core/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/esb/plugins/org.jboss.tools.esb.core/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.esb.plugins</groupId>
<artifactId>org.jboss.tools.esb.core</artifactId>
- <version>1.3.0-SNAPSHOT</version>
+ <version>1.4.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/esb/plugins/org.jboss.tools.esb.project.core/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/esb/plugins/org.jboss.tools.esb.project.core/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/esb/plugins/org.jboss.tools.esb.project.core/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.jboss.tools.esb.project.core;singleton:=true
-Bundle-Version: 1.3.0.qualifier
+Bundle-Version: 1.4.0.qualifier
Bundle-Localization: plugin
Bundle-Activator: org.jboss.tools.esb.core.ESBProjectCorePlugin
Require-Bundle: org.eclipse.ui,
Modified: branches/jbosstools-3.2.0.M1/esb/plugins/org.jboss.tools.esb.project.core/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/esb/plugins/org.jboss.tools.esb.project.core/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/esb/plugins/org.jboss.tools.esb.project.core/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.esb.plugins</groupId>
<artifactId>org.jboss.tools.esb.project.core</artifactId>
- <version>1.3.0-SNAPSHOT</version>
+ <version>1.4.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/esb/plugins/org.jboss.tools.esb.project.ui/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/esb/plugins/org.jboss.tools.esb.project.ui/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/esb/plugins/org.jboss.tools.esb.project.ui/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.esb.project.ui;singleton:=true
-Bundle-Version: 1.3.0.qualifier
+Bundle-Version: 1.4.0.qualifier
Bundle-Activator: org.jboss.tools.esb.project.ui.ESBProjectPlugin
Bundle-Localization: plugin
Require-Bundle: org.eclipse.ui,
Modified: branches/jbosstools-3.2.0.M1/esb/plugins/org.jboss.tools.esb.project.ui/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/esb/plugins/org.jboss.tools.esb.project.ui/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/esb/plugins/org.jboss.tools.esb.project.ui/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.esb.plugins</groupId>
<artifactId>org.jboss.tools.esb.project.ui</artifactId>
- <version>1.3.0-SNAPSHOT</version>
+ <version>1.4.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/esb/tests/org.jboss.tools.esb.core.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/esb/tests/org.jboss.tools.esb.core.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/esb/tests/org.jboss.tools.esb.core.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.esb.core.test;singleton:=true
-Bundle-Version: 1.3.0.qualifier
+Bundle-Version: 1.4.0.qualifier
Bundle-Vendor: %Bundle-Vendor.0
Export-Package: org.jboss.tools.esb.core.test
Require-Bundle:
Modified: branches/jbosstools-3.2.0.M1/esb/tests/org.jboss.tools.esb.core.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/esb/tests/org.jboss.tools.esb.core.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/esb/tests/org.jboss.tools.esb.core.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.esb.tests</groupId>
<artifactId>org.jboss.tools.esb.core.test</artifactId>
- <version>1.3.0-SNAPSHOT</version>
+ <version>1.4.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: branches/jbosstools-3.2.0.M1/esb/tests/org.jboss.tools.esb.project.core.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/esb/tests/org.jboss.tools.esb.project.core.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/esb/tests/org.jboss.tools.esb.project.core.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.esb.project.core.test
-Bundle-Version: 1.3.0.qualifier
+Bundle-Version: 1.4.0.qualifier
Bundle-Localization: plugin
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Require-Bundle: org.junit,
Modified: branches/jbosstools-3.2.0.M1/esb/tests/org.jboss.tools.esb.project.core.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/esb/tests/org.jboss.tools.esb.project.core.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/esb/tests/org.jboss.tools.esb.project.core.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.esb.tests</groupId>
<artifactId>org.jboss.tools.esb.project.core.test</artifactId>
- <version>1.3.0-SNAPSHOT</version>
+ <version>1.4.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: branches/jbosstools-3.2.0.M1/freemarker/tests/org.jboss.ide.eclipse.freemarker.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/freemarker/tests/org.jboss.ide.eclipse.freemarker.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/freemarker/tests/org.jboss.ide.eclipse.freemarker.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: Freemarker Tests
Bundle-SymbolicName: org.jboss.ide.eclipse.freemarker.test
-Bundle-Version: 1.1.0.qualifier
+Bundle-Version: 1.2.0.qualifier
Bundle-Activator: org.jboss.ide.eclipse.freemarker.test.Activator
Bundle-Vendor: JBoss by RedHat
Require-Bundle: org.eclipse.core.runtime,
Modified: branches/jbosstools-3.2.0.M1/freemarker/tests/org.jboss.ide.eclipse.freemarker.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/freemarker/tests/org.jboss.ide.eclipse.freemarker.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/freemarker/tests/org.jboss.ide.eclipse.freemarker.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.freemarker.tests</groupId>
<artifactId>org.jboss.ide.eclipse.freemarker.test</artifactId>
- <version>1.1.0-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
<emma.filter>org.jboss.ide.eclipse.freemarker.editor*</emma.filter>
Modified: branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.hibernate.eclipse/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.hibernate.eclipse/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.hibernate.eclipse/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.hibernate.eclipse
-Bundle-Version: 3.3.0.qualifier
+Bundle-Version: 3.4.0.qualifier
Bundle-ClassPath: org.hibernate.eclipse.jar,
lib/hibernate/asm.jar,
lib/hibernate/asm-attrs.jar,
Modified: branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.hibernate.eclipse/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.hibernate.eclipse/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.hibernate.eclipse/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.hibernatetools.plugins</groupId>
<artifactId>org.hibernate.eclipse</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.4.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.hibernate.eclipse.console/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.hibernate.eclipse.console/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.hibernate.eclipse.console/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.hibernate.eclipse.console; singleton:=true
-Bundle-Version: 3.3.0.qualifier
+Bundle-Version: 3.4.0.qualifier
Bundle-ClassPath: org.hibernate.eclipse.console.jar
Bundle-Activator: org.hibernate.eclipse.console.HibernateConsolePlugin
Bundle-Vendor: %Bundle-Vendor.0
Modified: branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.hibernate.eclipse.console/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.hibernate.eclipse.console/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.hibernate.eclipse.console/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.hibernatetools.plugins</groupId>
<artifactId>org.hibernate.eclipse.console</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.4.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.hibernate.eclipse.jdt.ui/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.hibernate.eclipse.jdt.ui/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.hibernate.eclipse.jdt.ui/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.hibernate.eclipse.jdt.ui;singleton:=true
-Bundle-Version: 3.3.0.qualifier
+Bundle-Version: 3.4.0.qualifier
Bundle-Activator: org.hibernate.eclipse.jdt.ui.Activator
Bundle-Vendor: %Bundle-Vendor.0
Bundle-Localization: plugin
Modified: branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.hibernate.eclipse.jdt.ui/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.hibernate.eclipse.jdt.ui/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.hibernate.eclipse.jdt.ui/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.hibernatetools.plugins</groupId>
<artifactId>org.hibernate.eclipse.jdt.ui</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.4.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.hibernate.eclipse.mapper/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.hibernate.eclipse.mapper/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.hibernate.eclipse.mapper/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.hibernate.eclipse.mapper; singleton:=true
-Bundle-Version: 3.3.0.qualifier
+Bundle-Version: 3.4.0.qualifier
Bundle-ClassPath: org.hibernate.eclipse.mapper.jar
Bundle-Activator: org.hibernate.eclipse.mapper.MapperPlugin
Bundle-Vendor: %Bundle-Vendor.0
Modified: branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.hibernate.eclipse.mapper/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.hibernate.eclipse.mapper/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.hibernate.eclipse.mapper/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.hibernatetools.plugins</groupId>
<artifactId>org.hibernate.eclipse.mapper</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.4.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.core/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.core/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.core/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.hibernate.jpt.core;singleton:=true
-Bundle-Version: 3.3.0.qualifier
+Bundle-Version: 3.4.0.qualifier
Require-Bundle:
org.eclipse.core.runtime,
org.eclipse.wst.validation,
Modified: branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.core/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.core/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.core/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.hibernatetools.plugins</groupId>
<artifactId>org.jboss.tools.hibernate.jpt.core</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.4.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: Hibernate Jdt UI
Bundle-SymbolicName: org.jboss.tools.hibernate.jpt.ui;singleton:=true
-Bundle-Version: 3.3.0.qualifier
+Bundle-Version: 3.4.0.qualifier
Bundle-Activator: org.jboss.tools.hibernate.jpt.ui.HibernateJptUIPlugin
Require-Bundle:
org.hibernate.eclipse.console,
Modified: branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.hibernatetools.plugins</groupId>
<artifactId>org.jboss.tools.hibernate.jpt.ui</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.4.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.jboss.tools.hibernate.ui/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.jboss.tools.hibernate.ui/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.jboss.tools.hibernate.ui/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -17,7 +17,7 @@
org.eclipse.jdt.core,
org.eclipse.jdt.ui,
org.hibernate.eclipse.console
-Bundle-Version: 3.3.0.qualifier
+Bundle-Version: 3.4.0.qualifier
Export-Package: org.jboss.tools.hibernate.ui.diagram,
org.jboss.tools.hibernate.ui.diagram.editors,
org.jboss.tools.hibernate.ui.diagram.editors.actions,
Modified: branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.jboss.tools.hibernate.ui/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.jboss.tools.hibernate.ui/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.jboss.tools.hibernate.ui/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.hibernatetools.plugins</groupId>
<artifactId>org.jboss.tools.hibernate.ui</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.4.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.jboss.tools.hibernate.xml.ui/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.jboss.tools.hibernate.xml.ui/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.jboss.tools.hibernate.xml.ui/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -25,5 +25,5 @@
org.jboss.tools.common.model.ui,
org.jboss.tools.hibernate.xml,
org.eclipse.wst.xml.ui
-Bundle-Version: 3.3.0.qualifier
+Bundle-Version: 3.4.0.qualifier
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Modified: branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.jboss.tools.hibernate.xml.ui/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.jboss.tools.hibernate.xml.ui/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/hibernatetools/plugins/org.jboss.tools.hibernate.xml.ui/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.hibernatetools.plugins</groupId>
<artifactId>org.jboss.tools.hibernate.xml.ui</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.4.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/hibernatetools/tests/org.hibernate.eclipse.console.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/hibernatetools/tests/org.hibernate.eclipse.console.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/hibernatetools/tests/org.hibernate.eclipse.console.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.hibernate.eclipse.console.test
-Bundle-Version: 3.3.0.qualifier
+Bundle-Version: 3.4.0.qualifier
Bundle-ClassPath: .,
lib/hibernate-tools-tests.jar,
lib/hsqldb.jar,
Modified: branches/jbosstools-3.2.0.M1/hibernatetools/tests/org.hibernate.eclipse.console.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/hibernatetools/tests/org.hibernate.eclipse.console.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/hibernatetools/tests/org.hibernate.eclipse.console.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.hibernatetools.tests</groupId>
<artifactId>org.hibernate.eclipse.console.test</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.4.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: branches/jbosstools-3.2.0.M1/hibernatetools/tests/org.hibernate.eclipse.jdt.ui.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/hibernatetools/tests/org.hibernate.eclipse.jdt.ui.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/hibernatetools/tests/org.hibernate.eclipse.jdt.ui.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.hibernate.eclipse.jdt.ui.test
-Bundle-Version: 3.3.0.qualifier
+Bundle-Version: 3.4.0.qualifier
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
org.hibernate.eclipse.console.test,
Modified: branches/jbosstools-3.2.0.M1/hibernatetools/tests/org.hibernate.eclipse.jdt.ui.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/hibernatetools/tests/org.hibernate.eclipse.jdt.ui.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/hibernatetools/tests/org.hibernate.eclipse.jdt.ui.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.hibernatetools.tests</groupId>
<artifactId>org.hibernate.eclipse.jdt.ui.test</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.4.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: branches/jbosstools-3.2.0.M1/hibernatetools/tests/org.jboss.tools.hibernate.jpt.core.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/hibernatetools/tests/org.jboss.tools.hibernate.jpt.core.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/hibernatetools/tests/org.jboss.tools.hibernate.jpt.core.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.hibernate.jpt.core.test
-Bundle-Version: 3.3.0.qualifier
+Bundle-Version: 3.4.0.qualifier
Require-Bundle: org.junit;bundle-version="4.0.0",
org.eclipse.wst.common.project.facet.ui;bundle-version="1.3.0",
org.eclipse.jpt.core;bundle-version="2.0.0",
Modified: branches/jbosstools-3.2.0.M1/hibernatetools/tests/org.jboss.tools.hibernate.jpt.core.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/hibernatetools/tests/org.jboss.tools.hibernate.jpt.core.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/hibernatetools/tests/org.jboss.tools.hibernate.jpt.core.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.hibernatetools.tests</groupId>
<artifactId>org.jboss.tools.hibernate.jpt.core.test</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.4.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: branches/jbosstools-3.2.0.M1/hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: Hibernate Tools SWTBot Tests
Bundle-SymbolicName: org.jboss.tools.hibernate.ui.bot.test
-Bundle-Version: 3.3.0.qualifier
+Bundle-Version: 3.4.0.qualifier
Bundle-Activator: org.jboss.tools.hibernate.ui.bot.testcase.Activator
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
Modified: branches/jbosstools-3.2.0.M1/hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.hibernatetools.tests</groupId>
<artifactId>org.jboss.tools.hibernate.ui.bot.test</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.4.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/hibernatetools/tests/org.jboss.tools.hibernate.ui.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/hibernatetools/tests/org.jboss.tools.hibernate.ui.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/hibernatetools/tests/org.jboss.tools.hibernate.ui.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.hibernate.ui.test
-Bundle-Version: 3.3.0.qualifier
+Bundle-Version: 3.4.0.qualifier
Require-Bundle: org.junit;bundle-version="3.8.2",
org.eclipse.wst.common.project.facet.ui;bundle-version="1.3.0",
org.eclipse.jdt.core,
Modified: branches/jbosstools-3.2.0.M1/hibernatetools/tests/org.jboss.tools.hibernate.ui.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/hibernatetools/tests/org.jboss.tools.hibernate.ui.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/hibernatetools/tests/org.jboss.tools.hibernate.ui.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.hibernatetools.tests</groupId>
<artifactId>org.jboss.tools.hibernate.ui.test</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.4.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: branches/jbosstools-3.2.0.M1/jbpm/features/org.jboss.tools.jbpm.common.feature/feature.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jbpm/features/org.jboss.tools.jbpm.common.feature/feature.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jbpm/features/org.jboss.tools.jbpm.common.feature/feature.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
<feature
id="org.jboss.tools.jbpm.common.feature"
label="%featureName"
- version="4.3.0.qualifier"
+ version="4.4.0.qualifier"
provider-name="%featureProvider">
<description>
Modified: branches/jbosstools-3.2.0.M1/jbpm/features/org.jboss.tools.jbpm.common.feature/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jbpm/features/org.jboss.tools.jbpm.common.feature/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jbpm/features/org.jboss.tools.jbpm.common.feature/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jbpm.features</groupId>
<artifactId>org.jboss.tools.jbpm.common.feature</artifactId>
- <version>4.3.0-SNAPSHOT</version>
+ <version>4.4.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/jbpm/features/org.jboss.tools.jbpm3.tests.feature/feature.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jbpm/features/org.jboss.tools.jbpm3.tests.feature/feature.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jbpm/features/org.jboss.tools.jbpm3.tests.feature/feature.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
<feature
id="org.jboss.tools.jbpm3.tests.feature"
label="%featureName"
- version="3.2.0.qualifier"
+ version="3.3.0.qualifier"
provider-name="%featureProvider">
<description>
Modified: branches/jbosstools-3.2.0.M1/jbpm/features/org.jboss.tools.jbpm3.tests.feature/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jbpm/features/org.jboss.tools.jbpm3.tests.feature/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jbpm/features/org.jboss.tools.jbpm3.tests.feature/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jbpm.features</groupId>
<artifactId>org.jboss.tools.jbpm3.tests.feature</artifactId>
- <version>3.2.0-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/jbpm/features/org.jboss.tools.jbpm4.tests.feature/feature.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jbpm/features/org.jboss.tools.jbpm4.tests.feature/feature.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jbpm/features/org.jboss.tools.jbpm4.tests.feature/feature.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
<feature
id="org.jboss.tools.jbpm4.tests.feature"
label="%featureName"
- version="4.3.0.qualifier"
+ version="4.4.0.qualifier"
provider-name="%featureProvider">
<description>
Modified: branches/jbosstools-3.2.0.M1/jbpm/features/org.jboss.tools.jbpm4.tests.feature/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jbpm/features/org.jboss.tools.jbpm4.tests.feature/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jbpm/features/org.jboss.tools.jbpm4.tests.feature/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jbpm.features</groupId>
<artifactId>org.jboss.tools.jbpm4.tests.feature</artifactId>
- <version>4.3.0-SNAPSHOT</version>
+ <version>4.4.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/jbpm/plugins/org.jboss.tools.jbpm.common/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/jbpm/plugins/org.jboss.tools.jbpm.common/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jbpm/plugins/org.jboss.tools.jbpm.common/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: Common Tools for jBPM 3 and jBPM 4
Bundle-SymbolicName: org.jboss.tools.jbpm.common;singleton:=true
-Bundle-Version: 4.3.0.qualifier
+Bundle-Version: 4.4.0.qualifier
Bundle-Vendor: JBoss by Red Hat
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Require-Bundle: org.eclipse.jface;bundle-version="3.4.2",
Modified: branches/jbosstools-3.2.0.M1/jbpm/plugins/org.jboss.tools.jbpm.common/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jbpm/plugins/org.jboss.tools.jbpm.common/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jbpm/plugins/org.jboss.tools.jbpm.common/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jbpm.plugins</groupId>
<artifactId>org.jboss.tools.jbpm.common</artifactId>
- <version>4.3.0-SNAPSHOT</version>
+ <version>4.4.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/jbpm/plugins/org.jboss.tools.jbpm.convert/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/jbpm/plugins/org.jboss.tools.jbpm.convert/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jbpm/plugins/org.jboss.tools.jbpm.convert/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %PLUGIN_NAME
Bundle-SymbolicName: org.jboss.tools.jbpm.convert;singleton:=true
-Bundle-Version: 1.1.0.qualifier
+Bundle-Version: 1.2.0.qualifier
Bundle-Localization: plugin
Bundle-Activator: org.jboss.tools.jbpm.convert.bpmnto.BpmnToPlugin
Require-Bundle: org.eclipse.ui,
Modified: branches/jbosstools-3.2.0.M1/jbpm/plugins/org.jboss.tools.jbpm.convert/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jbpm/plugins/org.jboss.tools.jbpm.convert/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jbpm/plugins/org.jboss.tools.jbpm.convert/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jbpm.plugins</groupId>
<artifactId>org.jboss.tools.jbpm.convert</artifactId>
- <version>1.1.0-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/jbpm/plugins/org.jbpm.gd.jpdl/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/jbpm/plugins/org.jbpm.gd.jpdl/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jbpm/plugins/org.jbpm.gd.jpdl/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %bundleName
Bundle-SymbolicName: org.jbpm.gd.jpdl;singleton:=true
-Bundle-Version: 3.2.0.qualifier
+Bundle-Version: 3.3.0.qualifier
Bundle-ClassPath: .,
lib/dom4j-1.4.jar
Bundle-Activator: org.jbpm.gd.jpdl.Plugin
Modified: branches/jbosstools-3.2.0.M1/jbpm/plugins/org.jbpm.gd.jpdl/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jbpm/plugins/org.jbpm.gd.jpdl/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jbpm/plugins/org.jbpm.gd.jpdl/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jbpm.plugins</groupId>
<artifactId>org.jbpm.gd.jpdl</artifactId>
- <version>3.2.0-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/jbpm/tests/org.jboss.tools.jbpm.convert.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/jbpm/tests/org.jboss.tools.jbpm.convert.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jbpm/tests/org.jboss.tools.jbpm.convert.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %BundleName
Bundle-SymbolicName: org.jboss.tools.jbpm.convert.test;singleton:=true
-Bundle-Version: 1.1.0.qualifier
+Bundle-Version: 1.2.0.qualifier
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Require-Bundle: org.jboss.tools.jbpm.convert,
org.junit,
Modified: branches/jbosstools-3.2.0.M1/jbpm/tests/org.jboss.tools.jbpm.convert.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jbpm/tests/org.jboss.tools.jbpm.convert.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jbpm/tests/org.jboss.tools.jbpm.convert.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.jbpm.tests</groupId>
<artifactId>org.jboss.tools.jbpm.convert.test</artifactId>
- <version>1.1.0-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: branches/jbosstools-3.2.0.M1/jmx/features/org.jboss.tools.jmx.tests.feature/feature.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jmx/features/org.jboss.tools.jmx.tests.feature/feature.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jmx/features/org.jboss.tools.jmx.tests.feature/feature.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
<feature
id="org.jboss.tools.jmx.tests.feature"
label="%featureName"
- version="1.1.0.qualifier"
+ version="1.2.0.qualifier"
provider-name="%featureProvider"
image="eclipse_update_120.jpg">
Modified: branches/jbosstools-3.2.0.M1/jmx/features/org.jboss.tools.jmx.tests.feature/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jmx/features/org.jboss.tools.jmx.tests.feature/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jmx/features/org.jboss.tools.jmx.tests.feature/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jmx.features</groupId>
<artifactId>org.jboss.tools.jmx.tests.feature</artifactId>
- <version>1.1.0-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/jmx/plugins/org.jboss.tools.jmx.core/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/jmx/plugins/org.jboss.tools.jmx.core/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jmx/plugins/org.jboss.tools.jmx.core/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %BundleName
Bundle-SymbolicName: org.jboss.tools.jmx.core;singleton:=true
-Bundle-Version: 1.1.0.qualifier
+Bundle-Version: 1.2.0.qualifier
Bundle-Activator: org.jboss.tools.jmx.core.JMXActivator
Bundle-Vendor: %BundleProvider
Require-Bundle: org.eclipse.core.runtime
Modified: branches/jbosstools-3.2.0.M1/jmx/plugins/org.jboss.tools.jmx.core/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jmx/plugins/org.jboss.tools.jmx.core/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jmx/plugins/org.jboss.tools.jmx.core/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jmx.plugins</groupId>
<artifactId>org.jboss.tools.jmx.core</artifactId>
- <version>1.1.0-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/jmx/plugins/org.jboss.tools.jmx.ui/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/jmx/plugins/org.jboss.tools.jmx.ui/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jmx/plugins/org.jboss.tools.jmx.ui/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %BundleName
Bundle-SymbolicName: org.jboss.tools.jmx.ui;singleton:=true
-Bundle-Version: 1.1.0.qualifier
+Bundle-Version: 1.2.0.qualifier
Bundle-Activator: org.jboss.tools.jmx.ui.JMXUIActivator
Bundle-Vendor: %BundleProvider
Require-Bundle: org.eclipse.ui,
Modified: branches/jbosstools-3.2.0.M1/jmx/plugins/org.jboss.tools.jmx.ui/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jmx/plugins/org.jboss.tools.jmx.ui/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jmx/plugins/org.jboss.tools.jmx.ui/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jmx.plugins</groupId>
<artifactId>org.jboss.tools.jmx.ui</artifactId>
- <version>1.1.0-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/jsf/features/org.jboss.tools.richfaces.feature/feature.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jsf/features/org.jboss.tools.richfaces.feature/feature.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jsf/features/org.jboss.tools.richfaces.feature/feature.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
<feature
id="org.jboss.tools.richfaces.feature"
label="%featureName"
- version="3.1.0.qualifier"
+ version="3.2.0.qualifier"
provider-name="%providerName"
plugin="org.jboss.tools.vpe">
Modified: branches/jbosstools-3.2.0.M1/jsf/features/org.jboss.tools.richfaces.feature/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jsf/features/org.jboss.tools.richfaces.feature/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jsf/features/org.jboss.tools.richfaces.feature/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jsf.features</groupId>
<artifactId>org.jboss.tools.richfaces.feature</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -51,6 +51,6 @@
org.eclipse.ltk.ui.refactoring,
org.eclipse.core.expressions;bundle-version="3.4.100",
org.jboss.tools.common.text.ext;bundle-version="3.1.0"
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-ActivationPolicy: lazy
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Modified: branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jsf.plugins</groupId>
<artifactId>org.jboss.tools.jsf</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.doc.user/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.doc.user/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.doc.user/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.jsf.doc.user;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
org.eclipse.help
Modified: branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.doc.user/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.doc.user/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.doc.user/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jsf.plugins</groupId>
<artifactId>org.jboss.tools.jsf.doc.user</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.text.ext/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.text.ext/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.text.ext/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -16,5 +16,5 @@
org.eclipse.jdt.ui;bundle-version="3.5.0"
Export-Package: org.jboss.tools.jsf.text.ext,
org.jboss.tools.jsf.text.ext.hyperlink
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Modified: branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.text.ext/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.text.ext/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.text.ext/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jsf.plugins</groupId>
<artifactId>org.jboss.tools.jsf.text.ext</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.text.ext.facelets/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.text.ext.facelets/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.text.ext.facelets/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -14,5 +14,5 @@
org.jboss.tools.jsf.text.ext
Export-Package: org.jboss.tools.jsf.text.ext.facelets,
org.jboss.tools.jsf.text.ext.facelets.hyperlink
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Modified: branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.text.ext.facelets/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.text.ext.facelets/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.text.ext.facelets/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jsf.plugins</groupId>
<artifactId>org.jboss.tools.jsf.text.ext.facelets</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.text.ext.richfaces/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.text.ext.richfaces/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.text.ext.richfaces/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -19,5 +19,5 @@
org.jboss.tools.jsf.text.ext.facelets
Export-Package: org.jboss.tools.jsf.text.ext.richfaces,
org.jboss.tools.jsf.text.ext.richfaces.hyperlink
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Modified: branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.text.ext.richfaces/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.text.ext.richfaces/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.text.ext.richfaces/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jsf.plugins</groupId>
<artifactId>org.jboss.tools.jsf.text.ext.richfaces</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.ui/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.ui/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.ui/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -55,6 +55,6 @@
org.jboss.tools.common.el.core,
org.eclipse.wst.html.ui;bundle-version="1.0.401",
org.eclipse.pde.ui;bundle-version="3.6.0"
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-ActivationPolicy: lazy
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Modified: branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.ui/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.ui/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.ui/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jsf.plugins</groupId>
<artifactId>org.jboss.tools.jsf.ui</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.vpe.jsf/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.vpe.jsf/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.vpe.jsf/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.jboss.tools.jsf.vpe.jsf;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-Activator: org.jboss.tools.jsf.vpe.jsf.JsfTemplatePlugin
Bundle-Vendor: %providerName
Require-Bundle: org.eclipse.ui,
Modified: branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.vpe.jsf/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.vpe.jsf/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.vpe.jsf/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jsf.plugins</groupId>
<artifactId>org.jboss.tools.jsf.vpe.jsf</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.vpe.richfaces/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.vpe.richfaces/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.vpe.richfaces/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -3,7 +3,7 @@
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.jsf.vpe.richfaces;singleton:=true
Bundle-Activator: org.jboss.tools.jsf.vpe.richfaces.RichFacesTemplatesActivator
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-Localization: plugin
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
Modified: branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.vpe.richfaces/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.vpe.richfaces/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.vpe.richfaces/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jsf.plugins</groupId>
<artifactId>org.jboss.tools.jsf.vpe.richfaces</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.vpe.seam/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.vpe.seam/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.vpe.seam/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -3,7 +3,7 @@
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.jsf.vpe.seam;singleton:=true
Bundle-Activator: org.jboss.tools.jsf.vpe.seam.SeamTemplatesActivator
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-Localization: plugin
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
Modified: branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.vpe.seam/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.vpe.seam/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jsf/plugins/org.jboss.tools.jsf.vpe.seam/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jsf.plugins</groupId>
<artifactId>org.jboss.tools.jsf.vpe.seam</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.jsf.test;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-ClassPath: lib/xmlunit1.0.jar,
.
Bundle-Vendor: %Bundle-Vendor.0
Modified: branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.jsf.tests</groupId>
<artifactId>org.jboss.tools.jsf.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
<properties>
Modified: branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.text.ext.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.text.ext.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.text.ext.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.jsf.text.ext.test
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Require-Bundle: org.junit,
org.jboss.tools.jsf.text.ext,
org.eclipse.ui.workbench.texteditor,
Modified: branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.text.ext.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.text.ext.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.text.ext.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.jsf.tests</groupId>
<artifactId>org.jboss.tools.jsf.text.ext.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.ui.bot.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.ui.bot.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.ui.bot.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: JSF UI SWTBot Tests
Bundle-SymbolicName: org.jboss.tools.jsf.ui.bot.test
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-Activator: org.jboss.tools.jsf.ui.bot.test.Activator
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
Modified: branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.ui.bot.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.ui.bot.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.ui.bot.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jsf.tests</groupId>
<artifactId>org.jboss.tools.jsf.ui.bot.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.ui.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.ui.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.ui.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.jsf.ui.test
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-Vendor: %Bundle-Vendor.0
Require-Bundle: org.junit,
org.jboss.tools.tests,
Modified: branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.ui.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.ui.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.ui.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.jsf.tests</groupId>
<artifactId>org.jboss.tools.jsf.ui.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.verification.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.verification.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.verification.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.jsf.verification.test;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-Vendor: %Bundle-Vendor.0
Export-Package: org.jboss.tools.jsf.verification.test
Require-Bundle:
Modified: branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.verification.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.verification.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.verification.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.jsf.tests</groupId>
<artifactId>org.jboss.tools.jsf.verification.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.ajax4jsf.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.ajax4jsf.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.ajax4jsf.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.jsf.vpe.ajax4jsf.test;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-Activator: org.jboss.tools.jsf.vpe.ajax4jsf.test.Ajax4JsfTestPlugin
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
Modified: branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.ajax4jsf.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.ajax4jsf.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.ajax4jsf.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.jsf.tests</groupId>
<artifactId>org.jboss.tools.jsf.vpe.ajax4jsf.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.facelets.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.facelets.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.facelets.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.jsf.vpe.facelets.test;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-Activator: org.jboss.tools.jsf.vpe.facelets.test.FaceletsTestPlugin
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
Modified: branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.facelets.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.facelets.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.facelets.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.jsf.tests</groupId>
<artifactId>org.jboss.tools.jsf.vpe.facelets.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.jbpm.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.jbpm.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.jbpm.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.jsf.vpe.jbpm.test;singleton:=true
-Bundle-Version: 1.0.0.qualifier
+Bundle-Version: 1.2.0.qualifier
Bundle-Activator: org.jboss.tools.jsf.vpe.jbpm.test.JBPMTestPlugin
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
Modified: branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.jbpm.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.jbpm.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.jbpm.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.jsf.tests</groupId>
<artifactId>org.jboss.tools.jsf.vpe.jbpm.test</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.1.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
<emma.filter>org.jboss.tools.jsf.vpe.jbpm*</emma.filter>
Modified: branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.jsf.vpe.jsf.test;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-Activator: org.jboss.tools.jsf.vpe.jsf.test.JsfTestPlugin
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
Modified: branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.jsf.tests</groupId>
<artifactId>org.jboss.tools.jsf.vpe.jsf.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.jstl.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.jstl.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.jstl.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %PluginName
Bundle-SymbolicName: org.jboss.tools.jsf.vpe.jstl.test;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-Activator: org.jboss.tools.jsf.vpe.jstl.test.JstlTestPlugin
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
Modified: branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.jstl.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.jstl.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.jstl.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.jsf.tests</groupId>
<artifactId>org.jboss.tools.jsf.vpe.jstl.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.myfaces.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.myfaces.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.myfaces.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.jsf.vpe.myfaces.test;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-Activator: org.jboss.tools.jsf.vpe.myfaces.test.MyFacesTestPlugin
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
Modified: branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.myfaces.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.myfaces.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.myfaces.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.jsf.tests</groupId>
<artifactId>org.jboss.tools.jsf.vpe.myfaces.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.jsf.vpe.richfaces.test;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-Activator: org.jboss.tools.jsf.vpe.richfaces.test.RichFacesTestPlugin
Require-Bundle: org.eclipse.ui,
org.jboss.tools.vpe,
Modified: branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.jsf.tests</groupId>
<artifactId>org.jboss.tools.jsf.vpe.richfaces.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.seam.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.seam.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.seam.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.jsf.vpe.seam.test;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-Activator: org.jboss.tools.jsf.vpe.seam.test.SeamTestPlugin
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
Modified: branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.seam.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.seam.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jsf/tests/org.jboss.tools.jsf.vpe.seam.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.jsf.tests</groupId>
<artifactId>org.jboss.tools.jsf.vpe.seam.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.css/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.css/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.css/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name
Bundle-SymbolicName: org.jboss.tools.jst.css;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-Activator: org.jboss.tools.jst.css.CssPlugin
Bundle-Vendor: %Bundle-Vendor
Bundle-Localization: plugin
Modified: branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.css/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.css/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.css/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jst.plugins</groupId>
<artifactId>org.jboss.tools.jst.css</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.firstrun/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.firstrun/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.firstrun/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.jst.firstrun;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-Vendor: %Bundle-Vendor.0
Require-Bundle: org.eclipse.ui.workbench,
org.eclipse.wst.server.core,
Modified: branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.firstrun/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.firstrun/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.firstrun/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jst.plugins</groupId>
<artifactId>org.jboss.tools.jst.firstrun</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.jsp/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.jsp/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.jsp/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -50,5 +50,5 @@
org.jboss.tools.jst.web.kb,
org.eclipse.core.databinding.property;bundle-version="1.2.0",
org.eclipse.emf.ecore;bundle-version="2.5.0"
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Modified: branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.jsp/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.jsp/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.jsp/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jst.plugins</groupId>
<artifactId>org.jboss.tools.jst.jsp</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.text.ext/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.text.ext/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.text.ext/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -5,7 +5,7 @@
org.jboss.tools.jst.text.ext.hyperlink,
org.jboss.tools.jst.text.ext.hyperlink.jsp,
org.jboss.tools.jst.text.ext.util
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-Name: %Bundle-Name.0
Bundle-ManifestVersion: 2
Bundle-Vendor: %providerName
Modified: branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.text.ext/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.text.ext/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.text.ext/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jst.plugins</groupId>
<artifactId>org.jboss.tools.jst.text.ext</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.web/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.web/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.web/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -22,7 +22,7 @@
org.eclipse.jst.jsp.core,
org.eclipse.jst.j2ee.core;bundle-version="1.1.300",
org.eclipse.wst.common.project.facet.core;bundle-version="1.4.0"
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Export-Package:
org.jboss.tools.jst.web,
org.jboss.tools.jst.web.browser,
Modified: branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.web/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.web/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.web/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jst.plugins</groupId>
<artifactId>org.jboss.tools.jst.web</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.web.kb/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.web.kb/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.web.kb/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -3,7 +3,7 @@
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.jst.web.kb;singleton:=true
Bundle-Localization: plugin
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-Activator: org.jboss.tools.jst.web.kb.WebKbPlugin
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
Modified: branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.web.kb/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.web.kb/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.web.kb/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jst.tests</groupId>
<artifactId>org.jboss.tools.jst.web.kb</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.web.tiles.ui/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.web.tiles.ui/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.web.tiles.ui/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -47,5 +47,5 @@
org.eclipse.core.runtime,
org.eclipse.gef,
org.eclipse.core.expressions
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Modified: branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.web.tiles.ui/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.web.tiles.ui/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.web.tiles.ui/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jst.plugins</groupId>
<artifactId>org.jboss.tools.jst.web.tiles.ui</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.web.ui/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.web.ui/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.web.ui/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -43,6 +43,6 @@
org.apache.velocity;bundle-version="1.5.0",
org.eclipse.ui.workbench.texteditor;bundle-version="3.5.1",
org.eclipse.wst.html.ui;bundle-version="1.0.401"
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Bundle-ClassPath: .
Modified: branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.web.ui/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.web.ui/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jst/plugins/org.jboss.tools.jst.web.ui/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jst.plugins</groupId>
<artifactId>org.jboss.tools.jst.web.ui</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.jst.css.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.jst.css.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.jst.css.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.jst.css.test;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-Activator: org.jboss.tools.jst.css.test.CSSTestPlugin
Require-Bundle: org.eclipse.core.runtime,
org.junit,
Modified: branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.jst.css.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.jst.css.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.jst.css.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.jst.tests</groupId>
<artifactId>org.jboss.tools.jst.css.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.jst.jsp.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.jst.jsp.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.jst.jsp.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.jst.jsp.test
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Require-Bundle: org.junit,
org.jboss.tools.tests,
org.eclipse.core.resources,
Modified: branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.jst.jsp.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.jst.jsp.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.jst.jsp.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.jst.tests</groupId>
<artifactId>org.jboss.tools.jst.jsp.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.jst.ui.bot.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.jst.ui.bot.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.jst.ui.bot.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: JST UI SWTBot Tests
Bundle-SymbolicName: org.jboss.tools.jst.ui.bot.test;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-Activator: org.jboss.tools.ui.bot.test.Activator
Require-Bundle: org.eclipse.core.runtime,
org.eclipse.swtbot.eclipse.finder;bundle-version="2.0.0",
Modified: branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.jst.ui.bot.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.jst.ui.bot.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.jst.ui.bot.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.jst.tests</groupId>
<artifactId>org.jboss.tools.jst.ui.bot.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
<properties>
<emma.filter>org.jboss.tools.jst*</emma.filter>
Modified: branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.jst.web.kb.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.jst.web.kb.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.jst.web.kb.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.jst.web.kb.test
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
org.eclipse.core.resources,
Modified: branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.jst.web.kb.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.jst.web.kb.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.jst.web.kb.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.jst.tests</groupId>
<artifactId>org.jboss.tools.jst.web.kb.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.jst.web.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.jst.web.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.jst.web.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.jst.web.test
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Require-Bundle: org.jboss.tools.jst.web,
org.junit,
org.jboss.tools.tests
Modified: branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.jst.web.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.jst.web.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.jst.web.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -10,7 +10,7 @@
</parent>
<groupId>org.jboss.tools.jst.tests</groupId>
<artifactId>org.jboss.tools.jst.web.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
<emma.filter>org.jboss.tools.jst.web*</emma.filter>
Modified: branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.jst.web.ui.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.jst.web.ui.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.jst.web.ui.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.jst.web.ui.test
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-Vendor: %Bundle-Vendor.0
Require-Bundle: org.jboss.tools.jst.web.ui,
org.eclipse.ui,
Modified: branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.jst.web.ui.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.jst.web.ui.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.jst.web.ui.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.jst.tests</groupId>
<artifactId>org.jboss.tools.jst.web.ui.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.ui.bot.ext/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.ui.bot.ext/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.ui.bot.ext/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: JBoss Tools SWTBot Extensions
Bundle-SymbolicName: org.jboss.tools.ui.bot.ext
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-Activator: org.jboss.tools.ui.bot.ext.Activator
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
Modified: branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.ui.bot.ext/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.ui.bot.ext/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/jst/tests/org.jboss.tools.ui.bot.ext/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jst.tests</groupId>
<artifactId>org.jboss.tools.ui.bot.ext</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/maven/features/org.jboss.tools.maven.cdi.feature/feature.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/maven/features/org.jboss.tools.maven.cdi.feature/feature.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/maven/features/org.jboss.tools.maven.cdi.feature/feature.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -1,33 +1,33 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<feature
- id="org.jboss.tools.maven.cdi.feature"
- label="%featureName"
- version="1.0.0.qualifier"
- provider-name="%providerName"
- plugin="org.jboss.tools.maven.cdi">
-
- <description>
- %description
- </description>
-
- <copyright>
- %copyright
- </copyright>
-
- <license url="%licenseURL">
- %license
- </license>
-
- <requires>
- <import feature="org.maven.ide.eclipse.feature" version="0.10.0" match="greaterOrEqual"/>
- <import feature="org.maven.ide.eclipse.wtp.feature" version="0.10.0" match="greaterOrEqual"/>
- </requires>
-
- <plugin
- id="org.jboss.tools.maven.cdi"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
-
-</feature>
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+ id="org.jboss.tools.maven.cdi.feature"
+ label="%featureName"
+ version="1.0.0.qualifier"
+ provider-name="%providerName"
+ plugin="org.jboss.tools.maven.cdi">
+
+ <description>
+ %description
+ </description>
+
+ <copyright>
+ %copyright
+ </copyright>
+
+ <license url="%licenseURL">
+ %license
+ </license>
+
+ <requires>
+ <import feature="org.maven.ide.eclipse.feature" version="0.10.0" match="greaterOrEqual"/>
+ <import feature="org.maven.ide.eclipse.wtp.feature" version="0.10.0" match="greaterOrEqual"/>
+ </requires>
+
+ <plugin
+ id="org.jboss.tools.maven.cdi"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
+
+</feature>
Modified: branches/jbosstools-3.2.0.M1/maven/features/org.jboss.tools.maven.feature/feature.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/maven/features/org.jboss.tools.maven.feature/feature.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/maven/features/org.jboss.tools.maven.feature/feature.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
<feature
id="org.jboss.tools.maven.feature"
label="%featureName"
- version="1.0.0.qualifier"
+ version="1.1.0.qualifier"
provider-name="%providerName"
plugin="org.jboss.tools.maven.ui">
Modified: branches/jbosstools-3.2.0.M1/maven/features/org.jboss.tools.maven.feature/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/maven/features/org.jboss.tools.maven.feature/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/maven/features/org.jboss.tools.maven.feature/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.maven.features</groupId>
<artifactId>org.jboss.tools.maven.feature</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.1.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/maven/features/org.jboss.tools.maven.hibernate.feature/feature.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/maven/features/org.jboss.tools.maven.hibernate.feature/feature.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/maven/features/org.jboss.tools.maven.hibernate.feature/feature.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -1,33 +1,33 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<feature
- id="org.jboss.tools.maven.hibernate.feature"
- label="%featureName"
- version="1.0.0.qualifier"
- provider-name="%providerName"
- plugin="org.jboss.tools.maven.hibernate">
-
- <description>
- %description
- </description>
-
- <copyright>
- %copyright
- </copyright>
-
- <license url="%licenseURL">
- %license
- </license>
-
- <requires>
- <import feature="org.maven.ide.eclipse.feature" version="0.10.0" match="greaterOrEqual"/>
- <import feature="org.maven.ide.eclipse.wtp.feature" version="0.10.0" match="greaterOrEqual"/>
- </requires>
-
- <plugin
- id="org.jboss.tools.maven.hibernate"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
-
-</feature>
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+ id="org.jboss.tools.maven.hibernate.feature"
+ label="%featureName"
+ version="1.0.0.qualifier"
+ provider-name="%providerName"
+ plugin="org.jboss.tools.maven.hibernate">
+
+ <description>
+ %description
+ </description>
+
+ <copyright>
+ %copyright
+ </copyright>
+
+ <license url="%licenseURL">
+ %license
+ </license>
+
+ <requires>
+ <import feature="org.maven.ide.eclipse.feature" version="0.10.0" match="greaterOrEqual"/>
+ <import feature="org.maven.ide.eclipse.wtp.feature" version="0.10.0" match="greaterOrEqual"/>
+ </requires>
+
+ <plugin
+ id="org.jboss.tools.maven.hibernate"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
+
+</feature>
Modified: branches/jbosstools-3.2.0.M1/maven/features/org.jboss.tools.maven.jsf.feature/feature.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/maven/features/org.jboss.tools.maven.jsf.feature/feature.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/maven/features/org.jboss.tools.maven.jsf.feature/feature.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -1,33 +1,33 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<feature
- id="org.jboss.tools.maven.jsf.feature"
- label="%featureName"
- version="1.0.0.qualifier"
- provider-name="%providerName"
- plugin="org.jboss.tools.maven.jsf">
-
- <description>
- %description
- </description>
-
- <copyright>
- %copyright
- </copyright>
-
- <license url="%licenseURL">
- %license
- </license>
-
- <requires>
- <import feature="org.maven.ide.eclipse.feature" version="0.10.0" match="greaterOrEqual"/>
- <import feature="org.maven.ide.eclipse.wtp.feature" version="0.10.0" match="greaterOrEqual"/>
- </requires>
-
- <plugin
- id="org.jboss.tools.maven.jsf"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
-
-</feature>
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+ id="org.jboss.tools.maven.jsf.feature"
+ label="%featureName"
+ version="1.0.0.qualifier"
+ provider-name="%providerName"
+ plugin="org.jboss.tools.maven.jsf">
+
+ <description>
+ %description
+ </description>
+
+ <copyright>
+ %copyright
+ </copyright>
+
+ <license url="%licenseURL">
+ %license
+ </license>
+
+ <requires>
+ <import feature="org.maven.ide.eclipse.feature" version="0.10.0" match="greaterOrEqual"/>
+ <import feature="org.maven.ide.eclipse.wtp.feature" version="0.10.0" match="greaterOrEqual"/>
+ </requires>
+
+ <plugin
+ id="org.jboss.tools.maven.jsf"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
+
+</feature>
Modified: branches/jbosstools-3.2.0.M1/maven/features/org.jboss.tools.maven.portlet.feature/feature.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/maven/features/org.jboss.tools.maven.portlet.feature/feature.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/maven/features/org.jboss.tools.maven.portlet.feature/feature.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -1,33 +1,33 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<feature
- id="org.jboss.tools.maven.portlet.feature"
- label="%featureName"
- version="1.0.0.qualifier"
- provider-name="%providerName"
- plugin="org.jboss.tools.maven.portlet">
-
- <description>
- %description
- </description>
-
- <copyright>
- %copyright
- </copyright>
-
- <license url="%licenseURL">
- %license
- </license>
-
- <requires>
- <import feature="org.maven.ide.eclipse.feature" version="0.10.0" match="greaterOrEqual"/>
- <import feature="org.maven.ide.eclipse.wtp.feature" version="0.10.0" match="greaterOrEqual"/>
- </requires>
-
- <plugin
- id="org.jboss.tools.maven.portlet"
- download-size="0"
- install-size="0"
- version="0.0.0"
- unpack="false"/>
-
-</feature>
+<?xml version="1.0" encoding="UTF-8"?>
+<feature
+ id="org.jboss.tools.maven.portlet.feature"
+ label="%featureName"
+ version="1.0.0.qualifier"
+ provider-name="%providerName"
+ plugin="org.jboss.tools.maven.portlet">
+
+ <description>
+ %description
+ </description>
+
+ <copyright>
+ %copyright
+ </copyright>
+
+ <license url="%licenseURL">
+ %license
+ </license>
+
+ <requires>
+ <import feature="org.maven.ide.eclipse.feature" version="0.10.0" match="greaterOrEqual"/>
+ <import feature="org.maven.ide.eclipse.wtp.feature" version="0.10.0" match="greaterOrEqual"/>
+ </requires>
+
+ <plugin
+ id="org.jboss.tools.maven.portlet"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
+
+</feature>
Modified: branches/jbosstools-3.2.0.M1/maven/features/org.jboss.tools.maven.seam.feature/feature.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/maven/features/org.jboss.tools.maven.seam.feature/feature.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/maven/features/org.jboss.tools.maven.seam.feature/feature.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
<feature
id="org.jboss.tools.maven.seam.feature"
label="%featureName"
- version="1.0.0.qualifier"
+ version="1.1.0.qualifier"
provider-name="%providerName"
plugin="org.jboss.tools.maven.seam">
Modified: branches/jbosstools-3.2.0.M1/maven/features/org.jboss.tools.maven.seam.feature/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/maven/features/org.jboss.tools.maven.seam.feature/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/maven/features/org.jboss.tools.maven.seam.feature/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.maven.features</groupId>
<artifactId>org.jboss.tools.maven.seam.feature</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.1.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/maven/plugins/org.jboss.tools.maven.core/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/maven/plugins/org.jboss.tools.maven.core/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/maven/plugins/org.jboss.tools.maven.core/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name
Bundle-SymbolicName: org.jboss.tools.maven.core; singleton:=true
-Bundle-Version: 1.0.0.qualifier
+Bundle-Version: 1.1.0.qualifier
Bundle-Localization: plugin
Bundle-Activator: org.jboss.tools.maven.core.MavenCoreActivator
Require-Bundle: org.eclipse.core.runtime,
Modified: branches/jbosstools-3.2.0.M1/maven/plugins/org.jboss.tools.maven.core/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/maven/plugins/org.jboss.tools.maven.core/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/maven/plugins/org.jboss.tools.maven.core/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.maven.plugins</groupId>
<artifactId>org.jboss.tools.maven.core</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.1.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/maven/plugins/org.jboss.tools.maven.seam/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/maven/plugins/org.jboss.tools.maven.seam/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/maven/plugins/org.jboss.tools.maven.seam/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name
Bundle-SymbolicName: org.jboss.tools.maven.seam;singleton:=true
-Bundle-Version: 1.0.0.qualifier
+Bundle-Version: 1.1.0.qualifier
Bundle-Localization: plugin
Bundle-Activator: org.jboss.tools.maven.seam.MavenSeamActivator
Require-Bundle: org.eclipse.ui,
Modified: branches/jbosstools-3.2.0.M1/maven/plugins/org.jboss.tools.maven.seam/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/maven/plugins/org.jboss.tools.maven.seam/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/maven/plugins/org.jboss.tools.maven.seam/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.maven.plugins</groupId>
<artifactId>org.jboss.tools.maven.seam</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.1.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/modeshape/plugins/org.jboss.tools.modeshape.rest/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/modeshape/plugins/org.jboss.tools.modeshape.rest/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/modeshape/plugins/org.jboss.tools.modeshape.rest/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %bundleName
Bundle-SymbolicName: org.jboss.tools.modeshape.rest;singleton:=true
-Bundle-Version: 1.0.0.qualifier
+Bundle-Version: 1.1.0.qualifier
Bundle-Activator: org.jboss.tools.modeshape.rest.Activator
Bundle-Vendor: %bundleVendor
Bundle-Localization: plugin
Modified: branches/jbosstools-3.2.0.M1/modeshape/plugins/org.jboss.tools.modeshape.rest/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/modeshape/plugins/org.jboss.tools.modeshape.rest/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/modeshape/plugins/org.jboss.tools.modeshape.rest/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.modeshape.plugins</groupId>
<artifactId>org.jboss.tools.modeshape.rest</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.1.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/modeshape/tests/org.jboss.tools.modeshape.rest.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/modeshape/tests/org.jboss.tools.modeshape.rest.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/modeshape/tests/org.jboss.tools.modeshape.rest.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: Test Plug-in
Bundle-SymbolicName: org.jboss.tools.modeshape.rest.test
-Bundle-Version: 1.0.0.qualifier
+Bundle-Version: 1.1.0.qualifier
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Require-Bundle: org.jboss.tools.modeshape.rest;bundle-version="1.0.0",
org.junit4
Modified: branches/jbosstools-3.2.0.M1/modeshape/tests/org.jboss.tools.modeshape.rest.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/modeshape/tests/org.jboss.tools.modeshape.rest.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/modeshape/tests/org.jboss.tools.modeshape.rest.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.modeshape.tests</groupId>
<artifactId>org.jboss.tools.modeshape.rest.test</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.1.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: branches/jbosstools-3.2.0.M1/parent-pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/parent-pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/parent-pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -10,7 +10,7 @@
<properties>
<!-- <tychoVersion>0.10.0-SNAPSHOT</tychoVersion> -->
<tychoVersion>0.9.0</tychoVersion>
- <scmBranch>trunk</scmBranch>
+ <scmBranch>branches/jbosstools-3.2.0.M1</scmBranch>
<BUILD_ALIAS>M1</BUILD_ALIAS>
<memoryOptions1>-Xms512m -Xmx1024m -XX:PermSize=256m</memoryOptions1>
<memoryOptions2>-XX:MaxPermSize=256m</memoryOptions2>
Modified: branches/jbosstools-3.2.0.M1/portlet/plugins/org.jboss.tools.portlet.core/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/portlet/plugins/org.jboss.tools.portlet.core/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/portlet/plugins/org.jboss.tools.portlet.core/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %BundleName
Bundle-SymbolicName: org.jboss.tools.portlet.core;singleton:=true
-Bundle-Version: 1.1.0.qualifier
+Bundle-Version: 1.2.0.qualifier
Bundle-Activator: org.jboss.tools.portlet.core.PortletCoreActivator
Bundle-Vendor: %BundleVendor
Require-Bundle: org.eclipse.core.runtime,
Modified: branches/jbosstools-3.2.0.M1/portlet/plugins/org.jboss.tools.portlet.core/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/portlet/plugins/org.jboss.tools.portlet.core/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/portlet/plugins/org.jboss.tools.portlet.core/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.portlet.plugins</groupId>
<artifactId>org.jboss.tools.portlet.core</artifactId>
- <version>1.1.0-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/portlet/plugins/org.jboss.tools.portlet.ui/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/portlet/plugins/org.jboss.tools.portlet.ui/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/portlet/plugins/org.jboss.tools.portlet.ui/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %BundleName
Bundle-SymbolicName: org.jboss.tools.portlet.ui;singleton:=true
-Bundle-Version: 1.1.0.qualifier
+Bundle-Version: 1.2.0.qualifier
Bundle-Activator: org.jboss.tools.portlet.ui.PortletUIActivator
Bundle-Vendor: %BundleVendor
Require-Bundle: org.eclipse.ui,
Modified: branches/jbosstools-3.2.0.M1/portlet/plugins/org.jboss.tools.portlet.ui/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/portlet/plugins/org.jboss.tools.portlet.ui/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/portlet/plugins/org.jboss.tools.portlet.ui/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.portlet.plugins</groupId>
<artifactId>org.jboss.tools.portlet.ui</artifactId>
- <version>1.1.0-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/portlet/tests/org.jboss.tools.portlet.core.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/portlet/tests/org.jboss.tools.portlet.core.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/portlet/tests/org.jboss.tools.portlet.core.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: Portlet Core Test Suite
Bundle-SymbolicName: org.jboss.tools.portlet.core.test
-Bundle-Version: 1.1.0.qualifier
+Bundle-Version: 1.2.0.qualifier
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Require-Bundle: org.jboss.tools.tests;bundle-version="2.0.0",
org.junit;bundle-version="3.8.2",
Modified: branches/jbosstools-3.2.0.M1/portlet/tests/org.jboss.tools.portlet.core.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/portlet/tests/org.jboss.tools.portlet.core.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/portlet/tests/org.jboss.tools.portlet.core.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.portlet.tests</groupId>
<artifactId>org.jboss.tools.portlet.core.test</artifactId>
- <version>1.1.0-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: branches/jbosstools-3.2.0.M1/profiler/features/org.jboss.tools.profiler.feature/feature.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/profiler/features/org.jboss.tools.profiler.feature/feature.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/profiler/features/org.jboss.tools.profiler.feature/feature.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
<feature
id="org.jboss.tools.profiler.feature"
label="%featureName"
- version="1.0.0.qualifier"
+ version="1.1.0.qualifier"
provider-name="%providerName">
<description url="http://www.jboss.org/tools">
Modified: branches/jbosstools-3.2.0.M1/profiler/features/org.jboss.tools.profiler.feature/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/profiler/features/org.jboss.tools.profiler.feature/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/profiler/features/org.jboss.tools.profiler.feature/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.profiler.features</groupId>
<artifactId>org.jboss.tools.profiler.feature</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.1.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/seam/features/org.jboss.tools.seam.feature/feature.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/seam/features/org.jboss.tools.seam.feature/feature.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/seam/features/org.jboss.tools.seam.feature/feature.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
<feature
id="org.jboss.tools.seam.feature"
label="%featureName"
- version="3.1.0.qualifier"
+ version="3.2.0.qualifier"
provider-name="%providerName"
plugin="org.jboss.tools.seam.core">
Modified: branches/jbosstools-3.2.0.M1/seam/features/org.jboss.tools.seam.feature/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/seam/features/org.jboss.tools.seam.feature/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/seam/features/org.jboss.tools.seam.feature/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tool.seam.features</groupId>
<artifactId>org.jboss.tools.seam.feature</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/seam/features/org.jboss.tools.seam.test.feature/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/seam/features/org.jboss.tools.seam.test.feature/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/seam/features/org.jboss.tools.seam.test.feature/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.seam.features</groupId>
<artifactId>org.jboss.tools.seam.test.feature</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/seam/plugins/org.jboss.tools.seam.core/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/seam/plugins/org.jboss.tools.seam.core/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/seam/plugins/org.jboss.tools.seam.core/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -37,7 +37,7 @@
org.jboss.tools.jsf,
org.eclipse.jem.util,
org.eclipse.debug.core;bundle-version="3.4.0"
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Export-Package:
org.jboss.tools.seam.core,
org.jboss.tools.seam.core.event,
Modified: branches/jbosstools-3.2.0.M1/seam/plugins/org.jboss.tools.seam.text.ext/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/seam/plugins/org.jboss.tools.seam.text.ext/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/seam/plugins/org.jboss.tools.seam.text.ext/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -30,5 +30,5 @@
org.jboss.tools.jsf.text.ext
Export-Package: org.jboss.tools.seam.text.ext,
org.jboss.tools.seam.text.ext.hyperlink
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Modified: branches/jbosstools-3.2.0.M1/seam/plugins/org.jboss.tools.seam.ui/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/seam/plugins/org.jboss.tools.seam.ui/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/seam/plugins/org.jboss.tools.seam.ui/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.seam.ui;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-Activator: org.jboss.tools.seam.ui.SeamGuiPlugin
Bundle-Localization: plugin
Require-Bundle: org.eclipse.ui.ide,
Modified: branches/jbosstools-3.2.0.M1/seam/plugins/org.jboss.tools.seam.xml/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/seam/plugins/org.jboss.tools.seam.xml/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/seam/plugins/org.jboss.tools.seam.xml/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -28,5 +28,5 @@
org.eclipse.core.resources,
org.eclipse.core.runtime,
org.eclipse.wst.web
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Modified: branches/jbosstools-3.2.0.M1/seam/plugins/org.jboss.tools.seam.xml.ui/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/seam/plugins/org.jboss.tools.seam.xml.ui/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/seam/plugins/org.jboss.tools.seam.xml.ui/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -34,5 +34,5 @@
org.jboss.tools.jst.web,
org.jboss.tools.jst.web.ui,
org.jboss.tools.seam.xml
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Modified: branches/jbosstools-3.2.0.M1/seam/plugins/org.jboss.tools.seam.xml.ui/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/seam/plugins/org.jboss.tools.seam.xml.ui/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/seam/plugins/org.jboss.tools.seam.xml.ui/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.seam.plugins</groupId>
<artifactId>org.jboss.tools.seam.xml.ui</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/seam/tests/org.jboss.tools.seam.core.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/seam/tests/org.jboss.tools.seam.core.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/seam/tests/org.jboss.tools.seam.core.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.seam.core.test;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-Vendor: %Bundle-Vendor.0
Export-Package: org.jboss.tools.seam.core.test,
org.jboss.tools.seam.core.test.project.facet,
Modified: branches/jbosstools-3.2.0.M1/seam/tests/org.jboss.tools.seam.core.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/seam/tests/org.jboss.tools.seam.core.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/seam/tests/org.jboss.tools.seam.core.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -10,7 +10,7 @@
</parent>
<groupId>org.jboss.tools.seam.tests</groupId>
<artifactId>org.jboss.tools.seam.core.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: branches/jbosstools-3.2.0.M1/seam/tests/org.jboss.tools.seam.pages.xml.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/seam/tests/org.jboss.tools.seam.pages.xml.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/seam/tests/org.jboss.tools.seam.pages.xml.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.seam.pages.xml.test;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-Vendor: %Bundle-Vendor.0
Export-Package: org.jboss.tools.seam.pages.xml.test
Require-Bundle:
Modified: branches/jbosstools-3.2.0.M1/seam/tests/org.jboss.tools.seam.pages.xml.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/seam/tests/org.jboss.tools.seam.pages.xml.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/seam/tests/org.jboss.tools.seam.pages.xml.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.seam.tests</groupId>
<artifactId>org.jboss.tools.seam.pages.xml.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
<emma.filter>org.jboss.tools.seam*</emma.filter>
Modified: branches/jbosstools-3.2.0.M1/seam/tests/org.jboss.tools.seam.ui.bot.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/seam/tests/org.jboss.tools.seam.ui.bot.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/seam/tests/org.jboss.tools.seam.ui.bot.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: Seam UI SWTBot Tests
Bundle-SymbolicName: org.jboss.tools.seam.ui.bot.test;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-Activator: org.jboss.tools.seam.ui.bot.test.Activator
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
Modified: branches/jbosstools-3.2.0.M1/seam/tests/org.jboss.tools.seam.ui.bot.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/seam/tests/org.jboss.tools.seam.ui.bot.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/seam/tests/org.jboss.tools.seam.ui.bot.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.seam.tests</groupId>
<artifactId>org.jboss.tools.seam.ui.bot.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<build>
<plugins>
Modified: branches/jbosstools-3.2.0.M1/seam/tests/org.jboss.tools.seam.ui.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/seam/tests/org.jboss.tools.seam.ui.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/seam/tests/org.jboss.tools.seam.ui.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.seam.ui.test
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-Vendor: %Bundle-Vendor.0
Require-Bundle: org.junit,
org.jboss.tools.seam.ui,
Modified: branches/jbosstools-3.2.0.M1/seam/tests/org.jboss.tools.seam.ui.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/seam/tests/org.jboss.tools.seam.ui.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/seam/tests/org.jboss.tools.seam.ui.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -10,7 +10,7 @@
</parent>
<groupId>org.jboss.tools.seam.tests</groupId>
<artifactId>org.jboss.tools.seam.ui.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: branches/jbosstools-3.2.0.M1/seam/tests/org.jboss.tools.seam.xml.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/seam/tests/org.jboss.tools.seam.xml.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/seam/tests/org.jboss.tools.seam.xml.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: Seam XML Tests
Bundle-SymbolicName: org.jboss.tools.seam.xml.test;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Require-Bundle: org.eclipse.core.runtime,
org.junit,
org.jboss.tools.seam.xml,
Modified: branches/jbosstools-3.2.0.M1/seam/tests/org.jboss.tools.seam.xml.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/seam/tests/org.jboss.tools.seam.xml.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/seam/tests/org.jboss.tools.seam.xml.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -10,7 +10,7 @@
</parent>
<groupId>org.jboss.tools.seam.tests</groupId>
<artifactId>org.jboss.tools.seam.xml.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: branches/jbosstools-3.2.0.M1/smooks/plugins/org.jboss.tools.smooks.core/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/smooks/plugins/org.jboss.tools.smooks.core/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/smooks/plugins/org.jboss.tools.smooks.core/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.smooks.core;singleton:=true
-Bundle-Version: 1.1.0.qualifier
+Bundle-Version: 1.2.0.qualifier
Bundle-Activator: org.jboss.tools.smooks.core.SmooksCoreActivator
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
Modified: branches/jbosstools-3.2.0.M1/smooks/plugins/org.jboss.tools.smooks.core/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/smooks/plugins/org.jboss.tools.smooks.core/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/smooks/plugins/org.jboss.tools.smooks.core/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.smooks.plugins</groupId>
<artifactId>org.jboss.tools.smooks.core</artifactId>
- <version>1.1.0-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/smooks/plugins/org.jboss.tools.smooks.runtime/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/smooks/plugins/org.jboss.tools.smooks.runtime/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/smooks/plugins/org.jboss.tools.smooks.runtime/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.jboss.tools.smooks.runtime
-Bundle-Version: 1.2.1.qualifier
+Bundle-Version: 1.3.0.qualifier
Require-Bundle: org.eclipse.core.runtime,
org.apache.commons.codec,
org.apache.commons.lang,
Modified: branches/jbosstools-3.2.0.M1/smooks/plugins/org.jboss.tools.smooks.runtime/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/smooks/plugins/org.jboss.tools.smooks.runtime/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/smooks/plugins/org.jboss.tools.smooks.runtime/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.smooks.plugins</groupId>
<artifactId>org.jboss.tools.smooks.runtime</artifactId>
- <version>1.2.1-SNAPSHOT</version>
+ <version>1.3.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/smooks/plugins/org.jboss.tools.smooks.ui/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/smooks/plugins/org.jboss.tools.smooks.ui/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/smooks/plugins/org.jboss.tools.smooks.ui/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.jboss.tools.smooks.ui;singleton:=true
-Bundle-Version: 1.1.0.qualifier
+Bundle-Version: 1.2.0.qualifier
Bundle-Activator: org.jboss.tools.smooks.configuration.SmooksConfigurationActivator
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
Modified: branches/jbosstools-3.2.0.M1/smooks/plugins/org.jboss.tools.smooks.ui/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/smooks/plugins/org.jboss.tools.smooks.ui/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/smooks/plugins/org.jboss.tools.smooks.ui/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.smooks.plugins</groupId>
<artifactId>org.jboss.tools.smooks.ui</artifactId>
- <version>1.1.0-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/struts/plugins/org.jboss.tools.struts/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/struts/plugins/org.jboss.tools.struts/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/struts/plugins/org.jboss.tools.struts/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -54,6 +54,6 @@
org.eclipse.core.resources,
org.eclipse.core.runtime,
org.apache.velocity;bundle-version="1.5.0"
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Bundle-ManifestVersion: 2
Modified: branches/jbosstools-3.2.0.M1/struts/plugins/org.jboss.tools.struts/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/struts/plugins/org.jboss.tools.struts/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/struts/plugins/org.jboss.tools.struts/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.struts.plugins</groupId>
<artifactId>org.jboss.tools.struts</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/struts/tests/org.jboss.tools.struts.text.ext.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/struts/tests/org.jboss.tools.struts.text.ext.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/struts/tests/org.jboss.tools.struts.text.ext.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.struts.text.ext.test;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Require-Bundle: org.junit,
org.jboss.tools.common.model.ui,
org.jboss.tools.tests,
Modified: branches/jbosstools-3.2.0.M1/struts/tests/org.jboss.tools.struts.text.ext.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/struts/tests/org.jboss.tools.struts.text.ext.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/struts/tests/org.jboss.tools.struts.text.ext.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.struts.tests</groupId>
<artifactId>org.jboss.tools.struts.text.ext.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
<emma.filter>org.jboss.tools*</emma.filter>
Modified: branches/jbosstools-3.2.0.M1/struts/tests/org.jboss.tools.struts.ui.bot.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/struts/tests/org.jboss.tools.struts.ui.bot.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/struts/tests/org.jboss.tools.struts.ui.bot.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: Struts UI SWTBot Tests
Bundle-SymbolicName: org.jboss.tools.struts.ui.bot.test
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-Activator: org.jboss.tools.struts.ui.bot.test.Activator
Require-Bundle: org.apache.log4j;bundle-version="1.2.13",
org.eclipse.core.runtime,
Modified: branches/jbosstools-3.2.0.M1/struts/tests/org.jboss.tools.struts.ui.bot.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/struts/tests/org.jboss.tools.struts.ui.bot.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/struts/tests/org.jboss.tools.struts.ui.bot.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.struts.tests</groupId>
<artifactId>org.jboss.tools.struts.ui.bot.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<build>
<plugins>
Modified: branches/jbosstools-3.2.0.M1/struts/tests/org.jboss.tools.struts.vpe.struts.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/struts/tests/org.jboss.tools.struts.vpe.struts.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/struts/tests/org.jboss.tools.struts.vpe.struts.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.struts.vpe.struts.test;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-Activator: org.jboss.tools.struts.vpe.struts.test.StrutsTestPlugin
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
Modified: branches/jbosstools-3.2.0.M1/struts/tests/org.jboss.tools.struts.vpe.struts.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/struts/tests/org.jboss.tools.struts.vpe.struts.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/struts/tests/org.jboss.tools.struts.vpe.struts.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.struts.tests</groupId>
<artifactId>org.jboss.tools.struts.vpe.struts.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
<emma.filter>org.jboss.tools*</emma.filter>
Modified: branches/jbosstools-3.2.0.M1/tptp/features/org.jboss.tools.tptp.feature/feature.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/tptp/features/org.jboss.tools.tptp.feature/feature.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/tptp/features/org.jboss.tools.tptp.feature/feature.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
<feature
id="org.jboss.tools.tptp.feature"
label="TPTP Profile On JBoss Server"
- version="1.1.0.qualifier"
+ version="1.2.0.qualifier"
plugin="org.jboss.tools.eclipse.as.tptp">
<description>
Modified: branches/jbosstools-3.2.0.M1/tptp/features/org.jboss.tools.tptp.feature/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/tptp/features/org.jboss.tools.tptp.feature/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/tptp/features/org.jboss.tools.tptp.feature/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.tptp.features</groupId>
<artifactId>org.jboss.tools.tptp.feature</artifactId>
- <version>1.1.0-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/tptp/plugins/org.jboss.tools.eclipse.as.tptp/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/tptp/plugins/org.jboss.tools.eclipse.as.tptp/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/tptp/plugins/org.jboss.tools.eclipse.as.tptp/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -3,7 +3,7 @@
Bundle-Name: %BundleName
Bundle-Vendor: %BundleVendor
Bundle-SymbolicName: org.jboss.tools.eclipse.as.tptp; singleton:=true
-Bundle-Version: 1.1.0.qualifier
+Bundle-Version: 1.2.0.qualifier
Bundle-Localization: plugin
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
Modified: branches/jbosstools-3.2.0.M1/tptp/plugins/org.jboss.tools.eclipse.as.tptp/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/tptp/plugins/org.jboss.tools.eclipse.as.tptp/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/tptp/plugins/org.jboss.tools.eclipse.as.tptp/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.tptp.plugins</groupId>
<artifactId>org.jboss.tools.eclipse.as.tptp</artifactId>
- <version>1.1.0-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/vpe/plugins/org.jboss.tools.vpe/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/vpe/plugins/org.jboss.tools.vpe/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/vpe/plugins/org.jboss.tools.vpe/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -61,5 +61,5 @@
org.eclipse.wst.sse.core;bundle-version="1.1.400",
org.eclipse.core.expressions;bundle-version="3.4.100",
org.jboss.tools.common.model.ui;bundle-version="2.0.0"
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Modified: branches/jbosstools-3.2.0.M1/vpe/plugins/org.jboss.tools.vpe/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/vpe/plugins/org.jboss.tools.vpe/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/vpe/plugins/org.jboss.tools.vpe/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.vpe.plugins</groupId>
<artifactId>org.jboss.tools.vpe</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/vpe/plugins/org.jboss.tools.vpe.html/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/vpe/plugins/org.jboss.tools.vpe.html/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/vpe/plugins/org.jboss.tools.vpe.html/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %pluginName
Bundle-SymbolicName: org.jboss.tools.vpe.html;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-Activator: org.jboss.tools.vpe.html.HtmlTemplatePlugin
Bundle-Vendor: %providerName
Require-Bundle: org.eclipse.ui,
Modified: branches/jbosstools-3.2.0.M1/vpe/plugins/org.jboss.tools.vpe.html/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/vpe/plugins/org.jboss.tools.vpe.html/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/vpe/plugins/org.jboss.tools.vpe.html/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.vpe.plugins</groupId>
<artifactId>org.jboss.tools.vpe.html</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/vpe/plugins/org.jboss.tools.vpe.resref/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/vpe/plugins/org.jboss.tools.vpe.resref/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/vpe/plugins/org.jboss.tools.vpe.resref/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -3,7 +3,7 @@
Bundle-Localization: plugin
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.vpe.resref;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-ManifestVersion: 2
Bundle-Activator: org.jboss.tools.vpe.resref.Activator
Require-Bundle: org.eclipse.ui,
Modified: branches/jbosstools-3.2.0.M1/vpe/plugins/org.jboss.tools.vpe.resref/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/vpe/plugins/org.jboss.tools.vpe.resref/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/vpe/plugins/org.jboss.tools.vpe.resref/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.vpe.plugins</groupId>
<artifactId>org.jboss.tools.vpe.resref</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/vpe/plugins/org.jboss.tools.vpe.ui.palette/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/vpe/plugins/org.jboss.tools.vpe.ui.palette/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/vpe/plugins/org.jboss.tools.vpe.ui.palette/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -13,5 +13,5 @@
org.eclipse.gef,
org.jboss.tools.common.model.ui,
org.jboss.tools.jst.jsp
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Modified: branches/jbosstools-3.2.0.M1/vpe/plugins/org.jboss.tools.vpe.ui.palette/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/vpe/plugins/org.jboss.tools.vpe.ui.palette/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/vpe/plugins/org.jboss.tools.vpe.ui.palette/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.vpe.plugins</groupId>
<artifactId>org.jboss.tools.vpe.ui.palette</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/vpe/plugins/org.jboss.tools.vpe.xulrunner/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/vpe/plugins/org.jboss.tools.vpe.xulrunner/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/vpe/plugins/org.jboss.tools.vpe.xulrunner/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.vpe.xulrunner;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-Activator: org.jboss.tools.vpe.xulrunner.BrowserPlugin
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
Modified: branches/jbosstools-3.2.0.M1/vpe/plugins/org.jboss.tools.vpe.xulrunner/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/vpe/plugins/org.jboss.tools.vpe.xulrunner/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/vpe/plugins/org.jboss.tools.vpe.xulrunner/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.vpe.plugins</groupId>
<artifactId>org.jboss.tools.vpe.xulrunner</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/vpe/plugins/org.jboss.tools.xulrunner/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/vpe/plugins/org.jboss.tools.xulrunner/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/vpe/plugins/org.jboss.tools.xulrunner/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %BundleName
Bundle-SymbolicName: org.jboss.tools.xulrunner;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-Vendor: %BundleVendor
Bundle-Localization: plugin
Bundle-ActivationPolicy: lazy
Modified: branches/jbosstools-3.2.0.M1/vpe/plugins/org.jboss.tools.xulrunner/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/vpe/plugins/org.jboss.tools.xulrunner/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/vpe/plugins/org.jboss.tools.xulrunner/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.vpe.plugins</groupId>
<artifactId>org.jboss.tools.xulrunner</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/vpe/tests/org.jboss.tools.vpe.html.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/vpe/tests/org.jboss.tools.vpe.html.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/vpe/tests/org.jboss.tools.vpe.html.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.vpe.html.test;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-Activator: org.jboss.tools.vpe.html.test.HtmlTestPlugin
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
Modified: branches/jbosstools-3.2.0.M1/vpe/tests/org.jboss.tools.vpe.html.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/vpe/tests/org.jboss.tools.vpe.html.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/vpe/tests/org.jboss.tools.vpe.html.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.vpe.tests</groupId>
<artifactId>org.jboss.tools.vpe.html.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: branches/jbosstools-3.2.0.M1/vpe/tests/org.jboss.tools.vpe.jsp.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/vpe/tests/org.jboss.tools.vpe.jsp.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/vpe/tests/org.jboss.tools.vpe.jsp.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.vpe.jsp.test;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-Activator: org.jboss.tools.vpe.jsp.test.JSPTestPlugin
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
Modified: branches/jbosstools-3.2.0.M1/vpe/tests/org.jboss.tools.vpe.jsp.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/vpe/tests/org.jboss.tools.vpe.jsp.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/vpe/tests/org.jboss.tools.vpe.jsp.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.vpe.tests</groupId>
<artifactId>org.jboss.tools.vpe.jsp.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: branches/jbosstools-3.2.0.M1/vpe/tests/org.jboss.tools.vpe.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/vpe/tests/org.jboss.tools.vpe.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/vpe/tests/org.jboss.tools.vpe.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.vpe.test;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-Activator: org.jboss.tools.vpe.test.VpeTestPlugin
Bundle-Vendor: %Bundle-Vendor.0
Require-Bundle: org.eclipse.ui,
Modified: branches/jbosstools-3.2.0.M1/vpe/tests/org.jboss.tools.vpe.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/vpe/tests/org.jboss.tools.vpe.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/vpe/tests/org.jboss.tools.vpe.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.vpe.tests</groupId>
<artifactId>org.jboss.tools.vpe.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: branches/jbosstools-3.2.0.M1/vpe/tests/org.jboss.tools.vpe.ui.bot.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/vpe/tests/org.jboss.tools.vpe.ui.bot.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/vpe/tests/org.jboss.tools.vpe.ui.bot.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: VPE UI SWTBot Tests
Bundle-SymbolicName: org.jboss.tools.vpe.ui.bot.test
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-Activator: org.jboss.tools.vpe.ui.bot.test.Activator
Bundle-Vendor: JBoss by Red Hat
Require-Bundle: org.eclipse.ui,
Modified: branches/jbosstools-3.2.0.M1/vpe/tests/org.jboss.tools.vpe.ui.bot.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/vpe/tests/org.jboss.tools.vpe.ui.bot.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/vpe/tests/org.jboss.tools.vpe.ui.bot.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.vpe.tests</groupId>
<artifactId>org.jboss.tools.vpe.ui.bot.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
<build>
<plugins>
Modified: branches/jbosstools-3.2.0.M1/vpe/tests/org.jboss.tools.vpe.ui.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/vpe/tests/org.jboss.tools.vpe.ui.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/vpe/tests/org.jboss.tools.vpe.ui.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.vpe.ui.test;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-Activator: org.jboss.tools.vpe.ui.test.VPETestPlugin
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
Modified: branches/jbosstools-3.2.0.M1/vpe/tests/org.jboss.tools.vpe.ui.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/vpe/tests/org.jboss.tools.vpe.ui.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/vpe/tests/org.jboss.tools.vpe.ui.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.vpe.tests</groupId>
<artifactId>org.jboss.tools.vpe.ui.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: branches/jbosstools-3.2.0.M1/vpe/tests/org.jboss.tools.vpe.xulrunner.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/vpe/tests/org.jboss.tools.vpe.xulrunner.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/vpe/tests/org.jboss.tools.vpe.xulrunner.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.vpe.xulrunner.test;singleton:=true
-Bundle-Version: 3.1.0.qualifier
+Bundle-Version: 3.2.0.qualifier
Bundle-Vendor: %Bundle-Vendor.0
Bundle-Localization: plugin
Require-Bundle: org.eclipse.ui,
Modified: branches/jbosstools-3.2.0.M1/vpe/tests/org.jboss.tools.vpe.xulrunner.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/vpe/tests/org.jboss.tools.vpe.xulrunner.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/vpe/tests/org.jboss.tools.vpe.xulrunner.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.vpe.tests</groupId>
<artifactId>org.jboss.tools.vpe.xulrunner.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: branches/jbosstools-3.2.0.M1/workingset/tests/org.jboss.tools.workingset.core.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/workingset/tests/org.jboss.tools.workingset.core.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/workingset/tests/org.jboss.tools.workingset.core.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: Working set tests
Bundle-SymbolicName: org.jboss.tools.workingset.core.test
-Bundle-Version: 1.0.0.qualifier
+Bundle-Version: 1.1.0.qualifier
Bundle-Vendor: JBoss by Red Hat
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
Modified: branches/jbosstools-3.2.0.M1/workingset/tests/org.jboss.tools.workingset.core.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/workingset/tests/org.jboss.tools.workingset.core.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/workingset/tests/org.jboss.tools.workingset.core.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.workingset.tests</groupId>
<artifactId>org.jboss.tools.workingset.core.test</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.1.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: branches/jbosstools-3.2.0.M1/ws/plugins/org.jboss.tools.ws.core/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/ws/plugins/org.jboss.tools.ws.core/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/ws/plugins/org.jboss.tools.ws.core/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %PLUGIN_NAME
Bundle-SymbolicName: org.jboss.tools.ws.core;singleton:=true
-Bundle-Version: 1.1.0.qualifier
+Bundle-Version: 1.2.0.qualifier
Bundle-Localization: plugin
Bundle-Activator: org.jboss.tools.ws.core.JBossWSCorePlugin
Require-Bundle: org.eclipse.ui,
Modified: branches/jbosstools-3.2.0.M1/ws/plugins/org.jboss.tools.ws.core/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/ws/plugins/org.jboss.tools.ws.core/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/ws/plugins/org.jboss.tools.ws.core/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.ws.plugins</groupId>
<artifactId>org.jboss.tools.ws.core</artifactId>
- <version>1.1.0-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/ws/plugins/org.jboss.tools.ws.creation.core/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/ws/plugins/org.jboss.tools.ws.creation.core/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/ws/plugins/org.jboss.tools.ws.creation.core/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.ws.creation.core;singleton:=true
-Bundle-Version: 1.1.0.qualifier
+Bundle-Version: 1.2.0.qualifier
Bundle-Activator: org.jboss.tools.ws.creation.core.JBossWSCreationCorePlugin
Bundle-Vendor: %Bundle-Vendor.0
Require-Bundle: org.eclipse.ui,
Modified: branches/jbosstools-3.2.0.M1/ws/plugins/org.jboss.tools.ws.creation.core/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/ws/plugins/org.jboss.tools.ws.creation.core/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/ws/plugins/org.jboss.tools.ws.creation.core/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.ws.plugins</groupId>
<artifactId>org.jboss.tools.ws.creation.core</artifactId>
- <version>1.1.0-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/ws/plugins/org.jboss.tools.ws.creation.ui/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/ws/plugins/org.jboss.tools.ws.creation.ui/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/ws/plugins/org.jboss.tools.ws.creation.ui/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -3,7 +3,7 @@
Bundle-Name: %PLUGIN_NAME
Bundle-Localization: plugin
Bundle-SymbolicName: org.jboss.tools.ws.creation.ui;singleton:=true
-Bundle-Version: 1.1.0.qualifier
+Bundle-Version: 1.2.0.qualifier
Bundle-Activator: org.jboss.tools.ws.creation.ui.JBossWSCreationUIPlugin
Bundle-Vendor: %PLUGIN_PROVIDER
Require-Bundle: org.eclipse.ui,
Modified: branches/jbosstools-3.2.0.M1/ws/plugins/org.jboss.tools.ws.creation.ui/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/ws/plugins/org.jboss.tools.ws.creation.ui/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/ws/plugins/org.jboss.tools.ws.creation.ui/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.ws.plugins</groupId>
<artifactId>org.jboss.tools.ws.creation.ui</artifactId>
- <version>1.1.0-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/ws/plugins/org.jboss.tools.ws.ui/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/ws/plugins/org.jboss.tools.ws.ui/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/ws/plugins/org.jboss.tools.ws.ui/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %PLUGIN_NAME
Bundle-SymbolicName: org.jboss.tools.ws.ui;singleton:=true
-Bundle-Version: 1.1.0.qualifier
+Bundle-Version: 1.2.0.qualifier
Bundle-Activator: org.jboss.tools.ws.ui.JBossWSUIPlugin
Bundle-Localization: plugin
Require-Bundle: org.eclipse.ui,
Modified: branches/jbosstools-3.2.0.M1/ws/plugins/org.jboss.tools.ws.ui/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/ws/plugins/org.jboss.tools.ws.ui/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/ws/plugins/org.jboss.tools.ws.ui/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.ws.plugins</groupId>
<artifactId>org.jboss.tools.ws.ui</artifactId>
- <version>1.1.0-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: branches/jbosstools-3.2.0.M1/ws/tests/org.jboss.tools.ws.core.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/ws/tests/org.jboss.tools.ws.core.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/ws/tests/org.jboss.tools.ws.core.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.ws.core.test
-Bundle-Version: 1.1.0.qualifier
+Bundle-Version: 1.2.0.qualifier
Bundle-Activator: org.jboss.tools.ws.core.test.Activator
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
Modified: branches/jbosstools-3.2.0.M1/ws/tests/org.jboss.tools.ws.core.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/ws/tests/org.jboss.tools.ws.core.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/ws/tests/org.jboss.tools.ws.core.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.ws.tests</groupId>
<artifactId>org.jboss.tools.ws.core.test</artifactId>
- <version>1.1.0-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: branches/jbosstools-3.2.0.M1/ws/tests/org.jboss.tools.ws.ui.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.2.0.M1/ws/tests/org.jboss.tools.ws.ui.test/META-INF/MANIFEST.MF 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/ws/tests/org.jboss.tools.ws.ui.test/META-INF/MANIFEST.MF 2010-07-07 20:35:26 UTC (rev 23290)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.ws.ui.test
-Bundle-Version: 1.1.0.qualifier
+Bundle-Version: 1.2.0.qualifier
Bundle-Activator: org.jboss.tools.ws.ui.test.Activator
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
Modified: branches/jbosstools-3.2.0.M1/ws/tests/org.jboss.tools.ws.ui.test/pom.xml
===================================================================
--- branches/jbosstools-3.2.0.M1/ws/tests/org.jboss.tools.ws.ui.test/pom.xml 2010-07-07 20:34:18 UTC (rev 23289)
+++ branches/jbosstools-3.2.0.M1/ws/tests/org.jboss.tools.ws.ui.test/pom.xml 2010-07-07 20:35:26 UTC (rev 23290)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.ws.tests</groupId>
<artifactId>org.jboss.tools.ws.ui.test</artifactId>
- <version>1.1.0-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
15 years, 9 months
JBoss Tools SVN: r23289 - in trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui: utils and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: bfitzpat
Date: 2010-07-07 16:34:18 -0400 (Wed, 07 Jul 2010)
New Revision: 23289
Modified:
trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/messages/JBossWSUI.properties
trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/messages/JBossWSUIMessages.java
trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/utils/JAXRSTester.java
trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/utils/JAXWSTester2.java
trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/views/JAXRSWSTestView.java
Log:
[JBIDE-6589] Delivering fixes to allow canceling a web service invocation
Modified: trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/messages/JBossWSUI.properties
===================================================================
--- trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/messages/JBossWSUI.properties 2010-07-07 19:52:56 UTC (rev 23288)
+++ trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/messages/JBossWSUI.properties 2010-07-07 20:34:18 UTC (rev 23289)
@@ -92,6 +92,7 @@
JAXRSWSTestView_Invoking_WS_Status=Invoking web service...
JAXRSWSTestView_JAXRS_Success_Status=Successful JAX-RS Web Service Execution
JAXRSWSTestView_JAXWS_Success_Status=Successful JAX-WS Web Service Execution
+JAXRSWSTestView_Message_Service_Invocation_Cancelled=Service invocation cancelled by user.
JAXRSWSTestView_Open_Monitor_Button=Open Monitor
JAXRSWSTestView_Open_Response_Tag_Contents_in_XML_Editor=Open &Response tag contents in XML Editor
JAXRSWSTestView_Open_Result_in_XML_Editor=&Open in XML Editor
Modified: trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/messages/JBossWSUIMessages.java
===================================================================
--- trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/messages/JBossWSUIMessages.java 2010-07-07 19:52:56 UTC (rev 23288)
+++ trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/messages/JBossWSUIMessages.java 2010-07-07 20:34:18 UTC (rev 23289)
@@ -123,6 +123,7 @@
public static String JAXRSWSTestView_Invoking_WS_Status;
public static String JAXRSWSTestView_JAXRS_Success_Status;
public static String JAXRSWSTestView_JAXWS_Success_Status;
+ public static String JAXRSWSTestView_Message_Service_Invocation_Cancelled;
public static String JAXRSWSTestView_Open_Monitor_Button;
public static String JAXRSWSTestView_Open_Response_Tag_Contents_in_XML_Editor;
public static String JAXRSWSTestView_Open_Result_in_XML_Editor;
Modified: trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/utils/JAXRSTester.java
===================================================================
--- trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/utils/JAXRSTester.java 2010-07-07 19:52:56 UTC (rev 23288)
+++ trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/utils/JAXRSTester.java 2010-07-07 20:34:18 UTC (rev 23289)
@@ -212,9 +212,19 @@
requestHeaders = httpurlc.getRequestProperties();
+ // Check if task has been interrupted
+ if (Thread.interrupted()) {
+ throw new InterruptedException();
+ }
+
// CONNECT!
httpurlc.connect();
+ // Check if task has been interrupted
+ if (Thread.interrupted()) {
+ throw new InterruptedException();
+ }
+
// If we are doing a POST and we have some request body to pass along, do it
if (requestBody != null && ( methodType.equalsIgnoreCase("POST") //$NON-NLS-1$
|| methodType.equalsIgnoreCase("PUT"))) { //$NON-NLS-1$
@@ -225,10 +235,19 @@
out.close();
}
+ // Check if task has been interrupted
+ if (Thread.interrupted()) {
+ throw new InterruptedException();
+ }
+
// retrieve result and put string results into the response
InputStream is = null;
try {
is = httpurlc.getInputStream();
+ // Check if task has been interrupted
+ if (Thread.interrupted()) {
+ throw new InterruptedException();
+ }
BufferedReader br = new BufferedReader(new InputStreamReader(is, "UTF-8"));//$NON-NLS-1$
StringBuilder sb = new StringBuilder();
String line;
@@ -238,6 +257,10 @@
}
br.close();
resultBody = sb.toString();
+ // Check if task has been interrupted
+ if (Thread.interrupted()) {
+ throw new InterruptedException();
+ }
} catch (IOException ie) {
try {
is = httpurlc.getErrorStream();
Modified: trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/utils/JAXWSTester2.java
===================================================================
--- trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/utils/JAXWSTester2.java 2010-07-07 19:52:56 UTC (rev 23288)
+++ trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/utils/JAXWSTester2.java 2010-07-07 20:34:18 UTC (rev 23289)
@@ -14,6 +14,7 @@
import java.io.ByteArrayOutputStream;
import java.net.URL;
import java.util.Map;
+import java.util.concurrent.ExecutionException;
import javax.xml.namespace.QName;
import javax.xml.soap.MessageFactory;
@@ -21,11 +22,14 @@
import javax.xml.soap.SOAPMessage;
import javax.xml.ws.BindingProvider;
import javax.xml.ws.Dispatch;
+import javax.xml.ws.Response;
import javax.xml.ws.Service;
import javax.xml.ws.Service.Mode;
import javax.xml.ws.handler.MessageContext;
import org.apache.axis.message.SOAPEnvelope;
+import org.eclipse.core.runtime.IProgressMonitor;
+import org.jboss.tools.ws.ui.messages.JBossWSUIMessages;
/**
* Test a JAX-WS web service using the JAX-WS API
@@ -79,7 +83,7 @@
* @throws Exception
*/
@SuppressWarnings("unchecked")
- public void doTest( String endpointurl, String actionurl, String ns,
+ public void doTest( IProgressMonitor monitor, String endpointurl, String actionurl, String ns,
String serviceName, String messageName, String body ) throws Exception {
this.resultBody = EMPTY_STRING;
@@ -96,18 +100,55 @@
SOAPMessage m = mf.createMessage( null, new ByteArrayInputStream(body.getBytes()));
m.saveChanges();
- SOAPMessage o = d.invoke(m);
-
- ByteArrayOutputStream baos = new ByteArrayOutputStream();
- o.writeTo(baos);
- this.resultBody = baos.toString();
- this.resultSOAPBody = o.getSOAPBody();
-
- if (d.getResponseContext() != null) {
- Object responseHeaders = d.getResponseContext().get(MessageContext.HTTP_RESPONSE_HEADERS);
- if ( responseHeaders != null && responseHeaders instanceof Map) {
- this.resultHeaders = (Map<String, String>) responseHeaders;
+ Response<SOAPMessage> response = d.invokeAsync(m);
+ while (!response.isDone()){
+ //go off and do some work
+ if (monitor != null) {
+ if (monitor.isCanceled()) {
+ response.cancel(true);
+ }
}
}
+
+ try {
+ if (!response.isCancelled()) {
+ //get the actual result
+ SOAPMessage o = (javax.xml.soap.SOAPMessage)response.get();
+
+ ByteArrayOutputStream baos = new ByteArrayOutputStream();
+ o.writeTo(baos);
+ this.resultBody = baos.toString();
+ this.resultSOAPBody = o.getSOAPBody();
+
+ if (d.getResponseContext() != null) {
+ Object responseHeaders = d.getResponseContext().get(MessageContext.HTTP_RESPONSE_HEADERS);
+ if ( responseHeaders != null && responseHeaders instanceof Map) {
+ this.resultHeaders = (Map<String, String>) responseHeaders;
+ }
+ }
+ } else {
+ throw new InterruptedException(JBossWSUIMessages.JAXRSWSTestView_Message_Service_Invocation_Cancelled);
+ }
+ } catch (ExecutionException ex){
+ //get the actual cause
+ Throwable cause = ex.getCause();
+ throw new Exception(cause);
+ } catch (InterruptedException ie){
+ //note interruptions
+ throw ie;
+ }
+// SOAPMessage o = d.invoke(m);
+//
+// ByteArrayOutputStream baos = new ByteArrayOutputStream();
+// o.writeTo(baos);
+// this.resultBody = baos.toString();
+// this.resultSOAPBody = o.getSOAPBody();
+//
+// if (d.getResponseContext() != null) {
+// Object responseHeaders = d.getResponseContext().get(MessageContext.HTTP_RESPONSE_HEADERS);
+// if ( responseHeaders != null && responseHeaders instanceof Map) {
+// this.resultHeaders = (Map<String, String>) responseHeaders;
+// }
+// }
}
}
Modified: trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/views/JAXRSWSTestView.java
===================================================================
--- trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/views/JAXRSWSTestView.java 2010-07-07 19:52:56 UTC (rev 23288)
+++ trunk/ws/plugins/org.jboss.tools.ws.ui/src/org/jboss/tools/ws/ui/views/JAXRSWSTestView.java 2010-07-07 20:34:18 UTC (rev 23289)
@@ -816,12 +816,15 @@
public void sleeping(IJobChangeEvent event) {};
public void scheduled(IJobChangeEvent event) {};
public void running(IJobChangeEvent event) {};
- public void done(IJobChangeEvent event) {
+ public void done(final IJobChangeEvent event) {
if (event.getResult() instanceof WSTestStatus) {
final WSTestStatus status = (WSTestStatus) event.getResult();
PlatformUI.getWorkbench().getDisplay().syncExec(new Runnable() {
public void run() {
- resultsText.setText(status.getResultsText());
+ if (status.getResultsText() != null)
+ resultsText.setText(status.getResultsText());
+ else if (status.getMessage() != null)
+ resultsText.setText(status.getMessage());
resultHeadersList.removeAll();
String[] headers =
DelimitedStringList.parseString(status.getHeadersList(), RESULT_HEADER_DELIMITER);
@@ -855,7 +858,21 @@
// JAXWSTester tester = new JAXWSTester();
// tester.doTest(url, action, body);
JAXWSTester2 tester = new JAXWSTester2();
- tester.doTest(url, action, serviceNSMessage[0], serviceNSMessage[1], serviceNSMessage[2], body);
+ while (!monitor.isCanceled()) {
+ try {
+ // call the service
+ tester.doTest(monitor, url, action, serviceNSMessage[0], serviceNSMessage[1], serviceNSMessage[2], body);
+ } catch (InterruptedException ie) {
+ monitor.setCanceled(true);
+ }
+ }
+ if (monitor.isCanceled()) {
+ WSTestStatus status = new WSTestStatus(IStatus.WARNING,
+ JBossWSUIPlugin.PLUGIN_ID,
+ JBossWSUIMessages.JAXRSWSTestView_Message_Service_Invocation_Cancelled);
+ return status;
+ }
+// tester.doTest(url, action, serviceNSMessage[0], serviceNSMessage[1], serviceNSMessage[2], body);
monitor.worked(70);
String result = tester.getResultBody();
envelope = tester.getResultSOAP();
15 years, 9 months
JBoss Tools SVN: r23288 - trunk/seam/features/org.jboss.tools.seam.test.feature.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-07-07 15:52:56 -0400 (Wed, 07 Jul 2010)
New Revision: 23288
Modified:
trunk/seam/features/org.jboss.tools.seam.test.feature/pom.xml
Log:
fix versions (manifest vs. pom)
Modified: trunk/seam/features/org.jboss.tools.seam.test.feature/pom.xml
===================================================================
--- trunk/seam/features/org.jboss.tools.seam.test.feature/pom.xml 2010-07-07 19:08:24 UTC (rev 23287)
+++ trunk/seam/features/org.jboss.tools.seam.test.feature/pom.xml 2010-07-07 19:52:56 UTC (rev 23288)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.seam.features</groupId>
<artifactId>org.jboss.tools.seam.test.feature</artifactId>
- <version>3.2.0-SNAPSHOT</version>
+ <version>3.1.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
</project>
15 years, 9 months
JBoss Tools SVN: r23287 - in trunk/seam/features: org.jboss.tools.seam.test.feature and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-07-07 15:08:24 -0400 (Wed, 07 Jul 2010)
New Revision: 23287
Modified:
trunk/seam/features/org.jboss.tools.seam.feature/pom.xml
trunk/seam/features/org.jboss.tools.seam.test.feature/pom.xml
Log:
fix versions
Modified: trunk/seam/features/org.jboss.tools.seam.feature/pom.xml
===================================================================
--- trunk/seam/features/org.jboss.tools.seam.feature/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
+++ trunk/seam/features/org.jboss.tools.seam.feature/pom.xml 2010-07-07 19:08:24 UTC (rev 23287)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tool.seam.features</groupId>
<artifactId>org.jboss.tools.seam.feature</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
</project>
Modified: trunk/seam/features/org.jboss.tools.seam.test.feature/pom.xml
===================================================================
--- trunk/seam/features/org.jboss.tools.seam.test.feature/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
+++ trunk/seam/features/org.jboss.tools.seam.test.feature/pom.xml 2010-07-07 19:08:24 UTC (rev 23287)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.seam.features</groupId>
<artifactId>org.jboss.tools.seam.test.feature</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
</project>
15 years, 9 months
JBoss Tools SVN: r23286 - in trunk: archives/plugins/org.jboss.ide.eclipse.archives.core and 160 other directories.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-07-07 14:15:38 -0400 (Wed, 07 Jul 2010)
New Revision: 23286
Modified:
trunk/archives/features/org.jboss.ide.eclipse.archives.feature/pom.xml
trunk/archives/plugins/org.jboss.ide.eclipse.archives.core/pom.xml
trunk/archives/plugins/org.jboss.ide.eclipse.archives.jdt.integration/pom.xml
trunk/archives/plugins/org.jboss.ide.eclipse.archives.ui/pom.xml
trunk/archives/tests/org.jboss.ide.eclipse.archives.test/pom.xml
trunk/archives/tests/org.jboss.ide.eclipse.archives.ui.test/pom.xml
trunk/as/features/org.jboss.ide.eclipse.as.feature/pom.xml
trunk/as/plugins/org.jboss.ide.eclipse.archives.webtools/pom.xml
trunk/as/plugins/org.jboss.ide.eclipse.as.classpath.core/pom.xml
trunk/as/plugins/org.jboss.ide.eclipse.as.core/pom.xml
trunk/as/plugins/org.jboss.ide.eclipse.as.ssh/pom.xml
trunk/as/plugins/org.jboss.ide.eclipse.as.ui/pom.xml
trunk/as/plugins/org.jboss.ide.eclipse.as.wtp.core/pom.xml
trunk/as/plugins/org.jboss.ide.eclipse.as.wtp.ui/pom.xml
trunk/as/tests/org.jboss.ide.eclipse.as.archives.integration.test/pom.xml
trunk/as/tests/org.jboss.ide.eclipse.as.test/pom.xml
trunk/as/tests/org.jboss.ide.eclipse.as.ui.test/pom.xml
trunk/birt/features/org.jboss.tools.birt.feature/pom.xml
trunk/birt/plugins/org.jboss.tools.birt.core/pom.xml
trunk/birt/plugins/org.jboss.tools.birt.oda/pom.xml
trunk/birt/tests/org.jboss.tools.birt.core.test/pom.xml
trunk/bpel/features/org.jboss.tools.bpel.tests.feature/pom.xml
trunk/bpel/plugins/org.eclipse.bpel.apache.ode.deploy.ui/pom.xml
trunk/bpel/plugins/org.eclipse.bpel.model/pom.xml
trunk/bpel/plugins/org.eclipse.bpel.ui/pom.xml
trunk/bpel/plugins/org.eclipse.bpel.validator/pom.xml
trunk/bpel/tests/org.jboss.tools.bpel.ui.test/pom.xml
trunk/cdi/features/org.jboss.tools.cdi.feature/pom.xml
trunk/cdi/plugins/org.jboss.tools.cdi.core/pom.xml
trunk/cdi/plugins/org.jboss.tools.cdi.text.ext/pom.xml
trunk/cdi/plugins/org.jboss.tools.cdi.ui/pom.xml
trunk/cdi/tests/org.jboss.tools.cdi.core.test/pom.xml
trunk/cdi/tests/org.jboss.tools.cdi.text.ext.test/pom.xml
trunk/cdi/tests/org.jboss.tools.cdi.ui.test/pom.xml
trunk/common/plugins/org.jboss.tools.common.el.core/pom.xml
trunk/common/plugins/org.jboss.tools.common.el.ui/pom.xml
trunk/common/plugins/org.jboss.tools.common.model.ui/pom.xml
trunk/common/plugins/org.jboss.tools.common.model/pom.xml
trunk/common/plugins/org.jboss.tools.common.projecttemplates/pom.xml
trunk/common/plugins/org.jboss.tools.common.resref.ui/pom.xml
trunk/common/plugins/org.jboss.tools.common.text.ext/pom.xml
trunk/common/plugins/org.jboss.tools.common.text.xml/pom.xml
trunk/common/plugins/org.jboss.tools.common.ui/pom.xml
trunk/common/plugins/org.jboss.tools.common.verification/pom.xml
trunk/common/plugins/org.jboss.tools.common/pom.xml
trunk/common/tests/org.jboss.tools.common.el.core.test/pom.xml
trunk/common/tests/org.jboss.tools.common.model.test/pom.xml
trunk/common/tests/org.jboss.tools.common.model.ui.test/pom.xml
trunk/common/tests/org.jboss.tools.common.test/pom.xml
trunk/common/tests/org.jboss.tools.common.verification.test/pom.xml
trunk/common/tests/org.jboss.tools.common.verification.ui.test/pom.xml
trunk/esb/plugins/org.jboss.tools.esb.core/pom.xml
trunk/esb/plugins/org.jboss.tools.esb.project.core/pom.xml
trunk/esb/plugins/org.jboss.tools.esb.project.ui/pom.xml
trunk/esb/tests/org.jboss.tools.esb.core.test/pom.xml
trunk/esb/tests/org.jboss.tools.esb.project.core.test/pom.xml
trunk/freemarker/tests/org.jboss.ide.eclipse.freemarker.test/pom.xml
trunk/hibernatetools/plugins/org.hibernate.eclipse.console/pom.xml
trunk/hibernatetools/plugins/org.hibernate.eclipse.jdt.ui/pom.xml
trunk/hibernatetools/plugins/org.hibernate.eclipse.mapper/pom.xml
trunk/hibernatetools/plugins/org.hibernate.eclipse/pom.xml
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.core/pom.xml
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/pom.xml
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.ui/pom.xml
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml.ui/pom.xml
trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/pom.xml
trunk/hibernatetools/tests/org.hibernate.eclipse.jdt.ui.test/pom.xml
trunk/hibernatetools/tests/org.jboss.tools.hibernate.jpt.core.test/pom.xml
trunk/hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test/pom.xml
trunk/hibernatetools/tests/org.jboss.tools.hibernate.ui.test/pom.xml
trunk/jbpm/features/org.jboss.tools.jbpm.common.feature/pom.xml
trunk/jbpm/features/org.jboss.tools.jbpm3.tests.feature/pom.xml
trunk/jbpm/features/org.jboss.tools.jbpm4.tests.feature/pom.xml
trunk/jbpm/plugins/org.jboss.tools.jbpm.common/pom.xml
trunk/jbpm/plugins/org.jboss.tools.jbpm.convert/pom.xml
trunk/jbpm/plugins/org.jbpm.gd.jpdl/pom.xml
trunk/jbpm/tests/org.jboss.tools.jbpm.convert.test/pom.xml
trunk/jmx/features/org.jboss.tools.jmx.tests.feature/pom.xml
trunk/jmx/plugins/org.jboss.tools.jmx.core/pom.xml
trunk/jmx/plugins/org.jboss.tools.jmx.ui/pom.xml
trunk/jsf/features/org.jboss.tools.richfaces.feature/pom.xml
trunk/jsf/plugins/org.jboss.tools.jsf.doc.user/pom.xml
trunk/jsf/plugins/org.jboss.tools.jsf.text.ext.facelets/pom.xml
trunk/jsf/plugins/org.jboss.tools.jsf.text.ext.richfaces/pom.xml
trunk/jsf/plugins/org.jboss.tools.jsf.text.ext/pom.xml
trunk/jsf/plugins/org.jboss.tools.jsf.ui/pom.xml
trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jsf/pom.xml
trunk/jsf/plugins/org.jboss.tools.jsf.vpe.richfaces/pom.xml
trunk/jsf/plugins/org.jboss.tools.jsf.vpe.seam/pom.xml
trunk/jsf/plugins/org.jboss.tools.jsf/pom.xml
trunk/jsf/tests/org.jboss.tools.jsf.test/pom.xml
trunk/jsf/tests/org.jboss.tools.jsf.text.ext.test/pom.xml
trunk/jsf/tests/org.jboss.tools.jsf.ui.bot.test/pom.xml
trunk/jsf/tests/org.jboss.tools.jsf.ui.test/pom.xml
trunk/jsf/tests/org.jboss.tools.jsf.verification.test/pom.xml
trunk/jsf/tests/org.jboss.tools.jsf.vpe.ajax4jsf.test/pom.xml
trunk/jsf/tests/org.jboss.tools.jsf.vpe.facelets.test/pom.xml
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jbpm.test/pom.xml
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/pom.xml
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jstl.test/pom.xml
trunk/jsf/tests/org.jboss.tools.jsf.vpe.myfaces.test/pom.xml
trunk/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/pom.xml
trunk/jsf/tests/org.jboss.tools.jsf.vpe.seam.test/pom.xml
trunk/jst/plugins/org.jboss.tools.jst.css/pom.xml
trunk/jst/plugins/org.jboss.tools.jst.firstrun/pom.xml
trunk/jst/plugins/org.jboss.tools.jst.jsp/pom.xml
trunk/jst/plugins/org.jboss.tools.jst.text.ext/pom.xml
trunk/jst/plugins/org.jboss.tools.jst.web.kb/pom.xml
trunk/jst/plugins/org.jboss.tools.jst.web.tiles.ui/pom.xml
trunk/jst/plugins/org.jboss.tools.jst.web.ui/pom.xml
trunk/jst/plugins/org.jboss.tools.jst.web/pom.xml
trunk/jst/tests/org.jboss.tools.jst.css.test/pom.xml
trunk/jst/tests/org.jboss.tools.jst.jsp.test/pom.xml
trunk/jst/tests/org.jboss.tools.jst.ui.bot.test/pom.xml
trunk/jst/tests/org.jboss.tools.jst.web.kb.test/pom.xml
trunk/jst/tests/org.jboss.tools.jst.web.test/pom.xml
trunk/jst/tests/org.jboss.tools.jst.web.ui.test/pom.xml
trunk/jst/tests/org.jboss.tools.ui.bot.ext/pom.xml
trunk/maven/features/org.jboss.tools.maven.feature/pom.xml
trunk/maven/features/org.jboss.tools.maven.seam.feature/pom.xml
trunk/maven/plugins/org.jboss.tools.maven.core/pom.xml
trunk/maven/plugins/org.jboss.tools.maven.seam/pom.xml
trunk/modeshape/plugins/org.jboss.tools.modeshape.rest/pom.xml
trunk/modeshape/tests/org.jboss.tools.modeshape.rest.test/pom.xml
trunk/portlet/plugins/org.jboss.tools.portlet.core/pom.xml
trunk/portlet/plugins/org.jboss.tools.portlet.ui/pom.xml
trunk/portlet/tests/org.jboss.tools.portlet.core.test/pom.xml
trunk/profiler/features/org.jboss.tools.profiler.feature/pom.xml
trunk/seam/plugins/org.jboss.tools.seam.xml.ui/pom.xml
trunk/seam/tests/org.jboss.tools.seam.core.test/pom.xml
trunk/seam/tests/org.jboss.tools.seam.pages.xml.test/pom.xml
trunk/seam/tests/org.jboss.tools.seam.ui.bot.test/pom.xml
trunk/seam/tests/org.jboss.tools.seam.ui.test/pom.xml
trunk/seam/tests/org.jboss.tools.seam.xml.test/pom.xml
trunk/smooks/plugins/org.jboss.tools.smooks.core/pom.xml
trunk/smooks/plugins/org.jboss.tools.smooks.runtime/pom.xml
trunk/smooks/plugins/org.jboss.tools.smooks.ui/pom.xml
trunk/struts/plugins/org.jboss.tools.struts/pom.xml
trunk/struts/tests/org.jboss.tools.struts.text.ext.test/pom.xml
trunk/struts/tests/org.jboss.tools.struts.ui.bot.test/pom.xml
trunk/struts/tests/org.jboss.tools.struts.vpe.struts.test/pom.xml
trunk/tptp/features/org.jboss.tools.tptp.feature/pom.xml
trunk/tptp/plugins/org.jboss.tools.eclipse.as.tptp/pom.xml
trunk/vpe/plugins/org.jboss.tools.vpe.html/pom.xml
trunk/vpe/plugins/org.jboss.tools.vpe.resref/pom.xml
trunk/vpe/plugins/org.jboss.tools.vpe.ui.palette/pom.xml
trunk/vpe/plugins/org.jboss.tools.vpe.xulrunner/pom.xml
trunk/vpe/plugins/org.jboss.tools.vpe/pom.xml
trunk/vpe/plugins/org.jboss.tools.xulrunner/pom.xml
trunk/vpe/tests/org.jboss.tools.vpe.html.test/pom.xml
trunk/vpe/tests/org.jboss.tools.vpe.jsp.test/pom.xml
trunk/vpe/tests/org.jboss.tools.vpe.test/pom.xml
trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/pom.xml
trunk/vpe/tests/org.jboss.tools.vpe.ui.test/pom.xml
trunk/vpe/tests/org.jboss.tools.vpe.xulrunner.test/pom.xml
trunk/workingset/tests/org.jboss.tools.workingset.core.test/pom.xml
trunk/ws/plugins/org.jboss.tools.ws.core/pom.xml
trunk/ws/plugins/org.jboss.tools.ws.creation.core/pom.xml
trunk/ws/plugins/org.jboss.tools.ws.creation.ui/pom.xml
trunk/ws/plugins/org.jboss.tools.ws.ui/pom.xml
trunk/ws/tests/org.jboss.tools.ws.core.test/pom.xml
trunk/ws/tests/org.jboss.tools.ws.ui.test/pom.xml
Log:
https://jira.jboss.org/browse/JBIDE-6381 increment plugin and feature versions
Modified: trunk/archives/features/org.jboss.ide.eclipse.archives.feature/pom.xml
===================================================================
--- trunk/archives/features/org.jboss.ide.eclipse.archives.feature/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/archives/features/org.jboss.ide.eclipse.archives.feature/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.archives.features</groupId>
<artifactId>org.jboss.ide.eclipse.archives.feature</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
</project>
Modified: trunk/archives/plugins/org.jboss.ide.eclipse.archives.core/pom.xml
===================================================================
--- trunk/archives/plugins/org.jboss.ide.eclipse.archives.core/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/archives/plugins/org.jboss.ide.eclipse.archives.core/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.archives.plugins</groupId>
<artifactId>org.jboss.ide.eclipse.archives.core</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/archives/plugins/org.jboss.ide.eclipse.archives.jdt.integration/pom.xml
===================================================================
--- trunk/archives/plugins/org.jboss.ide.eclipse.archives.jdt.integration/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/archives/plugins/org.jboss.ide.eclipse.archives.jdt.integration/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.archives.plugins</groupId>
<artifactId>org.jboss.ide.eclipse.archives.jdt.integration</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/archives/plugins/org.jboss.ide.eclipse.archives.ui/pom.xml
===================================================================
--- trunk/archives/plugins/org.jboss.ide.eclipse.archives.ui/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/archives/plugins/org.jboss.ide.eclipse.archives.ui/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.archives.plugins</groupId>
<artifactId>org.jboss.ide.eclipse.archives.ui</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/archives/tests/org.jboss.ide.eclipse.archives.test/pom.xml
===================================================================
--- trunk/archives/tests/org.jboss.ide.eclipse.archives.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/archives/tests/org.jboss.ide.eclipse.archives.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.archives.tests</groupId>
<artifactId>org.jboss.ide.eclipse.archives.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
<emma.filter>org.jboss.ide.eclipse.archives.core*</emma.filter>
Modified: trunk/archives/tests/org.jboss.ide.eclipse.archives.ui.test/pom.xml
===================================================================
--- trunk/archives/tests/org.jboss.ide.eclipse.archives.ui.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/archives/tests/org.jboss.ide.eclipse.archives.ui.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.archives.tests</groupId>
<artifactId>org.jboss.ide.eclipse.archives.ui.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
<emma.filter>org.jboss.ide.eclipse.archives.ui*</emma.filter>
Modified: trunk/as/features/org.jboss.ide.eclipse.as.feature/pom.xml
===================================================================
--- trunk/as/features/org.jboss.ide.eclipse.as.feature/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/as/features/org.jboss.ide.eclipse.as.feature/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.as.features</groupId>
<artifactId>org.jboss.ide.eclipse.as.feature</artifactId>
- <version>2.1.0-SNAPSHOT</version>
+ <version>2.2.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
</project>
Modified: trunk/as/plugins/org.jboss.ide.eclipse.archives.webtools/pom.xml
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.archives.webtools/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/as/plugins/org.jboss.ide.eclipse.archives.webtools/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.archives.plugins</groupId>
<artifactId>org.jboss.ide.eclipse.archives.webtools</artifactId>
- <version>2.1.0-SNAPSHOT</version>
+ <version>2.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.classpath.core/pom.xml
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.classpath.core/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.classpath.core/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.as.plugins</groupId>
<artifactId>org.jboss.ide.eclipse.as.classpath.core</artifactId>
- <version>2.1.0-SNAPSHOT</version>
+ <version>2.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.core/pom.xml
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.core/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.core/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.as.plugins</groupId>
<artifactId>org.jboss.ide.eclipse.as.core</artifactId>
- <version>2.1.0-SNAPSHOT</version>
+ <version>2.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.ssh/pom.xml
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.ssh/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.ssh/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.as.plugins</groupId>
<artifactId>org.jboss.ide.eclipse.as.ssh</artifactId>
- <version>2.1.0-SNAPSHOT</version>
+ <version>2.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.ui/pom.xml
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.ui/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.ui/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.as.plugins</groupId>
<artifactId>org.jboss.ide.eclipse.as.ui</artifactId>
- <version>2.1.0-SNAPSHOT</version>
+ <version>2.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.wtp.core/pom.xml
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.wtp.core/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.wtp.core/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.as.plugins</groupId>
<artifactId>org.jboss.ide.eclipse.as.wtp.core</artifactId>
- <version>2.1.0-SNAPSHOT</version>
+ <version>2.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.wtp.ui/pom.xml
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.wtp.ui/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.wtp.ui/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.as.plugins</groupId>
<artifactId>org.jboss.ide.eclipse.as.wtp.ui</artifactId>
- <version>2.1.0-SNAPSHOT</version>
+ <version>2.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/as/tests/org.jboss.ide.eclipse.as.archives.integration.test/pom.xml
===================================================================
--- trunk/as/tests/org.jboss.ide.eclipse.as.archives.integration.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/as/tests/org.jboss.ide.eclipse.as.archives.integration.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.as.tests</groupId>
<artifactId>org.jboss.ide.eclipse.as.archives.integration.test</artifactId>
- <version>2.1.0-SNAPSHOT</version>
+ <version>2.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/as/tests/org.jboss.ide.eclipse.as.test/pom.xml
===================================================================
--- trunk/as/tests/org.jboss.ide.eclipse.as.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/as/tests/org.jboss.ide.eclipse.as.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.as.tests</groupId>
<artifactId>org.jboss.ide.eclipse.as.test</artifactId>
- <version>2.1.0-SNAPSHOT</version>
+ <version>2.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/as/tests/org.jboss.ide.eclipse.as.ui.test/pom.xml
===================================================================
--- trunk/as/tests/org.jboss.ide.eclipse.as.ui.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/as/tests/org.jboss.ide.eclipse.as.ui.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.as.tests</groupId>
<artifactId>org.jboss.ide.eclipse.as.ui.test</artifactId>
- <version>2.1.0-SNAPSHOT</version>
+ <version>2.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/birt/features/org.jboss.tools.birt.feature/pom.xml
===================================================================
--- trunk/birt/features/org.jboss.tools.birt.feature/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/birt/features/org.jboss.tools.birt.feature/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.birt.features</groupId>
<artifactId>org.jboss.tools.birt.feature</artifactId>
- <version>1.1.0-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
</project>
Modified: trunk/birt/plugins/org.jboss.tools.birt.core/pom.xml
===================================================================
--- trunk/birt/plugins/org.jboss.tools.birt.core/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/birt/plugins/org.jboss.tools.birt.core/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.birt.plugins</groupId>
<artifactId>org.jboss.tools.birt.core</artifactId>
- <version>1.1.0-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/birt/plugins/org.jboss.tools.birt.oda/pom.xml
===================================================================
--- trunk/birt/plugins/org.jboss.tools.birt.oda/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/birt/plugins/org.jboss.tools.birt.oda/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.birt.plugins</groupId>
<artifactId>org.jboss.tools.birt.oda</artifactId>
- <version>1.1.0-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/birt/tests/org.jboss.tools.birt.core.test/pom.xml
===================================================================
--- trunk/birt/tests/org.jboss.tools.birt.core.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/birt/tests/org.jboss.tools.birt.core.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.birt.tests</groupId>
<artifactId>org.jboss.tools.birt.core.test</artifactId>
- <version>1.1.0-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
<emma.filter>org.jboss.tools.birt.core*</emma.filter>
Modified: trunk/bpel/features/org.jboss.tools.bpel.tests.feature/pom.xml
===================================================================
--- trunk/bpel/features/org.jboss.tools.bpel.tests.feature/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/bpel/features/org.jboss.tools.bpel.tests.feature/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.bpel.features</groupId>
<artifactId>org.jboss.tools.bpel.tests.feature</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.1.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
</project>
Modified: trunk/bpel/plugins/org.eclipse.bpel.apache.ode.deploy.ui/pom.xml
===================================================================
--- trunk/bpel/plugins/org.eclipse.bpel.apache.ode.deploy.ui/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/bpel/plugins/org.eclipse.bpel.apache.ode.deploy.ui/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.bpel.plugins</groupId>
<artifactId>org.eclipse.bpel.apache.ode.deploy.ui</artifactId>
- <version>0.5.0-SNAPSHOT</version>
+ <version>0.6.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/bpel/plugins/org.eclipse.bpel.model/pom.xml
===================================================================
--- trunk/bpel/plugins/org.eclipse.bpel.model/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/bpel/plugins/org.eclipse.bpel.model/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.bpel.plugins</groupId>
<artifactId>org.eclipse.bpel.model</artifactId>
- <version>0.5.0-SNAPSHOT</version>
+ <version>0.6.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/bpel/plugins/org.eclipse.bpel.ui/pom.xml
===================================================================
--- trunk/bpel/plugins/org.eclipse.bpel.ui/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/bpel/plugins/org.eclipse.bpel.ui/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.bpel.plugins</groupId>
<artifactId>org.eclipse.bpel.ui</artifactId>
- <version>0.5.0-SNAPSHOT</version>
+ <version>0.6.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/bpel/plugins/org.eclipse.bpel.validator/pom.xml
===================================================================
--- trunk/bpel/plugins/org.eclipse.bpel.validator/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/bpel/plugins/org.eclipse.bpel.validator/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.bpel.plugins</groupId>
<artifactId>org.eclipse.bpel.validator</artifactId>
- <version>0.5.0-SNAPSHOT</version>
+ <version>0.6.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/bpel/tests/org.jboss.tools.bpel.ui.test/pom.xml
===================================================================
--- trunk/bpel/tests/org.jboss.tools.bpel.ui.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/bpel/tests/org.jboss.tools.bpel.ui.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.bpel.tests</groupId>
<artifactId>org.jboss.tools.bpel.ui.test</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.1.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/cdi/features/org.jboss.tools.cdi.feature/pom.xml
===================================================================
--- trunk/cdi/features/org.jboss.tools.cdi.feature/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/cdi/features/org.jboss.tools.cdi.feature/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.cdi.features</groupId>
<artifactId>org.jboss.tools.cdi.feature</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.1.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
</project>
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.core/pom.xml
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.core/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.core/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.cdi.plugins</groupId>
<artifactId>org.jboss.tools.cdi.core</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.1.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.text.ext/pom.xml
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.text.ext/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.text.ext/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.cdi.plugins</groupId>
<artifactId>org.jboss.tools.cdi.text.ext</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.1.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/cdi/plugins/org.jboss.tools.cdi.ui/pom.xml
===================================================================
--- trunk/cdi/plugins/org.jboss.tools.cdi.ui/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/cdi/plugins/org.jboss.tools.cdi.ui/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.cdi.plugins</groupId>
<artifactId>org.jboss.tools.cdi.ui</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.1.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/cdi/tests/org.jboss.tools.cdi.core.test/pom.xml
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.core.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/cdi/tests/org.jboss.tools.cdi.core.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.cdi.tests</groupId>
<artifactId>org.jboss.tools.cdi.core.test</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.1.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/cdi/tests/org.jboss.tools.cdi.text.ext.test/pom.xml
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.text.ext.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/cdi/tests/org.jboss.tools.cdi.text.ext.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.cdi.tests</groupId>
<artifactId>org.jboss.tools.cdi.text.ext.test</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.1.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/cdi/tests/org.jboss.tools.cdi.ui.test/pom.xml
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.ui.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/cdi/tests/org.jboss.tools.cdi.ui.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.cdi.tests</groupId>
<artifactId>org.jboss.tools.cdi.ui.test</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.1.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/common/plugins/org.jboss.tools.common/pom.xml
===================================================================
--- trunk/common/plugins/org.jboss.tools.common/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/common/plugins/org.jboss.tools.common/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.common.plugins</groupId>
<artifactId>org.jboss.tools.common</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/common/plugins/org.jboss.tools.common.el.core/pom.xml
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.el.core/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/common/plugins/org.jboss.tools.common.el.core/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.common.plugins</groupId>
<artifactId>org.jboss.tools.common.el.core</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/common/plugins/org.jboss.tools.common.el.ui/pom.xml
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.el.ui/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/common/plugins/org.jboss.tools.common.el.ui/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.common.plugins</groupId>
<artifactId>org.jboss.tools.common.el.ui</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/common/plugins/org.jboss.tools.common.model/pom.xml
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.model/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/common/plugins/org.jboss.tools.common.model/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.common.plugins</groupId>
<artifactId>org.jboss.tools.common.model</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/common/plugins/org.jboss.tools.common.model.ui/pom.xml
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.model.ui/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/common/plugins/org.jboss.tools.common.model.ui/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.common.plugins</groupId>
<artifactId>org.jboss.tools.common.model.ui</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/common/plugins/org.jboss.tools.common.projecttemplates/pom.xml
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.projecttemplates/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/common/plugins/org.jboss.tools.common.projecttemplates/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.common.plugins</groupId>
<artifactId>org.jboss.tools.common.projecttemplates</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/common/plugins/org.jboss.tools.common.resref.ui/pom.xml
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.resref.ui/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/common/plugins/org.jboss.tools.common.resref.ui/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.common.plugins</groupId>
<artifactId>org.jboss.tools.common.resref.ui</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/common/plugins/org.jboss.tools.common.text.ext/pom.xml
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.text.ext/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/common/plugins/org.jboss.tools.common.text.ext/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.common.plugins</groupId>
<artifactId>org.jboss.tools.common.text.ext</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/common/plugins/org.jboss.tools.common.text.xml/pom.xml
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.text.xml/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/common/plugins/org.jboss.tools.common.text.xml/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.common.plugins</groupId>
<artifactId>org.jboss.tools.common.text.xml</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/common/plugins/org.jboss.tools.common.ui/pom.xml
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.ui/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/common/plugins/org.jboss.tools.common.ui/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.common.plugins</groupId>
<artifactId>org.jboss.tools.common.ui</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/common/plugins/org.jboss.tools.common.verification/pom.xml
===================================================================
--- trunk/common/plugins/org.jboss.tools.common.verification/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/common/plugins/org.jboss.tools.common.verification/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.common.plugins</groupId>
<artifactId>org.jboss.tools.common.verification</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/common/tests/org.jboss.tools.common.el.core.test/pom.xml
===================================================================
--- trunk/common/tests/org.jboss.tools.common.el.core.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/common/tests/org.jboss.tools.common.el.core.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.common.tests</groupId>
<artifactId>org.jboss.tools.common.el.core.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
<emma.filter>org.jboss.tools.common.el.core*,org.jboss.tools.common.el.internal.core*</emma.filter>
Modified: trunk/common/tests/org.jboss.tools.common.model.test/pom.xml
===================================================================
--- trunk/common/tests/org.jboss.tools.common.model.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/common/tests/org.jboss.tools.common.model.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -10,7 +10,7 @@
</parent>
<groupId>org.jboss.tools.common.tests</groupId>
<artifactId>org.jboss.tools.common.model.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/common/tests/org.jboss.tools.common.model.ui.test/pom.xml
===================================================================
--- trunk/common/tests/org.jboss.tools.common.model.ui.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/common/tests/org.jboss.tools.common.model.ui.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -10,7 +10,7 @@
</parent>
<groupId>org.jboss.tools.common.tests</groupId>
<artifactId>org.jboss.tools.common.model.ui.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/common/tests/org.jboss.tools.common.test/pom.xml
===================================================================
--- trunk/common/tests/org.jboss.tools.common.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/common/tests/org.jboss.tools.common.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.common.tests</groupId>
<artifactId>org.jboss.tools.common.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/common/tests/org.jboss.tools.common.verification.test/pom.xml
===================================================================
--- trunk/common/tests/org.jboss.tools.common.verification.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/common/tests/org.jboss.tools.common.verification.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.common.tests</groupId>
<artifactId>org.jboss.tools.common.verification.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/common/tests/org.jboss.tools.common.verification.ui.test/pom.xml
===================================================================
--- trunk/common/tests/org.jboss.tools.common.verification.ui.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/common/tests/org.jboss.tools.common.verification.ui.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.common.tests</groupId>
<artifactId>org.jboss.tools.common.verification.ui.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/esb/plugins/org.jboss.tools.esb.core/pom.xml
===================================================================
--- trunk/esb/plugins/org.jboss.tools.esb.core/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/esb/plugins/org.jboss.tools.esb.core/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.esb.plugins</groupId>
<artifactId>org.jboss.tools.esb.core</artifactId>
- <version>1.3.0-SNAPSHOT</version>
+ <version>1.4.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/esb/plugins/org.jboss.tools.esb.project.core/pom.xml
===================================================================
--- trunk/esb/plugins/org.jboss.tools.esb.project.core/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/esb/plugins/org.jboss.tools.esb.project.core/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.esb.plugins</groupId>
<artifactId>org.jboss.tools.esb.project.core</artifactId>
- <version>1.3.0-SNAPSHOT</version>
+ <version>1.4.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/esb/plugins/org.jboss.tools.esb.project.ui/pom.xml
===================================================================
--- trunk/esb/plugins/org.jboss.tools.esb.project.ui/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/esb/plugins/org.jboss.tools.esb.project.ui/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.esb.plugins</groupId>
<artifactId>org.jboss.tools.esb.project.ui</artifactId>
- <version>1.3.0-SNAPSHOT</version>
+ <version>1.4.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/esb/tests/org.jboss.tools.esb.core.test/pom.xml
===================================================================
--- trunk/esb/tests/org.jboss.tools.esb.core.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/esb/tests/org.jboss.tools.esb.core.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.esb.tests</groupId>
<artifactId>org.jboss.tools.esb.core.test</artifactId>
- <version>1.3.0-SNAPSHOT</version>
+ <version>1.4.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/esb/tests/org.jboss.tools.esb.project.core.test/pom.xml
===================================================================
--- trunk/esb/tests/org.jboss.tools.esb.project.core.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/esb/tests/org.jboss.tools.esb.project.core.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.esb.tests</groupId>
<artifactId>org.jboss.tools.esb.project.core.test</artifactId>
- <version>1.3.0-SNAPSHOT</version>
+ <version>1.4.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/freemarker/tests/org.jboss.ide.eclipse.freemarker.test/pom.xml
===================================================================
--- trunk/freemarker/tests/org.jboss.ide.eclipse.freemarker.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/freemarker/tests/org.jboss.ide.eclipse.freemarker.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.freemarker.tests</groupId>
<artifactId>org.jboss.ide.eclipse.freemarker.test</artifactId>
- <version>1.1.0-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
<emma.filter>org.jboss.ide.eclipse.freemarker.editor*</emma.filter>
Modified: trunk/hibernatetools/plugins/org.hibernate.eclipse/pom.xml
===================================================================
--- trunk/hibernatetools/plugins/org.hibernate.eclipse/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/hibernatetools/plugins/org.hibernate.eclipse/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.hibernatetools.plugins</groupId>
<artifactId>org.hibernate.eclipse</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.4.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/hibernatetools/plugins/org.hibernate.eclipse.console/pom.xml
===================================================================
--- trunk/hibernatetools/plugins/org.hibernate.eclipse.console/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/hibernatetools/plugins/org.hibernate.eclipse.console/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.hibernatetools.plugins</groupId>
<artifactId>org.hibernate.eclipse.console</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.4.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/hibernatetools/plugins/org.hibernate.eclipse.jdt.ui/pom.xml
===================================================================
--- trunk/hibernatetools/plugins/org.hibernate.eclipse.jdt.ui/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/hibernatetools/plugins/org.hibernate.eclipse.jdt.ui/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.hibernatetools.plugins</groupId>
<artifactId>org.hibernate.eclipse.jdt.ui</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.4.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/hibernatetools/plugins/org.hibernate.eclipse.mapper/pom.xml
===================================================================
--- trunk/hibernatetools/plugins/org.hibernate.eclipse.mapper/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/hibernatetools/plugins/org.hibernate.eclipse.mapper/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.hibernatetools.plugins</groupId>
<artifactId>org.hibernate.eclipse.mapper</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.4.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.core/pom.xml
===================================================================
--- trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.core/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.core/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.hibernatetools.plugins</groupId>
<artifactId>org.jboss.tools.hibernate.jpt.core</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.4.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/pom.xml
===================================================================
--- trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.hibernatetools.plugins</groupId>
<artifactId>org.jboss.tools.hibernate.jpt.ui</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.4.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/hibernatetools/plugins/org.jboss.tools.hibernate.ui/pom.xml
===================================================================
--- trunk/hibernatetools/plugins/org.jboss.tools.hibernate.ui/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/hibernatetools/plugins/org.jboss.tools.hibernate.ui/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.hibernatetools.plugins</groupId>
<artifactId>org.jboss.tools.hibernate.ui</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.4.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml.ui/pom.xml
===================================================================
--- trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml.ui/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml.ui/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.hibernatetools.plugins</groupId>
<artifactId>org.jboss.tools.hibernate.xml.ui</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.4.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/pom.xml
===================================================================
--- trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.hibernatetools.tests</groupId>
<artifactId>org.hibernate.eclipse.console.test</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.4.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/hibernatetools/tests/org.hibernate.eclipse.jdt.ui.test/pom.xml
===================================================================
--- trunk/hibernatetools/tests/org.hibernate.eclipse.jdt.ui.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/hibernatetools/tests/org.hibernate.eclipse.jdt.ui.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.hibernatetools.tests</groupId>
<artifactId>org.hibernate.eclipse.jdt.ui.test</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.4.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/hibernatetools/tests/org.jboss.tools.hibernate.jpt.core.test/pom.xml
===================================================================
--- trunk/hibernatetools/tests/org.jboss.tools.hibernate.jpt.core.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/hibernatetools/tests/org.jboss.tools.hibernate.jpt.core.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.hibernatetools.tests</groupId>
<artifactId>org.jboss.tools.hibernate.jpt.core.test</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.4.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test/pom.xml
===================================================================
--- trunk/hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.hibernatetools.tests</groupId>
<artifactId>org.jboss.tools.hibernate.ui.bot.test</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.4.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/hibernatetools/tests/org.jboss.tools.hibernate.ui.test/pom.xml
===================================================================
--- trunk/hibernatetools/tests/org.jboss.tools.hibernate.ui.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/hibernatetools/tests/org.jboss.tools.hibernate.ui.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.hibernatetools.tests</groupId>
<artifactId>org.jboss.tools.hibernate.ui.test</artifactId>
- <version>3.3.0-SNAPSHOT</version>
+ <version>3.4.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/jbpm/features/org.jboss.tools.jbpm.common.feature/pom.xml
===================================================================
--- trunk/jbpm/features/org.jboss.tools.jbpm.common.feature/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/jbpm/features/org.jboss.tools.jbpm.common.feature/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jbpm.features</groupId>
<artifactId>org.jboss.tools.jbpm.common.feature</artifactId>
- <version>4.3.0-SNAPSHOT</version>
+ <version>4.4.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
</project>
Modified: trunk/jbpm/features/org.jboss.tools.jbpm3.tests.feature/pom.xml
===================================================================
--- trunk/jbpm/features/org.jboss.tools.jbpm3.tests.feature/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/jbpm/features/org.jboss.tools.jbpm3.tests.feature/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jbpm.features</groupId>
<artifactId>org.jboss.tools.jbpm3.tests.feature</artifactId>
- <version>3.2.0-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
</project>
Modified: trunk/jbpm/features/org.jboss.tools.jbpm4.tests.feature/pom.xml
===================================================================
--- trunk/jbpm/features/org.jboss.tools.jbpm4.tests.feature/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/jbpm/features/org.jboss.tools.jbpm4.tests.feature/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jbpm.features</groupId>
<artifactId>org.jboss.tools.jbpm4.tests.feature</artifactId>
- <version>4.3.0-SNAPSHOT</version>
+ <version>4.4.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
</project>
Modified: trunk/jbpm/plugins/org.jboss.tools.jbpm.common/pom.xml
===================================================================
--- trunk/jbpm/plugins/org.jboss.tools.jbpm.common/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/jbpm/plugins/org.jboss.tools.jbpm.common/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jbpm.plugins</groupId>
<artifactId>org.jboss.tools.jbpm.common</artifactId>
- <version>4.3.0-SNAPSHOT</version>
+ <version>4.4.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/jbpm/plugins/org.jboss.tools.jbpm.convert/pom.xml
===================================================================
--- trunk/jbpm/plugins/org.jboss.tools.jbpm.convert/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/jbpm/plugins/org.jboss.tools.jbpm.convert/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jbpm.plugins</groupId>
<artifactId>org.jboss.tools.jbpm.convert</artifactId>
- <version>1.1.0-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/jbpm/plugins/org.jbpm.gd.jpdl/pom.xml
===================================================================
--- trunk/jbpm/plugins/org.jbpm.gd.jpdl/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/jbpm/plugins/org.jbpm.gd.jpdl/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jbpm.plugins</groupId>
<artifactId>org.jbpm.gd.jpdl</artifactId>
- <version>3.2.0-SNAPSHOT</version>
+ <version>3.3.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/jbpm/tests/org.jboss.tools.jbpm.convert.test/pom.xml
===================================================================
--- trunk/jbpm/tests/org.jboss.tools.jbpm.convert.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/jbpm/tests/org.jboss.tools.jbpm.convert.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.jbpm.tests</groupId>
<artifactId>org.jboss.tools.jbpm.convert.test</artifactId>
- <version>1.1.0-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/jmx/features/org.jboss.tools.jmx.tests.feature/pom.xml
===================================================================
--- trunk/jmx/features/org.jboss.tools.jmx.tests.feature/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/jmx/features/org.jboss.tools.jmx.tests.feature/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jmx.features</groupId>
<artifactId>org.jboss.tools.jmx.tests.feature</artifactId>
- <version>1.1.0-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
</project>
Modified: trunk/jmx/plugins/org.jboss.tools.jmx.core/pom.xml
===================================================================
--- trunk/jmx/plugins/org.jboss.tools.jmx.core/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/jmx/plugins/org.jboss.tools.jmx.core/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jmx.plugins</groupId>
<artifactId>org.jboss.tools.jmx.core</artifactId>
- <version>1.1.0-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/jmx/plugins/org.jboss.tools.jmx.ui/pom.xml
===================================================================
--- trunk/jmx/plugins/org.jboss.tools.jmx.ui/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/jmx/plugins/org.jboss.tools.jmx.ui/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jmx.plugins</groupId>
<artifactId>org.jboss.tools.jmx.ui</artifactId>
- <version>1.1.0-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/jsf/features/org.jboss.tools.richfaces.feature/pom.xml
===================================================================
--- trunk/jsf/features/org.jboss.tools.richfaces.feature/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/jsf/features/org.jboss.tools.richfaces.feature/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jsf.features</groupId>
<artifactId>org.jboss.tools.richfaces.feature</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
</project>
Modified: trunk/jsf/plugins/org.jboss.tools.jsf/pom.xml
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/jsf/plugins/org.jboss.tools.jsf/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jsf.plugins</groupId>
<artifactId>org.jboss.tools.jsf</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.doc.user/pom.xml
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.doc.user/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.doc.user/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jsf.plugins</groupId>
<artifactId>org.jboss.tools.jsf.doc.user</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.text.ext/pom.xml
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.text.ext/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.text.ext/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jsf.plugins</groupId>
<artifactId>org.jboss.tools.jsf.text.ext</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.text.ext.facelets/pom.xml
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.text.ext.facelets/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.text.ext.facelets/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jsf.plugins</groupId>
<artifactId>org.jboss.tools.jsf.text.ext.facelets</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.text.ext.richfaces/pom.xml
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.text.ext.richfaces/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.text.ext.richfaces/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jsf.plugins</groupId>
<artifactId>org.jboss.tools.jsf.text.ext.richfaces</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.ui/pom.xml
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.ui/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.ui/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jsf.plugins</groupId>
<artifactId>org.jboss.tools.jsf.ui</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jsf/pom.xml
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jsf/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.vpe.jsf/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jsf.plugins</groupId>
<artifactId>org.jboss.tools.jsf.vpe.jsf</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.vpe.richfaces/pom.xml
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.vpe.richfaces/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.vpe.richfaces/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jsf.plugins</groupId>
<artifactId>org.jboss.tools.jsf.vpe.richfaces</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/jsf/plugins/org.jboss.tools.jsf.vpe.seam/pom.xml
===================================================================
--- trunk/jsf/plugins/org.jboss.tools.jsf.vpe.seam/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/jsf/plugins/org.jboss.tools.jsf.vpe.seam/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jsf.plugins</groupId>
<artifactId>org.jboss.tools.jsf.vpe.seam</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/jsf/tests/org.jboss.tools.jsf.test/pom.xml
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/jsf/tests/org.jboss.tools.jsf.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.jsf.tests</groupId>
<artifactId>org.jboss.tools.jsf.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
<properties>
Modified: trunk/jsf/tests/org.jboss.tools.jsf.text.ext.test/pom.xml
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.text.ext.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/jsf/tests/org.jboss.tools.jsf.text.ext.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.jsf.tests</groupId>
<artifactId>org.jboss.tools.jsf.text.ext.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/jsf/tests/org.jboss.tools.jsf.ui.bot.test/pom.xml
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.ui.bot.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/jsf/tests/org.jboss.tools.jsf.ui.bot.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jsf.tests</groupId>
<artifactId>org.jboss.tools.jsf.ui.bot.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/jsf/tests/org.jboss.tools.jsf.ui.test/pom.xml
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.ui.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/jsf/tests/org.jboss.tools.jsf.ui.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.jsf.tests</groupId>
<artifactId>org.jboss.tools.jsf.ui.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/jsf/tests/org.jboss.tools.jsf.verification.test/pom.xml
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.verification.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/jsf/tests/org.jboss.tools.jsf.verification.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.jsf.tests</groupId>
<artifactId>org.jboss.tools.jsf.verification.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/jsf/tests/org.jboss.tools.jsf.vpe.ajax4jsf.test/pom.xml
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.ajax4jsf.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.ajax4jsf.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.jsf.tests</groupId>
<artifactId>org.jboss.tools.jsf.vpe.ajax4jsf.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/jsf/tests/org.jboss.tools.jsf.vpe.facelets.test/pom.xml
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.facelets.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.facelets.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.jsf.tests</groupId>
<artifactId>org.jboss.tools.jsf.vpe.facelets.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jbpm.test/pom.xml
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jbpm.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jbpm.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.jsf.tests</groupId>
<artifactId>org.jboss.tools.jsf.vpe.jbpm.test</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.1.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
<emma.filter>org.jboss.tools.jsf.vpe.jbpm*</emma.filter>
Modified: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/pom.xml
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.jsf.tests</groupId>
<artifactId>org.jboss.tools.jsf.vpe.jsf.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jstl.test/pom.xml
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jstl.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jstl.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.jsf.tests</groupId>
<artifactId>org.jboss.tools.jsf.vpe.jstl.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/jsf/tests/org.jboss.tools.jsf.vpe.myfaces.test/pom.xml
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.myfaces.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.myfaces.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.jsf.tests</groupId>
<artifactId>org.jboss.tools.jsf.vpe.myfaces.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/pom.xml
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.jsf.tests</groupId>
<artifactId>org.jboss.tools.jsf.vpe.richfaces.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/jsf/tests/org.jboss.tools.jsf.vpe.seam.test/pom.xml
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.seam.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.seam.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.jsf.tests</groupId>
<artifactId>org.jboss.tools.jsf.vpe.seam.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/jst/plugins/org.jboss.tools.jst.css/pom.xml
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.css/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/jst/plugins/org.jboss.tools.jst.css/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jst.plugins</groupId>
<artifactId>org.jboss.tools.jst.css</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/jst/plugins/org.jboss.tools.jst.firstrun/pom.xml
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.firstrun/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/jst/plugins/org.jboss.tools.jst.firstrun/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jst.plugins</groupId>
<artifactId>org.jboss.tools.jst.firstrun</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/jst/plugins/org.jboss.tools.jst.jsp/pom.xml
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.jsp/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/jst/plugins/org.jboss.tools.jst.jsp/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jst.plugins</groupId>
<artifactId>org.jboss.tools.jst.jsp</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/jst/plugins/org.jboss.tools.jst.text.ext/pom.xml
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.text.ext/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/jst/plugins/org.jboss.tools.jst.text.ext/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jst.plugins</groupId>
<artifactId>org.jboss.tools.jst.text.ext</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/jst/plugins/org.jboss.tools.jst.web/pom.xml
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.web/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/jst/plugins/org.jboss.tools.jst.web/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jst.plugins</groupId>
<artifactId>org.jboss.tools.jst.web</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/jst/plugins/org.jboss.tools.jst.web.kb/pom.xml
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.web.kb/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/jst/plugins/org.jboss.tools.jst.web.kb/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jst.tests</groupId>
<artifactId>org.jboss.tools.jst.web.kb</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/jst/plugins/org.jboss.tools.jst.web.tiles.ui/pom.xml
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.web.tiles.ui/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/jst/plugins/org.jboss.tools.jst.web.tiles.ui/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jst.plugins</groupId>
<artifactId>org.jboss.tools.jst.web.tiles.ui</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/jst/plugins/org.jboss.tools.jst.web.ui/pom.xml
===================================================================
--- trunk/jst/plugins/org.jboss.tools.jst.web.ui/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/jst/plugins/org.jboss.tools.jst.web.ui/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jst.plugins</groupId>
<artifactId>org.jboss.tools.jst.web.ui</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/jst/tests/org.jboss.tools.jst.css.test/pom.xml
===================================================================
--- trunk/jst/tests/org.jboss.tools.jst.css.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/jst/tests/org.jboss.tools.jst.css.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.jst.tests</groupId>
<artifactId>org.jboss.tools.jst.css.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/jst/tests/org.jboss.tools.jst.jsp.test/pom.xml
===================================================================
--- trunk/jst/tests/org.jboss.tools.jst.jsp.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/jst/tests/org.jboss.tools.jst.jsp.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.jst.tests</groupId>
<artifactId>org.jboss.tools.jst.jsp.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/jst/tests/org.jboss.tools.jst.ui.bot.test/pom.xml
===================================================================
--- trunk/jst/tests/org.jboss.tools.jst.ui.bot.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/jst/tests/org.jboss.tools.jst.ui.bot.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.jst.tests</groupId>
<artifactId>org.jboss.tools.jst.ui.bot.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
<properties>
<emma.filter>org.jboss.tools.jst*</emma.filter>
Modified: trunk/jst/tests/org.jboss.tools.jst.web.kb.test/pom.xml
===================================================================
--- trunk/jst/tests/org.jboss.tools.jst.web.kb.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/jst/tests/org.jboss.tools.jst.web.kb.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.jst.tests</groupId>
<artifactId>org.jboss.tools.jst.web.kb.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/jst/tests/org.jboss.tools.jst.web.test/pom.xml
===================================================================
--- trunk/jst/tests/org.jboss.tools.jst.web.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/jst/tests/org.jboss.tools.jst.web.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -10,7 +10,7 @@
</parent>
<groupId>org.jboss.tools.jst.tests</groupId>
<artifactId>org.jboss.tools.jst.web.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
<emma.filter>org.jboss.tools.jst.web*</emma.filter>
Modified: trunk/jst/tests/org.jboss.tools.jst.web.ui.test/pom.xml
===================================================================
--- trunk/jst/tests/org.jboss.tools.jst.web.ui.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/jst/tests/org.jboss.tools.jst.web.ui.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.jst.tests</groupId>
<artifactId>org.jboss.tools.jst.web.ui.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/jst/tests/org.jboss.tools.ui.bot.ext/pom.xml
===================================================================
--- trunk/jst/tests/org.jboss.tools.ui.bot.ext/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/jst/tests/org.jboss.tools.ui.bot.ext/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.jst.tests</groupId>
<artifactId>org.jboss.tools.ui.bot.ext</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/maven/features/org.jboss.tools.maven.feature/pom.xml
===================================================================
--- trunk/maven/features/org.jboss.tools.maven.feature/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/maven/features/org.jboss.tools.maven.feature/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.maven.features</groupId>
<artifactId>org.jboss.tools.maven.feature</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.1.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
</project>
Modified: trunk/maven/features/org.jboss.tools.maven.seam.feature/pom.xml
===================================================================
--- trunk/maven/features/org.jboss.tools.maven.seam.feature/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/maven/features/org.jboss.tools.maven.seam.feature/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.maven.features</groupId>
<artifactId>org.jboss.tools.maven.seam.feature</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.1.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
</project>
Modified: trunk/maven/plugins/org.jboss.tools.maven.core/pom.xml
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.core/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/maven/plugins/org.jboss.tools.maven.core/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.maven.plugins</groupId>
<artifactId>org.jboss.tools.maven.core</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.1.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/maven/plugins/org.jboss.tools.maven.seam/pom.xml
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.seam/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/maven/plugins/org.jboss.tools.maven.seam/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.maven.plugins</groupId>
<artifactId>org.jboss.tools.maven.seam</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.1.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/modeshape/plugins/org.jboss.tools.modeshape.rest/pom.xml
===================================================================
--- trunk/modeshape/plugins/org.jboss.tools.modeshape.rest/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/modeshape/plugins/org.jboss.tools.modeshape.rest/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.modeshape.plugins</groupId>
<artifactId>org.jboss.tools.modeshape.rest</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.1.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/modeshape/tests/org.jboss.tools.modeshape.rest.test/pom.xml
===================================================================
--- trunk/modeshape/tests/org.jboss.tools.modeshape.rest.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/modeshape/tests/org.jboss.tools.modeshape.rest.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.modeshape.tests</groupId>
<artifactId>org.jboss.tools.modeshape.rest.test</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.1.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/portlet/plugins/org.jboss.tools.portlet.core/pom.xml
===================================================================
--- trunk/portlet/plugins/org.jboss.tools.portlet.core/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/portlet/plugins/org.jboss.tools.portlet.core/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.portlet.plugins</groupId>
<artifactId>org.jboss.tools.portlet.core</artifactId>
- <version>1.1.0-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/portlet/plugins/org.jboss.tools.portlet.ui/pom.xml
===================================================================
--- trunk/portlet/plugins/org.jboss.tools.portlet.ui/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/portlet/plugins/org.jboss.tools.portlet.ui/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.portlet.plugins</groupId>
<artifactId>org.jboss.tools.portlet.ui</artifactId>
- <version>1.1.0-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/portlet/tests/org.jboss.tools.portlet.core.test/pom.xml
===================================================================
--- trunk/portlet/tests/org.jboss.tools.portlet.core.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/portlet/tests/org.jboss.tools.portlet.core.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.portlet.tests</groupId>
<artifactId>org.jboss.tools.portlet.core.test</artifactId>
- <version>1.1.0-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/profiler/features/org.jboss.tools.profiler.feature/pom.xml
===================================================================
--- trunk/profiler/features/org.jboss.tools.profiler.feature/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/profiler/features/org.jboss.tools.profiler.feature/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.profiler.features</groupId>
<artifactId>org.jboss.tools.profiler.feature</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.1.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
</project>
Modified: trunk/seam/plugins/org.jboss.tools.seam.xml.ui/pom.xml
===================================================================
--- trunk/seam/plugins/org.jboss.tools.seam.xml.ui/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/seam/plugins/org.jboss.tools.seam.xml.ui/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.seam.plugins</groupId>
<artifactId>org.jboss.tools.seam.xml.ui</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/seam/tests/org.jboss.tools.seam.core.test/pom.xml
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam.core.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/seam/tests/org.jboss.tools.seam.core.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -10,7 +10,7 @@
</parent>
<groupId>org.jboss.tools.seam.tests</groupId>
<artifactId>org.jboss.tools.seam.core.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/seam/tests/org.jboss.tools.seam.pages.xml.test/pom.xml
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam.pages.xml.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/seam/tests/org.jboss.tools.seam.pages.xml.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.seam.tests</groupId>
<artifactId>org.jboss.tools.seam.pages.xml.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
<emma.filter>org.jboss.tools.seam*</emma.filter>
Modified: trunk/seam/tests/org.jboss.tools.seam.ui.bot.test/pom.xml
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam.ui.bot.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/seam/tests/org.jboss.tools.seam.ui.bot.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.seam.tests</groupId>
<artifactId>org.jboss.tools.seam.ui.bot.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<build>
<plugins>
Modified: trunk/seam/tests/org.jboss.tools.seam.ui.test/pom.xml
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam.ui.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/seam/tests/org.jboss.tools.seam.ui.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -10,7 +10,7 @@
</parent>
<groupId>org.jboss.tools.seam.tests</groupId>
<artifactId>org.jboss.tools.seam.ui.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/seam/tests/org.jboss.tools.seam.xml.test/pom.xml
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam.xml.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/seam/tests/org.jboss.tools.seam.xml.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -10,7 +10,7 @@
</parent>
<groupId>org.jboss.tools.seam.tests</groupId>
<artifactId>org.jboss.tools.seam.xml.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/smooks/plugins/org.jboss.tools.smooks.core/pom.xml
===================================================================
--- trunk/smooks/plugins/org.jboss.tools.smooks.core/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/smooks/plugins/org.jboss.tools.smooks.core/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.smooks.plugins</groupId>
<artifactId>org.jboss.tools.smooks.core</artifactId>
- <version>1.1.0-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/smooks/plugins/org.jboss.tools.smooks.runtime/pom.xml
===================================================================
--- trunk/smooks/plugins/org.jboss.tools.smooks.runtime/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/smooks/plugins/org.jboss.tools.smooks.runtime/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.smooks.plugins</groupId>
<artifactId>org.jboss.tools.smooks.runtime</artifactId>
- <version>1.2.1-SNAPSHOT</version>
+ <version>1.3.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/smooks/plugins/org.jboss.tools.smooks.ui/pom.xml
===================================================================
--- trunk/smooks/plugins/org.jboss.tools.smooks.ui/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/smooks/plugins/org.jboss.tools.smooks.ui/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.smooks.plugins</groupId>
<artifactId>org.jboss.tools.smooks.ui</artifactId>
- <version>1.1.0-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/struts/plugins/org.jboss.tools.struts/pom.xml
===================================================================
--- trunk/struts/plugins/org.jboss.tools.struts/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/struts/plugins/org.jboss.tools.struts/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.struts.plugins</groupId>
<artifactId>org.jboss.tools.struts</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/struts/tests/org.jboss.tools.struts.text.ext.test/pom.xml
===================================================================
--- trunk/struts/tests/org.jboss.tools.struts.text.ext.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/struts/tests/org.jboss.tools.struts.text.ext.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.struts.tests</groupId>
<artifactId>org.jboss.tools.struts.text.ext.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
<emma.filter>org.jboss.tools*</emma.filter>
Modified: trunk/struts/tests/org.jboss.tools.struts.ui.bot.test/pom.xml
===================================================================
--- trunk/struts/tests/org.jboss.tools.struts.ui.bot.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/struts/tests/org.jboss.tools.struts.ui.bot.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.struts.tests</groupId>
<artifactId>org.jboss.tools.struts.ui.bot.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<build>
<plugins>
Modified: trunk/struts/tests/org.jboss.tools.struts.vpe.struts.test/pom.xml
===================================================================
--- trunk/struts/tests/org.jboss.tools.struts.vpe.struts.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/struts/tests/org.jboss.tools.struts.vpe.struts.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.struts.tests</groupId>
<artifactId>org.jboss.tools.struts.vpe.struts.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
<emma.filter>org.jboss.tools*</emma.filter>
Modified: trunk/tptp/features/org.jboss.tools.tptp.feature/pom.xml
===================================================================
--- trunk/tptp/features/org.jboss.tools.tptp.feature/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/tptp/features/org.jboss.tools.tptp.feature/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.tptp.features</groupId>
<artifactId>org.jboss.tools.tptp.feature</artifactId>
- <version>1.1.0-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
</project>
Modified: trunk/tptp/plugins/org.jboss.tools.eclipse.as.tptp/pom.xml
===================================================================
--- trunk/tptp/plugins/org.jboss.tools.eclipse.as.tptp/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/tptp/plugins/org.jboss.tools.eclipse.as.tptp/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.tptp.plugins</groupId>
<artifactId>org.jboss.tools.eclipse.as.tptp</artifactId>
- <version>1.1.0-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/vpe/plugins/org.jboss.tools.vpe/pom.xml
===================================================================
--- trunk/vpe/plugins/org.jboss.tools.vpe/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/vpe/plugins/org.jboss.tools.vpe/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.vpe.plugins</groupId>
<artifactId>org.jboss.tools.vpe</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/vpe/plugins/org.jboss.tools.vpe.html/pom.xml
===================================================================
--- trunk/vpe/plugins/org.jboss.tools.vpe.html/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/vpe/plugins/org.jboss.tools.vpe.html/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.vpe.plugins</groupId>
<artifactId>org.jboss.tools.vpe.html</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/vpe/plugins/org.jboss.tools.vpe.resref/pom.xml
===================================================================
--- trunk/vpe/plugins/org.jboss.tools.vpe.resref/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/vpe/plugins/org.jboss.tools.vpe.resref/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.vpe.plugins</groupId>
<artifactId>org.jboss.tools.vpe.resref</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/vpe/plugins/org.jboss.tools.vpe.ui.palette/pom.xml
===================================================================
--- trunk/vpe/plugins/org.jboss.tools.vpe.ui.palette/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/vpe/plugins/org.jboss.tools.vpe.ui.palette/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.vpe.plugins</groupId>
<artifactId>org.jboss.tools.vpe.ui.palette</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/vpe/plugins/org.jboss.tools.vpe.xulrunner/pom.xml
===================================================================
--- trunk/vpe/plugins/org.jboss.tools.vpe.xulrunner/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/vpe/plugins/org.jboss.tools.vpe.xulrunner/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.vpe.plugins</groupId>
<artifactId>org.jboss.tools.vpe.xulrunner</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/vpe/plugins/org.jboss.tools.xulrunner/pom.xml
===================================================================
--- trunk/vpe/plugins/org.jboss.tools.xulrunner/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/vpe/plugins/org.jboss.tools.xulrunner/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.vpe.plugins</groupId>
<artifactId>org.jboss.tools.xulrunner</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/vpe/tests/org.jboss.tools.vpe.html.test/pom.xml
===================================================================
--- trunk/vpe/tests/org.jboss.tools.vpe.html.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/vpe/tests/org.jboss.tools.vpe.html.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.vpe.tests</groupId>
<artifactId>org.jboss.tools.vpe.html.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/vpe/tests/org.jboss.tools.vpe.jsp.test/pom.xml
===================================================================
--- trunk/vpe/tests/org.jboss.tools.vpe.jsp.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/vpe/tests/org.jboss.tools.vpe.jsp.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.vpe.tests</groupId>
<artifactId>org.jboss.tools.vpe.jsp.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/vpe/tests/org.jboss.tools.vpe.test/pom.xml
===================================================================
--- trunk/vpe/tests/org.jboss.tools.vpe.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/vpe/tests/org.jboss.tools.vpe.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.vpe.tests</groupId>
<artifactId>org.jboss.tools.vpe.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/pom.xml
===================================================================
--- trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.vpe.tests</groupId>
<artifactId>org.jboss.tools.vpe.ui.bot.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
<build>
<plugins>
Modified: trunk/vpe/tests/org.jboss.tools.vpe.ui.test/pom.xml
===================================================================
--- trunk/vpe/tests/org.jboss.tools.vpe.ui.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/vpe/tests/org.jboss.tools.vpe.ui.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.vpe.tests</groupId>
<artifactId>org.jboss.tools.vpe.ui.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/vpe/tests/org.jboss.tools.vpe.xulrunner.test/pom.xml
===================================================================
--- trunk/vpe/tests/org.jboss.tools.vpe.xulrunner.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/vpe/tests/org.jboss.tools.vpe.xulrunner.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.vpe.tests</groupId>
<artifactId>org.jboss.tools.vpe.xulrunner.test</artifactId>
- <version>3.1.0-SNAPSHOT</version>
+ <version>3.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/workingset/tests/org.jboss.tools.workingset.core.test/pom.xml
===================================================================
--- trunk/workingset/tests/org.jboss.tools.workingset.core.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/workingset/tests/org.jboss.tools.workingset.core.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.workingset.tests</groupId>
<artifactId>org.jboss.tools.workingset.core.test</artifactId>
- <version>1.0.0-SNAPSHOT</version>
+ <version>1.1.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/ws/plugins/org.jboss.tools.ws.core/pom.xml
===================================================================
--- trunk/ws/plugins/org.jboss.tools.ws.core/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/ws/plugins/org.jboss.tools.ws.core/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.ws.plugins</groupId>
<artifactId>org.jboss.tools.ws.core</artifactId>
- <version>1.1.0-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/ws/plugins/org.jboss.tools.ws.creation.core/pom.xml
===================================================================
--- trunk/ws/plugins/org.jboss.tools.ws.creation.core/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/ws/plugins/org.jboss.tools.ws.creation.core/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.ws.plugins</groupId>
<artifactId>org.jboss.tools.ws.creation.core</artifactId>
- <version>1.1.0-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/ws/plugins/org.jboss.tools.ws.creation.ui/pom.xml
===================================================================
--- trunk/ws/plugins/org.jboss.tools.ws.creation.ui/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/ws/plugins/org.jboss.tools.ws.creation.ui/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.ws.plugins</groupId>
<artifactId>org.jboss.tools.ws.creation.ui</artifactId>
- <version>1.1.0-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/ws/plugins/org.jboss.tools.ws.ui/pom.xml
===================================================================
--- trunk/ws/plugins/org.jboss.tools.ws.ui/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/ws/plugins/org.jboss.tools.ws.ui/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,6 +9,6 @@
</parent>
<groupId>org.jboss.tools.ws.plugins</groupId>
<artifactId>org.jboss.tools.ws.ui</artifactId>
- <version>1.1.0-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/ws/tests/org.jboss.tools.ws.core.test/pom.xml
===================================================================
--- trunk/ws/tests/org.jboss.tools.ws.core.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/ws/tests/org.jboss.tools.ws.core.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.ws.tests</groupId>
<artifactId>org.jboss.tools.ws.core.test</artifactId>
- <version>1.1.0-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
Modified: trunk/ws/tests/org.jboss.tools.ws.ui.test/pom.xml
===================================================================
--- trunk/ws/tests/org.jboss.tools.ws.ui.test/pom.xml 2010-07-07 17:30:03 UTC (rev 23285)
+++ trunk/ws/tests/org.jboss.tools.ws.ui.test/pom.xml 2010-07-07 18:15:38 UTC (rev 23286)
@@ -9,7 +9,7 @@
</parent>
<groupId>org.jboss.tools.ws.tests</groupId>
<artifactId>org.jboss.tools.ws.ui.test</artifactId>
- <version>1.1.0-SNAPSHOT</version>
+ <version>1.2.0-SNAPSHOT</version>
<packaging>eclipse-test-plugin</packaging>
<properties>
15 years, 9 months