JBoss Tools SVN: r38649 - trunk/openshift/plugins/org.jboss.tools.openshift.express.client.
by jbosstools-commits@lists.jboss.org
Author: xcoulon
Date: 2012-02-13 05:38:14 -0500 (Mon, 13 Feb 2012)
New Revision: 38649
Modified:
trunk/openshift/plugins/org.jboss.tools.openshift.express.client/openshift-java-client-1.1.1-SNAPSHOT.jar
Log:
Handling case where User has no domain : user.hasDomain() returns false instead of throwing an exception
Modified: trunk/openshift/plugins/org.jboss.tools.openshift.express.client/openshift-java-client-1.1.1-SNAPSHOT.jar
===================================================================
(Binary files differ)
14 years, 1 month
JBoss Tools SVN: r38648 - in trunk/ws: tests/org.jboss.tools.ws.jaxrs.core.test/src/org/jboss/tools/ws/jaxrs/core/internal/metamodel/builder and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: xcoulon
Date: 2012-02-13 04:56:54 -0500 (Mon, 13 Feb 2012)
New Revision: 38648
Modified:
trunk/ws/plugins/org.jboss.tools.ws.jaxrs.core/src/org/jboss/tools/ws/jaxrs/core/internal/metamodel/domain/JaxrsEndpoint.java
trunk/ws/tests/org.jboss.tools.ws.jaxrs.core.test/src/org/jboss/tools/ws/jaxrs/core/internal/metamodel/builder/JaxrsMetamodelChangedProcessorTestCase.java
Log:
Open - https://issues.jboss.org/browse/JBIDE-10865
[WSTester] Prompt user for values when the URL contains path params
Reformating the URI Path Template
Modified: trunk/ws/plugins/org.jboss.tools.ws.jaxrs.core/src/org/jboss/tools/ws/jaxrs/core/internal/metamodel/domain/JaxrsEndpoint.java
===================================================================
--- trunk/ws/plugins/org.jboss.tools.ws.jaxrs.core/src/org/jboss/tools/ws/jaxrs/core/internal/metamodel/domain/JaxrsEndpoint.java 2012-02-13 08:53:01 UTC (rev 38647)
+++ trunk/ws/plugins/org.jboss.tools.ws.jaxrs.core/src/org/jboss/tools/ws/jaxrs/core/internal/metamodel/domain/JaxrsEndpoint.java 2012-02-13 09:56:54 UTC (rev 38648)
@@ -281,11 +281,13 @@
for (Iterator<JavaMethodParameter> iterator = queryParameters.iterator(); iterator.hasNext();) {
JavaMethodParameter queryParam = iterator.next();
final Annotation queryParamAnnotation = queryParam.getAnnotation(QueryParam.class.getName());
- uriPathTemplateBuilder.append(queryParamAnnotation.getValue("value")).append("={");
- uriPathTemplateBuilder.append(queryParam.getTypeName());
+ final String paramName = queryParamAnnotation.getValue("value");
+ final String paramType = queryParam.getTypeName();
+ uriPathTemplateBuilder.append(paramName).append("={");
+ uriPathTemplateBuilder.append(paramName).append(":").append(paramType);
final Annotation defaultValueAnnotation = queryParam.getAnnotation(DefaultValue.class.getName());
if (defaultValueAnnotation != null) {
- uriPathTemplateBuilder.append(':').append(defaultValueAnnotation.getValue("value"));
+ uriPathTemplateBuilder.append('=').append(defaultValueAnnotation.getValue("value"));
}
uriPathTemplateBuilder.append('}');
Modified: trunk/ws/tests/org.jboss.tools.ws.jaxrs.core.test/src/org/jboss/tools/ws/jaxrs/core/internal/metamodel/builder/JaxrsMetamodelChangedProcessorTestCase.java
===================================================================
--- trunk/ws/tests/org.jboss.tools.ws.jaxrs.core.test/src/org/jboss/tools/ws/jaxrs/core/internal/metamodel/builder/JaxrsMetamodelChangedProcessorTestCase.java 2012-02-13 08:53:01 UTC (rev 38647)
+++ trunk/ws/tests/org.jboss.tools.ws.jaxrs.core.test/src/org/jboss/tools/ws/jaxrs/core/internal/metamodel/builder/JaxrsMetamodelChangedProcessorTestCase.java 2012-02-13 09:56:54 UTC (rev 38648)
@@ -194,7 +194,7 @@
JaxrsEndpoint endpoint = createEndpoint(httpMethod, customerResourceMethod);
// verifications
assertThat(endpoint.getHttpMethod(), equalTo((IJaxrsHttpMethod) httpMethod));
- assertThat(endpoint.getUriPathTemplate(), equalTo("/customers?start={int}&size={int:2}"));
+ assertThat(endpoint.getUriPathTemplate(), equalTo("/customers?start={start:int}&size={size:int=2}"));
}
@Test
14 years, 1 month
JBoss Tools SVN: r38647 - trunk/maven/tests/org.jboss.tools.maven.configurators.tests/src/org/jboss/tools/maven/configurators/tests.
by jbosstools-commits@lists.jboss.org
Author: fbricon
Date: 2012-02-13 03:53:01 -0500 (Mon, 13 Feb 2012)
New Revision: 38647
Modified:
trunk/maven/tests/org.jboss.tools.maven.configurators.tests/src/org/jboss/tools/maven/configurators/tests/JpaConfiguratorTest.java
Log:
JBIDE-10750 : fixed test case where hibernate not available in the TP
Modified: trunk/maven/tests/org.jboss.tools.maven.configurators.tests/src/org/jboss/tools/maven/configurators/tests/JpaConfiguratorTest.java
===================================================================
--- trunk/maven/tests/org.jboss.tools.maven.configurators.tests/src/org/jboss/tools/maven/configurators/tests/JpaConfiguratorTest.java 2012-02-13 08:50:09 UTC (rev 38646)
+++ trunk/maven/tests/org.jboss.tools.maven.configurators.tests/src/org/jboss/tools/maven/configurators/tests/JpaConfiguratorTest.java 2012-02-13 08:53:01 UTC (rev 38647)
@@ -40,7 +40,7 @@
assertNoErrors(project);
jpa = manager.getJpaProject(project);
pid = jpa.getJpaPlatform().getId();
- assertTrue(pid + " is not the expected hibernate platform", pid.startsWith("hibernate"));
+ assertTrue(pid + " is not the expected hibernate platform", pid.startsWith("hibernate") || pid.startsWith("generic"));
}
protected void assertIsJpaProject(IProject project, IProjectFacetVersion expectedJpaVersion) throws Exception {
14 years, 1 month
JBoss Tools SVN: r38646 - trunk/openshift/plugins/org.jboss.tools.openshift.egit.core/src/org/jboss/tools/openshift/egit/core.
by jbosstools-commits@lists.jboss.org
Author: adietish
Date: 2012-02-13 03:50:09 -0500 (Mon, 13 Feb 2012)
New Revision: 38646
Modified:
trunk/openshift/plugins/org.jboss.tools.openshift.egit.core/src/org/jboss/tools/openshift/egit/core/EGitUtils.java
Log:
[JBIDE-10847] clearing app name, cartridge and embedded cartridges when you uncheck "use existing app"
Modified: trunk/openshift/plugins/org.jboss.tools.openshift.egit.core/src/org/jboss/tools/openshift/egit/core/EGitUtils.java
===================================================================
--- trunk/openshift/plugins/org.jboss.tools.openshift.egit.core/src/org/jboss/tools/openshift/egit/core/EGitUtils.java 2012-02-13 07:34:47 UTC (rev 38645)
+++ trunk/openshift/plugins/org.jboss.tools.openshift.egit.core/src/org/jboss/tools/openshift/egit/core/EGitUtils.java 2012-02-13 08:50:09 UTC (rev 38646)
@@ -645,7 +645,7 @@
* @return
* @throws CoreException
*/
- private static RemoteConfig getRemoteByName(String remote, Repository repository) throws CoreException {
+ public static RemoteConfig getRemoteByName(String remote, Repository repository) throws CoreException {
Assert.isLegal(repository != null, "Could not get configuration. No repository provided.");
List<RemoteConfig> allRemotes = getAllRemoteConfigs(repository);
14 years, 1 month
JBoss Tools SVN: r38645 - trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext.
by jbosstools-commits@lists.jboss.org
Author: jgargula
Date: 2012-02-13 02:34:47 -0500 (Mon, 13 Feb 2012)
New Revision: 38645
Modified:
trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/SWTEclipseExt.java
Log:
Improved isProjectInPackageExplorer method.
Modified: trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/SWTEclipseExt.java
===================================================================
--- trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/SWTEclipseExt.java 2012-02-13 01:48:57 UTC (rev 38644)
+++ trunk/tests/plugins/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/SWTEclipseExt.java 2012-02-13 07:34:47 UTC (rev 38645)
@@ -1134,28 +1134,28 @@
return SWTEclipseExt.isProjectInPackageExplorer(bot, projectName);
}
- /**
- * Returns true when projectName is present in Package Explorer static
- * version
- *
- * @param bot
- * @param projectName
- * @return
- */
- public static boolean isProjectInPackageExplorer(SWTBotExt bot,
- String projectName) {
- boolean found = false;
+ /**
+ * Returns <code>true</code> when projectName is present in Package Explorer static
+ * version, <code>false</code> otherwise.
+ *
+ * @param bot
+ * @param projectName
+ * @return
+ */
+ public static boolean isProjectInPackageExplorer(SWTBotExt bot, String projectName) {
+ if (bot == null || projectName == null) {
+ throw new NullPointerException();
+ }
- SWTBot innerBot = SWTEclipseExt
- .showView(bot, ViewType.PACKAGE_EXPLORER);
- SWTBotTree tree = innerBot.tree();
- try {
- tree.getTreeItem(projectName);
- found = true;
- } catch (WidgetNotFoundException e) {
- }
- return found;
- }
+ SWTBot innerBot = SWTEclipseExt.showView(bot, ViewType.PACKAGE_EXPLORER);
+ SWTBotTreeItem[] treeItems = innerBot.tree().getAllItems();
+ for (int i = 0; i < treeItems.length; i++) {
+ if (projectName.equals(treeItems[i].getText())) {
+ return true;
+ }
+ }
+ return false;
+ }
/**
* Returns Tree Item with specified label and located on path
14 years, 1 month
JBoss Tools SVN: r38644 - trunk/documentation/guides/GettingStartedGuide/en-US.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2012-02-12 20:48:57 -0500 (Sun, 12 Feb 2012)
New Revision: 38644
Added:
trunk/documentation/guides/GettingStartedGuide/en-US/jboss_central.xml
trunk/documentation/guides/GettingStartedGuide/en-US/jboss_perspective.xml
Modified:
trunk/documentation/guides/GettingStartedGuide/en-US/Book_Info.xml
trunk/documentation/guides/GettingStartedGuide/en-US/Getting_Started_Guide.xml
trunk/documentation/guides/GettingStartedGuide/en-US/getting_started.xml
trunk/documentation/guides/GettingStartedGuide/en-US/master.xml
Log:
updated
Modified: trunk/documentation/guides/GettingStartedGuide/en-US/Book_Info.xml
===================================================================
--- trunk/documentation/guides/GettingStartedGuide/en-US/Book_Info.xml 2012-02-11 06:54:37 UTC (rev 38643)
+++ trunk/documentation/guides/GettingStartedGuide/en-US/Book_Info.xml 2012-02-13 01:48:57 UTC (rev 38644)
@@ -8,7 +8,7 @@
<productname>JBoss Developer Studio</productname>
<productnumber>5.0</productnumber>
<edition>5.0.0</edition>
-<pubsnumber>7</pubsnumber>
+<pubsnumber>8</pubsnumber>
<abstract>
<para>The Getting Started Guide explains the JBoss Developer Studio.</para>
</abstract>
Modified: trunk/documentation/guides/GettingStartedGuide/en-US/Getting_Started_Guide.xml
===================================================================
--- trunk/documentation/guides/GettingStartedGuide/en-US/Getting_Started_Guide.xml 2012-02-11 06:54:37 UTC (rev 38643)
+++ trunk/documentation/guides/GettingStartedGuide/en-US/Getting_Started_Guide.xml 2012-02-13 01:48:57 UTC (rev 38644)
@@ -8,6 +8,10 @@
<xi:include href="minimumrequirements.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
<xi:include href="installation.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
<xi:include href="getting_started.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
+<xi:include href="jboss_central.xml" xmlns:xi="http://www.w3.org/2001/XInclude">
+</xi:include>
+<xi:include href="jboss_perspective.xml" xmlns:xi="http://www.w3.org/2001/XInclude">
+</xi:include>
<xi:include href="manage.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
<xi:include href="first_seam.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
<xi:include href="jsp_application.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
Modified: trunk/documentation/guides/GettingStartedGuide/en-US/getting_started.xml
===================================================================
--- trunk/documentation/guides/GettingStartedGuide/en-US/getting_started.xml 2012-02-11 06:54:37 UTC (rev 38643)
+++ trunk/documentation/guides/GettingStartedGuide/en-US/getting_started.xml 2012-02-13 01:48:57 UTC (rev 38644)
@@ -117,349 +117,7 @@
</section>
<xi:include href="usage_reporting.xml" xmlns:xi="http://www.w3.org/2001/XInclude"></xi:include>
- <section>
- <title>JBoss Central</title>
- <para>
- When viewing the workbench for the first time you will be greated with <firstterm>JBoss Central</firstterm>. JBoss Central assists you in getting started and keeps you up to date with JBoss technologies.
- </para>
- <figure>
- <title>JBoss Central</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/getting_started/jboss_central_01.png" scale="90"/>
- </imageobject>
- </mediaobject>
- </figure>
- <section>
- <title>Getting Started with JBoss Central</title>
- <para>
- The <guilabel>Getting Started</guilabel> tab of JBoss Central is the first you will see upon launching the JBoss Developer Studio and is setup as a functional starting point for developers.
- </para>
- <para>
- At the top of the tab is a search box. By clicking the down arrow to the left you can select to perform a search on either the <guimenuitem>Red Hat Customer Portal</guimenuitem> or the <guimenuitem>JBoss Community</guimenuitem>.
- </para>
- <figure>
- <title>Search Options</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/getting_started/jboss_central_02.png" scale="90"/>
- </imageobject>
- </mediaobject>
- </figure>
- <para>
- Performing a search will launch a web browser as a new tab within JBoss Developer Studio displaying the results page. You can interact with the browser as you would any other web browser.
- </para>
- <figure>
- <title>Search Results</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/getting_started/jboss_central_03.png" scale="90"/>
- </imageobject>
- </mediaobject>
- </figure>
- <para>
- From the <guilabel>Create Projects</guilabel> section you can create a <guilabel>Dynamic Web Project</guilabel>, <guilabel>OpenShift Express Application</guilabel>, <guilabel>Java EE Web Project</guilabel>, <guilabel>Java EE Project</guilabel>, <guilabel>HTML5 Project</guilabel>, <guilabel>Spring MVC Project</guilabel>, <guilabel>RichFaces Project</guilabel>, or any one of many <guilabel>Project Examples</guilabel>. To access a complete list of projects you can create, click on the window icon at the top-right of the <guilabel>Create Projects</guilabel> section <inlinemediaobject>
- <imageobject>
- <imagedata fileref="images/getting_started/jboss_central_icon_01.png"/>
- </imageobject>
- </inlinemediaobject>.
- </para>
- <note>
- <para>
- All wizards generate Maven based projects, except for the <guilabel>Dynamic Web Project</guilabel> wizard.
- </para>
- </note>
- <figure>
- <title>Creating a Project</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/getting_started/jboss_central_04.png" scale="90"/>
- </imageobject>
- </mediaobject>
- </figure>
- <para>
- Under the <guilabel>Project Examples</guilabel> section you can expand and view <guilabel>JBoss Quickstarts</guilabel>. Each quickstart is an example to assist first time users.
- </para>
- <figure>
- <title>Project Examples</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/getting_started/jboss_central_05.png" scale="90"/>
- </imageobject>
- </mediaobject>
- </figure>
- <para>
- You can also download other examples and install and set runtime preferences through the <guilabel>Project Examples</guilabel> section by using the five buttons at the top-right. The first button <inlinemediaobject>
- <imageobject>
- <imagedata fileref="images/getting_started/jboss_central_icon_02.png"/>
- </imageobject>
- </inlinemediaobject> launches a <guilabel>New Project Examples</guilabel> wizard. Here you can search and download project examples to assist you with getting started.
- </para>
- <figure>
- <title>New Project Examples wizard</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/getting_started/jboss_central_06.png" scale="90"/>
- </imageobject>
- </mediaobject>
- </figure>
- <para>
- By clicking on the second button <inlinemediaobject>
- <imageobject>
- <imagedata fileref="images/getting_started/jboss_central_icon_03.png"/>
- </imageobject>
- </inlinemediaobject> you will be taken directly to the <guilabel>JBoss Tools Runtime Detection</guilabel> dialog within <guilabel>Preferences</guilabel>.
- </para>
- <figure>
- <title>JBoss Tools Runtime Detection</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/getting_started/jboss_central_07.png" scale="90"/>
- </imageobject>
- </mediaobject>
- </figure>
- <para>
- The third <inlinemediaobject>
- <imageobject>
- <imagedata fileref="images/getting_started/jboss_central_icon_04.png"/>
- </imageobject>
- </inlinemediaobject> and fourth <inlinemediaobject>
- <imageobject>
- <imagedata fileref="images/getting_started/jboss_central_icon_05.png"/>
- </imageobject>
- </inlinemediaobject> buttons take you directly to the <guilabel>Seam 2</guilabel> runtime and <guilabel>Server Runtime Environments</guilabel> preference dialogs respectively.
- </para>
- <figure>
- <title>Seam 2 runtime preferences</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/getting_started/jboss_central_08.png" scale="90"/>
- </imageobject>
- </mediaobject>
- </figure>
- <figure>
- <title>Server Runtime Environments preferences</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/getting_started/jboss_central_09.png" scale="90"/>
- </imageobject>
- </mediaobject>
- </figure>
- <para>
- The final button <inlinemediaobject>
- <imageobject>
- <imagedata fileref="images/getting_started/jboss_central_icon_06.png"/>
- </imageobject>
- </inlinemediaobject> refreshes the <guilabel>Project Examples</guilabel> list.
- </para>
- <para>
- The <guilabel>Documentation</guilabel> section of JBoss Central contains links to help materials such as reference guides, user forums and documentation concerning new features.
- </para>
- <figure>
- <title>Documentation links</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/getting_started/jboss_central_10.png" scale="90"/>
- </imageobject>
- </mediaobject>
- </figure>
- <para>
- If you do not wish to see JBoss Central at every startup, you can deselect the checkbox <guilabel>Show on Startup</guilabel> in the <guilabel>Settings</guilabel> section.
- </para>
- <figure>
- <title>Settings section</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/getting_started/jboss_central_11.png" scale="90"/>
- </imageobject>
- </mediaobject>
- </figure>
- <para>
- The <guilabel>News</guilabel> and <guilabel>Blogs</guilabel> sections are updated automatically, bringing you the latest information concerning JBoss technologies.
- </para>
- <figure>
- <title>News and Blogs sections</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/getting_started/jboss_central_12.png" scale="90"/>
- </imageobject>
- </mediaobject>
- </figure>
- </section>
- <section>
- <title>Software installation and updates from within JBoss Central</title>
- <para>
- The <guilabel>Software/Update</guilabel> tab at the bottom of JBoss Central switches to a screen where you can install and update your software.
- </para>
- <figure>
- <title>Software/Update tab</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/getting_started/jboss_central_13.png" scale="90"/>
- </imageobject>
- </mediaobject>
- </figure>
- <warning>
- <para>
- Some software available through this tab is third-party community software that Red Hat has no control over. Installing third-party software may impact the level of support that Red Hat can provide.
- </para>
- </warning>
- <para>
- To install or update software, select the checkbox beside one or more components.
- </para>
- <figure>
- <title>Software/Update tab</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/getting_started/jboss_central_14.png" scale="90"/>
- </imageobject>
- </mediaobject>
- </figure>
- <para>
- Once you have selected all the components to update or install, click the <inlinemediaobject>
- <imageobject>
- <imagedata fileref="images/getting_started/jboss_central_icon_07.png"/>
- </imageobject>
- <textobject>
- <phrase>Install</phrase>
- </textobject>
-</inlinemediaobject> button at the bottom left of the tab window. A screen will then appear offering you the option of deselecting a part of the component if you wish.
- </para>
- <figure>
- <title>Component selection</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/getting_started/jboss_central_15.png" scale="90"/>
- </imageobject>
- </mediaobject>
- </figure>
- <para>
- You will then be asked to confirm the selection of components to install. To accept the selection press the <guibutton>Next</guibutton> button. You can change the components by pressing the <guibutton>Back</guibutton> button.
- </para>
- <figure>
- <title>Component verification</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/getting_started/jboss_central_16.png" scale="90"/>
- </imageobject>
- </mediaobject>
- </figure>
- <para>
- After pressing the <guibutton>Next</guibutton> button you will need to <guilabel>accept the terms of the license agreement</guilabel> for the associated software being installed. To do this select the corresponding radio button.
- </para>
- <para>
- Click <guibutton>Finish</guibutton> to begin installation.
- </para>
- <figure>
- <title>Licenses review</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/getting_started/jboss_central_17.png" scale="90"/>
- </imageobject>
- </mediaobject>
- </figure>
- <para>
- As the installation process takes place you can choose to have further details displayed or run the installation in the background.
- </para>
- <figure>
- <title>Licenses review</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/getting_started/jboss_central_18.png" scale="90"/>
- </imageobject>
- </mediaobject>
- </figure>
- <para>
- After the software has been downloaded, you will be asked to verify the installation of the components if the contents are unsigned. Install unsigned third-party components with discretion.
- </para>
- <figure>
- <title>Installing unsigned content</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/getting_started/jboss_central_19.png" scale="90"/>
- </imageobject>
- </mediaobject>
- </figure>
- <para>
- Once installation is complete, restart JBoss Developer Studio by pressing the <guibutton>Restart Now</guibutton> button that appears.
- </para>
- <figure>
- <title> </title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/getting_started/jboss_central_20.png" scale="90"/>
- </imageobject>
- </mediaobject>
- </figure>
- </section>
- </section>
- <section id="JBoss_Perspective">
- <title>JBoss Perspective</title>
- <para>
- The JBoss perspective is designed to incorporate the views most often used by developers using JBoss, while also changing standard menu items to reflect what a JBoss devleoper would want and need.
- </para>
- <figure>
- <title>JBoss Perspective</title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/getting_started/jboss_perspective_01.png" scale="90"/>
- </imageobject>
- </mediaobject>
- </figure>
- <para>
- The JBoss perspective views include: <guilabel>Project Explorer</guilabel>, <guilabel>JBoss Central</guilabel>, <guilabel>Outline</guilabel>, <guilabel>Palette</guilabel>, <guilabel>Properties</guilabel> and <guilabel>Servers</guilabel>.
- </para>
- <para>
- Certain menus also see a change in available items. These menus include <menuchoice><guimenuitem>File</guimenuitem><guimenuitem>New</guimenuitem></menuchoice>, <menuchoice><guimenuitem>Window</guimenuitem><guimenuitem>Show View</guimenuitem></menuchoice> and the context menu for a project.
- </para>
- <para>
- The menu items for <menuchoice>
- <guimenuitem>File</guimenuitem>
- <guimenuitem>New</guimenuitem>
- </menuchoice> can be seen in <xref linkend="figure-jboss_perspective_02" />
- </para>
- <figure id="figure-jboss_perspective_02">
- <title>JBoss Perspective: <menuchoice><guimenuitem>File</guimenuitem><guimenuitem>New</guimenuitem></menuchoice></title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/getting_started/jboss_perspective_02.png" scale="90"/>
- </imageobject>
- </mediaobject>
- </figure>
- <para>
- The menu items for <menuchoice>
- <guimenuitem>Window</guimenuitem>
- <guimenuitem>Show View</guimenuitem>
- </menuchoice> can be seen in <xref linkend="figure-jboss_perspective_03" />
- </para>
- <figure id="figure-jboss_perspective_03">
- <title>JBoss Perspective: <menuchoice>
- <guimenuitem>Window</guimenuitem>
- <guimenuitem>Show View</guimenuitem>
- </menuchoice>
- </title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/getting_started/jboss_perspective_03.png" scale="90"/>
- </imageobject>
- </mediaobject>
- </figure>
- <para>
- The menu items for the context menu of a project can be seen in <xref linkend="figure-jboss_perspective_04" />
- </para>
- <figure id="figure-jboss_perspective_04">
- <title>JBoss Perspective: <menuchoice>
- <guimenuitem>Window</guimenuitem>
- <guimenuitem>Show View</guimenuitem>
- </menuchoice>
- </title>
- <mediaobject>
- <imageobject>
- <imagedata fileref="images/getting_started/jboss_perspective_04.png" scale="90"/>
- </imageobject>
- </mediaobject>
- </figure>
- </section>
+
<section id="Support">
<?dbhtml filename="Support.html"?>
<title>Support</title>
Added: trunk/documentation/guides/GettingStartedGuide/en-US/jboss_central.xml
===================================================================
--- trunk/documentation/guides/GettingStartedGuide/en-US/jboss_central.xml (rev 0)
+++ trunk/documentation/guides/GettingStartedGuide/en-US/jboss_central.xml 2012-02-13 01:48:57 UTC (rev 38644)
@@ -0,0 +1,277 @@
+<chapter>
+ <title>JBoss Central</title>
+ <para>
+ When viewing the workbench for the first time you will be greated with <firstterm>JBoss Central</firstterm>. JBoss Central assists you in getting started and keeps you up to date with JBoss technologies.
+ </para>
+ <figure>
+ <title>JBoss Central</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/getting_started/jboss_central_01.png" scale="90"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <section>
+ <title>Getting Started with JBoss Central</title>
+ <para>
+ The <guilabel>Getting Started</guilabel> tab of JBoss Central is the first tab you will see, and is setup as a functional starting point for developers.
+ </para>
+ <para>
+ At the top of the tab is a search box. By clicking the down arrow to the left you can select to perform a search on either the <guimenuitem>Red Hat Customer Portal</guimenuitem> or the <guimenuitem>JBoss Community</guimenuitem>.
+ </para>
+ <figure>
+ <title>Search Options</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/getting_started/jboss_central_02.png" scale="90"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ Performing a search will launch a web browser as a new tab, displaying the results page. You can interact with the browser as you would any other web browser.
+ </para>
+ <figure>
+ <title>Search Results</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/getting_started/jboss_central_03.png" scale="90"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ From the <guilabel>Create Projects</guilabel> section you can create a <guilabel>Dynamic Web Project</guilabel>, <guilabel>OpenShift Express Application</guilabel>, <guilabel>Java EE Web Project</guilabel>, <guilabel>Java EE Project</guilabel>, <guilabel>HTML5 Project</guilabel>, <guilabel>Spring MVC Project</guilabel>, <guilabel>RichFaces Project</guilabel>, or any one of many <guilabel>Project Examples</guilabel>. To access a complete list of projects you can create, click on the window icon at the top-right of the <guilabel>Create Projects</guilabel> section <inlinemediaobject>
+ <imageobject>
+ <imagedata fileref="images/getting_started/jboss_central_icon_01.png"/>
+ </imageobject>
+ </inlinemediaobject>.
+ </para>
+ <note>
+ <para>
+ All wizards generate Maven based projects, except for the <guilabel>Dynamic Web Project</guilabel> wizard.
+ </para>
+ </note>
+ <figure>
+ <title>Creating a Project</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/getting_started/jboss_central_04.png" scale="90"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ Under the <guilabel>Project Examples</guilabel> section you can expand and view <guilabel>JBoss Quickstarts</guilabel>. Each quickstart is an example to assist first time users.
+ </para>
+ <figure>
+ <title>Project Examples</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/getting_started/jboss_central_05.png" scale="90"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ You can also download other examples and install and set runtime preferences through the <guilabel>Project Examples</guilabel> section by using the five buttons at the top-right. The first button <inlinemediaobject>
+ <imageobject>
+ <imagedata fileref="images/getting_started/jboss_central_icon_02.png"/>
+ </imageobject>
+ </inlinemediaobject> launches a <guilabel>New Project Examples</guilabel> wizard. Here you can search and download project examples to assist you with getting started.
+ </para>
+ <figure>
+ <title>New Project Examples wizard</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/getting_started/jboss_central_06.png" scale="90"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ By clicking on the second button <inlinemediaobject>
+ <imageobject>
+ <imagedata fileref="images/getting_started/jboss_central_icon_03.png"/>
+ </imageobject>
+ </inlinemediaobject> you will be taken directly to the <guilabel>JBoss Tools Runtime Detection</guilabel> dialog within <guilabel>Preferences</guilabel>.
+ </para>
+ <figure>
+ <title>JBoss Tools Runtime Detection</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/getting_started/jboss_central_07.png" scale="90"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ The third <inlinemediaobject>
+ <imageobject>
+ <imagedata fileref="images/getting_started/jboss_central_icon_04.png"/>
+ </imageobject>
+ </inlinemediaobject> and fourth <inlinemediaobject>
+ <imageobject>
+ <imagedata fileref="images/getting_started/jboss_central_icon_05.png"/>
+ </imageobject>
+ </inlinemediaobject> buttons take you directly to the <guilabel>Seam 2</guilabel> runtime and <guilabel>Server Runtime Environments</guilabel> preference dialogs respectively.
+ </para>
+ <figure>
+ <title>Seam 2 runtime preferences</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/getting_started/jboss_central_08.png" scale="90"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <figure>
+ <title>Server Runtime Environments preferences</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/getting_started/jboss_central_09.png" scale="90"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ The final button <inlinemediaobject>
+ <imageobject>
+ <imagedata fileref="images/getting_started/jboss_central_icon_06.png"/>
+ </imageobject>
+ </inlinemediaobject> refreshes the <guilabel>Project Examples</guilabel> list.
+ </para>
+ <para>
+ The <guilabel>Documentation</guilabel> section of JBoss Central contains links to help materials such as reference guides, user forums and documentation concerning new features.
+ </para>
+ <figure>
+ <title>Documentation links</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/getting_started/jboss_central_10.png" scale="90"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ If you do not wish to see JBoss Central at every startup, you can deselect the checkbox <guilabel>Show on Startup</guilabel> in the <guilabel>Settings</guilabel> section.
+ </para>
+ <figure>
+ <title>Settings section</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/getting_started/jboss_central_11.png" scale="90"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ The <guilabel>News</guilabel> and <guilabel>Blogs</guilabel> sections are updated automatically, bringing you the latest information concerning JBoss technologies.
+ </para>
+ <figure>
+ <title>News and Blogs sections</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/getting_started/jboss_central_12.png" scale="90"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ </section>
+ <section>
+ <title>Software installation and updates from within JBoss Central</title>
+ <para>
+ The <guilabel>Software/Update</guilabel> tab at the bottom of JBoss Central switches to a screen where you can install and update your software.
+ </para>
+ <figure>
+ <title>Software/Update tab</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/getting_started/jboss_central_13.png" scale="90"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <warning condition="jbds">
+ <para>
+ Some software available through this tab is third-party community software that Red Hat has no control over. Installing third-party software may impact the level of support that Red Hat can provide.
+ </para>
+ </warning>
+ <para>
+ To install or update software, select the checkbox beside one or more components.
+ </para>
+ <figure>
+ <title>Software/Update tab</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/getting_started/jboss_central_14.png" scale="90"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ Once you have selected all the components to update or install, click the <inlinemediaobject>
+ <imageobject>
+ <imagedata fileref="images/getting_started/jboss_central_icon_07.png"/>
+ </imageobject>
+ <textobject>
+ <phrase>Install</phrase>
+ </textobject>
+ </inlinemediaobject> button at the bottom left of the tab window. A screen will then appear offering you the option of deselecting a part of the component if you wish.
+ </para>
+ <figure>
+ <title>Component selection</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/getting_started/jboss_central_15.png" scale="90"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ You will then be asked to confirm the selection of components to install. To accept the selection press the <guibutton>Next</guibutton> button. You can change the components by pressing the <guibutton>Back</guibutton> button.
+ </para>
+ <figure>
+ <title>Component verification</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/getting_started/jboss_central_16.png" scale="90"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ After pressing the <guibutton>Next</guibutton> button you will need to <guilabel>accept the terms of the license agreement</guilabel> for the associated software being installed. To do this select the corresponding radio button.
+ </para>
+ <para>
+ Click <guibutton>Finish</guibutton> to begin installation.
+ </para>
+ <figure>
+ <title>Licenses review</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/getting_started/jboss_central_17.png" scale="90"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ As the installation process takes place you can choose to have further details displayed or run the installation in the background.
+ </para>
+ <figure>
+ <title>Licenses review</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/getting_started/jboss_central_18.png" scale="90"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ After the software has been downloaded, you will be asked to verify the installation of the components if the contents are unsigned. Install unsigned third-party components with discretion.
+ </para>
+ <figure>
+ <title>Installing unsigned content</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/getting_started/jboss_central_19.png" scale="90"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ Once installation is complete, restart JBoss Developer Studio by pressing the <guibutton>Restart Now</guibutton> button that appears.
+ </para>
+ <figure>
+ <title>
+ </title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/getting_started/jboss_central_20.png" scale="90"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+</section>
+</chapter>
\ No newline at end of file
Added: trunk/documentation/guides/GettingStartedGuide/en-US/jboss_perspective.xml
===================================================================
--- trunk/documentation/guides/GettingStartedGuide/en-US/jboss_perspective.xml (rev 0)
+++ trunk/documentation/guides/GettingStartedGuide/en-US/jboss_perspective.xml 2012-02-13 01:48:57 UTC (rev 38644)
@@ -0,0 +1,77 @@
+<chapter id="JBoss_Perspective">
+ <title>JBoss Perspective</title>
+ <para>
+ The JBoss perspective is designed to incorporate the views most often used by developers using JBoss, while also changing standard menu items to reflect what a JBoss devleoper would want and need.
+ </para>
+ <figure>
+ <title>JBoss Perspective</title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/getting_started/jboss_perspective_01.png" scale="90"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ The JBoss perspective views include: <guilabel>Project Explorer</guilabel>, <guilabel>JBoss Central</guilabel>, <guilabel>Outline</guilabel>, <guilabel>Palette</guilabel>, <guilabel>Properties</guilabel> and <guilabel>Servers</guilabel>.
+ </para>
+ <para>
+ Certain menus also see a change in available items. These menus include <menuchoice>
+ <guimenuitem>File</guimenuitem>
+ <guimenuitem>New</guimenuitem>
+ </menuchoice>, <menuchoice>
+ <guimenuitem>Window</guimenuitem>
+ <guimenuitem>Show View</guimenuitem>
+ </menuchoice> and the context menu for a project.
+</para>
+<para>
+ The menu items for <menuchoice>
+ <guimenuitem>File</guimenuitem>
+ <guimenuitem>New</guimenuitem>
+ </menuchoice> can be seen in <xref linkend="figure-jboss_perspective_02" />
+</para>
+<figure id="figure-jboss_perspective_02">
+<title>JBoss Perspective: <menuchoice>
+ <guimenuitem>File</guimenuitem>
+ <guimenuitem>New</guimenuitem>
+</menuchoice>
+</title>
+<mediaobject>
+ <imageobject>
+ <imagedata fileref="images/getting_started/jboss_perspective_02.png" scale="90"/>
+ </imageobject>
+</mediaobject>
+ </figure>
+ <para>
+ The menu items for <menuchoice>
+ <guimenuitem>Window</guimenuitem>
+ <guimenuitem>Show View</guimenuitem>
+ </menuchoice> can be seen in <xref linkend="figure-jboss_perspective_03" />
+ </para>
+ <figure id="figure-jboss_perspective_03">
+ <title>JBoss Perspective: <menuchoice>
+ <guimenuitem>Window</guimenuitem>
+ <guimenuitem>Show View</guimenuitem>
+ </menuchoice>
+ </title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/getting_started/jboss_perspective_03.png" scale="90"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+ <para>
+ The menu items for the context menu of a project can be seen in <xref linkend="figure-jboss_perspective_04" />
+ </para>
+ <figure id="figure-jboss_perspective_04">
+ <title>JBoss Perspective: <menuchoice>
+ <guimenuitem>Window</guimenuitem>
+ <guimenuitem>Show View</guimenuitem>
+ </menuchoice>
+ </title>
+ <mediaobject>
+ <imageobject>
+ <imagedata fileref="images/getting_started/jboss_perspective_04.png" scale="90"/>
+ </imageobject>
+ </mediaobject>
+ </figure>
+</chapter>
\ No newline at end of file
Modified: trunk/documentation/guides/GettingStartedGuide/en-US/master.xml
===================================================================
--- trunk/documentation/guides/GettingStartedGuide/en-US/master.xml 2012-02-11 06:54:37 UTC (rev 38643)
+++ trunk/documentation/guides/GettingStartedGuide/en-US/master.xml 2012-02-13 01:48:57 UTC (rev 38644)
@@ -4,7 +4,9 @@
[
<!ENTITY getting_started SYSTEM "getting_started.xml">
<!ENTITY jbossinstall SYSTEM "jbossinstall.xml">
-<!ENTITY manage SYSTEM "manage.xml">
+<!ENTITY jbosscentral SYSTEM "jboss_central.xml">
+<!ENTITY jbossperspective SYSTEM "jboss_perspective.xml">
+<!ENTITY manage SYSTEM "manage.xml">
<!ENTITY first_seam SYSTEM "first_seam.xml">
<!ENTITY jsp_application SYSTEM "jsp_application.xml">
<!ENTITY rad_jsf_application SYSTEM "rad_jsf_application.xml">
@@ -42,14 +44,14 @@
<title>Getting Started Guide</title>
<copyright>
- <year>2011</year>
+ <year>2012</year>
<holder>JBoss by Red Hat</holder>
</copyright>
- <releaseinfo>Version: 3.3.0.M5</releaseinfo>
+ <releaseinfo>Version: 3.3.0.Beta1</releaseinfo>
<abstract>
<title/>
<para>
- <ulink url="http://download.jboss.org/jbosstools/nightly-docs/en/GettingStartedGuide/...">PDF version</ulink>
+ <!-- <ulink url="http://download.jboss.org/jbosstools/nightly-docs/en/GettingStartedGuide/...">PDF version</ulink> -->
</para>
</abstract>
@@ -61,6 +63,8 @@
<!--&getting_started;-->
&jbossinstall;
+ &jbosscentral;
+ &jbossperspective;
&manage;
&first_seam;
&jsp_application;
14 years, 1 month
JBoss Tools SVN: r38643 - trunk/build/target-platform.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2012-02-11 01:54:37 -0500 (Sat, 11 Feb 2012)
New Revision: 38643
Modified:
trunk/build/target-platform/jbds.target
trunk/build/target-platform/multiple.target
trunk/build/target-platform/unified.target
Log:
bump up to newer m2e-wtp and birt-wtp versions (JBIDE-10659, JBIDE-10834, JBIDE-10867)
Modified: trunk/build/target-platform/jbds.target
===================================================================
--- trunk/build/target-platform/jbds.target 2012-02-11 06:24:07 UTC (rev 38642)
+++ trunk/build/target-platform/jbds.target 2012-02-11 06:54:37 UTC (rev 38643)
@@ -18,7 +18,7 @@
<!-- m2e, m2e-wtp + deps -->
<unit id="org.eclipse.m2e.sdk.feature.feature.group" version="1.0.100.20110804-1717"/>
<unit id="org.eclipse.m2e.feature.feature.group" version="1.0.100.20110804-1717"/>
- <unit id="org.maven.ide.eclipse.wtp.feature.feature.group" version="0.14.0.20110928-2045"/>
+ <unit id="org.maven.ide.eclipse.wtp.feature.feature.group" version="0.15.1.20120208-1300"/>
<unit id="org.sonatype.m2e.mavenarchiver.feature.feature.group" version="0.15.0.201109290002"/>
<unit id="ch.qos.logback.classic" version="0.9.27.v20110224-1110"/>
<unit id="ch.qos.logback.core" version="0.9.27.v20110224-1110"/>
@@ -54,9 +54,9 @@
<!-- Eclipse BPEL -->
<unit id="org.eclipse.bpel.common.feature.feature.group" version="0.8.0.v20120202-0453-H135-CI"/>
- <unit id="org.eclipse.bpel.jboss.riftsaw.runtime.feature.feature.group" version="0.8.0.v20120202-0453-H135-CI"/>
- <unit id="org.eclipse.bpel.apache.ode.runtime.feature.feature.group" version="0.8.0.v20120202-0453-H135-CI"/>
- <unit id="org.eclipse.bpel.feature.feature.group" version="0.8.0.v20120202-0453-H135-CI"/>
+ <unit id="org.eclipse.bpel.jboss.riftsaw.runtime.feature.feature.group" version="0.8.0.v20120202-0453-H135-CI"/>
+ <unit id="org.eclipse.bpel.apache.ode.runtime.feature.feature.group" version="0.8.0.v20120202-0453-H135-CI"/>
+ <unit id="org.eclipse.bpel.feature.feature.group" version="0.8.0.v20120202-0453-H135-CI"/>
<!-- EMF, XSD -->
<unit id="org.eclipse.emf.feature.group" version="2.7.2.v20111031-1121"/>
Modified: trunk/build/target-platform/multiple.target
===================================================================
--- trunk/build/target-platform/multiple.target 2012-02-11 06:24:07 UTC (rev 38642)
+++ trunk/build/target-platform/multiple.target 2012-02-11 06:54:37 UTC (rev 38643)
@@ -20,7 +20,7 @@
<!-- m2e, m2e-wtp + deps -->
<unit id="org.eclipse.m2e.sdk.feature.feature.group" version="1.0.100.20110804-1717"/>
<unit id="org.eclipse.m2e.feature.feature.group" version="1.0.100.20110804-1717"/>
- <unit id="org.maven.ide.eclipse.wtp.feature.feature.group" version="0.14.0.20110928-2045"/>
+ <unit id="org.maven.ide.eclipse.wtp.feature.feature.group" version="0.15.1.20120208-1300"/>
<unit id="org.sonatype.m2e.mavenarchiver.feature.feature.group" version="0.15.0.201109290002"/>
<unit id="ch.qos.logback.classic" version="0.9.27.v20110224-1110"/>
<unit id="ch.qos.logback.core" version="0.9.27.v20110224-1110"/>
@@ -56,9 +56,9 @@
<!-- Eclipse BPEL -->
<unit id="org.eclipse.bpel.common.feature.feature.group" version="0.8.0.v20120202-0453-H135-CI"/>
- <unit id="org.eclipse.bpel.jboss.riftsaw.runtime.feature.feature.group" version="0.8.0.v20120202-0453-H135-CI"/>
- <unit id="org.eclipse.bpel.apache.ode.runtime.feature.feature.group" version="0.8.0.v20120202-0453-H135-CI"/>
- <unit id="org.eclipse.bpel.feature.feature.group" version="0.8.0.v20120202-0453-H135-CI"/>
+ <unit id="org.eclipse.bpel.jboss.riftsaw.runtime.feature.feature.group" version="0.8.0.v20111120-0746-H98-CI"/>
+ <unit id="org.eclipse.bpel.apache.ode.runtime.feature.feature.group" version="0.8.0.v20111120-0746-H98-CI"/>
+ <unit id="org.eclipse.bpel.feature.feature.group" version="0.8.0.v20111120-0746-H98-CI"/>
<!-- EMF, XSD -->
<unit id="org.eclipse.emf.workspace.feature.group" version="1.5.1.v20110823-1800-37708s734D3C7D3CCC1"/>
@@ -306,9 +306,9 @@
<!-- BIRT -->
<unit id="org.eclipse.birt.osgi.runtime.sdk.feature.group" version="3.7.0.v20110905-777D186vH9ByS6g9QJbm7yp7gZp-"/>
<unit id="org.eclipse.birt.feature.group" version="3.7.1.v20110905-BDF9E8OGTzuHfoz-Au7-CWvXDn6N"/>
- <unit id="org.eclipse.birt.integration.wtp.feature.group" version="3.7.1.v20110905-1820-4607w31221A1602931"/>
+ <unit id="org.eclipse.birt.integration.wtp.feature.group" version="3.7.2.v20120206-1857-4617w3123131702968"/>
<unit id="org.eclipse.birt.chart.feature.group" version="3.7.1.v20110905-7r9e7DFQCnvKN75--lXE5"/>
- <unit id="org.eclipse.birt.chart.integration.wtp.feature.group" version="3.7.1.v20110905-1820-4607w31221A1602931"/>
+ <unit id="org.eclipse.birt.chart.integration.wtp.feature.group" version="3.7.2.v20120206-1857-4617w3123131702968"/>
<!-- GWT/GPE dependencies (include only those which are EPL or other OSS licensed!) -->
<unit id="com.google.gdt.eclipse.suite.e37.feature.feature.group" version="2.5.1.v201201120043-rel-r37"/>
@@ -339,4 +339,4 @@
<feature id="org.mozilla.xpcom.feature"/>
</includeBundles>
<targetJRE path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
-</target>
+</target>
\ No newline at end of file
Modified: trunk/build/target-platform/unified.target
===================================================================
--- trunk/build/target-platform/unified.target 2012-02-11 06:24:07 UTC (rev 38642)
+++ trunk/build/target-platform/unified.target 2012-02-11 06:54:37 UTC (rev 38643)
@@ -20,7 +20,7 @@
<!-- m2e, m2e-wtp + deps -->
<unit id="org.eclipse.m2e.sdk.feature.feature.group" version="1.0.100.20110804-1717"/>
<unit id="org.eclipse.m2e.feature.feature.group" version="1.0.100.20110804-1717"/>
- <unit id="org.maven.ide.eclipse.wtp.feature.feature.group" version="0.14.0.20110928-2045"/>
+ <unit id="org.maven.ide.eclipse.wtp.feature.feature.group" version="0.15.1.20120208-1300"/>
<unit id="org.sonatype.m2e.mavenarchiver.feature.feature.group" version="0.15.0.201109290002"/>
<unit id="ch.qos.logback.classic" version="0.9.27.v20110224-1110"/>
<unit id="ch.qos.logback.core" version="0.9.27.v20110224-1110"/>
@@ -56,9 +56,9 @@
<!-- Eclipse BPEL -->
<unit id="org.eclipse.bpel.common.feature.feature.group" version="0.8.0.v20120202-0453-H135-CI"/>
- <unit id="org.eclipse.bpel.jboss.riftsaw.runtime.feature.feature.group" version="0.8.0.v20120202-0453-H135-CI"/>
- <unit id="org.eclipse.bpel.apache.ode.runtime.feature.feature.group" version="0.8.0.v20120202-0453-H135-CI"/>
- <unit id="org.eclipse.bpel.feature.feature.group" version="0.8.0.v20120202-0453-H135-CI"/>
+ <unit id="org.eclipse.bpel.jboss.riftsaw.runtime.feature.feature.group" version="0.8.0.v20111120-0746-H98-CI"/>
+ <unit id="org.eclipse.bpel.apache.ode.runtime.feature.feature.group" version="0.8.0.v20111120-0746-H98-CI"/>
+ <unit id="org.eclipse.bpel.feature.feature.group" version="0.8.0.v20111120-0746-H98-CI"/>
<!-- EMF, XSD -->
<unit id="org.eclipse.emf.workspace.feature.group" version="1.5.1.v20110823-1800-37708s734D3C7D3CCC1"/>
@@ -306,9 +306,9 @@
<!-- BIRT -->
<unit id="org.eclipse.birt.osgi.runtime.sdk.feature.group" version="3.7.0.v20110905-777D186vH9ByS6g9QJbm7yp7gZp-"/>
<unit id="org.eclipse.birt.feature.group" version="3.7.1.v20110905-BDF9E8OGTzuHfoz-Au7-CWvXDn6N"/>
- <unit id="org.eclipse.birt.integration.wtp.feature.group" version="3.7.1.v20110905-1820-4607w31221A1602931"/>
+ <unit id="org.eclipse.birt.integration.wtp.feature.group" version="3.7.2.v20120206-1857-4617w3123131702968"/>
<unit id="org.eclipse.birt.chart.feature.group" version="3.7.1.v20110905-7r9e7DFQCnvKN75--lXE5"/>
- <unit id="org.eclipse.birt.chart.integration.wtp.feature.group" version="3.7.1.v20110905-1820-4607w31221A1602931"/>
+ <unit id="org.eclipse.birt.chart.integration.wtp.feature.group" version="3.7.2.v20120206-1857-4617w3123131702968"/>
<!-- GWT/GPE dependencies (include only those which are EPL or other OSS licensed!) -->
<unit id="com.google.gdt.eclipse.suite.e37.feature.feature.group" version="2.5.1.v201201120043-rel-r37"/>
@@ -339,4 +339,4 @@
<feature id="org.mozilla.xpcom.feature"/>
</includeBundles>
<targetJRE path="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-1.6"/>
-</target>
+</target>
\ No newline at end of file
14 years, 1 month
JBoss Tools SVN: r38640 - trunk/jsf/tests/org.jboss.tools.jsf.test/projects/jsf2pr/WebContent/WEB-INF/lib.
by jbosstools-commits@lists.jboss.org
Author: akazakov
Date: 2012-02-10 21:12:13 -0500 (Fri, 10 Feb 2012)
New Revision: 38640
Added:
trunk/jsf/tests/org.jboss.tools.jsf.test/projects/jsf2pr/WebContent/WEB-INF/lib/jsf-api-2.jar
Log:
https://issues.jboss.org/browse/JBIDE-10872 EL incremental validation doesn't work for complex ELs.
Added: trunk/jsf/tests/org.jboss.tools.jsf.test/projects/jsf2pr/WebContent/WEB-INF/lib/jsf-api-2.jar
===================================================================
(Binary files differ)
Property changes on: trunk/jsf/tests/org.jboss.tools.jsf.test/projects/jsf2pr/WebContent/WEB-INF/lib/jsf-api-2.jar
___________________________________________________________________
Added: svn:mime-type
+ application/octet-stream
14 years, 1 month