JBoss Tools SVN: r20259 - trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/util.
by jbosstools-commits@lists.jboss.org
Author: rob.stryker(a)jboss.com
Date: 2010-02-12 02:24:31 -0500 (Fri, 12 Feb 2010)
New Revision: 20259
Modified:
trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/util/IJBossRuntimeResourceConstants.java
Log:
jbide-5836 - missed resource
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/util/IJBossRuntimeResourceConstants.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/util/IJBossRuntimeResourceConstants.java 2010-02-12 07:19:53 UTC (rev 20258)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/util/IJBossRuntimeResourceConstants.java 2010-02-12 07:24:31 UTC (rev 20259)
@@ -38,6 +38,7 @@
public static final String JBOSSWEB_TOMCAT55_SAR = "jbossweb-tomcat55.sar"; //$NON-NLS-1$
public static final String JBOSSWEB_SAR = "jbossweb.sar"; //$NON-NLS-1$
public static final String JBOSS_WEB_SERVICE_JAR = "jboss-web-service.jar"; //$NON-NLS-1$
+ public static final String JSTL_JAR = "jstl.jar"; //$NON-NLS-1$
public static final String EJB3_DEPLOYER = "ejb3.deployer"; //$NON-NLS-1$
public static final String WEBBEANS_DEPLOYER = "webbeans.deployer"; //$NON-NLS-1$
public static final String AS5_AOP_DEPLOYER = "jboss-aop-jboss5.deployer"; //$NON-NLS-1$
16 years, 2 months
JBoss Tools SVN: r20258 - trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal.
by jbosstools-commits@lists.jboss.org
Author: rob.stryker(a)jboss.com
Date: 2010-02-12 02:19:53 -0500 (Fri, 12 Feb 2010)
New Revision: 20258
Modified:
trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/JBossServer.java
Log:
JBDS-1094 - fix regarding 'custom' being set to just the runtime location if unset.
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/JBossServer.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/JBossServer.java 2010-02-12 06:09:39 UTC (rev 20257)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.core/jbosscore/org/jboss/ide/eclipse/as/core/server/internal/JBossServer.java 2010-02-12 07:19:53 UTC (rev 20258)
@@ -145,8 +145,15 @@
public static String getDeployFolder(JBossServer jbs, String type) {
IServer server = jbs.getServer();
IJBossServerRuntime jbsrt = getRuntime(server);
- if( type.equals(DEPLOY_CUSTOM))
- return ServerUtil.makeGlobal(jbsrt, new Path(jbs.getAttribute(DEPLOY_DIRECTORY, ""))).toString(); //$NON-NLS-1$
+ if( type.equals(DEPLOY_CUSTOM)) {
+ String val = jbs.getAttribute(DEPLOY_DIRECTORY, (String)null);
+ if( val != null ) {
+ IPath val2 = new Path(val);
+ return ServerUtil.makeGlobal(jbsrt, val2).toString();
+ }
+ // if no value is set, default to metadata
+ type = DEPLOY_METADATA;
+ }
if( type.equals(DEPLOY_METADATA)) {
return JBossServerCorePlugin.getServerStateLocation(server).
append(IJBossServerConstants.DEPLOY).makeAbsolute().toString();
16 years, 2 months
JBoss Tools SVN: r20257 - branches.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-02-12 01:09:39 -0500 (Fri, 12 Feb 2010)
New Revision: 20257
Added:
branches/jbosstools-3.1.0.RC2/
Log:
branch CR2
Copied: branches/jbosstools-3.1.0.RC2 (from rev 20256, trunk)
16 years, 2 months
JBoss Tools SVN: r20256 - trunk/as/plugins/org.jboss.ide.eclipse.as.classpath.core/src/org/jboss/ide/eclipse/as/classpath/core/runtime.
by jbosstools-commits@lists.jboss.org
Author: rob.stryker(a)jboss.com
Date: 2010-02-12 00:32:07 -0500 (Fri, 12 Feb 2010)
New Revision: 20256
Modified:
trunk/as/plugins/org.jboss.ide.eclipse.as.classpath.core/src/org/jboss/ide/eclipse/as/classpath/core/runtime/ClientAllRuntimeClasspathProvider.java
Log:
JBIDE-5836 - adding jstl.jar and support for jboss 6.0
Modified: trunk/as/plugins/org.jboss.ide.eclipse.as.classpath.core/src/org/jboss/ide/eclipse/as/classpath/core/runtime/ClientAllRuntimeClasspathProvider.java
===================================================================
--- trunk/as/plugins/org.jboss.ide.eclipse.as.classpath.core/src/org/jboss/ide/eclipse/as/classpath/core/runtime/ClientAllRuntimeClasspathProvider.java 2010-02-12 03:21:41 UTC (rev 20255)
+++ trunk/as/plugins/org.jboss.ide.eclipse.as.classpath.core/src/org/jboss/ide/eclipse/as/classpath/core/runtime/ClientAllRuntimeClasspathProvider.java 2010-02-12 05:32:07 UTC (rev 20256)
@@ -121,6 +121,7 @@
addEntries(configPath.append(LIB), list);
addEntries(deployPath.append(JBOSSWEB_SAR).append(JSF_LIB),list);
addEntries(deployPath.append(JBOSSWEB_SAR).append(JBOSS_WEB_SERVICE_JAR),list);
+ addEntries(deployPath.append(JBOSSWEB_SAR).append(JSTL_JAR),list);
addEntries(deployerPath.append(AS5_AOP_DEPLOYER), list);
addEntries(deployerPath.append(EJB3_DEPLOYER), list);
addEntries(deployerPath.append(WEBBEANS_DEPLOYER).append(JSR299_API_JAR), list);
16 years, 2 months
JBoss Tools SVN: r20255 - trunk/documentation/guides/JBDS_3.0_Release_Notes/en-US.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2010-02-11 22:21:41 -0500 (Thu, 11 Feb 2010)
New Revision: 20255
Modified:
trunk/documentation/guides/JBDS_3.0_Release_Notes/en-US/Fixed_Issues.xml
Log:
updated fixed issues with new JIRa
Modified: trunk/documentation/guides/JBDS_3.0_Release_Notes/en-US/Fixed_Issues.xml
===================================================================
--- trunk/documentation/guides/JBDS_3.0_Release_Notes/en-US/Fixed_Issues.xml 2010-02-12 00:06:56 UTC (rev 20254)
+++ trunk/documentation/guides/JBDS_3.0_Release_Notes/en-US/Fixed_Issues.xml 2010-02-12 03:21:41 UTC (rev 20255)
@@ -163,6 +163,16 @@
<ulink url="http://jira.jboss.com/jira/browse/JBIDE-4956">JBIDE-4956</ulink>: A feature has been added to the <guilabel>Mapping Diagram</guilabel> viewer so that it now displays relationships between database tables.
</para>
</listitem>
+ <listitem>
+ <para>
+ <ulink url="http://jira.jboss.com/jira/browse/JBIDE-4916">JBIDE-4916</ulink>: An editor for the <filename>hibernate.properties</filename> file has been added to the <application>JBoss Developer Studio</application>. The editor supports content assist authoring.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <ulink url="http://jira.jboss.com/jira/browse/JBIDE-4899">JBIDE-4899</ulink>: The <guilabel>Hibernate Configurations</guilabel> view was not updated after a hibernate console enabled project with console configuration was deleted from the workspace. This meant that the console configuration was not removed along with the project. This bug is rectified with this update.
+ </para>
+ </listitem>
</itemizedlist>
</para>
</formalpara>
@@ -328,6 +338,28 @@
<ulink url="http://jira.jboss.com/jira/browse/JBIDE-5086">JBIDE-5086</ulink>: A default layout is added in the Java-Mapping viewer. This allows for the layout of the information in the Smooks editor to be rearranged into a predefined default layout.
</para>
</listitem>
+ <listitem>
+ <para>
+ <ulink url="http://jira.jboss.com/jira/browse/JBIDE-4878">JBIDE-4878</ulink>: The Smooks <guilabel>Reader</guilabel> page has been replaced with a new <guilabel>Input</guilabel> page. While the <guilabel>Input</guilabel> page inherits many functions from the <guilabel>Reader</guilabel> page there are some differences as follows:
+ </para>
+ <itemizedlist>
+ <listitem>
+ <para>
+ The <guilabel>Reader</guilabel> page allowed for multiple Readers to be created. <guilabel>Input</guilabel> page only allows for one Reader.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ The <guilabel>Reader</guilabel> page supported the addition of multiple input data , where each was usable. The <guilabel>Input</guilabel> page only allows for one piece of input data to be used, while still allowing for multiple pieces of input data.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ The <guilabel>Reader</guilabel> page could view the transformation results of the Reader. The new <guilabel>Input</guilabel> page utilizes an input model view to check the transform result.
+ </para>
+ </listitem>
+ </itemizedlist>
+ </listitem>
</itemizedlist>
</para>
</formalpara>
@@ -419,6 +451,11 @@
<ulink url="http://jira.jboss.com/jira/browse/JBIDE-4934">JBIDE-4934</ulink>: Facelets tag librarys support has been added to the <guilabel>Palette</guilabel> for the Visual Page Editor.
</para>
</listitem>
+ <listitem>
+ <para>
+ <ulink url="http://jira.jboss.com/jira/browse/JBIDE-4914">JBIDE-4914</ulink>: The Visual Page Editor has been redesigned so that all drop-down menu items are placed in the toolbar as buttons.
+ </para>
+ </listitem>
</itemizedlist>
</para>
</formalpara>
@@ -545,6 +582,38 @@
<ulink url="http://jira.jboss.com/jira/browse/JBIDE-4955">JBIDE-4955</ulink>: BPEL and ESB projects can now be excluded from deployment through the addition of new fileset capability. When the fileset is referenced the includes, excludes and root folder layout is implemented just as it is for archives.
</para>
</listitem>
+ <listitem>
+ <para>
+ <ulink url="http://jira.jboss.com/jira/browse/JBIDE-4922">JBIDE-4922</ulink>: Seam and RichFaces portletbridge archetypes have been added to the <application>JBoss Developer Studio</application> foruse with the Maven plug-in <application>m2eclipse</application>.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ <ulink url="http://jira.jboss.com/jira/browse/JBIDE-4888">JBIDE-4888</ulink>: The porlet facets configuration utility has been added for m2eclipse. This configuration utility allows for the following:
+ </para>
+ <itemizedlist>
+ <listitem>
+ <para>
+ If the <filename>pom.xml</filename> file contains a <property>portlet-api</property> dependency, the JBoss Core Portlet facet is added.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ If the <filename>pom.xml</filename> file contains portletbridge dependencies, the JBoss JSF Portlet facet is added.
+ </para>
+ </listitem>
+ <listitem>
+ <para>
+ If the project contains Seam, JBoss Core Portlet and JBoss JSF Portlet facet, the JBoss Seam Portlet facet is added.
+ </para>
+ </listitem>
+ </itemizedlist>
+ </listitem>
+ <listitem>
+ <para>
+ <ulink url="http://jira.jboss.com/jira/browse/JBIDE-4877">JBIDE-4877</ulink>: Tag completion has been upgraded so that partial matches are displayed and selectable following direct tag matches.
+ </para>
+ </listitem>
</itemizedlist>
</para>
</formalpara>
16 years, 2 months
JBoss Tools SVN: r20254 - in trunk/maven/plugins: org.jboss.tools.maven.seam/META-INF and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2010-02-11 19:06:56 -0500 (Thu, 11 Feb 2010)
New Revision: 20254
Modified:
trunk/maven/plugins/org.jboss.tools.maven.core/META-INF/MANIFEST.MF
trunk/maven/plugins/org.jboss.tools.maven.seam/META-INF/MANIFEST.MF
Log:
https://jira.jboss.org/jira/browse/JBIDE-5834 Move to m2eclipse 0.10
Modified: trunk/maven/plugins/org.jboss.tools.maven.core/META-INF/MANIFEST.MF
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.core/META-INF/MANIFEST.MF 2010-02-11 22:30:56 UTC (rev 20253)
+++ trunk/maven/plugins/org.jboss.tools.maven.core/META-INF/MANIFEST.MF 2010-02-12 00:06:56 UTC (rev 20254)
@@ -13,7 +13,7 @@
org.eclipse.jst.common.frameworks;visibility:=reexport,
org.eclipse.wst.common.modulecore;visibility:=reexport,
org.maven.ide.eclipse;visibility:=reexport,
- org.maven.ide.components.maven_embedder;visibility:=reexport,
+ org.maven.ide.eclipse.maven_embedder;visibility:=reexport,
org.eclipse.jdt.core;visibility:=reexport,
org.maven.ide.eclipse.jdt;visibility:=reexport,
org.eclipse.jst.j2ee;visibility:=reexport,
@@ -21,7 +21,7 @@
org.jboss.tools.common;visibility:=reexport,
org.eclipse.jdt.launching;visibility:=reexport,
org.eclipse.ui.workbench;visibility:=reexport,
- org.maven.ide.components.maven_model_edit;visibility:=reexport,
+ org.maven.ide.eclipse.maven_model_edit;visibility:=reexport,
org.eclipse.core.expressions
Bundle-ActivationPolicy: lazy
Bundle-RequiredExecutionEnvironment: J2SE-1.5
Modified: trunk/maven/plugins/org.jboss.tools.maven.seam/META-INF/MANIFEST.MF
===================================================================
--- trunk/maven/plugins/org.jboss.tools.maven.seam/META-INF/MANIFEST.MF 2010-02-11 22:30:56 UTC (rev 20253)
+++ trunk/maven/plugins/org.jboss.tools.maven.seam/META-INF/MANIFEST.MF 2010-02-12 00:06:56 UTC (rev 20254)
@@ -12,7 +12,7 @@
org.jboss.tools.portlet.core,
org.jboss.tools.seam.ui,
org.jboss.tools.common.model,
- org.maven.ide.components.maven_model_edit,
+ org.maven.ide.eclipse.maven_model_edit,
org.eclipse.jst.j2ee.core,
org.eclipse.jst.j2ee,
org.eclipse.wst.common.emfworkbench.integration,
16 years, 2 months
JBoss Tools SVN: r20253 - trunk/hibernatetools/releng.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-02-11 17:30:56 -0500 (Thu, 11 Feb 2010)
New Revision: 20253
Modified:
trunk/hibernatetools/releng/build.properties
trunk/hibernatetools/releng/build.properties.example.linux
trunk/hibernatetools/releng/build.properties.example.windows
Log:
https://jira.jboss.org/jira/browse/JBIDE-4959: Hibernate Tools SDK & Athena Builder - build works; tests do not (junit4/swtbot requirement not yet resolved in Athena)
Modified: trunk/hibernatetools/releng/build.properties
===================================================================
--- trunk/hibernatetools/releng/build.properties 2010-02-11 22:01:29 UTC (rev 20252)
+++ trunk/hibernatetools/releng/build.properties 2010-02-11 22:30:56 UTC (rev 20253)
@@ -12,38 +12,49 @@
mainFeatureToBuildID=org.hibernate.eclipse.sdk.feature
testFeatureToBuildID=org.hibernate.eclipse.test.feature
-build.steps=buildUpdate,buildTests,generateDigests,test,publish,cleanup
+# on windows or mac, use testLocal; on linux use test (requires Xvnc or Xvfb)
+# "test" step disabled since they require junit4/swtbot and that's not working yet in Athena :: https://bugs.eclipse.org/bugs/show_bug.cgi?id=277593
+build.steps=buildUpdate,buildTests,generateDigests,publish,cleanup
-# Re-use local sources?
-localSourceCheckoutDir=/home/nboldt/eclipse/workspace-jboss/jbosstools-trunk/hibernatetools
-relengBuilderDir=/home/nboldt/eclipse/workspace-jboss/jbosstools-trunk/hibernatetools/releng
-relengBaseBuilderDir=/home/nboldt/eclipse/workspace-jboss/org.eclipse.releng.basebuilder
-relengCommonBuilderDir=/home/nboldt/eclipse/workspace-jboss/org.eclipse.dash.common.releng
+JAVA14_HOME=${JAVA_HOME}
+JAVA50_HOME=${JAVA_HOME}
+JAVA60_HOME=${JAVA_HOME}
-JAVA_HOME=/usr/lib/jvm/java
-JAVA50_HOME=/usr/lib/jvm/java
+# To make the build go faster, use locally cached zips instead of galileo site
+repositoryURLs=\
+http://download.jboss.org/jbosstools/updates/nightly/trunk/,\
+http://download.eclipse.org/releases/galileo/,\
+http://repository.jboss.org/eclipse/galileo/repos/eclipse-Update-R-3.5.1-200909170800.zip,\
+http://repository.jboss.org/eclipse/galileo/repos/GEF-Update-3.5.1.zip,\
+http://repository.jboss.org/eclipse/galileo/repos/dtp-Updates-1.7-20090908.zip,\
+http://repository.jboss.org/eclipse/galileo/repos/emf-xsd-Update-2.5.0.zip
+http://repository.jboss.org/eclipse/galileo/repos/jst-buildrepo-R-3.1.1-20090917225226.zip,\
+http://repository.jboss.org/eclipse/galileo/repos/wst-buildrepo-R-3.1.1-20090917225226.zip
-dependencyURLs=\
-http://repository.jboss.org/eclipse/galileo/eclipse-SDK-3.5.1-linux-gtk.tar.gz,\
-http://repository.jboss.org/eclipse/galileo/wtp-R-3.1.1-20090917225226.zip,\
-http://repository.jboss.org/eclipse/galileo/dtp_1.7.1.zip,\
-http://repository.jboss.org/eclipse/galileo/GEF-runtime-3.5.1.zip,\
-http://repository.jboss.org/eclipse/galileo/emf-runtime-2.5.0.zip,\
-http://repository.jboss.org/eclipse/galileo/xsd-runtime-2.5.0.zip,\
-http://downloads.sourceforge.net/sourceforge/hibernate/hibernate-3.0.3.zip
+IUsToInstall=org.eclipse.sdk.feature.group+org.eclipse.sdk.ide+org.eclipse.core.net+org.eclipse.equinox.common+org.eclipse.core.runtime+org.eclipse.debug.core+org.eclipse.rcp.feature.group+\
+org.eclipse.jst.server.generic.core+\
+org.eclipse.wst.ws_core.feature.feature.group+org.eclipse.wst.web_ui.feature.feature.group+org.eclipse.wst.ws_wsdl15.feature.feature.group+\
+org.eclipse.wst.xml_ui.feature.feature.group+org.eclipse.wst.common_ui.feature.feature.group+org.eclipse.wst.common_core.feature.feature.group+\
+org.eclipse.xsd.feature.group+org.eclipse.gef.feature.group+\
+org.mozilla.xpcom+org.jboss.tools.vpe.resref+org.jboss.tools.jst.web.ui+org.jboss.ide.eclipse.as.core+org.jboss.ide.eclipse.archives.webtools+org.jboss.tools.jmx.feature.feature.group+\
+org.eclipse.jpt.core+org.eclipse.jpt.db+org.eclipse.jpt.utility+org.eclipse.jpt.ui
+dependencyURLs=http://downloads.sourceforge.net/sourceforge/hibernate/hibernate-3.0.3.zip
+
flattenDependencies=true
parallelCompilation=true
generateFeatureVersionSuffix=true
individualSourceBundles=true
+# don't suppress cleanup if tests fail
+noclean=false
+
+# do not sign or pack jars
+#skipPack=true
+skipSign=true
+
domainNamespace=*
projNamespace=org.hibernate.eclipse
projRelengName=org.hibernate.eclipse.releng
-# needed for Hudson, not for local?
-#projRelengRoot=svn://svn.jboss.org/repos/jbosstools/trunk/jmx
-#projRelengPath=releng
-#basebuilderBranch=R35_M6
-
## END PROJECT BUILD PROPERTIES ##
Modified: trunk/hibernatetools/releng/build.properties.example.linux
===================================================================
--- trunk/hibernatetools/releng/build.properties.example.linux 2010-02-11 22:01:29 UTC (rev 20252)
+++ trunk/hibernatetools/releng/build.properties.example.linux 2010-02-11 22:30:56 UTC (rev 20253)
@@ -12,7 +12,9 @@
mainFeatureToBuildID=org.hibernate.eclipse.sdk.feature
testFeatureToBuildID=org.hibernate.eclipse.test.feature
-build.steps=buildUpdate,buildTests,generateDigests,test,publish,cleanup
+# on windows or mac, use testLocal; on linux use test (requires Xvnc or Xvfb)
+# "test" step disabled since they require junit4/swtbot and that's not working yet in Athena :: https://bugs.eclipse.org/bugs/show_bug.cgi?id=277593
+build.steps=buildUpdate,buildTests,generateDigests,publish,cleanup
# Re-use local sources?
#localSourceCheckoutDir=/home/nboldt/eclipse/workspace-jboss/jbosstools-trunk/hibernatetools
@@ -21,29 +23,45 @@
relengCommonBuilderDir=/home/nboldt/eclipse/workspace-jboss/org.eclipse.dash.common.releng
JAVA_HOME=/usr/lib/jvm/java
+JAVA14_HOME=/usr/lib/jvm/java
JAVA50_HOME=/usr/lib/jvm/java
+JAVA60_HOME=/usr/lib/jvm/java
-dependencyURLs=\
-http://repository.jboss.org/eclipse/galileo/eclipse-SDK-3.5.1-linux-gtk.tar.gz,\
-http://repository.jboss.org/eclipse/galileo/wtp-R-3.1.1-20090917225226.zip,\
-http://repository.jboss.org/eclipse/galileo/dtp_1.7.1.zip,\
-http://repository.jboss.org/eclipse/galileo/GEF-runtime-3.5.1.zip,\
-http://repository.jboss.org/eclipse/galileo/emf-runtime-2.5.0.zip,\
-http://repository.jboss.org/eclipse/galileo/xsd-runtime-2.5.0.zip,\
-http://downloads.sourceforge.net/sourceforge/hibernate/hibernate-3.0.3.zip
+# To make the build go faster, use locally cached zips instead of galileo site
+repositoryURLs=\
+http://download.jboss.org/jbosstools/updates/nightly/trunk/,\
+http://download.eclipse.org/releases/galileo/,\
+http://repository.jboss.org/eclipse/galileo/repos/eclipse-Update-R-3.5.1-200909170800.zip,\
+http://repository.jboss.org/eclipse/galileo/repos/GEF-Update-3.5.1.zip,\
+http://repository.jboss.org/eclipse/galileo/repos/dtp-Updates-1.7-20090908.zip,\
+http://repository.jboss.org/eclipse/galileo/repos/emf-xsd-Update-2.5.0.zip
+http://repository.jboss.org/eclipse/galileo/repos/jst-buildrepo-R-3.1.1-20090917225226.zip,\
+http://repository.jboss.org/eclipse/galileo/repos/wst-buildrepo-R-3.1.1-20090917225226.zip
+IUsToInstall=org.eclipse.sdk.feature.group+org.eclipse.sdk.ide+org.eclipse.core.net+org.eclipse.equinox.common+org.eclipse.core.runtime+org.eclipse.debug.core+org.eclipse.rcp.feature.group+\
+org.eclipse.jst.server.generic.core+\
+org.eclipse.wst.ws_core.feature.feature.group+org.eclipse.wst.web_ui.feature.feature.group+org.eclipse.wst.ws_wsdl15.feature.feature.group+\
+org.eclipse.wst.xml_ui.feature.feature.group+org.eclipse.wst.common_ui.feature.feature.group+org.eclipse.wst.common_core.feature.feature.group+\
+org.eclipse.xsd.feature.group+org.eclipse.gef.feature.group+\
+org.mozilla.xpcom+org.jboss.tools.vpe.resref+org.jboss.tools.jst.web.ui+org.jboss.ide.eclipse.as.core+org.jboss.ide.eclipse.archives.webtools+org.jboss.tools.jmx.feature.feature.group+\
+org.eclipse.jpt.core+org.eclipse.jpt.db+org.eclipse.jpt.utility+org.eclipse.jpt.ui
+
+dependencyURLs=http://downloads.sourceforge.net/sourceforge/hibernate/hibernate-3.0.3.zip
+
flattenDependencies=true
parallelCompilation=true
generateFeatureVersionSuffix=true
individualSourceBundles=true
+# don't suppress cleanup if tests fail
+noclean=false
+
+# do not sign or pack jars
+#skipPack=true
+skipSign=true
+
domainNamespace=*
projNamespace=org.hibernate.eclipse
projRelengName=org.hibernate.eclipse.releng
-# needed for Hudson, not for local?
-#projRelengRoot=svn://svn.jboss.org/repos/jbosstools/trunk/jmx
-#projRelengPath=releng
-#basebuilderBranch=R35_M6
-
## END PROJECT BUILD PROPERTIES ##
Modified: trunk/hibernatetools/releng/build.properties.example.windows
===================================================================
--- trunk/hibernatetools/releng/build.properties.example.windows 2010-02-11 22:01:29 UTC (rev 20252)
+++ trunk/hibernatetools/releng/build.properties.example.windows 2010-02-11 22:30:56 UTC (rev 20253)
@@ -12,7 +12,9 @@
mainFeatureToBuildID=org.hibernate.eclipse.sdk.feature
testFeatureToBuildID=org.hibernate.eclipse.test.feature
-build.steps=buildUpdate,buildTests,generateDigests,test,publish,cleanup
+# on windows or mac, use testLocal; on linux use test (requires Xvnc or Xvfb)
+# "testLocal" step disabled since they require junit4/swtbot and that's not working yet in Athena :: https://bugs.eclipse.org/bugs/show_bug.cgi?id=277593
+build.steps=buildUpdate,buildTests,generateDigests,publish,cleanup
# Re-use local sources?
localSourceCheckoutDir=C:/workspace2
@@ -20,38 +22,50 @@
# For windows, must be explicit about paths using correct slashes (/); dirs with spaces should be avoided
writableBuildRoot=C:/tmp/build
-#relengBuilderDir=C:/Users/max/workspace-hibernatetoolsbuild/org.hibernate.eclipse.releng
-#relengBaseBuilderDir=C:/Users/max/workspace-hibernatetoolsbuild/org.eclipse.releng.basebuilder
-#relengCommonBuilderDir=C:/Users/max/workspace-hibernatetoolsbuild/org.eclipse.dash.common.releng
-relengBuilderDir=C:/workspace2/org.hibernate.eclipse.releng
+relengBuilderDir=C:/workspace2/jbosstools-trunk/hibernatetools/releng
relengBaseBuilderDir=C:/workspace2/org.eclipse.releng.basebuilder
relengCommonBuilderDir=C:/workspace2/org.eclipse.dash.common.releng
JAVA_HOME=C:/Progra~1/Java/jdk1.6.0_11
+JAVA14_HOME=C:/Progra~1/Java/jdk1.6.0_11
JAVA50_HOME=C:/Progra~1/Java/jdk1.6.0_11
JAVA60_HOME=C:/Progra~1/Java/jdk1.6.0_11
-dependencyURLs=\
-http://repository.jboss.org/eclipse/galileo/eclipse-SDK-3.5.1-win32.zip,\
-http://repository.jboss.org/eclipse/galileo/wtp-R-3.1.1-20090917225226.zip,\
-http://repository.jboss.org/eclipse/galileo/dtp_1.7.1.zip,\
-http://repository.jboss.org/eclipse/galileo/GEF-runtime-3.5.1.zip,\
-http://repository.jboss.org/eclipse/galileo/emf-runtime-2.5.0.zip,\
-http://repository.jboss.org/eclipse/galileo/xsd-runtime-2.5.0.zip,\
-http://downloads.sourceforge.net/sourceforge/hibernate/hibernate-3.0.3.zip
+# To make the build go faster, use locally cached zips instead of galileo site
+repositoryURLs=\
+http://download.jboss.org/jbosstools/updates/nightly/trunk/,\
+http://download.eclipse.org/releases/galileo/,\
+http://repository.jboss.org/eclipse/galileo/repos/eclipse-Update-R-3.5.1-200909170800.zip,\
+http://repository.jboss.org/eclipse/galileo/repos/GEF-Update-3.5.1.zip,\
+http://repository.jboss.org/eclipse/galileo/repos/dtp-Updates-1.7-20090908.zip,\
+http://repository.jboss.org/eclipse/galileo/repos/emf-xsd-Update-2.5.0.zip
+http://repository.jboss.org/eclipse/galileo/repos/jst-buildrepo-R-3.1.1-20090917225226.zip,\
+http://repository.jboss.org/eclipse/galileo/repos/wst-buildrepo-R-3.1.1-20090917225226.zip
+IUsToInstall=org.eclipse.sdk.feature.group+org.eclipse.sdk.ide+org.eclipse.core.net+org.eclipse.equinox.common+org.eclipse.core.runtime+org.eclipse.debug.core+org.eclipse.rcp.feature.group+\
+org.eclipse.jst.server.generic.core+\
+org.eclipse.wst.ws_core.feature.feature.group+org.eclipse.wst.web_ui.feature.feature.group+org.eclipse.wst.ws_wsdl15.feature.feature.group+\
+org.eclipse.wst.xml_ui.feature.feature.group+org.eclipse.wst.common_ui.feature.feature.group+org.eclipse.wst.common_core.feature.feature.group+\
+org.eclipse.xsd.feature.group+org.eclipse.gef.feature.group+\
+org.mozilla.xpcom+org.jboss.tools.vpe.resref+org.jboss.tools.jst.web.ui+org.jboss.ide.eclipse.as.core+org.jboss.ide.eclipse.archives.webtools+org.jboss.tools.jmx.feature.feature.group+\
+org.eclipse.jpt.core+org.eclipse.jpt.db+org.eclipse.jpt.utility+org.eclipse.jpt.ui
+
+dependencyURLs=http://downloads.sourceforge.net/sourceforge/hibernate/hibernate-3.0.3.zip
+
flattenDependencies=true
parallelCompilation=true
generateFeatureVersionSuffix=true
individualSourceBundles=true
+# don't suppress cleanup if tests fail
+noclean=false
+
+# do not sign or pack jars
+#skipPack=true
+skipSign=true
+
domainNamespace=*
projNamespace=org.hibernate.eclipse
projRelengName=org.hibernate.eclipse.releng
-# needed for Hudson, not for local?
-#projRelengRoot=svn://svn.jboss.org/repos/jbosstools/trunk/jmx
-#projRelengPath=releng
-#basebuilderBranch=R35_M6
-
## END PROJECT BUILD PROPERTIES ##
16 years, 2 months
JBoss Tools SVN: r20252 - in trunk/jsf/tests: org.jboss.tools.jsf.vpe.seam.test/src/org/jboss/tools/jsf/vpe/seam/test and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: mareshkau
Date: 2010-02-11 17:01:29 -0500 (Thu, 11 Feb 2010)
New Revision: 20252
Modified:
trunk/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/src/org/jboss/tools/jsf/vpe/richfaces/test/RichFacesComponentTest.java
trunk/jsf/tests/org.jboss.tools.jsf.vpe.seam.test/src/org/jboss/tools/jsf/vpe/seam/test/SeamComponentTest.java
Log:
https://jira.jboss.org/jira/browse/JBIDE-5820 https://jira.jboss.org/jira/browse/JBIDE-5821, problem tests has been disabled
Modified: trunk/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/src/org/jboss/tools/jsf/vpe/richfaces/test/RichFacesComponentTest.java
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/src/org/jboss/tools/jsf/vpe/richfaces/test/RichFacesComponentTest.java 2010-02-11 20:29:42 UTC (rev 20251)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.richfaces.test/src/org/jboss/tools/jsf/vpe/richfaces/test/RichFacesComponentTest.java 2010-02-11 22:01:29 UTC (rev 20252)
@@ -203,8 +203,12 @@
performTestForVpeComponent((IFile) TestUtil.getComponentPath(
"components/componentControl.xhtml", RichFacesAllTests.IMPORT_PROJECT_NAME)); //$NON-NLS-1$
}
-
- public void testContextMenu() throws Throwable {
+ /**
+ * Commented by Maksim Areshkau as workaround for https://jira.jboss.org/jira/browse/JBIDE-5821
+ *
+ * @throws Throwable
+ */
+ public void _testContextMenu() throws Throwable {
performTestForVpeComponent((IFile) TestUtil.getComponentPath(
"components/contextMenu.xhtml", RichFacesAllTests.IMPORT_PROJECT_NAME)); //$NON-NLS-1$
}
Modified: trunk/jsf/tests/org.jboss.tools.jsf.vpe.seam.test/src/org/jboss/tools/jsf/vpe/seam/test/SeamComponentTest.java
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.seam.test/src/org/jboss/tools/jsf/vpe/seam/test/SeamComponentTest.java 2010-02-11 20:29:42 UTC (rev 20251)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.seam.test/src/org/jboss/tools/jsf/vpe/seam/test/SeamComponentTest.java 2010-02-11 22:01:29 UTC (rev 20252)
@@ -26,8 +26,12 @@
super(name);
setCheckWarning(false);
}
-
- public void testButton() throws Throwable {
+ /**
+ * Commented by Maksim Areshkau, because possible concurent modification exception
+ * see https://jira.jboss.org/jira/browse/JBIDE-5820
+ * @throws Throwable
+ */
+ public void _testButton() throws Throwable {
performTestForVpeComponent((IFile) TestUtil.getComponentPath(
"components/button.xhtml", SeamAllTests.IMPORT_PROJECT_NAME)); //$NON-NLS-1$
}
16 years, 2 months
JBoss Tools SVN: r20251 - workspace/m2eclipse0.10.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2010-02-11 15:29:42 -0500 (Thu, 11 Feb 2010)
New Revision: 20251
Added:
workspace/m2eclipse0.10/.project
workspace/m2eclipse0.10/org.maven.ide.eclipse.site-0.10.1-SNAPSHOT-site.zip
workspace/m2eclipse0.10/org.maven.ide.eclipse.site-extras-0.10.1-SNAPSHOT-site.zip
Log:
https://jira.jboss.org/jira/browse/JBIDE-5834 Move to m2eclipse 0.10
Added: workspace/m2eclipse0.10/.project
===================================================================
--- workspace/m2eclipse0.10/.project (rev 0)
+++ workspace/m2eclipse0.10/.project 2010-02-11 20:29:42 UTC (rev 20251)
@@ -0,0 +1,11 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<projectDescription>
+ <name>m2eclipse0.10</name>
+ <comment></comment>
+ <projects>
+ </projects>
+ <buildSpec>
+ </buildSpec>
+ <natures>
+ </natures>
+</projectDescription>
Added: workspace/m2eclipse0.10/org.maven.ide.eclipse.site-0.10.1-SNAPSHOT-site.zip
===================================================================
(Binary files differ)
Property changes on: workspace/m2eclipse0.10/org.maven.ide.eclipse.site-0.10.1-SNAPSHOT-site.zip
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
Added: workspace/m2eclipse0.10/org.maven.ide.eclipse.site-extras-0.10.1-SNAPSHOT-site.zip
===================================================================
(Binary files differ)
Property changes on: workspace/m2eclipse0.10/org.maven.ide.eclipse.site-extras-0.10.1-SNAPSHOT-site.zip
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
16 years, 2 months
JBoss Tools SVN: r20250 - trunk/hibernatetools/features/org.hibernate.eclipse.feature.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2010-02-11 15:28:47 -0500 (Thu, 11 Feb 2010)
New Revision: 20250
Modified:
trunk/hibernatetools/features/org.hibernate.eclipse.feature/feature.xml
Log:
fix hibernate console feature which should not contain o.j.t.hibernate.xml.* plugins
Modified: trunk/hibernatetools/features/org.hibernate.eclipse.feature/feature.xml
===================================================================
--- trunk/hibernatetools/features/org.hibernate.eclipse.feature/feature.xml 2010-02-11 20:15:57 UTC (rev 20249)
+++ trunk/hibernatetools/features/org.hibernate.eclipse.feature/feature.xml 2010-02-11 20:28:47 UTC (rev 20250)
@@ -1,67 +1,114 @@
<?xml version="1.0" encoding="UTF-8"?>
-<feature id="org.hibernate.eclipse.feature" label="%featureName" version="3.3.0.qualifier" provider-name="%providerName" plugin="org.hibernate.eclipse">
+<feature
+ id="org.hibernate.eclipse.feature"
+ label="%featureName"
+ version="3.3.0.qualifier"
+ provider-name="%providerName"
+ plugin="org.hibernate.eclipse">
- <description url="http://tools.hibernate.org">
+ <description url="http://tools.hibernate.org">
%description
</description>
- <copyright>
+ <copyright>
%copyright
</copyright>
- <license url="license.html">
+ <license url="license.html">
Red Hat, Inc. licenses these features and plugins to you under certain open source licenses (or aggregations of such licenses), which in a particular case may include the Eclipse Public License, the GNU Lesser General Public License, and/or certain other open source licenses. For precise licensing details, consult the corresponding source code, or contact Red Hat Legal Affairs, 1801 Varsity Drive, Raleigh NC 27606 USA.
</license>
- <!-- <url>
- <update label="%updateSiteName" url="http://download.jboss.org/jbosstools/updates/stable/galileo/"/>
- </url> -->
+ <requires>
+ <import plugin="org.eclipse.core.runtime" version="0.0.0" match="greaterOrEqual"/>
+ <import plugin="org.eclipse.jdt.ui" version="0.0.0" match="greaterOrEqual"/>
+ <import plugin="org.eclipse.core.resources" version="0.0.0" match="greaterOrEqual"/>
+ <import plugin="org.eclipse.jdt.core" version="0.0.0" match="greaterOrEqual"/>
+ <import plugin="org.eclipse.jface" version="0.0.0" match="greaterOrEqual"/>
+ <import plugin="org.eclipse.ui" version="0.0.0" match="greaterOrEqual"/>
+ <import plugin="org.eclipse.ui.editors" version="0.0.0" match="greaterOrEqual"/>
+ <import plugin="org.eclipse.ui.views" version="0.0.0" match="greaterOrEqual"/>
+ <import plugin="org.eclipse.ui.workbench" version="0.0.0" match="greaterOrEqual"/>
+ <import plugin="org.eclipse.ui.workbench.texteditor" version="0.0.0" match="greaterOrEqual"/>
+ <import plugin="org.eclipse.jface.text" version="0.0.0" match="greaterOrEqual"/>
+ <import plugin="org.eclipse.ui.ide" version="0.0.0" match="greaterOrEqual"/>
+ <import plugin="org.eclipse.help" version="0.0.0" match="greaterOrEqual"/>
+ <import plugin="org.eclipse.ui.console"/>
+ <import plugin="org.eclipse.gef" version="3.2.0" match="greaterOrEqual"/>
+ <import plugin="org.eclipse.debug.core" version="0.0.0" match="greaterOrEqual"/>
+ <import plugin="org.eclipse.debug.ui" version="0.0.0" match="greaterOrEqual"/>
+ <import plugin="org.eclipse.ui.forms" version="0.0.0" match="greaterOrEqual"/>
+ <import plugin="org.eclipse.wst.common.project.facet.core" version="1.1.0" match="greaterOrEqual"/>
+ <import plugin="org.eclipse.wst.common.project.facet.ui" version="1.1.0" match="greaterOrEqual"/>
+ <import plugin="org.eclipse.help.ui"/>
+ <import plugin="org.eclipse.wst.xml.core" version="1.1.0" match="greaterOrEqual"/>
+ <import plugin="org.eclipse.wst.sse.core" version="1.1.0" match="greaterOrEqual"/>
+ <import plugin="org.eclipse.wst.xml.ui" version="1.0.100" match="greaterOrEqual"/>
+ <import plugin="org.eclipse.wst.sse.ui" version="1.0.101" match="greaterOrEqual"/>
+ <import plugin="org.eclipse.wst.dtd.core" version="1.1.0" match="greaterOrEqual"/>
+ <import plugin="org.eclipse.wst.common.ui" version="1.1.0" match="greaterOrEqual"/>
+ <import plugin="org.eclipse.ui.navigator"/>
+ <import plugin="org.eclipse.pde.core"/>
+ <import plugin="org.apache.ant"/>
+ <import plugin="org.junit"/>
+ <import plugin="org.eclipse.jdt.apt.core"/>
+ </requires>
- <requires>
- <import plugin="org.eclipse.core.runtime" version="0.0.0" match="greaterOrEqual" />
- <import plugin="org.eclipse.jdt.ui" version="0.0.0" match="greaterOrEqual" />
- <import plugin="org.eclipse.core.resources" version="0.0.0" match="greaterOrEqual" />
- <import plugin="org.eclipse.jdt.core" version="0.0.0" match="greaterOrEqual" />
- <import plugin="org.eclipse.jface" version="0.0.0" match="greaterOrEqual" />
- <import plugin="org.eclipse.ui" version="0.0.0" match="greaterOrEqual" />
- <import plugin="org.eclipse.ui.editors" version="0.0.0" match="greaterOrEqual" />
- <import plugin="org.eclipse.ui.views" version="0.0.0" match="greaterOrEqual" />
- <import plugin="org.eclipse.ui.workbench" version="0.0.0" match="greaterOrEqual" />
- <import plugin="org.eclipse.ui.workbench.texteditor" version="0.0.0" match="greaterOrEqual" />
- <import plugin="org.eclipse.jface.text" version="0.0.0" match="greaterOrEqual" />
- <import plugin="org.eclipse.ui.ide" version="0.0.0" match="greaterOrEqual" />
- <import plugin="org.eclipse.help" version="0.0.0" match="greaterOrEqual" />
- <import plugin="org.eclipse.ui.console" />
- <import plugin="org.eclipse.gef" version="3.2.0" match="greaterOrEqual" />
- <import plugin="org.eclipse.debug.core" version="0.0.0" match="greaterOrEqual" />
- <import plugin="org.eclipse.debug.ui" version="0.0.0" match="greaterOrEqual" />
- <import plugin="org.eclipse.ui.forms" version="0.0.0" match="greaterOrEqual" />
- <import plugin="org.eclipse.wst.common.project.facet.core" version="1.1.0" match="greaterOrEqual" />
- <import plugin="org.eclipse.wst.common.project.facet.ui" version="1.1.0" match="greaterOrEqual" />
- <import plugin="org.eclipse.help.ui" />
- <import plugin="org.eclipse.wst.xml.core" version="1.1.0" match="greaterOrEqual" />
- <import plugin="org.eclipse.wst.sse.core" version="1.1.0" match="greaterOrEqual" />
- <import plugin="org.eclipse.wst.xml.ui" version="1.0.100" match="greaterOrEqual" />
- <import plugin="org.eclipse.wst.sse.ui" version="1.0.101" match="greaterOrEqual" />
- <import plugin="org.eclipse.wst.dtd.core" version="1.1.0" match="greaterOrEqual" />
- <import plugin="org.eclipse.wst.common.ui" version="1.1.0" match="greaterOrEqual" />
- <import plugin="org.eclipse.ui.navigator" />
- <import plugin="org.eclipse.pde.core" />
- <import plugin="org.apache.ant" />
- <import plugin="org.junit" />
- <import plugin="org.eclipse.jdt.apt.core" />
- </requires>
+ <plugin
+ id="org.hibernate.eclipse"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"/>
- <plugin id="org.hibernate.eclipse" download-size="0" install-size="0" version="0.0.0" />
- <plugin id="org.hibernate.eclipse.console" download-size="0" install-size="0" version="0.0.0" />
- <plugin id="org.hibernate.eclipse.help" download-size="0" install-size="0" version="0.0.0" />
- <plugin id="org.hibernate.eclipse.jdt.apt.ui" download-size="0" install-size="0" version="0.0.0" unpack="false" />
- <plugin id="org.hibernate.eclipse.jdt.ui" download-size="0" install-size="0" version="0.0.0" unpack="false" />
- <plugin id="org.hibernate.eclipse.mapper" download-size="0" install-size="0" version="0.0.0" />
+ <plugin
+ id="org.hibernate.eclipse.console"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"/>
- <plugin id="org.jboss.tools.hibernate.jpt.core" download-size="0" install-size="0" version="0.0.0" unpack="false" />
- <plugin id="org.jboss.tools.hibernate.jpt.ui" download-size="0" install-size="0" version="0.0.0" unpack="false" />
- <plugin id="org.jboss.tools.hibernate.ui" download-size="0" install-size="0" version="0.0.0" />
- <plugin id="org.jboss.tools.hibernate.xml.ui" download-size="0" install-size="0" version="0.0.0" />
- <plugin id="org.jboss.tools.hibernate.xml" download-size="0" install-size="0" version="0.0.0" />
+ <plugin
+ id="org.hibernate.eclipse.help"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"/>
+
+ <plugin
+ id="org.hibernate.eclipse.jdt.apt.ui"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
+
+ <plugin
+ id="org.hibernate.eclipse.jdt.ui"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
+
+ <plugin
+ id="org.hibernate.eclipse.mapper"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"/>
+
+ <plugin
+ id="org.jboss.tools.hibernate.jpt.core"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
+
+ <plugin
+ id="org.jboss.tools.hibernate.jpt.ui"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"
+ unpack="false"/>
+
+ <plugin
+ id="org.jboss.tools.hibernate.ui"
+ download-size="0"
+ install-size="0"
+ version="0.0.0"/>
+
</feature>
16 years, 2 months