JBoss Tools SVN: r42343 - in workspace/mistria/install-tests: scripts and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: mickael_istria
Date: 2012-07-03 10:15:40 -0400 (Tue, 03 Jul 2012)
New Revision: 42343
Modified:
workspace/mistria/install-tests/plugins/org.jboss.tools.qa.install.tests/src/org/jboss/tools/qa/install/tests/InstallTest.java
workspace/mistria/install-tests/scripts/testInstall.sh
Log:
JBIDE-11713: script supports directly URLs as parameters, and files also
Modified: workspace/mistria/install-tests/plugins/org.jboss.tools.qa.install.tests/src/org/jboss/tools/qa/install/tests/InstallTest.java
===================================================================
--- workspace/mistria/install-tests/plugins/org.jboss.tools.qa.install.tests/src/org/jboss/tools/qa/install/tests/InstallTest.java 2012-07-03 14:09:56 UTC (rev 42342)
+++ workspace/mistria/install-tests/plugins/org.jboss.tools.qa.install.tests/src/org/jboss/tools/qa/install/tests/InstallTest.java 2012-07-03 14:15:40 UTC (rev 42343)
@@ -41,11 +41,11 @@
this.bot.text(1).setText(site);
this.bot.button("OK").click();
this.bot.shell("Install").activate().setFocus();
- this.bot.waitUntil(new ICondition() {
+ this.bot.waitWhile(new ICondition() {
@Override
public boolean test() throws Exception {
- return bot.tree().getAllItems().length > 2;
+ return bot.tree().getAllItems()[0].getText().startsWith("Pending...");
}
@Override
Modified: workspace/mistria/install-tests/scripts/testInstall.sh
===================================================================
--- workspace/mistria/install-tests/scripts/testInstall.sh 2012-07-03 14:09:56 UTC (rev 42342)
+++ workspace/mistria/install-tests/scripts/testInstall.sh 2012-07-03 14:15:40 UTC (rev 42343)
@@ -1,21 +1,49 @@
#!/bin/bash
-eclipse_home=$1
-site_list=$2
-
usage() {
echo "Script to test installation"
- echo "usage: <dir>/testInstalls.sh <eclipse_home> <file_containing_list_of_sites>"
+ echo "usage: $0 <eclipse_home> <file_containing_list_of_sites|repository_url>*"
echo " <eclipse_home>: an eclipse installation will be performed on"
echo " <file_containing_list_of_sites> a file containing a list of p2-friendly URLs of repositories"
echo " separated by spaces or line breaks"
+ echo " <repository_url>: URL of a p2 repo to install from"
}
+# Takes repo URL as single parameter
+install_repo() {
+ echo "Installing content from " $1
+ report=TEST-install-$(date +%Y%m%d%H%M).xml
+ #Invoke tests
+ output=$(java \
+ -DUPDATE_SITE=$1 \
+ -Dorg.eclipse.swtbot.search.timeout=10000 \
+ -Dusage_reporting_enabled=false \
+ -Xms256M -Xmx768M -XX:MaxPermSize=512M \
+ -jar plugins/org.eclipse.equinox.launcher_*.jar \
+ -application org.eclipse.swtbot.eclipse.junit4.headless.swtbottestapplication \
+ -testApplication org.eclipse.ui.ide.workbench \
+ -product $productName \
+ -data workspace/ \
+ formatter=org.apache.tools.ant.taskdefs.optional.junit.XMLJUnitResultFormatter,$report \
+ formatter=org.apache.tools.ant.taskdefs.optional.junit.PlainJUnitResultFormatter \
+ -testPluginName org.jboss.tools.qa.install.tests \
+ -className org.jboss.tools.qa.install.tests.InstallTest \
+ -consoleLog -debug)
+ if [[ ! "$output" == *"Failures: 0, Errors: 0"* ]]; then
+ echo "Error while installing from " $site ". Read $report for details and see screenshots/"
+ popd
+ exit 1
+ fi
+}
+
+eclipse_home=$1
+shift
+
if [ ! -d "$eclipse_home" -o ! -f "$eclipse_home/eclipse" ]; then
usage
exit 2
fi
-if [ ! -f "$site_list" ]; then
+if (( $# <= 0)); then
usage
exit 2
fi
@@ -27,8 +55,6 @@
exit 3
fi
-
-
echo "Preparing tests, installing framework"
pushd $eclipse_home
iniFile=$(ls -1 *.ini)
@@ -43,29 +69,15 @@
-installIU org.jboss.tools.qa.install.tests.feature.feature.group \
-consoleLog
-for site in $(cat "$site_list"); do
- echo "Installing content from " $site
- report=TEST-install-$(date +%Y%m%d%H%M).xml
- #Invoke tests
- output=$(java \
- -DUPDATE_SITE=$site \
- -Dusage_reporting_enabled=false \
- -Xms256M -Xmx768M -XX:MaxPermSize=512M \
- -jar plugins/org.eclipse.equinox.launcher_*.jar \
- -application org.eclipse.swtbot.eclipse.junit4.headless.swtbottestapplication \
- -testApplication org.eclipse.ui.ide.workbench \
- -product $productName \
- -data workspace/ \
- formatter=org.apache.tools.ant.taskdefs.optional.junit.XMLJUnitResultFormatter,$report \
- formatter=org.apache.tools.ant.taskdefs.optional.junit.PlainJUnitResultFormatter \
- -testPluginName org.jboss.tools.qa.install.tests \
- -className org.jboss.tools.qa.install.tests.InstallTest \
- -consoleLog -debug)
- if [[ ! "$output" == *"Failures: 0, Errors: 0"* ]]; then
- echo "Error while installing from " $site ". Read $report for details and see screenshots/"
- popd
- exit 1
- fi
+while (($#)); do
+ if [ -f "$1" ]; then
+ for repoUrl in $(cat "$1"); do
+ install_repo "$repoUrl"
+ done
+ else
+ install_repo "$1"
+ fi
+ shift
done
popd
exit 0
12 years, 8 months
JBoss Tools SVN: r42342 - trunk/central/tests/org.jboss.tools.central.test.ui.bot.
by jbosstools-commits@lists.jboss.org
Author: rhopp
Date: 2012-07-03 10:09:56 -0400 (Tue, 03 Jul 2012)
New Revision: 42342
Modified:
trunk/central/tests/org.jboss.tools.central.test.ui.bot/pom.xml
Log:
Added mylyn commons dependency
Modified: trunk/central/tests/org.jboss.tools.central.test.ui.bot/pom.xml
===================================================================
--- trunk/central/tests/org.jboss.tools.central.test.ui.bot/pom.xml 2012-07-03 09:38:16 UTC (rev 42341)
+++ trunk/central/tests/org.jboss.tools.central.test.ui.bot/pom.xml 2012-07-03 14:09:56 UTC (rev 42342)
@@ -16,7 +16,7 @@
<additionalSystemProperties></additionalSystemProperties>
<jbosstools.test.jbossas.home>${requirementsDirectory}/jboss-as-7.1.1.Final</jbosstools.test.jbossas.home>
<!-- for debugging ucomment and comment next line <systemProperties>-Xdebug -Xrunjdwp:transport=dt_socket,address=8001,server=y,suspend=y -Djbosstools.test.jbossas.home=${jbosstools.test.jbossas.home} -Dswtbot.test.properties.file=${swtbot.properties}</systemProperties> -->
- <systemProperties>${additionalSystemProperties} -Djbosstools.test.jbossas.home=${jbosstools.test.jbossas.home} -Dswtbot.test.properties.file=${swtbot.properties}</systemProperties>
+ <systemProperties>${additionalSystemProperties} -Djbosstools.test.jbossas.home=${jbosstools.test.jbossas.home} -Dtest.configurations.dir=${test.configurations.dir} -Deap.maven.config.file=${eap.maven.config.file}</systemProperties>
</properties>
<profiles>
@@ -95,6 +95,11 @@
<artifactId>org.jboss.ide.eclipse.as.feature.feature.group</artifactId>
<version>0.0.0</version>
</dependency>
+ <dependency>
+ <type>p2-installable-unit</type>
+ <artifactId>org.eclipse.mylyn.commons.feature.feature.group</artifactId>
+ <version>0.0.0</version>
+ </dependency>
</dependencies>
</configuration>
</plugin>
12 years, 8 months
JBoss Tools SVN: r42341 - trunk/central/site.
by jbosstools-commits@lists.jboss.org
Author: mickael_istria
Date: 2012-07-03 05:38:16 -0400 (Tue, 03 Jul 2012)
New Revision: 42341
Modified:
trunk/central/site/pom.xml
Log:
JBIDE-12278: Fix path
Modified: trunk/central/site/pom.xml
===================================================================
--- trunk/central/site/pom.xml 2012-07-03 08:47:19 UTC (rev 42340)
+++ trunk/central/site/pom.xml 2012-07-03 09:38:16 UTC (rev 42341)
@@ -26,7 +26,7 @@
<tasks>
<!-- called AFTER generating update site + zip to add in extra content -->
<!-- <ant antfile="build.xml" target="generate.directory.xml.only" dir="../../build/aggregate/"> -->
- <ant antfile="build.xml" target="basic.build" dir="../../../build/aggregate/">
+ <ant antfile="build.xml" target="basic.build" dir="../../build/aggregate/">
<property name="output.dir" value="${basedir}" />
<property name="inputRepo"
value="${jbosstools-nightly-staging-composite}" />
12 years, 8 months
JBoss Tools SVN: r42340 - trunk/central/site.
by jbosstools-commits@lists.jboss.org
Author: mickael_istria
Date: 2012-07-03 04:47:19 -0400 (Tue, 03 Jul 2012)
New Revision: 42340
Modified:
trunk/central/site/pom.xml
Log:
JBIDE-12278: Fix path
Modified: trunk/central/site/pom.xml
===================================================================
--- trunk/central/site/pom.xml 2012-07-03 07:14:23 UTC (rev 42339)
+++ trunk/central/site/pom.xml 2012-07-03 08:47:19 UTC (rev 42340)
@@ -26,7 +26,7 @@
<tasks>
<!-- called AFTER generating update site + zip to add in extra content -->
<!-- <ant antfile="build.xml" target="generate.directory.xml.only" dir="../../build/aggregate/"> -->
- <ant antfile="build.xml" target="basic.build" dir="../../../../build/aggregate/">
+ <ant antfile="build.xml" target="basic.build" dir="../../../build/aggregate/">
<property name="output.dir" value="${basedir}" />
<property name="inputRepo"
value="${jbosstools-nightly-staging-composite}" />
12 years, 8 months
JBoss Tools SVN: r42339 - trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard.
by jbosstools-commits@lists.jboss.org
Author: xcoulon
Date: 2012-07-03 03:14:23 -0400 (Tue, 03 Jul 2012)
New Revision: 42339
Modified:
trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/NewDomainWizardPage.java
Log:
Fixed - JBIDE-12170
Incorrect description on Domain creation dialog
Modified: trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/NewDomainWizardPage.java
===================================================================
--- trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/NewDomainWizardPage.java 2012-07-03 02:08:19 UTC (rev 42338)
+++ trunk/openshift/plugins/org.jboss.tools.openshift.express.ui/src/org/jboss/tools/openshift/express/internal/ui/wizard/NewDomainWizardPage.java 2012-07-03 07:14:23 UTC (rev 42339)
@@ -281,11 +281,11 @@
final String domainName = (String) domainNameObservable.getValue();
if (domainName.isEmpty()) {
return ValidationStatus.cancel(
- "Select an alphanumerical name and a type for the domain to edit.");
+ "Select an alphanumerical name for the domain to edit.");
}
if (!StringUtils.isAlphaNumeric(domainName)) {
return ValidationStatus.error(
- "The name may only contain lower-case letters and digits.");
+ "The domain name may only contain lower-case letters and digits.");
}
return ValidationStatus.ok();
}
12 years, 8 months
JBoss Tools SVN: r42338 - in branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate4_0: META-INF and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2012-07-02 22:08:19 -0400 (Mon, 02 Jul 2012)
New Revision: 42338
Added:
branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate4_0/lib/tools/hibernate-tools-4.0.0.jar
Removed:
branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate4_0/lib/tools/hibernate-tools-3.5.0.Beta.jar
Modified:
branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate4_0/.classpath
branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate4_0/META-INF/MANIFEST.MF
Log:
https://issues.jboss.org/browse/JBDS-2223 fix hibernate tools core versions
fixed hibernate tools core jar version for org.jboss.tools.hibernate4_0 plug-in
Modified: branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate4_0/.classpath
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate4_0/.classpath 2012-07-03 01:54:51 UTC (rev 42337)
+++ branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate4_0/.classpath 2012-07-03 02:08:19 UTC (rev 42338)
@@ -1,26 +1,26 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<classpath>
- <classpathentry exported="true" kind="lib" path="lib/required/slf4j-api-1.5.8.jar"/>
- <classpathentry exported="true" kind="lib" path="lib/jpa/hibernate-entitymanager-4.0.0.CR6.jar" sourcepath="C:/Documents and Settings/dgeraskov/.m2/repository/org/hibernate/hibernate-entitymanager/4.0.0.CR6/hibernate-entitymanager-4.0.0.CR6-sources.jar"/>
- <classpathentry exported="true" kind="lib" path="lib/required/antlr-2.7.7.jar"/>
- <classpathentry exported="true" kind="lib" path="lib/required/classmate-0.5.4.jar"/>
- <classpathentry exported="true" kind="lib" path="lib/required/commons-collections-3.2.1.jar"/>
- <classpathentry exported="true" kind="lib" path="lib/required/dom4j-1.6.1.jar"/>
- <classpathentry exported="true" kind="lib" path="lib/required/hibernate-commons-annotations-4.0.0.Final.jar"/>
- <classpathentry exported="true" kind="lib" path="lib/required/hibernate-core-4.0.0.CR6.jar" sourcepath="C:/dev/Libs/hibernate-release-4.0.0.CR6/project"/>
- <classpathentry exported="true" kind="lib" path="lib/required/hibernate-jpa-2.0-api-1.0.1.Final.jar"/>
- <classpathentry exported="true" kind="lib" path="lib/required/jandex-1.0.3.Final.jar"/>
- <classpathentry exported="true" kind="lib" path="lib/required/javassist-3.12.1.GA.jar"/>
- <classpathentry exported="true" kind="lib" path="lib/required/jboss-logging-3.1.0.CR1.jar"/>
- <classpathentry exported="true" kind="lib" path="lib/required/jboss-transaction-api_1.1_spec-1.0.0.Final.jar"/>
- <classpathentry exported="true" kind="lib" path="lib/tools/freemarker.jar"/>
- <classpathentry exported="true" kind="lib" path="lib/tools/hibernate-tools-3.5.0.Beta.jar" sourcepath="C:/dev/workspaces/RedHat/_Git/dgeraskov/tools4.0/hibernate-tools/src"/>
- <classpathentry exported="true" kind="lib" path="lib/tools/jtidy-r8-20060801.jar"/>
- <classpathentry exported="true" kind="lib" path="lib/bsh-core-2.0b4.jar"/>
- <classpathentry exported="true" kind="lib" path="lib/log4j-1.2.15.jar"/>
- <classpathentry exported="true" kind="lib" path="lib/slf4j-log4j12-1.5.8.jar"/>
- <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
- <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
- <classpathentry kind="src" path="src"/>
- <classpathentry kind="output" path="bin"/>
-</classpath>
+<?xml version="1.0" encoding="UTF-8"?>
+<classpath>
+ <classpathentry exported="true" kind="lib" path="lib/required/slf4j-api-1.5.8.jar"/>
+ <classpathentry exported="true" kind="lib" path="lib/jpa/hibernate-entitymanager-4.0.0.CR6.jar"/>
+ <classpathentry exported="true" kind="lib" path="lib/required/antlr-2.7.7.jar"/>
+ <classpathentry exported="true" kind="lib" path="lib/required/classmate-0.5.4.jar"/>
+ <classpathentry exported="true" kind="lib" path="lib/required/commons-collections-3.2.1.jar"/>
+ <classpathentry exported="true" kind="lib" path="lib/required/dom4j-1.6.1.jar"/>
+ <classpathentry exported="true" kind="lib" path="lib/required/hibernate-commons-annotations-4.0.0.Final.jar"/>
+ <classpathentry exported="true" kind="lib" path="lib/required/hibernate-core-4.0.0.CR6.jar"/>
+ <classpathentry exported="true" kind="lib" path="lib/required/hibernate-jpa-2.0-api-1.0.1.Final.jar"/>
+ <classpathentry exported="true" kind="lib" path="lib/required/jandex-1.0.3.Final.jar"/>
+ <classpathentry exported="true" kind="lib" path="lib/required/javassist-3.12.1.GA.jar"/>
+ <classpathentry exported="true" kind="lib" path="lib/required/jboss-logging-3.1.0.CR1.jar"/>
+ <classpathentry exported="true" kind="lib" path="lib/required/jboss-transaction-api_1.1_spec-1.0.0.Final.jar"/>
+ <classpathentry exported="true" kind="lib" path="lib/tools/freemarker.jar"/>
+ <classpathentry exported="true" kind="lib" path="lib/tools/hibernate-tools-4.0.0.jar"/>
+ <classpathentry exported="true" kind="lib" path="lib/tools/jtidy-r8-20060801.jar"/>
+ <classpathentry exported="true" kind="lib" path="lib/bsh-core-2.0b4.jar"/>
+ <classpathentry exported="true" kind="lib" path="lib/log4j-1.2.15.jar"/>
+ <classpathentry exported="true" kind="lib" path="lib/slf4j-log4j12-1.5.8.jar"/>
+ <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
+ <classpathentry kind="con" path="org.eclipse.pde.core.requiredPlugins"/>
+ <classpathentry kind="src" path="src"/>
+ <classpathentry kind="output" path="bin"/>
+</classpath>
Modified: branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate4_0/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate4_0/META-INF/MANIFEST.MF 2012-07-03 01:54:51 UTC (rev 42337)
+++ branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate4_0/META-INF/MANIFEST.MF 2012-07-03 02:08:19 UTC (rev 42338)
@@ -30,7 +30,7 @@
lib/required/jboss-logging-3.1.0.CR1.jar,
lib/required/jboss-transaction-api_1.1_spec-1.0.0.Final.jar,
lib/tools/freemarker.jar,
- lib/tools/hibernate-tools-3.5.0.Beta.jar,
+ lib/tools/hibernate-tools-4.0.0.jar,
lib/tools/jtidy-r8-20060801.jar,
lib/bsh-core-2.0b4.jar,
lib/required/slf4j-api-1.5.8.jar,
Deleted: branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate4_0/lib/tools/hibernate-tools-3.5.0.Beta.jar
===================================================================
(Binary files differ)
Added: branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate4_0/lib/tools/hibernate-tools-4.0.0.jar
===================================================================
(Binary files differ)
Property changes on: branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate4_0/lib/tools/hibernate-tools-4.0.0.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
12 years, 8 months
JBoss Tools SVN: r42337 - in branches/jbosstools-3.3.x/hibernatetools: features and 45 other directories.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2012-07-02 21:54:51 -0400 (Mon, 02 Jul 2012)
New Revision: 42337
Modified:
branches/jbosstools-3.3.x/hibernatetools/features/org.hibernate.eclipse.feature/feature.xml
branches/jbosstools-3.3.x/hibernatetools/features/org.hibernate.eclipse.feature/pom.xml
branches/jbosstools-3.3.x/hibernatetools/features/org.hibernate.eclipse.test.feature/feature.xml
branches/jbosstools-3.3.x/hibernatetools/features/org.hibernate.eclipse.test.feature/pom.xml
branches/jbosstools-3.3.x/hibernatetools/features/pom.xml
branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse.console/META-INF/MANIFEST.MF
branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse.console/pom.xml
branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse.help/META-INF/MANIFEST.MF
branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse.help/pom.xml
branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse.jdt.apt.ui/META-INF/MANIFEST.MF
branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse.jdt.apt.ui/pom.xml
branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse.jdt.ui/META-INF/MANIFEST.MF
branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse.jdt.ui/pom.xml
branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse.libs/META-INF/MANIFEST.MF
branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse.libs/pom.xml
branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse.mapper/META-INF/MANIFEST.MF
branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse.mapper/pom.xml
branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse/META-INF/MANIFEST.MF
branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse/pom.xml
branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.core/META-INF/MANIFEST.MF
branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.core/pom.xml
branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/META-INF/MANIFEST.MF
branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/pom.xml
branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate.ui/META-INF/MANIFEST.MF
branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate.ui/pom.xml
branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate.xml.ui/META-INF/MANIFEST.MF
branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate.xml.ui/pom.xml
branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate.xml/META-INF/MANIFEST.MF
branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate.xml/pom.xml
branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate3_5/META-INF/MANIFEST.MF
branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate3_5/pom.xml
branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate3_6/META-INF/MANIFEST.MF
branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate3_6/pom.xml
branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate4_0/META-INF/MANIFEST.MF
branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate4_0/pom.xml
branches/jbosstools-3.3.x/hibernatetools/plugins/pom.xml
branches/jbosstools-3.3.x/hibernatetools/pom.xml
branches/jbosstools-3.3.x/hibernatetools/site/pom.xml
branches/jbosstools-3.3.x/hibernatetools/tests/org.hibernate.eclipse.console.test/META-INF/MANIFEST.MF
branches/jbosstools-3.3.x/hibernatetools/tests/org.hibernate.eclipse.console.test/pom.xml
branches/jbosstools-3.3.x/hibernatetools/tests/org.hibernate.eclipse.jdt.ui.test/META-INF/MANIFEST.MF
branches/jbosstools-3.3.x/hibernatetools/tests/org.hibernate.eclipse.jdt.ui.test/pom.xml
branches/jbosstools-3.3.x/hibernatetools/tests/org.jboss.tools.hibernate.jpt.core.test/META-INF/MANIFEST.MF
branches/jbosstools-3.3.x/hibernatetools/tests/org.jboss.tools.hibernate.jpt.core.test/pom.xml
branches/jbosstools-3.3.x/hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test/META-INF/MANIFEST.MF
branches/jbosstools-3.3.x/hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test/pom.xml
branches/jbosstools-3.3.x/hibernatetools/tests/org.jboss.tools.hibernate.ui.test/META-INF/MANIFEST.MF
branches/jbosstools-3.3.x/hibernatetools/tests/org.jboss.tools.hibernate.ui.test/pom.xml
branches/jbosstools-3.3.x/hibernatetools/tests/pom.xml
Log:
https://issues.jboss.org/browse/JBDS-2222 Fix hibernate tools plugin versions
hibernate version updated to 3.5.1 in 3.3.x branch
Modified: branches/jbosstools-3.3.x/hibernatetools/features/org.hibernate.eclipse.feature/feature.xml
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/features/org.hibernate.eclipse.feature/feature.xml 2012-07-03 01:39:39 UTC (rev 42336)
+++ branches/jbosstools-3.3.x/hibernatetools/features/org.hibernate.eclipse.feature/feature.xml 2012-07-03 01:54:51 UTC (rev 42337)
@@ -2,7 +2,7 @@
<feature
id="org.hibernate.eclipse.feature"
label="%featureName"
- version="3.4.0.qualifier"
+ version="3.5.1"
provider-name="%providerName"
plugin="org.hibernate.eclipse">
Modified: branches/jbosstools-3.3.x/hibernatetools/features/org.hibernate.eclipse.feature/pom.xml
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/features/org.hibernate.eclipse.feature/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
+++ branches/jbosstools-3.3.x/hibernatetools/features/org.hibernate.eclipse.feature/pom.xml 2012-07-03 01:54:51 UTC (rev 42337)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>features</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.5.1</version>
</parent>
<groupId>org.jboss.tools.hibernatetools.features</groupId>
<artifactId>org.hibernate.eclipse.feature</artifactId>
Modified: branches/jbosstools-3.3.x/hibernatetools/features/org.hibernate.eclipse.test.feature/feature.xml
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/features/org.hibernate.eclipse.test.feature/feature.xml 2012-07-03 01:39:39 UTC (rev 42336)
+++ branches/jbosstools-3.3.x/hibernatetools/features/org.hibernate.eclipse.test.feature/feature.xml 2012-07-03 01:54:51 UTC (rev 42337)
@@ -2,7 +2,7 @@
<feature
id="org.hibernate.eclipse.test.feature"
label="JBoss Tools - Tests - Hibernate"
- version="3.4.0.qualifier"
+ version="3.5.1"
provider-name="JBoss by Red Hat">
<description url="http://www.jboss.org/tools">
Modified: branches/jbosstools-3.3.x/hibernatetools/features/org.hibernate.eclipse.test.feature/pom.xml
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/features/org.hibernate.eclipse.test.feature/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
+++ branches/jbosstools-3.3.x/hibernatetools/features/org.hibernate.eclipse.test.feature/pom.xml 2012-07-03 01:54:51 UTC (rev 42337)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>features</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.5.1</version>
</parent>
<groupId>org.jboss.tools.hibernatetools.plugins</groupId>
<artifactId>org.hibernate.eclipse.test.feature</artifactId>
Modified: branches/jbosstools-3.3.x/hibernatetools/features/pom.xml
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/features/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
+++ branches/jbosstools-3.3.x/hibernatetools/features/pom.xml 2012-07-03 01:54:51 UTC (rev 42337)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools</groupId>
<artifactId>hibernatetools</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.5.1</version>
</parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>features</artifactId>
Modified: branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse/META-INF/MANIFEST.MF 2012-07-03 01:39:39 UTC (rev 42336)
+++ branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse/META-INF/MANIFEST.MF 2012-07-03 01:54:51 UTC (rev 42337)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.hibernate.eclipse;singleton:=true
-Bundle-Version: 3.4.0.qualifier
+Bundle-Version: 3.5.1
Bundle-ClassPath: org.hibernate.eclipse.jar
Bundle-Activator: org.hibernate.eclipse.HibernatePlugin
Bundle-Vendor: %Bundle-Vendor.0
Modified: branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse/pom.xml
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
+++ branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse/pom.xml 2012-07-03 01:54:51 UTC (rev 42337)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>plugins</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.5.1</version>
</parent>
<groupId>org.jboss.tools.hibernatetools.plugins</groupId>
<artifactId>org.hibernate.eclipse</artifactId>
Modified: branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse.console/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse.console/META-INF/MANIFEST.MF 2012-07-03 01:39:39 UTC (rev 42336)
+++ branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse.console/META-INF/MANIFEST.MF 2012-07-03 01:54:51 UTC (rev 42337)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.hibernate.eclipse.console; singleton:=true
-Bundle-Version: 3.4.0.qualifier
+Bundle-Version: 3.5.1
Bundle-ClassPath: org.hibernate.eclipse.console.jar
Bundle-Activator: org.hibernate.eclipse.console.HibernateConsolePlugin
Bundle-Vendor: %Bundle-Vendor.0
Modified: branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse.console/pom.xml
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse.console/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
+++ branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse.console/pom.xml 2012-07-03 01:54:51 UTC (rev 42337)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>plugins</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.5.1</version>
</parent>
<groupId>org.jboss.tools.hibernatetools.plugins</groupId>
<artifactId>org.hibernate.eclipse.console</artifactId>
Modified: branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse.help/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse.help/META-INF/MANIFEST.MF 2012-07-03 01:39:39 UTC (rev 42336)
+++ branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse.help/META-INF/MANIFEST.MF 2012-07-03 01:54:51 UTC (rev 42337)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.hibernate.eclipse.help; singleton:=true
-Bundle-Version: 3.4.0.qualifier
+Bundle-Version: 3.5.1
Bundle-ClassPath: help.jar
Bundle-Activator: org.hibernate.eclipse.help.HelpPlugin
Bundle-Vendor: %Bundle-Vendor.0
Modified: branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse.help/pom.xml
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse.help/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
+++ branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse.help/pom.xml 2012-07-03 01:54:51 UTC (rev 42337)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>plugins</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.5.1</version>
</parent>
<groupId>org.jboss.tools.hibernatetools.plugins</groupId>
<artifactId>org.hibernate.eclipse.help</artifactId>
Modified: branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse.jdt.apt.ui/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse.jdt.apt.ui/META-INF/MANIFEST.MF 2012-07-03 01:39:39 UTC (rev 42336)
+++ branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse.jdt.apt.ui/META-INF/MANIFEST.MF 2012-07-03 01:54:51 UTC (rev 42337)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.hibernate.eclipse.jdt.apt.ui;singleton:=true
-Bundle-Version: 3.4.0.qualifier
+Bundle-Version: 3.5.1
Bundle-Activator: org.hibernate.eclipse.jdt.apt.ui.Activator
Bundle-Vendor: %Bundle-Vendor.0
Bundle-Localization: plugin
Modified: branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse.jdt.apt.ui/pom.xml
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse.jdt.apt.ui/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
+++ branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse.jdt.apt.ui/pom.xml 2012-07-03 01:54:51 UTC (rev 42337)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>plugins</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.5.1</version>
</parent>
<groupId>org.jboss.tools.hibernatetools.plugins</groupId>
<artifactId>org.hibernate.eclipse.jdt.apt.ui</artifactId>
Modified: branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse.jdt.ui/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse.jdt.ui/META-INF/MANIFEST.MF 2012-07-03 01:39:39 UTC (rev 42336)
+++ branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse.jdt.ui/META-INF/MANIFEST.MF 2012-07-03 01:54:51 UTC (rev 42337)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.hibernate.eclipse.jdt.ui;singleton:=true
-Bundle-Version: 3.4.0.qualifier
+Bundle-Version: 3.5.1
Bundle-Activator: org.hibernate.eclipse.jdt.ui.Activator
Bundle-Vendor: %Bundle-Vendor.0
Bundle-Localization: plugin
Modified: branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse.jdt.ui/pom.xml
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse.jdt.ui/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
+++ branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse.jdt.ui/pom.xml 2012-07-03 01:54:51 UTC (rev 42337)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>plugins</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.5.1</version>
</parent>
<groupId>org.jboss.tools.hibernatetools.plugins</groupId>
<artifactId>org.hibernate.eclipse.jdt.ui</artifactId>
Modified: branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse.libs/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse.libs/META-INF/MANIFEST.MF 2012-07-03 01:39:39 UTC (rev 42336)
+++ branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse.libs/META-INF/MANIFEST.MF 2012-07-03 01:54:51 UTC (rev 42337)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: JBoss Hibernate 3.5 Libs
Bundle-SymbolicName: org.hibernate.eclipse.libs
-Bundle-Version: 3.4.0.qualifier
+Bundle-Version: 3.5.1
Bundle-ClassPath: .,
lib/hibernate/asm.jar,
lib/hibernate/asm-attrs.jar,
Modified: branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse.libs/pom.xml
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse.libs/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
+++ branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse.libs/pom.xml 2012-07-03 01:54:51 UTC (rev 42337)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>plugins</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.5.1</version>
</parent>
<groupId>org.jboss.tools.hibernatetools.plugins</groupId>
<artifactId>org.hibernate.eclipse.libs</artifactId>
Modified: branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse.mapper/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse.mapper/META-INF/MANIFEST.MF 2012-07-03 01:39:39 UTC (rev 42336)
+++ branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse.mapper/META-INF/MANIFEST.MF 2012-07-03 01:54:51 UTC (rev 42337)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.hibernate.eclipse.mapper; singleton:=true
-Bundle-Version: 3.4.0.qualifier
+Bundle-Version: 3.5.1
Bundle-ClassPath: org.hibernate.eclipse.mapper.jar
Bundle-Activator: org.hibernate.eclipse.mapper.MapperPlugin
Bundle-Vendor: %Bundle-Vendor.0
Modified: branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse.mapper/pom.xml
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse.mapper/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
+++ branches/jbosstools-3.3.x/hibernatetools/plugins/org.hibernate.eclipse.mapper/pom.xml 2012-07-03 01:54:51 UTC (rev 42337)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>plugins</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.5.1</version>
</parent>
<groupId>org.jboss.tools.hibernatetools.plugins</groupId>
<artifactId>org.hibernate.eclipse.mapper</artifactId>
Modified: branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.core/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.core/META-INF/MANIFEST.MF 2012-07-03 01:39:39 UTC (rev 42336)
+++ branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.core/META-INF/MANIFEST.MF 2012-07-03 01:54:51 UTC (rev 42337)
@@ -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.4.0.qualifier
+Bundle-Version: 3.5.1
Require-Bundle:
org.eclipse.core.runtime,
org.eclipse.wst.validation,
Modified: branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.core/pom.xml
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.core/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
+++ branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.core/pom.xml 2012-07-03 01:54:51 UTC (rev 42337)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>plugins</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.5.1</version>
</parent>
<groupId>org.jboss.tools.hibernatetools.plugins</groupId>
<artifactId>org.jboss.tools.hibernate.jpt.core</artifactId>
Modified: branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/META-INF/MANIFEST.MF 2012-07-03 01:39:39 UTC (rev 42336)
+++ branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/META-INF/MANIFEST.MF 2012-07-03 01:54:51 UTC (rev 42337)
@@ -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.4.0.qualifier
+Bundle-Version: 3.5.1
Bundle-Activator: org.jboss.tools.hibernate.jpt.ui.HibernateJptUIPlugin
Require-Bundle:
org.hibernate.eclipse.console,
Modified: branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/pom.xml
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
+++ branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/pom.xml 2012-07-03 01:54:51 UTC (rev 42337)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>plugins</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.5.1</version>
</parent>
<groupId>org.jboss.tools.hibernatetools.plugins</groupId>
<artifactId>org.jboss.tools.hibernate.jpt.ui</artifactId>
Modified: branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate.ui/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate.ui/META-INF/MANIFEST.MF 2012-07-03 01:39:39 UTC (rev 42336)
+++ branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate.ui/META-INF/MANIFEST.MF 2012-07-03 01:54:51 UTC (rev 42337)
@@ -18,7 +18,7 @@
org.eclipse.jdt.ui,
org.hibernate.eclipse.console,
org.hibernate.eclipse.libs;bundle-version="3.4.0"
-Bundle-Version: 3.4.0.qualifier
+Bundle-Version: 3.5.1
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.3.x/hibernatetools/plugins/org.jboss.tools.hibernate.ui/pom.xml
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate.ui/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
+++ branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate.ui/pom.xml 2012-07-03 01:54:51 UTC (rev 42337)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>plugins</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.5.1</version>
</parent>
<groupId>org.jboss.tools.hibernatetools.plugins</groupId>
<artifactId>org.jboss.tools.hibernate.ui</artifactId>
Modified: branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate.xml/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate.xml/META-INF/MANIFEST.MF 2012-07-03 01:39:39 UTC (rev 42336)
+++ branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate.xml/META-INF/MANIFEST.MF 2012-07-03 01:54:51 UTC (rev 42337)
@@ -25,5 +25,5 @@
org.eclipse.core.runtime,
org.jboss.tools.common,
org.jboss.tools.common.model
-Bundle-Version: 3.4.0.qualifier
+Bundle-Version: 3.5.1
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Modified: branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate.xml/pom.xml
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate.xml/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
+++ branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate.xml/pom.xml 2012-07-03 01:54:51 UTC (rev 42337)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>plugins</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.5.1</version>
</parent>
<groupId>org.jboss.tools.hibernatetools.plugins</groupId>
<artifactId>org.jboss.tools.hibernate.xml</artifactId>
Modified: branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate.xml.ui/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate.xml.ui/META-INF/MANIFEST.MF 2012-07-03 01:39:39 UTC (rev 42336)
+++ branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate.xml.ui/META-INF/MANIFEST.MF 2012-07-03 01:54:51 UTC (rev 42337)
@@ -25,5 +25,5 @@
org.jboss.tools.common.model.ui,
org.jboss.tools.hibernate.xml,
org.eclipse.wst.xml.ui
-Bundle-Version: 3.4.0.qualifier
+Bundle-Version: 3.5.1
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Modified: branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate.xml.ui/pom.xml
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate.xml.ui/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
+++ branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate.xml.ui/pom.xml 2012-07-03 01:54:51 UTC (rev 42337)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>plugins</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.5.1</version>
</parent>
<groupId>org.jboss.tools.hibernatetools.plugins</groupId>
<artifactId>org.jboss.tools.hibernate.xml.ui</artifactId>
Modified: branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate3_5/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate3_5/META-INF/MANIFEST.MF 2012-07-03 01:39:39 UTC (rev 42336)
+++ branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate3_5/META-INF/MANIFEST.MF 2012-07-03 01:54:51 UTC (rev 42337)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: Hibernate3_5
Bundle-SymbolicName: org.jboss.tools.hibernate3_5;singleton:=true
-Bundle-Version: 3.4.0.qualifier
+Bundle-Version: 3.5.1
Bundle-Activator: org.jboss.tools.hibernate3_5.Hibernate3_5Plugin
Bundle-Localization: plugin
Require-Bundle: org.eclipse.ui,
Modified: branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate3_5/pom.xml
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate3_5/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
+++ branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate3_5/pom.xml 2012-07-03 01:54:51 UTC (rev 42337)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>plugins</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.5.1</version>
</parent>
<groupId>org.jboss.tools.hibernatetools.plugins</groupId>
<artifactId>org.jboss.tools.hibernate3_5</artifactId>
Modified: branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate3_6/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate3_6/META-INF/MANIFEST.MF 2012-07-03 01:39:39 UTC (rev 42336)
+++ branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate3_6/META-INF/MANIFEST.MF 2012-07-03 01:54:51 UTC (rev 42337)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: Hibernate3_6
Bundle-SymbolicName: org.jboss.tools.hibernate3_6;singleton:=true
-Bundle-Version: 3.4.0.qualifier
+Bundle-Version: 3.5.1
Bundle-Activator: org.jboss.tools.hibernate3_6.Hibernate3_6Plugin
Bundle-Localization: plugin
Require-Bundle: org.eclipse.ui,
Modified: branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate3_6/pom.xml
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate3_6/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
+++ branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate3_6/pom.xml 2012-07-03 01:54:51 UTC (rev 42337)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>plugins</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.5.1</version>
</parent>
<groupId>org.jboss.tools.hibernatetools.plugins</groupId>
<artifactId>org.jboss.tools.hibernate3_6</artifactId>
Modified: branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate4_0/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate4_0/META-INF/MANIFEST.MF 2012-07-03 01:39:39 UTC (rev 42336)
+++ branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate4_0/META-INF/MANIFEST.MF 2012-07-03 01:54:51 UTC (rev 42337)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: Hibernate4_0
Bundle-SymbolicName: org.jboss.tools.hibernate4_0;singleton:=true
-Bundle-Version: 3.4.0.qualifier
+Bundle-Version: 3.5.1
Bundle-Activator: org.jboss.tools.hibernate4_0.Hibernate4_0Plugin
Bundle-Localization: plugin
Require-Bundle: org.eclipse.ui,
Modified: branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate4_0/pom.xml
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate4_0/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
+++ branches/jbosstools-3.3.x/hibernatetools/plugins/org.jboss.tools.hibernate4_0/pom.xml 2012-07-03 01:54:51 UTC (rev 42337)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>plugins</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.5.1</version>
</parent>
<groupId>org.jboss.tools.hibernatetools.plugins</groupId>
<artifactId>org.jboss.tools.hibernate4_0</artifactId>
Modified: branches/jbosstools-3.3.x/hibernatetools/plugins/pom.xml
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/plugins/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
+++ branches/jbosstools-3.3.x/hibernatetools/plugins/pom.xml 2012-07-03 01:54:51 UTC (rev 42337)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools</groupId>
<artifactId>hibernatetools</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.5.1</version>
</parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>plugins</artifactId>
Modified: branches/jbosstools-3.3.x/hibernatetools/pom.xml
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
+++ branches/jbosstools-3.3.x/hibernatetools/pom.xml 2012-07-03 01:54:51 UTC (rev 42337)
@@ -10,7 +10,7 @@
<groupId>org.jboss.tools</groupId>
<artifactId>hibernatetools</artifactId>
<name>hibernatetools.all</name>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.5.1</version>
<packaging>pom</packaging>
<modules>
<module>features</module>
Modified: branches/jbosstools-3.3.x/hibernatetools/site/pom.xml
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/site/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
+++ branches/jbosstools-3.3.x/hibernatetools/site/pom.xml 2012-07-03 01:54:51 UTC (rev 42337)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools</groupId>
<artifactId>hibernatetools</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.5.1</version>
</parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>hibernatetools.site</artifactId>
Modified: branches/jbosstools-3.3.x/hibernatetools/tests/org.hibernate.eclipse.console.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/tests/org.hibernate.eclipse.console.test/META-INF/MANIFEST.MF 2012-07-03 01:39:39 UTC (rev 42336)
+++ branches/jbosstools-3.3.x/hibernatetools/tests/org.hibernate.eclipse.console.test/META-INF/MANIFEST.MF 2012-07-03 01:54:51 UTC (rev 42337)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.hibernate.eclipse.console.test
-Bundle-Version: 3.4.0.qualifier
+Bundle-Version: 3.5.1
Bundle-ClassPath: .,
lib/hibernate-tools-tests.jar,
lib/hsqldb.jar,
Modified: branches/jbosstools-3.3.x/hibernatetools/tests/org.hibernate.eclipse.console.test/pom.xml
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/tests/org.hibernate.eclipse.console.test/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
+++ branches/jbosstools-3.3.x/hibernatetools/tests/org.hibernate.eclipse.console.test/pom.xml 2012-07-03 01:54:51 UTC (rev 42337)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>tests</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.5.1</version>
</parent>
<groupId>org.jboss.tools.hibernatetools.tests</groupId>
<artifactId>org.hibernate.eclipse.console.test</artifactId>
Modified: branches/jbosstools-3.3.x/hibernatetools/tests/org.hibernate.eclipse.jdt.ui.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/tests/org.hibernate.eclipse.jdt.ui.test/META-INF/MANIFEST.MF 2012-07-03 01:39:39 UTC (rev 42336)
+++ branches/jbosstools-3.3.x/hibernatetools/tests/org.hibernate.eclipse.jdt.ui.test/META-INF/MANIFEST.MF 2012-07-03 01:54:51 UTC (rev 42337)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.hibernate.eclipse.jdt.ui.test
-Bundle-Version: 3.4.0.qualifier
+Bundle-Version: 3.5.1
Require-Bundle: org.hibernate.eclipse.libs;bundle-version="1.0.0",
org.eclipse.ui,
org.eclipse.core.runtime,
Modified: branches/jbosstools-3.3.x/hibernatetools/tests/org.hibernate.eclipse.jdt.ui.test/pom.xml
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/tests/org.hibernate.eclipse.jdt.ui.test/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
+++ branches/jbosstools-3.3.x/hibernatetools/tests/org.hibernate.eclipse.jdt.ui.test/pom.xml 2012-07-03 01:54:51 UTC (rev 42337)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>tests</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.5.1</version>
</parent>
<groupId>org.jboss.tools.hibernatetools.tests</groupId>
<artifactId>org.hibernate.eclipse.jdt.ui.test</artifactId>
Modified: branches/jbosstools-3.3.x/hibernatetools/tests/org.jboss.tools.hibernate.jpt.core.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/tests/org.jboss.tools.hibernate.jpt.core.test/META-INF/MANIFEST.MF 2012-07-03 01:39:39 UTC (rev 42336)
+++ branches/jbosstools-3.3.x/hibernatetools/tests/org.jboss.tools.hibernate.jpt.core.test/META-INF/MANIFEST.MF 2012-07-03 01:54:51 UTC (rev 42337)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.hibernate.jpt.core.test
-Bundle-Version: 3.4.0.qualifier
+Bundle-Version: 3.5.1
Require-Bundle: org.hibernate.eclipse.libs;bundle-version="3.4.0",
org.junit;bundle-version="4.0.0",
org.eclipse.wst.common.project.facet.ui;bundle-version="1.3.0",
Modified: branches/jbosstools-3.3.x/hibernatetools/tests/org.jboss.tools.hibernate.jpt.core.test/pom.xml
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/tests/org.jboss.tools.hibernate.jpt.core.test/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
+++ branches/jbosstools-3.3.x/hibernatetools/tests/org.jboss.tools.hibernate.jpt.core.test/pom.xml 2012-07-03 01:54:51 UTC (rev 42337)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>tests</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.5.1</version>
</parent>
<groupId>org.jboss.tools.hibernatetools.tests</groupId>
<artifactId>org.jboss.tools.hibernate.jpt.core.test</artifactId>
Modified: branches/jbosstools-3.3.x/hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test/META-INF/MANIFEST.MF 2012-07-03 01:39:39 UTC (rev 42336)
+++ branches/jbosstools-3.3.x/hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test/META-INF/MANIFEST.MF 2012-07-03 01:54:51 UTC (rev 42337)
@@ -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.4.0.qualifier
+Bundle-Version: 3.5.1
Bundle-Activator: org.jboss.tools.hibernate.ui.bot.testcase.Activator
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
Modified: branches/jbosstools-3.3.x/hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test/pom.xml
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
+++ branches/jbosstools-3.3.x/hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test/pom.xml 2012-07-03 01:54:51 UTC (rev 42337)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>tests</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.5.1</version>
</parent>
<groupId>org.jboss.tools.hibernatetools.tests</groupId>
<artifactId>org.jboss.tools.hibernate.ui.bot.test</artifactId>
Modified: branches/jbosstools-3.3.x/hibernatetools/tests/org.jboss.tools.hibernate.ui.test/META-INF/MANIFEST.MF
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/tests/org.jboss.tools.hibernate.ui.test/META-INF/MANIFEST.MF 2012-07-03 01:39:39 UTC (rev 42336)
+++ branches/jbosstools-3.3.x/hibernatetools/tests/org.jboss.tools.hibernate.ui.test/META-INF/MANIFEST.MF 2012-07-03 01:54:51 UTC (rev 42337)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.hibernate.ui.test
-Bundle-Version: 3.4.0.qualifier
+Bundle-Version: 3.5.1
Require-Bundle: org.hibernate.eclipse.libs;bundle-version="3.4.0",
org.junit;bundle-version="3.8.2",
org.eclipse.wst.common.project.facet.ui;bundle-version="1.3.0",
Modified: branches/jbosstools-3.3.x/hibernatetools/tests/org.jboss.tools.hibernate.ui.test/pom.xml
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/tests/org.jboss.tools.hibernate.ui.test/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
+++ branches/jbosstools-3.3.x/hibernatetools/tests/org.jboss.tools.hibernate.ui.test/pom.xml 2012-07-03 01:54:51 UTC (rev 42337)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>tests</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.5.1</version>
</parent>
<groupId>org.jboss.tools.hibernatetools.tests</groupId>
<artifactId>org.jboss.tools.hibernate.ui.test</artifactId>
Modified: branches/jbosstools-3.3.x/hibernatetools/tests/pom.xml
===================================================================
--- branches/jbosstools-3.3.x/hibernatetools/tests/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
+++ branches/jbosstools-3.3.x/hibernatetools/tests/pom.xml 2012-07-03 01:54:51 UTC (rev 42337)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools</groupId>
<artifactId>hibernatetools</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.5.1</version>
</parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>tests</artifactId>
12 years, 8 months
JBoss Tools SVN: r42336 - in trunk/hibernatetools: features and 45 other directories.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2012-07-02 21:39:39 -0400 (Mon, 02 Jul 2012)
New Revision: 42336
Modified:
trunk/hibernatetools/features/org.hibernate.eclipse.feature/feature.xml
trunk/hibernatetools/features/org.hibernate.eclipse.feature/pom.xml
trunk/hibernatetools/features/org.hibernate.eclipse.test.feature/feature.xml
trunk/hibernatetools/features/org.hibernate.eclipse.test.feature/pom.xml
trunk/hibernatetools/features/pom.xml
trunk/hibernatetools/plugins/org.hibernate.eclipse.console/META-INF/MANIFEST.MF
trunk/hibernatetools/plugins/org.hibernate.eclipse.console/pom.xml
trunk/hibernatetools/plugins/org.hibernate.eclipse.help/META-INF/MANIFEST.MF
trunk/hibernatetools/plugins/org.hibernate.eclipse.help/pom.xml
trunk/hibernatetools/plugins/org.hibernate.eclipse.jdt.apt.ui/META-INF/MANIFEST.MF
trunk/hibernatetools/plugins/org.hibernate.eclipse.jdt.apt.ui/pom.xml
trunk/hibernatetools/plugins/org.hibernate.eclipse.jdt.ui/META-INF/MANIFEST.MF
trunk/hibernatetools/plugins/org.hibernate.eclipse.jdt.ui/pom.xml
trunk/hibernatetools/plugins/org.hibernate.eclipse.libs/META-INF/MANIFEST.MF
trunk/hibernatetools/plugins/org.hibernate.eclipse.libs/pom.xml
trunk/hibernatetools/plugins/org.hibernate.eclipse.mapper/META-INF/MANIFEST.MF
trunk/hibernatetools/plugins/org.hibernate.eclipse.mapper/pom.xml
trunk/hibernatetools/plugins/org.hibernate.eclipse/META-INF/MANIFEST.MF
trunk/hibernatetools/plugins/org.hibernate.eclipse/pom.xml
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.core/META-INF/MANIFEST.MF
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.core/pom.xml
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/META-INF/MANIFEST.MF
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/pom.xml
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.ui/META-INF/MANIFEST.MF
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.ui/pom.xml
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml.ui/META-INF/MANIFEST.MF
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml.ui/pom.xml
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml/META-INF/MANIFEST.MF
trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml/pom.xml
trunk/hibernatetools/plugins/org.jboss.tools.hibernate3_5/META-INF/MANIFEST.MF
trunk/hibernatetools/plugins/org.jboss.tools.hibernate3_5/pom.xml
trunk/hibernatetools/plugins/org.jboss.tools.hibernate3_6/META-INF/MANIFEST.MF
trunk/hibernatetools/plugins/org.jboss.tools.hibernate3_6/pom.xml
trunk/hibernatetools/plugins/org.jboss.tools.hibernate4_0/META-INF/MANIFEST.MF
trunk/hibernatetools/plugins/org.jboss.tools.hibernate4_0/pom.xml
trunk/hibernatetools/plugins/pom.xml
trunk/hibernatetools/pom.xml
trunk/hibernatetools/site/pom.xml
trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/META-INF/MANIFEST.MF
trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/pom.xml
trunk/hibernatetools/tests/org.hibernate.eclipse.jdt.ui.test/META-INF/MANIFEST.MF
trunk/hibernatetools/tests/org.hibernate.eclipse.jdt.ui.test/pom.xml
trunk/hibernatetools/tests/org.jboss.tools.hibernate.jpt.core.test/META-INF/MANIFEST.MF
trunk/hibernatetools/tests/org.jboss.tools.hibernate.jpt.core.test/pom.xml
trunk/hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test/META-INF/MANIFEST.MF
trunk/hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test/pom.xml
trunk/hibernatetools/tests/org.jboss.tools.hibernate.ui.test/META-INF/MANIFEST.MF
trunk/hibernatetools/tests/org.jboss.tools.hibernate.ui.test/pom.xml
trunk/hibernatetools/tests/pom.xml
Log:
https://issues.jboss.org/browse/JBDS-2222 Fix hibernate tools plugin versions
Increased minor version in trunk for hibernate tools to 3.6.0, it cannot be 3.5.0 becuase of changed dependencies and migration to Juno in jpt plugins
Modified: trunk/hibernatetools/features/org.hibernate.eclipse.feature/feature.xml
===================================================================
--- trunk/hibernatetools/features/org.hibernate.eclipse.feature/feature.xml 2012-07-02 22:36:12 UTC (rev 42335)
+++ trunk/hibernatetools/features/org.hibernate.eclipse.feature/feature.xml 2012-07-03 01:39:39 UTC (rev 42336)
@@ -2,7 +2,7 @@
<feature
id="org.hibernate.eclipse.feature"
label="%featureName"
- version="3.4.0.qualifier"
+ version="3.6.0"
provider-name="%providerName"
plugin="org.hibernate.eclipse">
Modified: trunk/hibernatetools/features/org.hibernate.eclipse.feature/pom.xml
===================================================================
--- trunk/hibernatetools/features/org.hibernate.eclipse.feature/pom.xml 2012-07-02 22:36:12 UTC (rev 42335)
+++ trunk/hibernatetools/features/org.hibernate.eclipse.feature/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>features</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.6.0</version>
</parent>
<groupId>org.jboss.tools.hibernatetools.features</groupId>
<artifactId>org.hibernate.eclipse.feature</artifactId>
Modified: trunk/hibernatetools/features/org.hibernate.eclipse.test.feature/feature.xml
===================================================================
--- trunk/hibernatetools/features/org.hibernate.eclipse.test.feature/feature.xml 2012-07-02 22:36:12 UTC (rev 42335)
+++ trunk/hibernatetools/features/org.hibernate.eclipse.test.feature/feature.xml 2012-07-03 01:39:39 UTC (rev 42336)
@@ -2,7 +2,7 @@
<feature
id="org.hibernate.eclipse.test.feature"
label="JBoss Tools - Tests - Hibernate"
- version="3.4.0.qualifier"
+ version="3.6.0"
provider-name="JBoss by Red Hat">
<description url="http://www.jboss.org/tools">
Modified: trunk/hibernatetools/features/org.hibernate.eclipse.test.feature/pom.xml
===================================================================
--- trunk/hibernatetools/features/org.hibernate.eclipse.test.feature/pom.xml 2012-07-02 22:36:12 UTC (rev 42335)
+++ trunk/hibernatetools/features/org.hibernate.eclipse.test.feature/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>features</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.6.0</version>
</parent>
<groupId>org.jboss.tools.hibernatetools.plugins</groupId>
<artifactId>org.hibernate.eclipse.test.feature</artifactId>
Modified: trunk/hibernatetools/features/pom.xml
===================================================================
--- trunk/hibernatetools/features/pom.xml 2012-07-02 22:36:12 UTC (rev 42335)
+++ trunk/hibernatetools/features/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools</groupId>
<artifactId>hibernatetools</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.6.0</version>
</parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>features</artifactId>
Modified: trunk/hibernatetools/plugins/org.hibernate.eclipse/META-INF/MANIFEST.MF
===================================================================
--- trunk/hibernatetools/plugins/org.hibernate.eclipse/META-INF/MANIFEST.MF 2012-07-02 22:36:12 UTC (rev 42335)
+++ trunk/hibernatetools/plugins/org.hibernate.eclipse/META-INF/MANIFEST.MF 2012-07-03 01:39:39 UTC (rev 42336)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.hibernate.eclipse;singleton:=true
-Bundle-Version: 3.4.0.qualifier
+Bundle-Version: 3.6.0
Bundle-ClassPath: org.hibernate.eclipse.jar
Bundle-Activator: org.hibernate.eclipse.HibernatePlugin
Bundle-Vendor: %Bundle-Vendor.0
Modified: trunk/hibernatetools/plugins/org.hibernate.eclipse/pom.xml
===================================================================
--- trunk/hibernatetools/plugins/org.hibernate.eclipse/pom.xml 2012-07-02 22:36:12 UTC (rev 42335)
+++ trunk/hibernatetools/plugins/org.hibernate.eclipse/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>plugins</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.6.0</version>
</parent>
<groupId>org.jboss.tools.hibernatetools.plugins</groupId>
<artifactId>org.hibernate.eclipse</artifactId>
Modified: trunk/hibernatetools/plugins/org.hibernate.eclipse.console/META-INF/MANIFEST.MF
===================================================================
--- trunk/hibernatetools/plugins/org.hibernate.eclipse.console/META-INF/MANIFEST.MF 2012-07-02 22:36:12 UTC (rev 42335)
+++ trunk/hibernatetools/plugins/org.hibernate.eclipse.console/META-INF/MANIFEST.MF 2012-07-03 01:39:39 UTC (rev 42336)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.hibernate.eclipse.console; singleton:=true
-Bundle-Version: 3.4.0.qualifier
+Bundle-Version: 3.6.0
Bundle-ClassPath: org.hibernate.eclipse.console.jar
Bundle-Activator: org.hibernate.eclipse.console.HibernateConsolePlugin
Bundle-Vendor: %Bundle-Vendor.0
Modified: trunk/hibernatetools/plugins/org.hibernate.eclipse.console/pom.xml
===================================================================
--- trunk/hibernatetools/plugins/org.hibernate.eclipse.console/pom.xml 2012-07-02 22:36:12 UTC (rev 42335)
+++ trunk/hibernatetools/plugins/org.hibernate.eclipse.console/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>plugins</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.6.0</version>
</parent>
<groupId>org.jboss.tools.hibernatetools.plugins</groupId>
<artifactId>org.hibernate.eclipse.console</artifactId>
Modified: trunk/hibernatetools/plugins/org.hibernate.eclipse.help/META-INF/MANIFEST.MF
===================================================================
--- trunk/hibernatetools/plugins/org.hibernate.eclipse.help/META-INF/MANIFEST.MF 2012-07-02 22:36:12 UTC (rev 42335)
+++ trunk/hibernatetools/plugins/org.hibernate.eclipse.help/META-INF/MANIFEST.MF 2012-07-03 01:39:39 UTC (rev 42336)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.hibernate.eclipse.help; singleton:=true
-Bundle-Version: 3.4.0.qualifier
+Bundle-Version: 3.6.0
Bundle-ClassPath: help.jar
Bundle-Activator: org.hibernate.eclipse.help.HelpPlugin
Bundle-Vendor: %Bundle-Vendor.0
Modified: trunk/hibernatetools/plugins/org.hibernate.eclipse.help/pom.xml
===================================================================
--- trunk/hibernatetools/plugins/org.hibernate.eclipse.help/pom.xml 2012-07-02 22:36:12 UTC (rev 42335)
+++ trunk/hibernatetools/plugins/org.hibernate.eclipse.help/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>plugins</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.6.0</version>
</parent>
<groupId>org.jboss.tools.hibernatetools.plugins</groupId>
<artifactId>org.hibernate.eclipse.help</artifactId>
Modified: trunk/hibernatetools/plugins/org.hibernate.eclipse.jdt.apt.ui/META-INF/MANIFEST.MF
===================================================================
--- trunk/hibernatetools/plugins/org.hibernate.eclipse.jdt.apt.ui/META-INF/MANIFEST.MF 2012-07-02 22:36:12 UTC (rev 42335)
+++ trunk/hibernatetools/plugins/org.hibernate.eclipse.jdt.apt.ui/META-INF/MANIFEST.MF 2012-07-03 01:39:39 UTC (rev 42336)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.hibernate.eclipse.jdt.apt.ui;singleton:=true
-Bundle-Version: 3.4.0.qualifier
+Bundle-Version: 3.6.0
Bundle-Activator: org.hibernate.eclipse.jdt.apt.ui.Activator
Bundle-Vendor: %Bundle-Vendor.0
Bundle-Localization: plugin
Modified: trunk/hibernatetools/plugins/org.hibernate.eclipse.jdt.apt.ui/pom.xml
===================================================================
--- trunk/hibernatetools/plugins/org.hibernate.eclipse.jdt.apt.ui/pom.xml 2012-07-02 22:36:12 UTC (rev 42335)
+++ trunk/hibernatetools/plugins/org.hibernate.eclipse.jdt.apt.ui/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>plugins</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.6.0</version>
</parent>
<groupId>org.jboss.tools.hibernatetools.plugins</groupId>
<artifactId>org.hibernate.eclipse.jdt.apt.ui</artifactId>
Modified: trunk/hibernatetools/plugins/org.hibernate.eclipse.jdt.ui/META-INF/MANIFEST.MF
===================================================================
--- trunk/hibernatetools/plugins/org.hibernate.eclipse.jdt.ui/META-INF/MANIFEST.MF 2012-07-02 22:36:12 UTC (rev 42335)
+++ trunk/hibernatetools/plugins/org.hibernate.eclipse.jdt.ui/META-INF/MANIFEST.MF 2012-07-03 01:39:39 UTC (rev 42336)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.hibernate.eclipse.jdt.ui;singleton:=true
-Bundle-Version: 3.4.0.qualifier
+Bundle-Version: 3.6.0
Bundle-Activator: org.hibernate.eclipse.jdt.ui.Activator
Bundle-Vendor: %Bundle-Vendor.0
Bundle-Localization: plugin
Modified: trunk/hibernatetools/plugins/org.hibernate.eclipse.jdt.ui/pom.xml
===================================================================
--- trunk/hibernatetools/plugins/org.hibernate.eclipse.jdt.ui/pom.xml 2012-07-02 22:36:12 UTC (rev 42335)
+++ trunk/hibernatetools/plugins/org.hibernate.eclipse.jdt.ui/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>plugins</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.6.0</version>
</parent>
<groupId>org.jboss.tools.hibernatetools.plugins</groupId>
<artifactId>org.hibernate.eclipse.jdt.ui</artifactId>
Modified: trunk/hibernatetools/plugins/org.hibernate.eclipse.libs/META-INF/MANIFEST.MF
===================================================================
--- trunk/hibernatetools/plugins/org.hibernate.eclipse.libs/META-INF/MANIFEST.MF 2012-07-02 22:36:12 UTC (rev 42335)
+++ trunk/hibernatetools/plugins/org.hibernate.eclipse.libs/META-INF/MANIFEST.MF 2012-07-03 01:39:39 UTC (rev 42336)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: JBoss Hibernate 3.5 Libs
Bundle-SymbolicName: org.hibernate.eclipse.libs
-Bundle-Version: 3.4.0.qualifier
+Bundle-Version: 3.6.0
Bundle-ClassPath: .,
lib/hibernate/asm.jar,
lib/hibernate/asm-attrs.jar,
Modified: trunk/hibernatetools/plugins/org.hibernate.eclipse.libs/pom.xml
===================================================================
--- trunk/hibernatetools/plugins/org.hibernate.eclipse.libs/pom.xml 2012-07-02 22:36:12 UTC (rev 42335)
+++ trunk/hibernatetools/plugins/org.hibernate.eclipse.libs/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>plugins</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.6.0</version>
</parent>
<groupId>org.jboss.tools.hibernatetools.plugins</groupId>
<artifactId>org.hibernate.eclipse.libs</artifactId>
Modified: trunk/hibernatetools/plugins/org.hibernate.eclipse.mapper/META-INF/MANIFEST.MF
===================================================================
--- trunk/hibernatetools/plugins/org.hibernate.eclipse.mapper/META-INF/MANIFEST.MF 2012-07-02 22:36:12 UTC (rev 42335)
+++ trunk/hibernatetools/plugins/org.hibernate.eclipse.mapper/META-INF/MANIFEST.MF 2012-07-03 01:39:39 UTC (rev 42336)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.hibernate.eclipse.mapper; singleton:=true
-Bundle-Version: 3.4.0.qualifier
+Bundle-Version: 3.6.0
Bundle-ClassPath: org.hibernate.eclipse.mapper.jar
Bundle-Activator: org.hibernate.eclipse.mapper.MapperPlugin
Bundle-Vendor: %Bundle-Vendor.0
Modified: trunk/hibernatetools/plugins/org.hibernate.eclipse.mapper/pom.xml
===================================================================
--- trunk/hibernatetools/plugins/org.hibernate.eclipse.mapper/pom.xml 2012-07-02 22:36:12 UTC (rev 42335)
+++ trunk/hibernatetools/plugins/org.hibernate.eclipse.mapper/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>plugins</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.6.0</version>
</parent>
<groupId>org.jboss.tools.hibernatetools.plugins</groupId>
<artifactId>org.hibernate.eclipse.mapper</artifactId>
Modified: trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.core/META-INF/MANIFEST.MF
===================================================================
--- trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.core/META-INF/MANIFEST.MF 2012-07-02 22:36:12 UTC (rev 42335)
+++ trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.core/META-INF/MANIFEST.MF 2012-07-03 01:39:39 UTC (rev 42336)
@@ -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.4.0.qualifier
+Bundle-Version: 3.6.0
Require-Bundle:
org.eclipse.core.runtime,
org.eclipse.wst.validation,
Modified: trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.core/pom.xml
===================================================================
--- trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.core/pom.xml 2012-07-02 22:36:12 UTC (rev 42335)
+++ trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.core/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>plugins</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.6.0</version>
</parent>
<groupId>org.jboss.tools.hibernatetools.plugins</groupId>
<artifactId>org.jboss.tools.hibernate.jpt.core</artifactId>
Modified: trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/META-INF/MANIFEST.MF
===================================================================
--- trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/META-INF/MANIFEST.MF 2012-07-02 22:36:12 UTC (rev 42335)
+++ trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/META-INF/MANIFEST.MF 2012-07-03 01:39:39 UTC (rev 42336)
@@ -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.4.0.qualifier
+Bundle-Version: 3.6.0
Bundle-Activator: org.jboss.tools.hibernate.jpt.ui.HibernateJptUIPlugin
Require-Bundle:
org.hibernate.eclipse.console,
Modified: trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/pom.xml
===================================================================
--- trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/pom.xml 2012-07-02 22:36:12 UTC (rev 42335)
+++ trunk/hibernatetools/plugins/org.jboss.tools.hibernate.jpt.ui/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>plugins</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.6.0</version>
</parent>
<groupId>org.jboss.tools.hibernatetools.plugins</groupId>
<artifactId>org.jboss.tools.hibernate.jpt.ui</artifactId>
Modified: trunk/hibernatetools/plugins/org.jboss.tools.hibernate.ui/META-INF/MANIFEST.MF
===================================================================
--- trunk/hibernatetools/plugins/org.jboss.tools.hibernate.ui/META-INF/MANIFEST.MF 2012-07-02 22:36:12 UTC (rev 42335)
+++ trunk/hibernatetools/plugins/org.jboss.tools.hibernate.ui/META-INF/MANIFEST.MF 2012-07-03 01:39:39 UTC (rev 42336)
@@ -18,7 +18,7 @@
org.eclipse.jdt.ui,
org.hibernate.eclipse.console,
org.hibernate.eclipse.libs;bundle-version="3.4.0"
-Bundle-Version: 3.4.0.qualifier
+Bundle-Version: 3.6.0
Export-Package: org.jboss.tools.hibernate.ui.diagram,
org.jboss.tools.hibernate.ui.diagram.editors,
org.jboss.tools.hibernate.ui.diagram.editors.actions,
Modified: trunk/hibernatetools/plugins/org.jboss.tools.hibernate.ui/pom.xml
===================================================================
--- trunk/hibernatetools/plugins/org.jboss.tools.hibernate.ui/pom.xml 2012-07-02 22:36:12 UTC (rev 42335)
+++ trunk/hibernatetools/plugins/org.jboss.tools.hibernate.ui/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>plugins</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.6.0</version>
</parent>
<groupId>org.jboss.tools.hibernatetools.plugins</groupId>
<artifactId>org.jboss.tools.hibernate.ui</artifactId>
Modified: trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml/META-INF/MANIFEST.MF
===================================================================
--- trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml/META-INF/MANIFEST.MF 2012-07-02 22:36:12 UTC (rev 42335)
+++ trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml/META-INF/MANIFEST.MF 2012-07-03 01:39:39 UTC (rev 42336)
@@ -25,5 +25,5 @@
org.eclipse.core.runtime,
org.jboss.tools.common,
org.jboss.tools.common.model
-Bundle-Version: 3.4.0.qualifier
+Bundle-Version: 3.6.0
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Modified: trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml/pom.xml
===================================================================
--- trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml/pom.xml 2012-07-02 22:36:12 UTC (rev 42335)
+++ trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>plugins</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.6.0</version>
</parent>
<groupId>org.jboss.tools.hibernatetools.plugins</groupId>
<artifactId>org.jboss.tools.hibernate.xml</artifactId>
Modified: trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml.ui/META-INF/MANIFEST.MF
===================================================================
--- trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml.ui/META-INF/MANIFEST.MF 2012-07-02 22:36:12 UTC (rev 42335)
+++ trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml.ui/META-INF/MANIFEST.MF 2012-07-03 01:39:39 UTC (rev 42336)
@@ -25,5 +25,5 @@
org.jboss.tools.common.model.ui,
org.jboss.tools.hibernate.xml,
org.eclipse.wst.xml.ui
-Bundle-Version: 3.4.0.qualifier
+Bundle-Version: 3.6.0
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Modified: trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml.ui/pom.xml
===================================================================
--- trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml.ui/pom.xml 2012-07-02 22:36:12 UTC (rev 42335)
+++ trunk/hibernatetools/plugins/org.jboss.tools.hibernate.xml.ui/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>plugins</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.6.0</version>
</parent>
<groupId>org.jboss.tools.hibernatetools.plugins</groupId>
<artifactId>org.jboss.tools.hibernate.xml.ui</artifactId>
Modified: trunk/hibernatetools/plugins/org.jboss.tools.hibernate3_5/META-INF/MANIFEST.MF
===================================================================
--- trunk/hibernatetools/plugins/org.jboss.tools.hibernate3_5/META-INF/MANIFEST.MF 2012-07-02 22:36:12 UTC (rev 42335)
+++ trunk/hibernatetools/plugins/org.jboss.tools.hibernate3_5/META-INF/MANIFEST.MF 2012-07-03 01:39:39 UTC (rev 42336)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: Hibernate3_5
Bundle-SymbolicName: org.jboss.tools.hibernate3_5;singleton:=true
-Bundle-Version: 3.4.0.qualifier
+Bundle-Version: 3.6.0
Bundle-Activator: org.jboss.tools.hibernate3_5.Hibernate3_5Plugin
Bundle-Localization: plugin
Require-Bundle: org.eclipse.ui,
Modified: trunk/hibernatetools/plugins/org.jboss.tools.hibernate3_5/pom.xml
===================================================================
--- trunk/hibernatetools/plugins/org.jboss.tools.hibernate3_5/pom.xml 2012-07-02 22:36:12 UTC (rev 42335)
+++ trunk/hibernatetools/plugins/org.jboss.tools.hibernate3_5/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>plugins</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.6.0</version>
</parent>
<groupId>org.jboss.tools.hibernatetools.plugins</groupId>
<artifactId>org.jboss.tools.hibernate3_5</artifactId>
Modified: trunk/hibernatetools/plugins/org.jboss.tools.hibernate3_6/META-INF/MANIFEST.MF
===================================================================
--- trunk/hibernatetools/plugins/org.jboss.tools.hibernate3_6/META-INF/MANIFEST.MF 2012-07-02 22:36:12 UTC (rev 42335)
+++ trunk/hibernatetools/plugins/org.jboss.tools.hibernate3_6/META-INF/MANIFEST.MF 2012-07-03 01:39:39 UTC (rev 42336)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: Hibernate3_6
Bundle-SymbolicName: org.jboss.tools.hibernate3_6;singleton:=true
-Bundle-Version: 3.4.0.qualifier
+Bundle-Version: 3.6.0
Bundle-Activator: org.jboss.tools.hibernate3_6.Hibernate3_6Plugin
Bundle-Localization: plugin
Require-Bundle: org.eclipse.ui,
Modified: trunk/hibernatetools/plugins/org.jboss.tools.hibernate3_6/pom.xml
===================================================================
--- trunk/hibernatetools/plugins/org.jboss.tools.hibernate3_6/pom.xml 2012-07-02 22:36:12 UTC (rev 42335)
+++ trunk/hibernatetools/plugins/org.jboss.tools.hibernate3_6/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>plugins</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.6.0</version>
</parent>
<groupId>org.jboss.tools.hibernatetools.plugins</groupId>
<artifactId>org.jboss.tools.hibernate3_6</artifactId>
Modified: trunk/hibernatetools/plugins/org.jboss.tools.hibernate4_0/META-INF/MANIFEST.MF
===================================================================
--- trunk/hibernatetools/plugins/org.jboss.tools.hibernate4_0/META-INF/MANIFEST.MF 2012-07-02 22:36:12 UTC (rev 42335)
+++ trunk/hibernatetools/plugins/org.jboss.tools.hibernate4_0/META-INF/MANIFEST.MF 2012-07-03 01:39:39 UTC (rev 42336)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: Hibernate4_0
Bundle-SymbolicName: org.jboss.tools.hibernate4_0;singleton:=true
-Bundle-Version: 3.4.0.qualifier
+Bundle-Version: 3.6.0
Bundle-Activator: org.jboss.tools.hibernate4_0.Hibernate4_0Plugin
Bundle-Localization: plugin
Require-Bundle: org.eclipse.ui,
Modified: trunk/hibernatetools/plugins/org.jboss.tools.hibernate4_0/pom.xml
===================================================================
--- trunk/hibernatetools/plugins/org.jboss.tools.hibernate4_0/pom.xml 2012-07-02 22:36:12 UTC (rev 42335)
+++ trunk/hibernatetools/plugins/org.jboss.tools.hibernate4_0/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>plugins</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.6.0</version>
</parent>
<groupId>org.jboss.tools.hibernatetools.plugins</groupId>
<artifactId>org.jboss.tools.hibernate4_0</artifactId>
Modified: trunk/hibernatetools/plugins/pom.xml
===================================================================
--- trunk/hibernatetools/plugins/pom.xml 2012-07-02 22:36:12 UTC (rev 42335)
+++ trunk/hibernatetools/plugins/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools</groupId>
<artifactId>hibernatetools</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.6.0</version>
</parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>plugins</artifactId>
Modified: trunk/hibernatetools/pom.xml
===================================================================
--- trunk/hibernatetools/pom.xml 2012-07-02 22:36:12 UTC (rev 42335)
+++ trunk/hibernatetools/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
@@ -10,7 +10,7 @@
<groupId>org.jboss.tools</groupId>
<artifactId>hibernatetools</artifactId>
<name>hibernatetools.all</name>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.6.0</version>
<packaging>pom</packaging>
<modules>
<module>features</module>
Modified: trunk/hibernatetools/site/pom.xml
===================================================================
--- trunk/hibernatetools/site/pom.xml 2012-07-02 22:36:12 UTC (rev 42335)
+++ trunk/hibernatetools/site/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools</groupId>
<artifactId>hibernatetools</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.6.0</version>
</parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>hibernatetools.site</artifactId>
Modified: trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/META-INF/MANIFEST.MF 2012-07-02 22:36:12 UTC (rev 42335)
+++ trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/META-INF/MANIFEST.MF 2012-07-03 01:39:39 UTC (rev 42336)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.hibernate.eclipse.console.test
-Bundle-Version: 3.4.0.qualifier
+Bundle-Version: 3.6.0
Bundle-ClassPath: .,
lib/hibernate-tools-tests.jar,
lib/hsqldb.jar,
Modified: trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/pom.xml
===================================================================
--- trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/pom.xml 2012-07-02 22:36:12 UTC (rev 42335)
+++ trunk/hibernatetools/tests/org.hibernate.eclipse.console.test/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>tests</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.6.0</version>
</parent>
<groupId>org.jboss.tools.hibernatetools.tests</groupId>
<artifactId>org.hibernate.eclipse.console.test</artifactId>
Modified: trunk/hibernatetools/tests/org.hibernate.eclipse.jdt.ui.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/hibernatetools/tests/org.hibernate.eclipse.jdt.ui.test/META-INF/MANIFEST.MF 2012-07-02 22:36:12 UTC (rev 42335)
+++ trunk/hibernatetools/tests/org.hibernate.eclipse.jdt.ui.test/META-INF/MANIFEST.MF 2012-07-03 01:39:39 UTC (rev 42336)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.hibernate.eclipse.jdt.ui.test
-Bundle-Version: 3.4.0.qualifier
+Bundle-Version: 3.6.0
Require-Bundle: org.hibernate.eclipse.libs;bundle-version="1.0.0",
org.eclipse.ui,
org.eclipse.core.runtime,
Modified: trunk/hibernatetools/tests/org.hibernate.eclipse.jdt.ui.test/pom.xml
===================================================================
--- trunk/hibernatetools/tests/org.hibernate.eclipse.jdt.ui.test/pom.xml 2012-07-02 22:36:12 UTC (rev 42335)
+++ trunk/hibernatetools/tests/org.hibernate.eclipse.jdt.ui.test/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>tests</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.6.0</version>
</parent>
<groupId>org.jboss.tools.hibernatetools.tests</groupId>
<artifactId>org.hibernate.eclipse.jdt.ui.test</artifactId>
Modified: trunk/hibernatetools/tests/org.jboss.tools.hibernate.jpt.core.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/hibernatetools/tests/org.jboss.tools.hibernate.jpt.core.test/META-INF/MANIFEST.MF 2012-07-02 22:36:12 UTC (rev 42335)
+++ trunk/hibernatetools/tests/org.jboss.tools.hibernate.jpt.core.test/META-INF/MANIFEST.MF 2012-07-03 01:39:39 UTC (rev 42336)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.hibernate.jpt.core.test
-Bundle-Version: 3.4.0.qualifier
+Bundle-Version: 3.6.0
Require-Bundle: org.hibernate.eclipse.libs;bundle-version="3.4.0",
org.junit;bundle-version="4.0.0",
org.eclipse.wst.common.project.facet.ui;bundle-version="1.3.0",
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 2012-07-02 22:36:12 UTC (rev 42335)
+++ trunk/hibernatetools/tests/org.jboss.tools.hibernate.jpt.core.test/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>tests</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.6.0</version>
</parent>
<groupId>org.jboss.tools.hibernatetools.tests</groupId>
<artifactId>org.jboss.tools.hibernate.jpt.core.test</artifactId>
Modified: trunk/hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test/META-INF/MANIFEST.MF 2012-07-02 22:36:12 UTC (rev 42335)
+++ trunk/hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test/META-INF/MANIFEST.MF 2012-07-03 01:39:39 UTC (rev 42336)
@@ -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.4.0.qualifier
+Bundle-Version: 3.6.0
Bundle-Activator: org.jboss.tools.hibernate.ui.bot.testcase.Activator
Require-Bundle: org.eclipse.ui,
org.eclipse.core.runtime,
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 2012-07-02 22:36:12 UTC (rev 42335)
+++ trunk/hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>tests</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.6.0</version>
</parent>
<groupId>org.jboss.tools.hibernatetools.tests</groupId>
<artifactId>org.jboss.tools.hibernate.ui.bot.test</artifactId>
Modified: trunk/hibernatetools/tests/org.jboss.tools.hibernate.ui.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/hibernatetools/tests/org.jboss.tools.hibernate.ui.test/META-INF/MANIFEST.MF 2012-07-02 22:36:12 UTC (rev 42335)
+++ trunk/hibernatetools/tests/org.jboss.tools.hibernate.ui.test/META-INF/MANIFEST.MF 2012-07-03 01:39:39 UTC (rev 42336)
@@ -2,7 +2,7 @@
Bundle-ManifestVersion: 2
Bundle-Name: %Bundle-Name.0
Bundle-SymbolicName: org.jboss.tools.hibernate.ui.test
-Bundle-Version: 3.4.0.qualifier
+Bundle-Version: 3.6.0
Require-Bundle: org.hibernate.eclipse.libs;bundle-version="3.4.0",
org.junit;bundle-version="3.8.2",
org.eclipse.wst.common.project.facet.ui;bundle-version="1.3.0",
Modified: trunk/hibernatetools/tests/org.jboss.tools.hibernate.ui.test/pom.xml
===================================================================
--- trunk/hibernatetools/tests/org.jboss.tools.hibernate.ui.test/pom.xml 2012-07-02 22:36:12 UTC (rev 42335)
+++ trunk/hibernatetools/tests/org.jboss.tools.hibernate.ui.test/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>tests</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.6.0</version>
</parent>
<groupId>org.jboss.tools.hibernatetools.tests</groupId>
<artifactId>org.jboss.tools.hibernate.ui.test</artifactId>
Modified: trunk/hibernatetools/tests/pom.xml
===================================================================
--- trunk/hibernatetools/tests/pom.xml 2012-07-02 22:36:12 UTC (rev 42335)
+++ trunk/hibernatetools/tests/pom.xml 2012-07-03 01:39:39 UTC (rev 42336)
@@ -4,7 +4,7 @@
<parent>
<groupId>org.jboss.tools</groupId>
<artifactId>hibernatetools</artifactId>
- <version>3.4.0-SNAPSHOT</version>
+ <version>3.6.0</version>
</parent>
<groupId>org.jboss.tools.hibernatetools</groupId>
<artifactId>tests</artifactId>
12 years, 8 months
JBoss Tools SVN: r42335 - trunk/central/tests/org.jboss.tools.central.test/src/org/jboss/tools/central/test.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2012-07-02 18:36:12 -0400 (Mon, 02 Jul 2012)
New Revision: 42335
Modified:
trunk/central/tests/org.jboss.tools.central.test/src/org/jboss/tools/central/test/CentralTest.java
Log:
JBIDE-12277 - Some tests get aborted and return error 134
Modified: trunk/central/tests/org.jboss.tools.central.test/src/org/jboss/tools/central/test/CentralTest.java
===================================================================
--- trunk/central/tests/org.jboss.tools.central.test/src/org/jboss/tools/central/test/CentralTest.java 2012-07-02 22:34:09 UTC (rev 42334)
+++ trunk/central/tests/org.jboss.tools.central.test/src/org/jboss/tools/central/test/CentralTest.java 2012-07-02 22:36:12 UTC (rev 42335)
@@ -13,12 +13,15 @@
import static org.junit.Assert.assertFalse;
import static org.junit.Assert.assertTrue;
+import java.lang.reflect.InvocationTargetException;
import java.util.List;
import java.util.Map;
+import org.eclipse.core.runtime.IProgressMonitor;
import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.core.runtime.jobs.Job;
import org.eclipse.core.runtime.preferences.IEclipsePreferences;
+import org.eclipse.jface.operation.IRunnableWithProgress;
import org.eclipse.ui.IEditorReference;
import org.eclipse.ui.IViewPart;
import org.eclipse.ui.IWorkbenchPage;
@@ -32,8 +35,8 @@
import org.jboss.tools.central.jobs.RefreshNewsJob;
import org.jboss.tools.central.jobs.RefreshTutorialsJob;
import org.jboss.tools.central.model.FeedsEntry;
+import org.jboss.tools.project.examples.model.ProjectExample;
import org.jboss.tools.project.examples.model.ProjectExampleCategory;
-import org.jboss.tools.project.examples.model.ProjectExample;
import org.jboss.tools.test.util.JobUtils;
import org.jboss.tools.test.util.xpl.EditorTestHelper;
import org.junit.AfterClass;
@@ -75,8 +78,7 @@
@Test
public void testTutorials() throws Exception {
- Job.getJobManager().join(JBossCentralActivator.JBOSS_CENTRAL_FAMILY,
- new NullProgressMonitor());
+ waitForJobs();
Map<ProjectExampleCategory, List<ProjectExample>> categories = RefreshTutorialsJob.INSTANCE
.getTutorialCategories();
assertTrue("No one tutorial is found", categories.size() > 0);
@@ -84,32 +86,28 @@
@Test
public void testNews() throws Exception {
- Job.getJobManager().join(JBossCentralActivator.JBOSS_CENTRAL_FAMILY,
- new NullProgressMonitor());
+ waitForJobs();
List<FeedsEntry> news = RefreshNewsJob.INSTANCE.getEntries();
assertTrue("No one news is found", news.size() >= 0);
}
@Test
public void testBlogs() throws Exception {
- Job.getJobManager().join(JBossCentralActivator.JBOSS_CENTRAL_FAMILY,
- new NullProgressMonitor());
+ waitForJobs();
List<FeedsEntry> blogs = RefreshBlogsJob.INSTANCE.getEntries();
assertTrue("No one blog is found", blogs.size() >= 0);
}
@Test
public void testCachingBlogs() throws Exception {
- Job.getJobManager().join(JBossCentralActivator.JBOSS_CENTRAL_FAMILY,
- new NullProgressMonitor());
+ waitForJobs();
assertTrue("Blog entries aren't cached", RefreshBlogsJob.INSTANCE
.getCacheFile().exists());
}
@Test
public void testCachingNews() throws Exception {
- Job.getJobManager().join(JBossCentralActivator.JBOSS_CENTRAL_FAMILY,
- new NullProgressMonitor());
+ waitForJobs();
assertTrue("News entries aren't cached", RefreshNewsJob.INSTANCE
.getCacheFile().exists());
}
@@ -121,9 +119,9 @@
JBossCentralActivator.getDefault().showJBossCentralOnStartup());
new ShowJBossCentral().earlyStartup();
JobUtils.delay(1000);
- Job.getJobManager().join(JBossCentralActivator.JBOSS_CENTRAL_FAMILY,
- new NullProgressMonitor());
+ waitForJobs();
+
assertTrue("The JBoss Central editor isn't open by default",
hasOpenEditor());
IEclipsePreferences prefs = JBossCentralActivator.getDefault()
@@ -134,8 +132,9 @@
JBossCentralActivator.getDefault().showJBossCentralOnStartup());
EditorTestHelper.closeAllEditors();
new ShowJBossCentral().earlyStartup();
- Job.getJobManager().join(JBossCentralActivator.JBOSS_CENTRAL_FAMILY,
- new NullProgressMonitor());
+
+ waitForJobs();
+
JobUtils.delay(1000);
assertFalse(
"The JBoss Central editor is open when the Show On Startup property is unchecked",
@@ -160,5 +159,22 @@
}
return false;
}
+
+ private void waitForJobs() {
+
+ try {
+ PlatformUI.getWorkbench().getProgressService().busyCursorWhile(new IRunnableWithProgress() {
+
+ @Override
+ public void run(IProgressMonitor monitor) throws InvocationTargetException, InterruptedException {
+ Job.getJobManager().join(JBossCentralActivator.JBOSS_CENTRAL_FAMILY, new NullProgressMonitor());
+ }
+ });
+ } catch (InvocationTargetException e) {
+ assertTrue("InvocationTargetException", false);
+ } catch (InterruptedException e) {
+ assertTrue("InterruptedException", false);
+ }
+}
}
12 years, 8 months
JBoss Tools SVN: r42334 - /.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2012-07-02 18:34:09 -0400 (Mon, 02 Jul 2012)
New Revision: 42334
Removed:
org.jboss.tools.usage.test/
Log:
12 years, 8 months