JBoss Tools SVN: r41142 - trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/workbench.
by jbosstools-commits@lists.jboss.org
Author: dgeraskov
Date: 2012-05-18 03:44:52 -0400 (Fri, 18 May 2012)
New Revision: 41142
Modified:
trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/workbench/ProjectCompilerVersionChecker.java
Log:
https://issues.jboss.org/browse/JBIDE-11773
Do not warn if levels are equals
Modified: trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/workbench/ProjectCompilerVersionChecker.java
===================================================================
--- trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/workbench/ProjectCompilerVersionChecker.java 2012-05-18 07:44:16 UTC (rev 41141)
+++ trunk/hibernatetools/plugins/org.hibernate.eclipse.console/src/org/hibernate/eclipse/console/workbench/ProjectCompilerVersionChecker.java 2012-05-18 07:44:52 UTC (rev 41142)
@@ -40,7 +40,7 @@
String eclipseCompilerVersion = System.getProperty("java.specification.version"); //$NON-NLS-1$
long projectJdkLevel = CompilerOptions.versionToJdkLevel(projectTarget);
long eclipseJdkLevel = CompilerOptions.versionToJdkLevel(eclipseCompilerVersion);
- if (eclipseJdkLevel <= projectJdkLevel){
+ if (eclipseJdkLevel < projectJdkLevel){
Display.getDefault().syncExec(new Runnable(){
@Override
public void run() {
12 years, 8 months
JBoss Tools SVN: r41141 - in trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test: resources/template and 3 other directories.
by jbosstools-commits@lists.jboss.org
Author: ljelinko
Date: 2012-05-18 03:44:16 -0400 (Fri, 18 May 2012)
New Revision: 41141
Added:
trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/soap5/
trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/soap5/DetectSOAP5.java
trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/soap5/OperateSOAP5.java
trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/soap5/standalone/
trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/soap5/standalone/DetectSOAPStandalone5.java
trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/soap5/standalone/OperateSOAPStandalone5.java
Modified:
trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/launchers/prepare_workspace/RT_prepare_workspace.launch
trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/resources/template/runtimes.properties
trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/AllTestsSuite.java
Log:
Added SOA-P runtimes.
Modified: trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/launchers/prepare_workspace/RT_prepare_workspace.launch
===================================================================
--- trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/launchers/prepare_workspace/RT_prepare_workspace.launch 2012-05-18 07:43:31 UTC (rev 41140)
+++ trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/launchers/prepare_workspace/RT_prepare_workspace.launch 2012-05-18 07:44:16 UTC (rev 41141)
@@ -13,6 +13,8 @@
<listEntry value="jboss-epp-5=${folder_prompt:EPP 5 installation folder}"/>
<listEntry value="jboss-epp-4=${folder_prompt:EPP 4 installation folder}"/>
<listEntry value="jboss-ewp-5=${folder_prompt:EWP 5 installation folder}"/>
+<listEntry value="jboss-soa-p-5=${folder_prompt:SOA-P 5 installation folder}"/>
+<listEntry value="jboss-soa-p-standalone-5=${folder_prompt:SOA-P-STANDALONE 5 installation folder}"/>
</listAttribute>
<stringAttribute key="M2_RUNTIME" value="/home/ljelinko/programs/apache-maven-3.0.3"/>
<booleanAttribute key="M2_SKIP_TESTS" value="false"/>
Modified: trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/resources/template/runtimes.properties
===================================================================
--- trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/resources/template/runtimes.properties 2012-05-18 07:43:31 UTC (rev 41140)
+++ trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/resources/template/runtimes.properties 2012-05-18 07:44:16 UTC (rev 41141)
@@ -4,4 +4,6 @@
jboss-eap-4.3=${jboss-eap-4}
jboss-epp-5.2=${jboss-epp-5}
jboss-epp-4.3=${jboss-epp-4}
-jboss-ewp-5.1=${jboss-ewp-5}
\ No newline at end of file
+jboss-ewp-5.1=${jboss-ewp-5}
+jboss-soa-p-5=${jboss-soa-p-5}
+jboss-soa-p-standalone-5=${jboss-soa-p-standalone-5}
\ No newline at end of file
Modified: trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/AllTestsSuite.java
===================================================================
--- trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/AllTestsSuite.java 2012-05-18 07:43:31 UTC (rev 41140)
+++ trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/AllTestsSuite.java 2012-05-18 07:44:16 UTC (rev 41141)
@@ -14,6 +14,10 @@
import org.jboss.tools.runtime.as.ui.bot.test.ewp5.OperateEWP5;
import org.jboss.tools.runtime.as.ui.bot.test.jboss7.DetectJBoss7;
import org.jboss.tools.runtime.as.ui.bot.test.jboss7.OperateJBoss7;
+import org.jboss.tools.runtime.as.ui.bot.test.soap5.DetectSOAP5;
+import org.jboss.tools.runtime.as.ui.bot.test.soap5.OperateSOAP5;
+import org.jboss.tools.runtime.as.ui.bot.test.soap5.standalone.DetectSOAPStandalone5;
+import org.jboss.tools.runtime.as.ui.bot.test.soap5.standalone.OperateSOAPStandalone5;
import org.jboss.tools.ui.bot.ext.RequirementAwareSuite;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
@@ -33,7 +37,11 @@
DetectEPP5.class,
OperateEPP5.class,
DetectEWP5.class,
- OperateEWP5.class
+ OperateEWP5.class,
+ DetectSOAP5.class,
+ OperateSOAP5.class,
+ DetectSOAPStandalone5.class,
+ OperateSOAPStandalone5.class
})
public class AllTestsSuite {
Added: trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/soap5/DetectSOAP5.java
===================================================================
--- trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/soap5/DetectSOAP5.java (rev 0)
+++ trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/soap5/DetectSOAP5.java 2012-05-18 07:44:16 UTC (rev 41141)
@@ -0,0 +1,25 @@
+package org.jboss.tools.runtime.as.ui.bot.test.soap5;
+
+import org.jboss.tools.runtime.as.ui.bot.test.RuntimeProperties;
+import org.jboss.tools.runtime.as.ui.bot.test.entity.Server;
+import org.jboss.tools.runtime.as.ui.bot.test.template.DetectServerTemplate;
+
+public class DetectSOAP5 extends DetectServerTemplate {
+
+ public static final String SERVER_ID = "jboss-soa-p-5";
+
+ @Override
+ protected String getServerID() {
+ return SERVER_ID;
+ }
+
+ @Override
+ protected Server getExpectedServer() {
+ Server expectedServer = new Server();
+ expectedServer.setName(SERVER_ID);
+ expectedServer.setVersion("5.2");
+ expectedServer.setType("SOA-P");
+ expectedServer.setLocation(RuntimeProperties.getInstance().getRuntimePath(SERVER_ID));
+ return expectedServer;
+ }
+}
Added: trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/soap5/OperateSOAP5.java
===================================================================
--- trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/soap5/OperateSOAP5.java (rev 0)
+++ trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/soap5/OperateSOAP5.java 2012-05-18 07:44:16 UTC (rev 41141)
@@ -0,0 +1,11 @@
+package org.jboss.tools.runtime.as.ui.bot.test.soap5;
+
+import org.jboss.tools.runtime.as.ui.bot.test.template.OperateServerTemplate;
+
+public class OperateSOAP5 extends OperateServerTemplate {
+
+ @Override
+ protected String getServerName() {
+ return DetectSOAP5.SERVER_ID;
+ }
+}
Added: trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/soap5/standalone/DetectSOAPStandalone5.java
===================================================================
--- trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/soap5/standalone/DetectSOAPStandalone5.java (rev 0)
+++ trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/soap5/standalone/DetectSOAPStandalone5.java 2012-05-18 07:44:16 UTC (rev 41141)
@@ -0,0 +1,25 @@
+package org.jboss.tools.runtime.as.ui.bot.test.soap5.standalone;
+
+import org.jboss.tools.runtime.as.ui.bot.test.RuntimeProperties;
+import org.jboss.tools.runtime.as.ui.bot.test.entity.Server;
+import org.jboss.tools.runtime.as.ui.bot.test.template.DetectServerTemplate;
+
+public class DetectSOAPStandalone5 extends DetectServerTemplate {
+
+ public static final String SERVER_ID = "jboss-soa-p-standalone-5";
+
+ @Override
+ protected String getServerID() {
+ return SERVER_ID;
+ }
+
+ @Override
+ protected Server getExpectedServer() {
+ Server expectedServer = new Server();
+ expectedServer.setName(SERVER_ID);
+ expectedServer.setVersion("5.2");
+ expectedServer.setType("SOA-P-STD");
+ expectedServer.setLocation(RuntimeProperties.getInstance().getRuntimePath(SERVER_ID));
+ return expectedServer;
+ }
+}
Added: trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/soap5/standalone/OperateSOAPStandalone5.java
===================================================================
--- trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/soap5/standalone/OperateSOAPStandalone5.java (rev 0)
+++ trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/soap5/standalone/OperateSOAPStandalone5.java 2012-05-18 07:44:16 UTC (rev 41141)
@@ -0,0 +1,11 @@
+package org.jboss.tools.runtime.as.ui.bot.test.soap5.standalone;
+
+import org.jboss.tools.runtime.as.ui.bot.test.template.OperateServerTemplate;
+
+public class OperateSOAPStandalone5 extends OperateServerTemplate {
+
+ @Override
+ protected String getServerName() {
+ return DetectSOAPStandalone5.SERVER_ID;
+ }
+}
12 years, 8 months
JBoss Tools SVN: r41140 - trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/template.
by jbosstools-commits@lists.jboss.org
Author: ljelinko
Date: 2012-05-18 03:43:31 -0400 (Fri, 18 May 2012)
New Revision: 41140
Modified:
trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/template/DetectServerTemplate.java
Log:
Removed test method.
Modified: trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/template/DetectServerTemplate.java
===================================================================
--- trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/template/DetectServerTemplate.java 2012-05-18 07:43:03 UTC (rev 41139)
+++ trunk/runtime/tests/org.jboss.tools.runtime.as.ui.bot.test/src/org/jboss/tools/runtime/as/ui/bot/test/template/DetectServerTemplate.java 2012-05-18 07:43:31 UTC (rev 41140)
@@ -30,7 +30,7 @@
protected abstract Server getExpectedServer();
@Test
- public void detectJBoss71(){
+ public void detectServer(){
preferences = new RuntimeDetectionPreferencesDialog();
preferences.open();
preferences.addPath(RuntimeProperties.getInstance().getRuntimePath(getServerID()));
12 years, 8 months
JBoss Tools SVN: r41139 - trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/view.
by jbosstools-commits@lists.jboss.org
Author: ljelinko
Date: 2012-05-18 03:43:03 -0400 (Fri, 18 May 2012)
New Revision: 41139
Modified:
trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/view/ServersView.java
Log:
Added handling of running server during restart.
Modified: trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/view/ServersView.java
===================================================================
--- trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/view/ServersView.java 2012-05-18 00:43:59 UTC (rev 41138)
+++ trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/view/ServersView.java 2012-05-18 07:43:03 UTC (rev 41139)
@@ -14,7 +14,6 @@
import org.jboss.tools.ui.bot.ext.condition.TaskDuration;
import org.jboss.tools.ui.bot.ext.gen.ActionItem.View.ServerServers;
import org.jboss.tools.ui.bot.ext.helper.ContextMenuHelper;
-import org.jboss.tools.ui.bot.ext.logging.WidgetsLogger;
import org.jboss.tools.ui.bot.ext.types.IDELabel;
public class ServersView extends ViewBase {
@@ -100,8 +99,9 @@
ContextMenuHelper.prepareTreeItemForContextMenu(tree, server);
new SWTBotMenu(ContextMenuHelper.getContextMenu(tree, "Restart", false)).click();
+ handleServerAlreadyRunning(bot);
- bot.waitWhile(new NonSystemJobRunsCondition(), TaskDuration.NORMAL.getTimeout());
+ bot.waitWhile(new NonSystemJobRunsCondition(), TaskDuration.VERY_LONG.getTimeout());
bot.waitUntil(new ICondition() {
@Override
@@ -117,7 +117,7 @@
public String getFailureMessage() {
return "The server does not have status 'Started'";
}
- });
+ }, TaskDuration.LONG.getTimeout());
}
/**
@@ -153,12 +153,7 @@
log.error(ex);
}
}
- try {
- bot.shell("Server already running on localhost");
- throw new RuntimeException("Another server is running on localhost");
- } catch (WidgetNotFoundException e) {
- // ok, nothing to do
- }
+ handleServerAlreadyRunning(bot);
util.waitForNonIgnoredJobs(Timing.time(600 * 1000));
util.waitForAll(Timing.time3S());
}
@@ -167,6 +162,14 @@
"\nThis server is not defined within Servers view");
}
}
+ private void handleServerAlreadyRunning(SWTBot bot) {
+ try {
+ bot.shell("Server already running on localhost");
+ throw new RuntimeException("Another server is running on localhost");
+ } catch (WidgetNotFoundException e) {
+ // ok, nothing to do
+ }
+ }
public SWTBotTreeItem findServerByName(SWTBotTree tree, String name) {
for (SWTBotTreeItem i : tree.getAllItems()) {
12 years, 8 months
JBoss Tools SVN: r41138 - trunk/documentation/jboss-tools-docs.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2012-05-17 20:43:59 -0400 (Thu, 17 May 2012)
New Revision: 41138
Modified:
trunk/documentation/jboss-tools-docs/all-guides.xml
Log:
corrected error
Modified: trunk/documentation/jboss-tools-docs/all-guides.xml
===================================================================
--- trunk/documentation/jboss-tools-docs/all-guides.xml 2012-05-18 00:16:50 UTC (rev 41137)
+++ trunk/documentation/jboss-tools-docs/all-guides.xml 2012-05-18 00:43:59 UTC (rev 41138)
@@ -6,8 +6,8 @@
<format>dir</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
- <!-- <fileSets>
- <fileSet>
+ <fileSets>
+ <!-- <fileSet>
<directory>../guides/Exadel-migration/target/docbook/publish/en-US</directory>
<outputDirectory>/Exadel-migration</outputDirectory>
<filtered>false</filtered>
12 years, 8 months
JBoss Tools SVN: r41137 - trunk/documentation/guides/JBDS_Release_Notes/en-US.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2012-05-17 20:16:50 -0400 (Thu, 17 May 2012)
New Revision: 41137
Modified:
trunk/documentation/guides/JBDS_Release_Notes/en-US/Article_Info.xml
trunk/documentation/guides/JBDS_Release_Notes/en-US/Fixed_Issues.xml
Log:
updated with new release notes
Modified: trunk/documentation/guides/JBDS_Release_Notes/en-US/Article_Info.xml
===================================================================
--- trunk/documentation/guides/JBDS_Release_Notes/en-US/Article_Info.xml 2012-05-17 23:58:47 UTC (rev 41136)
+++ trunk/documentation/guides/JBDS_Release_Notes/en-US/Article_Info.xml 2012-05-18 00:16:50 UTC (rev 41137)
@@ -8,7 +8,7 @@
<productname>JBoss Developer Studio</productname>
<productnumber>5.0</productnumber>
<edition>5.0.0</edition>
- <pubsnumber>1</pubsnumber>
+ <pubsnumber>2</pubsnumber>
<abstract>
<para>
These release notes contain important information related to the JBoss Developer Studio. New features, known issues, resources, and other current issues are addressed here.
Modified: trunk/documentation/guides/JBDS_Release_Notes/en-US/Fixed_Issues.xml
===================================================================
--- trunk/documentation/guides/JBDS_Release_Notes/en-US/Fixed_Issues.xml 2012-05-17 23:58:47 UTC (rev 41136)
+++ trunk/documentation/guides/JBDS_Release_Notes/en-US/Fixed_Issues.xml 2012-05-18 00:16:50 UTC (rev 41137)
@@ -4,8 +4,7 @@
Features added and issues fixed in version 5.0.0
</title>
<variablelist>
-
-
+
<!-- JBIDE-11635 -->
<varlistentry>
<term>
@@ -17,61 +16,36 @@
</para>
</listitem>
</varlistentry>
-
-
- <!-- JBIDE-11244 -->
+
+ <!-- JBIDE-11064 -->
<varlistentry>
<term>
- <ulink url="https://issues.jboss.org/jira/browse/JBIDE-11244">JBIDE-11244</ulink>
+ <ulink url="https://issues.jboss.org/jira/browse/JBIDE-11064">JBIDE-11064</ulink>
</term>
<listitem>
<para>
- <remark>No doc status set yet, this JIRA probably hasn't been reviewed by the docs team yet.</remark>
+ Only customers who downloaded and used the Beta release of JBoss Developer Studio 5 may have noticed this issue, that has since been resolved.
</para>
<para>
- <warning>
- <para>Release Note Text expected but missing!!! The Release Notes Text JIRA field is expected to have been filled in by the assigned Writer but doesn't appear to have been done.</para>
- </warning>
- </para>
-</listitem>
- </varlistentry>
-
-
-
- <!-- JBIDE-11162 -->
+ The JBoss Developer Studio 5.0.Beta JMX tooling was unable to connect to JBoss Application Server 7.1.0 correctly as the ability to connect to the new connector and URL for the server had not been incorporated. New classes have been created for interaction between JMX and JBoss Application Server 7.1.0 and area available as part of JBoss Developer Studio 5.0.
+ </para>
+ </listitem>
+</varlistentry>
+
+
+ <!-- JBIDE-10947 -->
<varlistentry>
<term>
- <ulink url="https://issues.jboss.org/jira/browse/JBIDE-11162">JBIDE-11162</ulink>
+ <ulink url="https://issues.jboss.org/jira/browse/JBIDE-10947">JBIDE-10947</ulink>
</term>
<listitem>
<para>
- <remark>No doc status set yet, this JIRA probably hasn't been reviewed by the docs team yet.</remark>
+ XML and JSON (JavaScript Object Notation) output from executed web services readability has been improved through the addition of carriage returns, line feeds, and indentation.
</para>
- <para>
- <warning>
- <para>Release Note Text expected but missing!!! The Release Notes Text JIRA field is expected to have been filled in by the assigned Writer but doesn't appear to have been done.</para>
- </warning>
- </para>
</listitem>
</varlistentry>
- <!-- JBIDE-10945 -->
- <varlistentry>
- <term>
- <ulink url="https://issues.jboss.org/jira/browse/JBIDE-10945">JBIDE-10945</ulink>
- </term>
- <listitem>
- <para>
- <remark>No doc status set yet, this JIRA probably hasn't been reviewed by the docs team yet.</remark>
- </para>
- <para>
- <warning>
- <para>Release Note Text expected but missing!!! The Release Notes Text JIRA field is expected to have been filled in by the assigned Writer but doesn't appear to have been done.</para>
- </warning>
- </para>
- </listitem>
- </varlistentry>
<!-- JBIDE-10390 -->
<varlistentry>
@@ -783,14 +757,14 @@
<varlistentry>
<term>
<ulink url="https://issues.jboss.org/jira/browse/JBIDE-8519">JBIDE-8519</ulink>
- </term>
- <listitem>
- <para>
- In previous versions of JBoss Developer Studio the functions ?floor, ?ceiling and ?round caused parse errors. This issue has been fixed by updating the Freemarker runtime to version 2.3.18, which corrects this issue.
- </para>
- </listitem>
+ </term>
+ <listitem>
+ <para>
+ In previous versions of JBoss Developer Studio the functions ?floor, ?ceiling and ?round caused parse errors. This issue has been fixed by updating the Freemarker runtime to version 2.3.18, which corrects this issue.
+ </para>
+ </listitem>
</varlistentry>
-
+
<!-- JBIDE-8421 -->
<varlistentry>
<term><ulink url="https://issues.jboss.org/jira/browse/JBIDE-8421">JBIDE-8421</ulink></term>
@@ -817,6 +791,7 @@
</listitem>
</varlistentry>
+
<!-- JBIDE-8195 -->
<varlistentry>
<term><ulink url="https://issues.jboss.org/jira/browse/JBIDE-8195">JBIDE-8195</ulink></term>
@@ -908,6 +883,4 @@
</varlistentry>
</variablelist>
-
-
</section>
12 years, 8 months
JBoss Tools SVN: r41136 - trunk/documentation/whatsnew/images.
by jbosstools-commits@lists.jboss.org
Author: dazarov
Date: 2012-05-17 19:58:47 -0400 (Thu, 17 May 2012)
New Revision: 41136
Modified:
trunk/documentation/whatsnew/images/gwt_modules_definition.png
Log:
new_and_noteworthy
Modified: trunk/documentation/whatsnew/images/gwt_modules_definition.png
===================================================================
(Binary files differ)
12 years, 8 months
JBoss Tools SVN: r41135 - in trunk/documentation/whatsnew: maven and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: dazarov
Date: 2012-05-17 19:57:11 -0400 (Thu, 17 May 2012)
New Revision: 41135
Added:
trunk/documentation/whatsnew/images/gwt_module_definition.png
trunk/documentation/whatsnew/images/gwt_modules_definition.png
trunk/documentation/whatsnew/images/jboss_maven_integration_gwt.png
Modified:
trunk/documentation/whatsnew/maven/maven-news-3.3.0.Beta3.html
Log:
new_and_noteworthy
Added: trunk/documentation/whatsnew/images/gwt_module_definition.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/whatsnew/images/gwt_module_definition.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/whatsnew/images/gwt_modules_definition.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/whatsnew/images/gwt_modules_definition.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Added: trunk/documentation/whatsnew/images/jboss_maven_integration_gwt.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/whatsnew/images/jboss_maven_integration_gwt.png
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
Modified: trunk/documentation/whatsnew/maven/maven-news-3.3.0.Beta3.html
===================================================================
--- trunk/documentation/whatsnew/maven/maven-news-3.3.0.Beta3.html 2012-05-17 23:48:16 UTC (rev 41134)
+++ trunk/documentation/whatsnew/maven/maven-news-3.3.0.Beta3.html 2012-05-17 23:57:11 UTC (rev 41135)
@@ -74,10 +74,24 @@
<td valign="top" align="left">
<a name="itemname2" id="itemname2"></a><b>New GWT configurator</b></td>
<td valign="top">
- <p>TODO Denis</p>
+ <p>You can enable/disable GWT Project Configurator by using follow preference:</p>
+ <img src="../images/jboss_maven_integration_gwt.png" />
+ <p>GWT Project Configurator scans configuration "gwt-maven-plugin" in pom.xml for modules and adds them to the configuration.<br/>
+ For example, to define module(s) in pom.xml you can either set:<br/><br/>
+ </p>
+ <img src="../images/gwt_module_definition.png" />
+ <p>or</p>
+ <img src="../images/gwt_modules_definition.png" />
+ <p>If there is no modules defined in pom.xml then Configurator adds all existing modules to configuration.</p>
+ <p>GWT Project Configurator sets GWT Compiler output to the same folder which Maven Compiler uses.</p>
+ <p>You can use Maven or GWT Compiler to compile your application and whatever you do after that (Deploy on Server or Running on an External Server) it does not required additional compilation.</p>
<p>
<small>
- See <a href="https://issues.jboss.org/browse/JBIDE-11224">JBIDE-11224</a> and <a href="https://issues.jboss.org/browse/JBIDE-11224">JBIDE-11224</a> for more details.
+ See:
+ <ul>
+ <li><a href="https://issues.jboss.org/browse/JBIDE-11224">Ensure GWT tooling and m2e-wtp are configured for same output directory</a></li>
+ <li><a href="https://issues.jboss.org/browse/JBIDE-11244">Auto-discover all the modules and add them to the configuration on GWT project import</a></li>
+ </ul>
</small></p>
</td>
</tr>
12 years, 8 months
JBoss Tools SVN: r41134 - in trunk/bpel/plugins/org.jboss.tools.bpel.runtimes: src/org/jboss/tools/bpel/runtimes and 3 other directories.
by jbosstools-commits@lists.jboss.org
Author: bbrodt
Date: 2012-05-17 19:48:16 -0400 (Thu, 17 May 2012)
New Revision: 41134
Modified:
trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/plugin.xml
trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/src/org/jboss/tools/bpel/runtimes/IBPELModuleFacetConstants.java
trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/src/org/jboss/tools/bpel/runtimes/module/BPELDeployableArtifactUtil.java
trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/src/org/jboss/tools/bpel/runtimes/module/BPELModuleFactoryDelegate.java
trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/src/org/jboss/tools/bpel/runtimes/module/JBTBPELPublisher.java
trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/src/org/jboss/tools/bpel/runtimes/ui/view/server/BPELModuleContentProvider.java
trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/src/org/jboss/tools/bpel/runtimes/ui/wizards/NewBPELProjectWizard.java
trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/src/org/jboss/tools/bpel/runtimes/ui/wizards/NewBPELProjectWizardPage1.java
Log:
https://issues.jboss.org/browse/JBIDE-9789 - partial fix. Still does not automatically re-deploy, but at least we're back to using the correct publisher, and Server view shows "Republish" flag.
Modified: trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/plugin.xml
===================================================================
--- trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/plugin.xml 2012-05-17 23:05:50 UTC (rev 41133)
+++ trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/plugin.xml 2012-05-17 23:48:16 UTC (rev 41134)
@@ -17,7 +17,7 @@
<!--=========================================================================-->
<!-- New BPEL Project Wizard -->
<!--=========================================================================-->
-
+ <!-- This is not the New BPEL Project Wizard you are looking for...move along!
<extension
point="org.eclipse.ui.newWizards">
<wizard
@@ -32,6 +32,8 @@
<description>%NEW_BPEL_PROJECT_DESCRIPTION</description>
</wizard>
</extension>
+ -->
+
<!--
<extension point="org.eclipse.wst.common.project.facet.ui.wizardPages">
<wizard-pages action="bpel.facet.core.install">
@@ -59,7 +61,7 @@
<extension point="org.eclipse.wst.server.ui.serverImages">
<image
id="org.jboss.tools.bpel.runtimes.jbt.bpel.module"
- typeIds="jbt.bpel.module,bpel.module"
+ typeIds="jbt.bpel.module"
icon="icons/obj16/bpelfacet.gif"/>
</extension>
@@ -205,10 +207,11 @@
<moduleFactory
projects="true"
class="org.jboss.tools.bpel.runtimes.module.BPELModuleFactoryDelegate"
- id="org.jboss.tools.bpel.runtimes.module.moduleFactory">
+ id="org.jboss.tools.bpel.runtimes.module.moduleFactory"
+ order="1">
<moduleType
versions="1.1, 2.0"
- types="jbt.bpel.module,bpel.module">
+ types="bpel.module,jbt.bpel.module">
</moduleType>
</moduleFactory>
</extension>
@@ -220,7 +223,8 @@
<extension point="org.eclipse.wst.server.core.moduleArtifactAdapters">
<moduleArtifactAdapter
id="org.jboss.tools.bpel.runtimes.module.artifactAdapter1"
- class="org.jboss.tools.bpel.runtimes.module.BPELDeployableArtifactAdapterFactory">
+ class="org.jboss.tools.bpel.runtimes.module.BPELDeployableArtifactAdapterFactory"
+ priority="100">
<enablement>
<with variable="selection">
<adapt type="org.eclipse.core.resources.IProject"/>
@@ -229,7 +233,8 @@
</moduleArtifactAdapter>
<moduleArtifactAdapter
id="org.jboss.tools.bpel.runtimes.module.artifactAdapter2"
- class="org.jboss.tools.bpel.runtimes.module.BPELDeployableArtifactAdapterFactory">
+ class="org.jboss.tools.bpel.runtimes.module.BPELDeployableArtifactAdapterFactory"
+ priority="100">
<enablement>
<with variable="selection">
<adapt type="org.eclipse.core.resources.IFile"/>
@@ -254,14 +259,20 @@
<adapter type="org.eclipse.debug.ui.actions.ILaunchable"/>
</factory>
</extension>
- <extension
- point="org.jboss.ide.eclipse.as.core.publishers">
- <publisher
- class="org.jboss.tools.bpel.runtimes.module.JBTBPELPublisher"
- priority="10"
- zipDelegate="false">
- </publisher>
- </extension>
+
+ <!--
+ The priority needs to be above that of JBoss7JSTPublisher publisher, which currently is 15.
+ Note that the JBoss 7 publisher does not actually accept a bpel.module - its accept method
+ defaults to AbstractServerToolsPublisher.accept() which (in this case) always returns true
+ -->
+ <extension
+ point="org.jboss.ide.eclipse.as.core.publishers">
+ <publisher
+ class="org.jboss.tools.bpel.runtimes.module.JBTBPELPublisher"
+ priority="100"
+ zipDelegate="true">
+ </publisher>
+ </extension>
<!--=========================================================================-->
<!-- TO MAKE PROCESSES ACTUALLY LAUNCHABLE VIA RUN ON SERVER -->
Modified: trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/src/org/jboss/tools/bpel/runtimes/IBPELModuleFacetConstants.java
===================================================================
--- trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/src/org/jboss/tools/bpel/runtimes/IBPELModuleFacetConstants.java 2012-05-17 23:05:50 UTC (rev 41133)
+++ trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/src/org/jboss/tools/bpel/runtimes/IBPELModuleFacetConstants.java 2012-05-17 23:48:16 UTC (rev 41134)
@@ -22,14 +22,15 @@
// module types
- public final static String BPEL_MODULE_TYPE = "jbt.bpel.module"; //$NON-NLS-1$
+ public final static String JBT_BPEL_MODULE_TYPE = "jbt.bpel.module"; //$NON-NLS-1$
+ public final static String BPEL_MODULE_TYPE = "bpel.module"; //$NON-NLS-1$
// module type versions
public final static String BPEL11_VERSION = "1.1"; // $NON-NLS-1$
public final static String BPEL20_VERSION = "2.0"; // $NON-NLS-1$
// facet template
- public final static String BPEL20_FACET_TEMPLATE = "jbt.template.bpel.core"; //$NON-NLS-1$
+ public final static String JBT_BPEL_FACET_TEMPLATE = "jbt.template.bpel.core"; //$NON-NLS-1$
// facet
// this facet has been deprecated
Modified: trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/src/org/jboss/tools/bpel/runtimes/module/BPELDeployableArtifactUtil.java
===================================================================
--- trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/src/org/jboss/tools/bpel/runtimes/module/BPELDeployableArtifactUtil.java 2012-05-17 23:05:50 UTC (rev 41133)
+++ trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/src/org/jboss/tools/bpel/runtimes/module/BPELDeployableArtifactUtil.java 2012-05-17 23:48:16 UTC (rev 41134)
@@ -60,7 +60,7 @@
//
// if (IStatus.OK != fileStatus.getCode()) return null; // not a valid BPEL file
//
-// IModule[] modules = ServerUtil.getModules(IBPELModuleFacetConstants.BPEL_MODULE_TYPE);
+// IModule[] modules = ServerUtil.getModules(IBPELModuleFacetConstants.JBT_BPEL_MODULE_TYPE);
//
// for (int i=0; i<modules.length; i++) {
//
Modified: trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/src/org/jboss/tools/bpel/runtimes/module/BPELModuleFactoryDelegate.java
===================================================================
--- trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/src/org/jboss/tools/bpel/runtimes/module/BPELModuleFactoryDelegate.java 2012-05-17 23:05:50 UTC (rev 41133)
+++ trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/src/org/jboss/tools/bpel/runtimes/module/BPELModuleFactoryDelegate.java 2012-05-17 23:48:16 UTC (rev 41134)
@@ -39,7 +39,7 @@
protected Map <IModule, FlatComponentDeployable> moduleDelegates = new HashMap<IModule, FlatComponentDeployable>(5);
public static final String FACTORY_ID = "org.jboss.tools.bpel.runtimes.module.moduleFactory";
- public static final String MODULE_TYPE = IBPELModuleFacetConstants.BPEL_MODULE_TYPE;
+
public static BPELModuleFactoryDelegate FACTORY;
public static BPELModuleFactoryDelegate factoryInstance() {
if( FACTORY == null ) {
@@ -75,7 +75,6 @@
return null;
}
-
@Override
public ModuleDelegate getModuleDelegate(IModule module) {
if (module == null)
@@ -95,7 +94,7 @@
protected boolean canHandleProject(IProject p) {
// https://issues.jboss.org/browse/JBIDE-8533
// Added support for deprecated jbt.bpel.facet.core
- return //FacetedProjectUtilities.isProjectOfType(p, IBPELModuleFacetConstants.BPEL_PROJECT_FACET) ||
+ return FacetedProjectUtilities.isProjectOfType(p, IBPELModuleFacetConstants.BPEL_PROJECT_FACET) ||
FacetedProjectUtilities.isProjectOfType(p, IBPELModuleFacetConstants.JBT_BPEL_PROJECT_FACET);
}
Modified: trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/src/org/jboss/tools/bpel/runtimes/module/JBTBPELPublisher.java
===================================================================
--- trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/src/org/jboss/tools/bpel/runtimes/module/JBTBPELPublisher.java 2012-05-17 23:05:50 UTC (rev 41133)
+++ trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/src/org/jboss/tools/bpel/runtimes/module/JBTBPELPublisher.java 2012-05-17 23:48:16 UTC (rev 41134)
@@ -74,8 +74,8 @@
&& module != null && module.length > 0
&& module[module.length-1] != null
&& (
- module[module.length-1].getModuleType().getId().equals(IBPELModuleFacetConstants.BPEL_MODULE_TYPE) ||
- module[module.length-1].getModuleType().getId().equals("bpel.module"))
+ module[module.length-1].getModuleType().getId().equals(IBPELModuleFacetConstants.JBT_BPEL_MODULE_TYPE) ||
+ module[module.length-1].getModuleType().getId().equals(IBPELModuleFacetConstants.BPEL_MODULE_TYPE))
)
return true;
return false;
Modified: trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/src/org/jboss/tools/bpel/runtimes/ui/view/server/BPELModuleContentProvider.java
===================================================================
--- trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/src/org/jboss/tools/bpel/runtimes/ui/view/server/BPELModuleContentProvider.java 2012-05-17 23:05:50 UTC (rev 41133)
+++ trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/src/org/jboss/tools/bpel/runtimes/ui/view/server/BPELModuleContentProvider.java 2012-05-17 23:48:16 UTC (rev 41134)
@@ -20,7 +20,12 @@
String typeId = mod.getModuleType().getId();
// https://jira.jboss.org/browse/JBIDE-7486
// if project was closed or deleted, mod.getProject() is null - ignore
- if( mod != null && mod.getProject() != null && typeId.equals(IBPELModuleFacetConstants.BPEL_MODULE_TYPE)) {
+ if( mod != null && mod.getProject() != null &&
+ (
+ typeId.equals(IBPELModuleFacetConstants.JBT_BPEL_MODULE_TYPE) ||
+ typeId.equals(IBPELModuleFacetConstants.BPEL_MODULE_TYPE)
+ )
+ ) {
// we have a bpel module deployed to a server. List the children
String[] versions = JBTBPELPublisher.getDeployedPathsFromDescriptor(s, mod.getProject());
return wrap((ModuleServer)parentElement, versions);
Modified: trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/src/org/jboss/tools/bpel/runtimes/ui/wizards/NewBPELProjectWizard.java
===================================================================
--- trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/src/org/jboss/tools/bpel/runtimes/ui/wizards/NewBPELProjectWizard.java 2012-05-17 23:05:50 UTC (rev 41133)
+++ trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/src/org/jboss/tools/bpel/runtimes/ui/wizards/NewBPELProjectWizard.java 2012-05-17 23:48:16 UTC (rev 41134)
@@ -91,7 +91,7 @@
*/
@Override
protected IFacetedProjectTemplate getTemplate() {
- return ProjectFacetsManager.getTemplate(IBPELModuleFacetConstants.BPEL20_FACET_TEMPLATE);
+ return ProjectFacetsManager.getTemplate(IBPELModuleFacetConstants.JBT_BPEL_FACET_TEMPLATE);
}
Modified: trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/src/org/jboss/tools/bpel/runtimes/ui/wizards/NewBPELProjectWizardPage1.java
===================================================================
--- trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/src/org/jboss/tools/bpel/runtimes/ui/wizards/NewBPELProjectWizardPage1.java 2012-05-17 23:05:50 UTC (rev 41133)
+++ trunk/bpel/plugins/org.jboss.tools.bpel.runtimes/src/org/jboss/tools/bpel/runtimes/ui/wizards/NewBPELProjectWizardPage1.java 2012-05-17 23:48:16 UTC (rev 41134)
@@ -50,9 +50,9 @@
top.setLayout(new GridLayout());
top.setLayoutData(new GridData(GridData.FILL_BOTH));
createProjectGroup(top);
-// createServerTargetComposite(top);
+ createServerTargetComposite(top);
// createPrimaryFacetComposite(top);
-// createPresetPanel(top);
+ createPresetPanel(top);
return top;
}
}
12 years, 8 months
JBoss Tools SVN: r41133 - trunk/maven/features.
by jbosstools-commits@lists.jboss.org
Author: dgolovin
Date: 2012-05-17 19:05:50 -0400 (Thu, 17 May 2012)
New Revision: 41133
Modified:
trunk/maven/features/pom.xml
Log:
removed repositories definition from maven/features/pom.xml, they seam not required animore because included into target platform
Modified: trunk/maven/features/pom.xml
===================================================================
--- trunk/maven/features/pom.xml 2012-05-17 22:54:35 UTC (rev 41132)
+++ trunk/maven/features/pom.xml 2012-05-17 23:05:50 UTC (rev 41133)
@@ -29,22 +29,4 @@
<module>org.jboss.tools.maven.sourcelookup.feature</module>
<module>org.jboss.tools.maven.jdt.feature</module>
</modules>
-
- <repositories>
- <repository>
- <id>indigo</id>
- <layout>p2</layout>
- <url>http://download.eclipse.org/releases/indigo</url>
- </repository>
- <repository>
- <id>wtp</id>
- <layout>p2</layout>
- <url>http://download.jboss.org/jbosstools/updates/m2eclipse-wtp/</url>
- </repository>
- <repository>
- <id>swtbot</id>
- <layout>p2</layout>
- <url>http://download.eclipse.org/technology/swtbot/helios/dev-build/update-site/</url>
- </repository>
- </repositories>
</project>
12 years, 8 months