JBoss Tools SVN: r20249 - workspace.
by jbosstools-commits@lists.jboss.org
Author: snjeza
Date: 2010-02-11 15:15:57 -0500 (Thu, 11 Feb 2010)
New Revision: 20249
Added:
workspace/m2eclipse0.10/
Log:
Initial import.
16 years, 2 months
JBoss Tools SVN: r20248 - in trunk: jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/JavaSource/jbide5818 and 6 other directories.
by jbosstools-commits@lists.jboss.org
Author: yradtsevich
Date: 2010-02-11 12:53:22 -0500 (Thu, 11 Feb 2010)
New Revision: 20248
Added:
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/JavaSource/jbide5818/
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/JavaSource/jbide5818/MessagesJBIDE5818.properties
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/JBIDE/5818/
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/JBIDE/5818/JBIDE-5818.xhtml
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/src/org/jboss/tools/jsf/vpe/jsf/test/jbide/ChangeMessageBundleTest_JBIDE5818.java
Modified:
trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/src/org/jboss/tools/jsf/vpe/jsf/test/JsfAllTests.java
trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/bundle/BundleMap.java
trunk/vpe/tests/org.jboss.tools.vpe.ui.test/src/org/jboss/tools/vpe/ui/test/TestUtil.java
Log:
https://jira.jboss.org/jira/browse/JBIDE-5818
VPE throws java.util.ConcurrentModificationException
- fixed
- JUnit created
Added: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/JavaSource/jbide5818/MessagesJBIDE5818.properties
===================================================================
Added: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/JBIDE/5818/JBIDE-5818.xhtml
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/JBIDE/5818/JBIDE-5818.xhtml (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/resources/jsfTest/WebContent/pages/JBIDE/5818/JBIDE-5818.xhtml 2010-02-11 17:53:22 UTC (rev 20248)
@@ -0,0 +1,23 @@
+<html xmlns:f="http://java.sun.com/jsf/core"
+ xmlns:h="http://java.sun.com/jsf/html">
+ <head>
+ <title>Input User Name Page</title>
+ </head>
+ <body>
+ <f:view>
+ <f:loadBundle var="Message" basename="jbide5818.MessagesJBIDE5818"></f:loadBundle>
+ <h1><h:outputText value="#{Message.header}"/></h1>
+
+ <h:messages style="color: red"/>
+
+ <h:form id="greetingForm">
+ <h:outputText value="#{Message.prompt_message}"/>
+ <h:inputText value="#{user.name}" required="true">
+ <f:validateLength maximum="30" minimum="3"/>
+ </h:inputText>
+
+ <h:commandButton action="hello" value="Say Hello!" />
+ </h:form>
+ </f:view>
+ </body>
+</html>
Modified: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/src/org/jboss/tools/jsf/vpe/jsf/test/JsfAllTests.java
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/src/org/jboss/tools/jsf/vpe/jsf/test/JsfAllTests.java 2010-02-11 17:51:14 UTC (rev 20247)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/src/org/jboss/tools/jsf/vpe/jsf/test/JsfAllTests.java 2010-02-11 17:53:22 UTC (rev 20248)
@@ -16,6 +16,7 @@
import junit.framework.Test;
import junit.framework.TestSuite;
+import org.jboss.tools.jsf.vpe.jsf.test.jbide.ChangeMessageBundleTest_JBIDE5818;
import org.jboss.tools.jsf.vpe.jsf.test.jbide.ContextMenuDoubleInsertionTest_JBIDE3888;
import org.jboss.tools.jsf.vpe.jsf.test.jbide.FacetProcessingTest;
import org.jboss.tools.jsf.vpe.jsf.test.jbide.JBIDE1105Test;
@@ -121,6 +122,7 @@
TestSuite suite = new TestSuite("Tests for Vpe Jsf components"); //$NON-NLS-1$
// $JUnit-BEGIN$
+ suite.addTestSuite(ChangeMessageBundleTest_JBIDE5818.class);
suite.addTestSuite(TestForUsingComponentsLibrariesWithDefaultNamespace.class);
suite.addTestSuite(EditingSPecialSymbolsVPE_JBIDE3810.class);
suite.addTestSuite(OpenOnJsf20Test_JBIDE5382.class);
Added: trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/src/org/jboss/tools/jsf/vpe/jsf/test/jbide/ChangeMessageBundleTest_JBIDE5818.java
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/src/org/jboss/tools/jsf/vpe/jsf/test/jbide/ChangeMessageBundleTest_JBIDE5818.java (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.vpe.jsf.test/src/org/jboss/tools/jsf/vpe/jsf/test/jbide/ChangeMessageBundleTest_JBIDE5818.java 2010-02-11 17:53:22 UTC (rev 20248)
@@ -0,0 +1,86 @@
+/*******************************************************************************
+ * Copyright (c) 2007-2009 Red Hat, Inc.
+ * Distributed under license by Red Hat, Inc. All rights reserved.
+ * This program is made available under the terms of the
+ * Eclipse Public License v1.0 which accompanies this distribution,
+ * and is available at http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributor:
+ * Red Hat, Inc. - initial API and implementation
+ ******************************************************************************/
+package org.jboss.tools.jsf.vpe.jsf.test.jbide;
+
+import org.eclipse.core.resources.IFile;
+import org.eclipse.core.runtime.CoreException;
+import org.eclipse.core.runtime.NullProgressMonitor;
+import org.eclipse.swt.custom.StyledText;
+import org.eclipse.swt.widgets.Control;
+import org.eclipse.ui.IEditorInput;
+import org.eclipse.ui.PlatformUI;
+import org.eclipse.ui.editors.text.TextEditor;
+import org.eclipse.ui.part.FileEditorInput;
+import org.jboss.tools.jsf.vpe.jsf.test.JsfAllTests;
+import org.jboss.tools.vpe.ui.test.TestUtil;
+import org.jboss.tools.vpe.ui.test.VpeTest;
+
+/**
+ * @author yradtsevich
+ *
+ */
+public class ChangeMessageBundleTest_JBIDE5818 extends VpeTest {
+ private static final String TEST_PAGE_NAME = "JBIDE/5818/JBIDE-5818.xhtml";
+ private static final String PROPERTIES_FILE_NAME = "JavaSource/jbide5818/MessagesJBIDE5818.properties";
+ private static final String PROPERTIES_EDITOR_ID = "org.eclipse.ui.DefaultTextEditor";
+
+ public ChangeMessageBundleTest_JBIDE5818(String name) {
+ super(name);
+ }
+
+ /**
+ * Test for <a href="http://jira.jboss.org/jira/browse/JBIDE-5818">JBIDE-5818</a>.
+ */
+ public void testRemoveAllBundleMessages() throws Throwable {
+ setException(null);
+
+ /* Initialize the message bundle with three messages
+ * which are used on the test page */
+ replaceFileContent(PROPERTIES_FILE_NAME,
+ "header=Hello Demo Application\n"
+ + "prompt_message=Name:\n"
+ + "hello_message=Hello\n");
+
+ // Open the test page first time
+ openInVpe(JsfAllTests.IMPORT_PROJECT_NAME, TEST_PAGE_NAME);
+ TestUtil.waitForIdle();
+
+ // Remove all messages from the message bundle
+ replaceFileContent(PROPERTIES_FILE_NAME, "");
+
+ /* Open the test page second time.
+ * The java.util.ConcurrentModificationException may be thrown here.*/
+ openInVpe(JsfAllTests.IMPORT_PROJECT_NAME, TEST_PAGE_NAME);
+ TestUtil.waitForIdle();
+
+ if (getException() != null) {
+ throw new RuntimeException(getException());
+ }
+ }
+
+ /**
+ * Opens the specified file by text editor, replaces its content
+ * with {@code newContent} and saves it.
+ */
+ private TextEditor replaceFileContent(final String path,
+ final String newContent) throws CoreException {
+ IFile elementPageFile = (IFile) TestUtil.getResource(path, JsfAllTests.IMPORT_PROJECT_NAME);
+ IEditorInput input = new FileEditorInput(elementPageFile);
+ TextEditor editor = (TextEditor)
+ PlatformUI.getWorkbench().getActiveWorkbenchWindow()
+ .getActivePage().openEditor(input, PROPERTIES_EDITOR_ID, true);
+ assertNotNull(editor);
+ StyledText propertiesStyledText = (StyledText) editor.getAdapter(Control.class);
+ propertiesStyledText.setText(newContent);
+ editor.doSave(new NullProgressMonitor());
+ return editor;
+ }
+}
Modified: trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/bundle/BundleMap.java
===================================================================
--- trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/bundle/BundleMap.java 2010-02-11 17:51:14 UTC (rev 20247)
+++ trunk/vpe/plugins/org.jboss.tools.vpe/src/org/jboss/tools/vpe/editor/bundle/BundleMap.java 2010-02-11 17:53:22 UTC (rev 20248)
@@ -14,6 +14,7 @@
import java.io.IOException;
import java.net.URL;
import java.net.URLClassLoader;
+import java.util.ArrayList;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
@@ -363,9 +364,15 @@
private void refreshUsedKeys(){
UsedKey keyValue;
+
+
+ /* yradtsevich: Fix of JBIDE-5818. The map usedKey cannot be modified
+ * in the following foreach loop. Therefore the keys to remove
+ * are marked and removed after the loop. */
+ List<String> keysToBeRemoved = new ArrayList<String>(0);
+
Set<String> usedKeysSet = this.usedKeys.keySet();
-
- for(String key:usedKeysSet){
+ for(String key : usedKeysSet){
keyValue =this.usedKeys.get(key);
BundleEntry entry = getBundle(keyValue.prefix);
if(entry != null){
@@ -375,7 +382,8 @@
}catch(MissingResourceException ex){
value = null;
fireBundleKeyChanged(keyValue.prefix, keyValue.key, value);
- this.usedKeys.remove(key);
+ // Fix of JBIDE-5818
+ keysToBeRemoved.add(key);
continue;
}
if((value == null && keyValue.value != null) || (value != null && keyValue.value == null)){
@@ -392,6 +400,11 @@
fireBundleKeyChanged(keyValue.prefix, keyValue.key, null);
}
}
+
+ // Fix of JBIDE-5818
+ for (String key : keysToBeRemoved) {
+ this.usedKeys.remove(key);
+ }
}
private List<ELInstance> parseJSFExpression(String expression){
Modified: trunk/vpe/tests/org.jboss.tools.vpe.ui.test/src/org/jboss/tools/vpe/ui/test/TestUtil.java
===================================================================
--- trunk/vpe/tests/org.jboss.tools.vpe.ui.test/src/org/jboss/tools/vpe/ui/test/TestUtil.java 2010-02-11 17:51:14 UTC (rev 20247)
+++ trunk/vpe/tests/org.jboss.tools.vpe.ui.test/src/org/jboss/tools/vpe/ui/test/TestUtil.java 2010-02-11 17:53:22 UTC (rev 20248)
@@ -96,7 +96,18 @@
return null;
}
+
+ public static IResource getResource(String path,
+ String projectName) throws CoreException {
+ IProject project = ResourcesPlugin.getWorkspace().getRoot().getProject(
+ projectName);
+ if (project != null) {
+ return project.findMember(path);
+ }
+ return null;
+ }
+
/**
* Gets the web content path.
*
16 years, 2 months
JBoss Tools SVN: r20247 - in trunk/as/docs/reference/en: modules and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: smukhina
Date: 2010-02-11 12:51:14 -0500 (Thu, 11 Feb 2010)
New Revision: 20247
Modified:
trunk/as/docs/reference/en/images/perspective/perspective_7.png
trunk/as/docs/reference/en/images/perspective/server_classpaths.png
trunk/as/docs/reference/en/modules/perspective.xml
Log:
https://jira.jboss.org/jira/browse/JBDS-1013 Possibility to change Server Main Class added -section and screens updated
Modified: trunk/as/docs/reference/en/images/perspective/perspective_7.png
===================================================================
(Binary files differ)
Modified: trunk/as/docs/reference/en/images/perspective/server_classpaths.png
===================================================================
(Binary files differ)
Modified: trunk/as/docs/reference/en/modules/perspective.xml
===================================================================
--- trunk/as/docs/reference/en/modules/perspective.xml 2010-02-11 16:49:32 UTC (rev 20246)
+++ trunk/as/docs/reference/en/modules/perspective.xml 2010-02-11 17:51:14 UTC (rev 20247)
@@ -782,7 +782,7 @@
modify the server's launch configuration. It's just after clicking <emphasis>
<property>Open launch configuration</property>
</emphasis> link. In the open window there are the tabs for setting command line
- arguments, classpaths and other things that are relevant to launching the
+ arguments, main, classpaths and other things that are relevant to launching the
server.</para>
<figure>
@@ -793,7 +793,9 @@
</imageobject>
</mediaobject>
</figure>
-
+
+
+ <para>The first tab shows the Jboss server arguments</para>
<para>Look up <ulink
url="http://docs.jboss.org/jbossas/guides/installguide/r1/en/html/start-stop.html"
>AS Installation Guide </ulink> to find parameters which can be specified for <property>JBoss
@@ -815,6 +817,8 @@
<para>Values are not controlled by the server and its runtime setup will be passed
on unaltered.</para>
</note>
+
+ <para>On the second tab you find the main class used for launching JBoss AS (default is org.jboss.Main), you can change it, if necessary. </para>
<para>Until 3.0.0.GA release of <property>JBoss Tools</property>, the servers classpath
was readonly, but that caused problems for users wanting to add their own jars in
16 years, 2 months
JBoss Tools SVN: r20246 - trunk/hibernatetools/features/org.hibernate.eclipse.test.feature.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-02-11 11:49:32 -0500 (Thu, 11 Feb 2010)
New Revision: 20246
Modified:
trunk/hibernatetools/features/org.hibernate.eclipse.test.feature/feature.xml
Log:
https://jira.jboss.org/jira/browse/JBIDE-4959: Hibernate Tools SDK & Athena Builder - remove not-yet-enabled-in-uberbuilder plugins
Modified: trunk/hibernatetools/features/org.hibernate.eclipse.test.feature/feature.xml
===================================================================
--- trunk/hibernatetools/features/org.hibernate.eclipse.test.feature/feature.xml 2010-02-11 16:33:38 UTC (rev 20245)
+++ trunk/hibernatetools/features/org.hibernate.eclipse.test.feature/feature.xml 2010-02-11 16:49:32 UTC (rev 20246)
@@ -26,7 +26,9 @@
<plugin id="org.hibernate.eclipse.console.test" download-size="0" install-size="0" version="0.0.0" />
<plugin id="org.hibernate.eclipse.jdt.ui.test" download-size="0" install-size="0" version="0.0.0" />
- <plugin id="org.jboss.tools.hibernate.jpt.core.test" download-size="0" install-size="0" version="0.0.0" />
- <plugin id="org.jboss.tools.hibernate.ui.bot.test" download-size="0" install-size="0" version="0.0.0" />
+ <!-- not yet enabled / built -->
+ <!-- <plugin id="org.jboss.tools.hibernate.jpt.core.test" download-size="0" install-size="0" version="0.0.0" /> -->
+ <!-- <plugin id="org.jboss.tools.hibernate.ui.bot.test" download-size="0" install-size="0" version="0.0.0" /> -->
+
<plugin id="org.jboss.tools.hibernate.ui.test" download-size="0" install-size="0" version="0.0.0" />
</feature>
16 years, 2 months
JBoss Tools SVN: r20245 - trunk/seam/tests/org.jboss.tools.seam.core.test/src/org/jboss/tools/seam/core/test/refactoring.
by jbosstools-commits@lists.jboss.org
Author: dazarov
Date: 2010-02-11 11:33:38 -0500 (Thu, 11 Feb 2010)
New Revision: 20245
Modified:
trunk/seam/tests/org.jboss.tools.seam.core.test/src/org/jboss/tools/seam/core/test/refactoring/SeamComponentRefactoringTest.java
Log:
https://jira.jboss.org/jira/browse/JBIDE-5833
Modified: trunk/seam/tests/org.jboss.tools.seam.core.test/src/org/jboss/tools/seam/core/test/refactoring/SeamComponentRefactoringTest.java
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam.core.test/src/org/jboss/tools/seam/core/test/refactoring/SeamComponentRefactoringTest.java 2010-02-11 16:14:21 UTC (rev 20244)
+++ trunk/seam/tests/org.jboss.tools.seam.core.test/src/org/jboss/tools/seam/core/test/refactoring/SeamComponentRefactoringTest.java 2010-02-11 16:33:38 UTC (rev 20245)
@@ -81,18 +81,18 @@
renameComponent(seamEjbProject, "test", "best", list, false);
}
- public void testRemaningMailSessionDeclarationInComponentsXml_JBIDE4447() throws CoreException {
- ArrayList<TestChangeStructure> list = new ArrayList<TestChangeStructure>();
+// public void testRemaningMailSessionDeclarationInComponentsXml_JBIDE4447() throws CoreException {
+// ArrayList<TestChangeStructure> list = new ArrayList<TestChangeStructure>();
+//
+// TestChangeStructure structure = new TestChangeStructure(warProject, "/WebContent/WEB-INF/components.xml");
+// TestTextChange change = new TestTextChange(2345, 41, "name=\"org.jboss.seam.mail.newMailSession\"");
+// structure.addTextChange(change);
+//
+// list.add(structure);
+//
+// renameComponent(seamWarProject, "org.jboss.seam.mail.mailSession", "org.jboss.seam.mail.newMailSession", list, true);
+// }
- TestChangeStructure structure = new TestChangeStructure(warProject, "/WebContent/WEB-INF/components.xml");
- TestTextChange change = new TestTextChange(2345, 41, "name=\"org.jboss.seam.mail.newMailSession\"");
- structure.addTextChange(change);
-
- list.add(structure);
-
- renameComponent(seamWarProject, "org.jboss.seam.mail.mailSession", "org.jboss.seam.mail.newMailSession", list, true);
- }
-
private void renameComponent(ISeamProject seamProject, String componentName, String newName, List<TestChangeStructure> changeList, boolean fromJar) throws CoreException{
JobUtils.waitForIdle();
16 years, 2 months
JBoss Tools SVN: r20244 - trunk/hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test/META-INF.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-02-11 11:14:21 -0500 (Thu, 11 Feb 2010)
New Revision: 20244
Modified:
trunk/hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test/META-INF/MANIFEST.MF
Log:
https://jira.jboss.org/jira/browse/JBIDE-4959: Hibernate Tools SDK & Athena Builder - remove dupe entries
Modified: trunk/hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test/META-INF/MANIFEST.MF 2010-02-11 16:13:46 UTC (rev 20243)
+++ trunk/hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test/META-INF/MANIFEST.MF 2010-02-11 16:14:21 UTC (rev 20244)
@@ -16,8 +16,6 @@
org.eclipse.swtbot.eclipse.ui;bundle-version="2.0.0",
org.eclipse.swtbot.junit4_x;bundle-version="2.0.0",
org.eclipse.swtbot.swt.finder;bundle-version="2.0.0",
- org.jboss.tools.ui.bot.ext,
- org.eclipse.jdt.ui,
org.jboss.tools.hibernate.ui;bundle-version="3.3.0",
org.jboss.tools.hibernate.xml.ui;bundle-version="3.1.0",
org.jboss.tools.common.model.ui;bundle-version="3.1.0",
16 years, 2 months
JBoss Tools SVN: r20243 - trunk/hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test/META-INF.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-02-11 11:13:46 -0500 (Thu, 11 Feb 2010)
New Revision: 20243
Modified:
trunk/hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test/META-INF/MANIFEST.MF
Log:
https://jira.jboss.org/jira/browse/JBIDE-4959: Hibernate Tools SDK & Athena Builder - remove version range from req on o.j.t.ui.bot.test
Modified: trunk/hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test/META-INF/MANIFEST.MF
===================================================================
--- trunk/hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test/META-INF/MANIFEST.MF 2010-02-11 15:40:09 UTC (rev 20242)
+++ trunk/hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test/META-INF/MANIFEST.MF 2010-02-11 16:13:46 UTC (rev 20243)
@@ -8,7 +8,7 @@
org.eclipse.core.runtime,
org.junit4,
org.apache.log4j;bundle-version="1.2.13",
- org.jboss.tools.ui.bot.ext;bundle-version="1.0.0",
+ org.jboss.tools.ui.bot.ext,
org.eclipse.jdt.ui,
org.eclipse.swtbot.eclipse.core;bundle-version="2.0.0",
org.eclipse.swtbot.eclipse.finder;bundle-version="2.0.0",
@@ -16,7 +16,7 @@
org.eclipse.swtbot.eclipse.ui;bundle-version="2.0.0",
org.eclipse.swtbot.junit4_x;bundle-version="2.0.0",
org.eclipse.swtbot.swt.finder;bundle-version="2.0.0",
- org.jboss.tools.ui.bot.ext;bundle-version="1.0.0",
+ org.jboss.tools.ui.bot.ext,
org.eclipse.jdt.ui,
org.jboss.tools.hibernate.ui;bundle-version="3.3.0",
org.jboss.tools.hibernate.xml.ui;bundle-version="3.1.0",
16 years, 2 months
JBoss Tools SVN: r20242 - trunk/hibernatetools/releng/psfs.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-02-11 10:40:09 -0500 (Thu, 11 Feb 2010)
New Revision: 20242
Modified:
trunk/hibernatetools/releng/psfs/project.subclipse.psf
trunk/hibernatetools/releng/psfs/project.subversive.psf
Log:
Modified: trunk/hibernatetools/releng/psfs/project.subclipse.psf
===================================================================
--- trunk/hibernatetools/releng/psfs/project.subclipse.psf 2010-02-11 15:38:05 UTC (rev 20241)
+++ trunk/hibernatetools/releng/psfs/project.subclipse.psf 2010-02-11 15:40:09 UTC (rev 20242)
@@ -29,7 +29,6 @@
<project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/hibernatetools/test..."/>
<project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/hibernatetools/test..."/>
-
<project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/hibernatetools/test..."/>
<project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/hibernatetools/test..."/>
<project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/hibernatetools/test..."/>
Modified: trunk/hibernatetools/releng/psfs/project.subversive.psf
===================================================================
--- trunk/hibernatetools/releng/psfs/project.subversive.psf 2010-02-11 15:38:05 UTC (rev 20241)
+++ trunk/hibernatetools/releng/psfs/project.subversive.psf 2010-02-11 15:40:09 UTC (rev 20242)
@@ -29,7 +29,6 @@
<project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/hibernatetools/test..."/>
<project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/hibernatetools/test..."/>
-
<project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/hibernatetools/test..."/>
<project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/hibernatetools/test..."/>
<project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/hibernatetools/test..."/>
16 years, 2 months
JBoss Tools SVN: r20241 - in trunk/hibernatetools/releng: psfs and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-02-11 10:38:05 -0500 (Thu, 11 Feb 2010)
New Revision: 20241
Modified:
trunk/hibernatetools/releng/maps/project.map
trunk/hibernatetools/releng/maps/test.common.map
trunk/hibernatetools/releng/psfs/test.common.subclipse.psf
trunk/hibernatetools/releng/psfs/test.common.subversive.psf
Log:
https://jira.jboss.org/jira/browse/JBIDE-4959 updated maps and psfs
Modified: trunk/hibernatetools/releng/maps/project.map
===================================================================
--- trunk/hibernatetools/releng/maps/project.map 2010-02-11 15:30:43 UTC (rev 20240)
+++ trunk/hibernatetools/releng/maps/project.map 2010-02-11 15:38:05 UTC (rev 20241)
@@ -25,7 +25,6 @@
plugin@org.hibernate.eclipse.console.test=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/hibernatetools/tests/org.hibernate.eclipse.console.test
plugin@org.hibernate.eclipse.jdt.ui.test=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/hibernatetools/tests/org.hibernate.eclipse.jdt.ui.test
-
plugin@org.jboss.tools.hibernate.jpt.core.test=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/hibernatetools/tests/org.jboss.tools.hibernate.jpt.core.test
plugin@org.jboss.tools.hibernate.ui.bot.test=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/hibernatetools/tests/org.jboss.tools.hibernate.ui.bot.test
plugin@org.jboss.tools.hibernate.ui.test=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/hibernatetools/tests/org.jboss.tools.hibernate.ui.test
Modified: trunk/hibernatetools/releng/maps/test.common.map
===================================================================
--- trunk/hibernatetools/releng/maps/test.common.map 2010-02-11 15:30:43 UTC (rev 20240)
+++ trunk/hibernatetools/releng/maps/test.common.map 2010-02-11 15:38:05 UTC (rev 20241)
@@ -3,3 +3,4 @@
plugin@org.jboss.tools.common.test=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/common/tests/org.jboss.tools.common.test
plugin@org.jboss.tools.tests=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/tests/tests/org.jboss.tools.tests
+plugin@org.jboss.tools.ui.bot.ext=SVN,,http://anonsvn.jboss.org/repos,,jbosstools/trunk/jst/tests/org.jboss.tools.ui.bot.ext
\ No newline at end of file
Modified: trunk/hibernatetools/releng/psfs/test.common.subclipse.psf
===================================================================
--- trunk/hibernatetools/releng/psfs/test.common.subclipse.psf 2010-02-11 15:30:43 UTC (rev 20240)
+++ trunk/hibernatetools/releng/psfs/test.common.subclipse.psf 2010-02-11 15:38:05 UTC (rev 20241)
@@ -7,6 +7,6 @@
<project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/common/tests/org.jb..."/>
<project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/tests/tests/org.jbo..."/>
-
+ <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/jst/tests/org.jboss..."/>
</provider>
</psf>
Modified: trunk/hibernatetools/releng/psfs/test.common.subversive.psf
===================================================================
--- trunk/hibernatetools/releng/psfs/test.common.subversive.psf 2010-02-11 15:30:43 UTC (rev 20240)
+++ trunk/hibernatetools/releng/psfs/test.common.subversive.psf 2010-02-11 15:38:05 UTC (rev 20241)
@@ -7,6 +7,6 @@
<project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/common/tests/org.jb..."/>
<project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/tests/tests/org.jbo..."/>
-
+ <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/jst/tests/org.jboss..."/>
</provider>
</psf>
16 years, 2 months
JBoss Tools SVN: r20240 - workspace/grid/esb-example.
by jbosstools-commits@lists.jboss.org
Author: bfitzpat
Date: 2010-02-11 10:30:43 -0500 (Thu, 11 Feb 2010)
New Revision: 20240
Modified:
workspace/grid/esb-example/HelloWorld.zip
workspace/grid/esb-example/Simple_Correlation.zip
Log:
OPEN - issue JBIDE-5830: BPEL Project Examples use wrong folder for BPEL resources
https://jira.jboss.org/jira/browse/JBIDE-5830
Modified: workspace/grid/esb-example/HelloWorld.zip
===================================================================
(Binary files differ)
Modified: workspace/grid/esb-example/Simple_Correlation.zip
===================================================================
(Binary files differ)
16 years, 2 months