JBoss Tools SVN: r42328 - 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: 2012-06-29 17:56:30 -0400 (Fri, 29 Jun 2012)
New Revision: 42328
Modified:
trunk/seam/tests/org.jboss.tools.seam.core.test/src/org/jboss/tools/seam/core/test/refactoring/SeamPropertyRefactoringTest.java
Log:
org.jboss.tools.seam.core.test.refactoring.SeamPropertyRefactoringTest failure https://issues.jboss.org/browse/JBIDE-12267
Modified: trunk/seam/tests/org.jboss.tools.seam.core.test/src/org/jboss/tools/seam/core/test/refactoring/SeamPropertyRefactoringTest.java
===================================================================
--- trunk/seam/tests/org.jboss.tools.seam.core.test/src/org/jboss/tools/seam/core/test/refactoring/SeamPropertyRefactoringTest.java 2012-06-29 20:27:46 UTC (rev 42327)
+++ trunk/seam/tests/org.jboss.tools.seam.core.test/src/org/jboss/tools/seam/core/test/refactoring/SeamPropertyRefactoringTest.java 2012-06-29 21:56:30 UTC (rev 42328)
@@ -265,7 +265,12 @@
HashMap<String, String> preferences = new HashMap<String, String>();
preferences.put(ISeamFacetDataModelProperties.WEB_CONTENTS_FOLDER, "/RefactoringTestProject-war/"+viewFolderParentName+"/WebContent");
- moveFolder(viewFolderPath, "/" + warProjectName + "/" + viewFolderParentName, preferences);
+ try{
+ moveFolder(viewFolderPath, "/" + warProjectName + "/" + viewFolderParentName, preferences);
+ }finally{
+ viewFolderParentName = "webroot";
+ updateFields();
+ }
}
private void updateFields() {
@@ -380,18 +385,18 @@
checkRename(processor, project, newProjectName, participant, preferences);
}
- private void performRename(RenameSupport support) throws CoreException {
- Shell parent = WorkbenchUtils.getActiveShell();
- IWorkbenchWindow context = WorkbenchUtils.getWorkbench().getActiveWorkbenchWindow();
- try {
- support.perform(parent, context);
- } catch (InterruptedException e) {
- JUnitUtils.fail("Rename failed", e);
- } catch (InvocationTargetException e) {
- JUnitUtils.fail("Rename failed", e);
- }
- JobUtils.waitForIdle();
- }
+// private void performRename(RenameSupport support) throws CoreException {
+// Shell parent = WorkbenchUtils.getActiveShell();
+// IWorkbenchWindow context = WorkbenchUtils.getWorkbench().getActiveWorkbenchWindow();
+// try {
+// support.perform(parent, context);
+// } catch (InterruptedException e) {
+// JUnitUtils.fail("Rename failed", e);
+// } catch (InvocationTargetException e) {
+// JUnitUtils.fail("Rename failed", e);
+// }
+// JobUtils.waitForIdle();
+// }
private void moveFolder(String folderPath, String destinationFolderPath, HashMap<String, String> preferences) throws CoreException {
IResource resource = ResourcesPlugin.getWorkspace().getRoot().findMember(folderPath);
12 years, 3 months
JBoss Tools SVN: r42327 - trunk/jsf/tests/org.jboss.tools.jsf.test/src/org/jboss/tools/jsf/test.
by jbosstools-commits@lists.jboss.org
Author: dazarov
Date: 2012-06-29 16:27:46 -0400 (Fri, 29 Jun 2012)
New Revision: 42327
Modified:
trunk/jsf/tests/org.jboss.tools.jsf.test/src/org/jboss/tools/jsf/test/JsfAllTests.java
Log:
org.jboss.tools.jsf.test failure https://issues.jboss.org/browse/JBIDE-12259
Modified: trunk/jsf/tests/org.jboss.tools.jsf.test/src/org/jboss/tools/jsf/test/JsfAllTests.java
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.test/src/org/jboss/tools/jsf/test/JsfAllTests.java 2012-06-29 20:26:12 UTC (rev 42326)
+++ trunk/jsf/tests/org.jboss.tools.jsf.test/src/org/jboss/tools/jsf/test/JsfAllTests.java 2012-06-29 20:27:46 UTC (rev 42327)
@@ -41,29 +41,29 @@
ValidationExceptionTest.initLogger();
TestSuite suite = new TestSuite("Test model loading for JSF projects"); //$NON-NLS-1$
-// suite.addTestSuite(JSFTemplateTest.class);
-// suite.addTestSuite(JSFFacetOnExistingProjectTest.class);
-//
-// TestSuite jsf2 = new TestSuite(JSF2ModelTest.class.getName());
-// jsf2.addTestSuite(JSF2ModelTest.class);
-// ProjectImportTestSetup testSetup = new ProjectImportTestSetup(jsf2,
-// "org.jboss.tools.jsf.base.test",
-// new String[]{"projects/JSF2Beans", "projects/JSF2Web"},
-// new String[]{"JSF2Beans", "JSF2Web"});
-// suite.addTest(testSetup);
+ suite.addTestSuite(JSFTemplateTest.class);
+ suite.addTestSuite(JSFFacetOnExistingProjectTest.class);
- //TestSuite old = new TestSuite("Tests are using JSFKickStartOldFormat"); //$NON-NLS-1$
- //old.addTestSuite(JSFModelTest.class);
- //old.addTestSuite(ModelFormat_2_0_0_Test.class);
- //old.addTestSuite(JSFBeansTest.class);
- //suite.addTestSuite(WebContentTest.class);
- //suite.addTestSuite(XHTMLValidatorTest.class);
- //suite.addTestSuite(XHTMLDetectorAndValidatorTest.class);
- //suite.addTestSuite(XMLCatalogTest.class);
- //suite.addTestSuite(JSFPaletteTest.class);
- //suite.addTest(new ProjectImportTestSetup(old,
- // "org.jboss.tools.jsf.test", "projects/JSFKickStartOldFormat", //$NON-NLS-1$ //$NON-NLS-2$
- // "JSFKickStartOldFormat")); //$NON-NLS-1$
+ TestSuite jsf2 = new TestSuite(JSF2ModelTest.class.getName());
+ jsf2.addTestSuite(JSF2ModelTest.class);
+ ProjectImportTestSetup testSetup = new ProjectImportTestSetup(jsf2,
+ "org.jboss.tools.jsf.base.test",
+ new String[]{"projects/JSF2Beans", "projects/JSF2Web"},
+ new String[]{"JSF2Beans", "JSF2Web"});
+ suite.addTest(testSetup);
+
+ TestSuite old = new TestSuite("Tests are using JSFKickStartOldFormat"); //$NON-NLS-1$
+ old.addTestSuite(JSFModelTest.class);
+ old.addTestSuite(ModelFormat_2_0_0_Test.class);
+ old.addTestSuite(JSFBeansTest.class);
+ suite.addTestSuite(WebContentTest.class);
+ suite.addTestSuite(XHTMLValidatorTest.class);
+ suite.addTestSuite(XHTMLDetectorAndValidatorTest.class);
+ suite.addTestSuite(XMLCatalogTest.class);
+ suite.addTestSuite(JSFPaletteTest.class);
+ suite.addTest(new ProjectImportTestSetup(old,
+ "org.jboss.tools.jsf.test", "projects/JSFKickStartOldFormat", //$NON-NLS-1$ //$NON-NLS-2$
+ "JSFKickStartOldFormat")); //$NON-NLS-1$
suite.addTest(new ProjectImportTestSetup(new TestSuite(
JSFPromptingProviderTest.class),
"org.jboss.tools.jsf.test", //$NON-NLS-1$
12 years, 3 months
JBoss Tools SVN: r42326 - in trunk/jsf/tests/org.jboss.tools.jsf.test: projects/JSF2ComponentsValidator/WebContent/resources and 5 other directories.
by jbosstools-commits@lists.jboss.org
Author: dazarov
Date: 2012-06-29 16:26:12 -0400 (Fri, 29 Jun 2012)
New Revision: 42326
Added:
trunk/jsf/tests/org.jboss.tools.jsf.test/projects/JSF2ComponentsValidator/WebContent/pages/inputdata.xhtml
trunk/jsf/tests/org.jboss.tools.jsf.test/projects/JSF2ComponentsValidator/WebContent/pages/inputnmbr.xhtml
trunk/jsf/tests/org.jboss.tools.jsf.test/projects/JSF2ComponentsValidator/WebContent/pages/inputtype.xhtml
trunk/jsf/tests/org.jboss.tools.jsf.test/projects/JSF2ComponentsValidator/WebContent/resources/data/
trunk/jsf/tests/org.jboss.tools.jsf.test/projects/JSF2ComponentsValidator/WebContent/resources/data/data.xhtml
trunk/jsf/tests/org.jboss.tools.jsf.test/projects/JSF2ComponentsValidator/WebContent/resources/nmbr/
trunk/jsf/tests/org.jboss.tools.jsf.test/projects/JSF2ComponentsValidator/WebContent/resources/nmbr/nmbr.xhtml
trunk/jsf/tests/org.jboss.tools.jsf.test/projects/JSF2ComponentsValidator/WebContent/resources/type/
trunk/jsf/tests/org.jboss.tools.jsf.test/projects/JSF2ComponentsValidator/WebContent/resources/type/type.xhtml
Modified:
trunk/jsf/tests/org.jboss.tools.jsf.test/src/org/jboss/tools/jsf/test/ELReferencesQueryParticipantTest.java
trunk/jsf/tests/org.jboss.tools.jsf.test/src/org/jboss/tools/jsf/test/JsfAllTests.java
trunk/jsf/tests/org.jboss.tools.jsf.test/src/org/jboss/tools/jsf/test/refactoring/JSF2RefactoringTest.java
Log:
org.jboss.tools.jsf.test failure https://issues.jboss.org/browse/JBIDE-12259
Added: trunk/jsf/tests/org.jboss.tools.jsf.test/projects/JSF2ComponentsValidator/WebContent/pages/inputdata.xhtml
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.test/projects/JSF2ComponentsValidator/WebContent/pages/inputdata.xhtml (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.test/projects/JSF2ComponentsValidator/WebContent/pages/inputdata.xhtml 2012-06-29 20:26:12 UTC (rev 42326)
@@ -0,0 +1,30 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml"
+ xmlns:ui="http://java.sun.com/jsf/facelets"
+ xmlns:h="http://java.sun.com/jsf/html"
+ xmlns:f="http://java.sun.com/jsf/core"
+ xmlns:c="http://java.sun.com/jstl/core"
+ xmlns:ez="http://java.sun.com/jsf/composite/data">
+
+<f:loadBundle basename="resources" var="msg" />
+
+<ui:composition template="/templates/common.xhtml"
+ xmlns:jar="http://java.sun.com/jsf/composite/jarPage"
+ xmlns:jar1="http://java.sun.com/jsf/composite/jarPage1">
+
+ <ui:define name="pageTitle">Input User Name</ui:define>
+
+ <ui:define name="pageHeader">Facelets Hello Application</ui:define>
+
+ <ui:define name="body">
+ <ez:data id="inputdata" label="${msgs.prompt}" value="#{user.name}" action="#{user.sayHello}" submitlabel="Say Hello"/>
+ <form>
+ <jar:echo1 echo="Hello" />
+ <jar:echo echo="Hello" />
+ <jar:echo anknownAttr="1" echo="Hello" />
+ <jar1:echo echo="Hello" />
+ </form>
+
+ </ui:define>
+</ui:composition>
+</html>
Added: trunk/jsf/tests/org.jboss.tools.jsf.test/projects/JSF2ComponentsValidator/WebContent/pages/inputnmbr.xhtml
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.test/projects/JSF2ComponentsValidator/WebContent/pages/inputnmbr.xhtml (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.test/projects/JSF2ComponentsValidator/WebContent/pages/inputnmbr.xhtml 2012-06-29 20:26:12 UTC (rev 42326)
@@ -0,0 +1,30 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml"
+ xmlns:ui="http://java.sun.com/jsf/facelets"
+ xmlns:h="http://java.sun.com/jsf/html"
+ xmlns:f="http://java.sun.com/jsf/core"
+ xmlns:c="http://java.sun.com/jstl/core"
+ xmlns:ez="http://java.sun.com/jsf/composite/nmbr">
+
+<f:loadBundle basename="resources" var="msg" />
+
+<ui:composition template="/templates/common.xhtml"
+ xmlns:jar="http://java.sun.com/jsf/composite/jarPage"
+ xmlns:jar1="http://java.sun.com/jsf/composite/jarPage1">
+
+ <ui:define name="pageTitle">Input User Name</ui:define>
+
+ <ui:define name="pageHeader">Facelets Hello Application</ui:define>
+
+ <ui:define name="body">
+ <ez:nmbr id="inputnmbr" label="${msgs.prompt}" value="#{user.name}" action="#{user.sayHello}" submitlabel="Say Hello"/>
+ <form>
+ <jar:echo1 echo="Hello" />
+ <jar:echo echo="Hello" />
+ <jar:echo anknownAttr="1" echo="Hello" />
+ <jar1:echo echo="Hello" />
+ </form>
+
+ </ui:define>
+</ui:composition>
+</html>
Added: trunk/jsf/tests/org.jboss.tools.jsf.test/projects/JSF2ComponentsValidator/WebContent/pages/inputtype.xhtml
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.test/projects/JSF2ComponentsValidator/WebContent/pages/inputtype.xhtml (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.test/projects/JSF2ComponentsValidator/WebContent/pages/inputtype.xhtml 2012-06-29 20:26:12 UTC (rev 42326)
@@ -0,0 +1,30 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml"
+ xmlns:ui="http://java.sun.com/jsf/facelets"
+ xmlns:h="http://java.sun.com/jsf/html"
+ xmlns:f="http://java.sun.com/jsf/core"
+ xmlns:c="http://java.sun.com/jstl/core"
+ xmlns:ez="http://java.sun.com/jsf/composite/type">
+
+<f:loadBundle basename="resources" var="msg" />
+
+<ui:composition template="/templates/common.xhtml"
+ xmlns:jar="http://java.sun.com/jsf/composite/jarPage"
+ xmlns:jar1="http://java.sun.com/jsf/composite/jarPage1">
+
+ <ui:define name="pageTitle">Input User Name</ui:define>
+
+ <ui:define name="pageHeader">Facelets Hello Application</ui:define>
+
+ <ui:define name="body">
+ <ez:type id="inputtype" label="${msgs.prompt}" value="#{user.name}" action="#{user.sayHello}" submitlabel="Say Hello"/>
+ <form>
+ <jar:echo1 echo="Hello" />
+ <jar:echo echo="Hello" />
+ <jar:echo anknownAttr="1" echo="Hello" />
+ <jar1:echo echo="Hello" />
+ </form>
+
+ </ui:define>
+</ui:composition>
+</html>
Added: trunk/jsf/tests/org.jboss.tools.jsf.test/projects/JSF2ComponentsValidator/WebContent/resources/data/data.xhtml
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.test/projects/JSF2ComponentsValidator/WebContent/resources/data/data.xhtml (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.test/projects/JSF2ComponentsValidator/WebContent/resources/data/data.xhtml 2012-06-29 20:26:12 UTC (rev 42326)
@@ -0,0 +1,24 @@
+<?xml version="1.0"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml"
+ xmlns:h="http://java.sun.com/jsf/html"
+ xmlns:composite="http://java.sun.com/jsf/composite">
+
+ <composite:interface>
+ <composite:attribute name="label"/>
+ <composite:attribute name="value" required="true"/>
+ <composite:attribute name="action" required="true" method-signature="java.lang.String f()"/>
+ <composite:attribute name="submitlabel"/>
+ </composite:interface>
+
+ <composite:implementation>
+ <h:form>
+ <h:outputText value="#{cc.attrs.label}" />
+ <h:inputText value="#{cc.attrs.value}" />
+ <h:commandButton action="#{cc.attrs.action}" value="#{cc.attrs.submitlabel}" />
+ <h:outputText>#{person.name}</h:outputText>
+ <h:outputText>#{person.nameBroken}</h:outputText>
+ </h:form>
+ </composite:implementation>
+</html>
\ No newline at end of file
Added: trunk/jsf/tests/org.jboss.tools.jsf.test/projects/JSF2ComponentsValidator/WebContent/resources/nmbr/nmbr.xhtml
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.test/projects/JSF2ComponentsValidator/WebContent/resources/nmbr/nmbr.xhtml (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.test/projects/JSF2ComponentsValidator/WebContent/resources/nmbr/nmbr.xhtml 2012-06-29 20:26:12 UTC (rev 42326)
@@ -0,0 +1,24 @@
+<?xml version="1.0"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml"
+ xmlns:h="http://java.sun.com/jsf/html"
+ xmlns:composite="http://java.sun.com/jsf/composite">
+
+ <composite:interface>
+ <composite:attribute name="label"/>
+ <composite:attribute name="value" required="true"/>
+ <composite:attribute name="action" required="true" method-signature="java.lang.String f()"/>
+ <composite:attribute name="submitlabel"/>
+ </composite:interface>
+
+ <composite:implementation>
+ <h:form>
+ <h:outputText value="#{cc.attrs.label}" />
+ <h:inputText value="#{cc.attrs.value}" />
+ <h:commandButton action="#{cc.attrs.action}" value="#{cc.attrs.submitlabel}" />
+ <h:outputText>#{person.name}</h:outputText>
+ <h:outputText>#{person.nameBroken}</h:outputText>
+ </h:form>
+ </composite:implementation>
+</html>
\ No newline at end of file
Added: trunk/jsf/tests/org.jboss.tools.jsf.test/projects/JSF2ComponentsValidator/WebContent/resources/type/type.xhtml
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.test/projects/JSF2ComponentsValidator/WebContent/resources/type/type.xhtml (rev 0)
+++ trunk/jsf/tests/org.jboss.tools.jsf.test/projects/JSF2ComponentsValidator/WebContent/resources/type/type.xhtml 2012-06-29 20:26:12 UTC (rev 42326)
@@ -0,0 +1,24 @@
+<?xml version="1.0"?>
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
+ "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
+<html xmlns="http://www.w3.org/1999/xhtml"
+ xmlns:h="http://java.sun.com/jsf/html"
+ xmlns:composite="http://java.sun.com/jsf/composite">
+
+ <composite:interface>
+ <composite:attribute name="label"/>
+ <composite:attribute name="value" required="true"/>
+ <composite:attribute name="action" required="true" method-signature="java.lang.String f()"/>
+ <composite:attribute name="submitlabel"/>
+ </composite:interface>
+
+ <composite:implementation>
+ <h:form>
+ <h:outputText value="#{cc.attrs.label}" />
+ <h:inputText value="#{cc.attrs.value}" />
+ <h:commandButton action="#{cc.attrs.action}" value="#{cc.attrs.submitlabel}" />
+ <h:outputText>#{person.name}</h:outputText>
+ <h:outputText>#{person.nameBroken}</h:outputText>
+ </h:form>
+ </composite:implementation>
+</html>
\ No newline at end of file
Modified: trunk/jsf/tests/org.jboss.tools.jsf.test/src/org/jboss/tools/jsf/test/ELReferencesQueryParticipantTest.java
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.test/src/org/jboss/tools/jsf/test/ELReferencesQueryParticipantTest.java 2012-06-29 20:08:24 UTC (rev 42325)
+++ trunk/jsf/tests/org.jboss.tools.jsf.test/src/org/jboss/tools/jsf/test/ELReferencesQueryParticipantTest.java 2012-06-29 20:26:12 UTC (rev 42326)
@@ -35,6 +35,15 @@
matches.add(new MatchStructure("/JSF2ComponentsValidator/WebContent/resources/demo/input.xhtml", "person"));
matches.add(new MatchStructure("/JSF2ComponentsValidator/WebContent/resources/demo/input.xhtml", "person"));
+ matches.add(new MatchStructure("/JSF2ComponentsValidator/WebContent/resources/type/type.xhtml", "person"));
+ matches.add(new MatchStructure("/JSF2ComponentsValidator/WebContent/resources/type/type.xhtml", "person"));
+
+ matches.add(new MatchStructure("/JSF2ComponentsValidator/WebContent/resources/data/data.xhtml", "person"));
+ matches.add(new MatchStructure("/JSF2ComponentsValidator/WebContent/resources/data/data.xhtml", "person"));
+
+ matches.add(new MatchStructure("/JSF2ComponentsValidator/WebContent/resources/nmbr/nmbr.xhtml", "person"));
+ matches.add(new MatchStructure("/JSF2ComponentsValidator/WebContent/resources/nmbr/nmbr.xhtml", "person"));
+
QueryParticipantTestUtils.testSearchParticipant(project,
"JavaSource/demo/Person.java",
QueryParticipantTestUtils.TYPE_SEARCH,
@@ -49,6 +58,9 @@
matches.add(new MatchStructure("/JSF2ComponentsValidator/WebContent/pages/greeting.xhtml", "name"));
matches.add(new MatchStructure("/JSF2ComponentsValidator/WebContent/resources/demo/input.xhtml", "name"));
+ matches.add(new MatchStructure("/JSF2ComponentsValidator/WebContent/resources/type/type.xhtml", "name"));
+ matches.add(new MatchStructure("/JSF2ComponentsValidator/WebContent/resources/data/data.xhtml", "name"));
+ matches.add(new MatchStructure("/JSF2ComponentsValidator/WebContent/resources/nmbr/nmbr.xhtml", "name"));
QueryParticipantTestUtils.testSearchParticipant(project,
"JavaSource/demo/Person.java",
Modified: trunk/jsf/tests/org.jboss.tools.jsf.test/src/org/jboss/tools/jsf/test/JsfAllTests.java
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.test/src/org/jboss/tools/jsf/test/JsfAllTests.java 2012-06-29 20:08:24 UTC (rev 42325)
+++ trunk/jsf/tests/org.jboss.tools.jsf.test/src/org/jboss/tools/jsf/test/JsfAllTests.java 2012-06-29 20:26:12 UTC (rev 42326)
@@ -41,29 +41,29 @@
ValidationExceptionTest.initLogger();
TestSuite suite = new TestSuite("Test model loading for JSF projects"); //$NON-NLS-1$
- suite.addTestSuite(JSFTemplateTest.class);
- suite.addTestSuite(JSFFacetOnExistingProjectTest.class);
+// suite.addTestSuite(JSFTemplateTest.class);
+// suite.addTestSuite(JSFFacetOnExistingProjectTest.class);
+//
+// TestSuite jsf2 = new TestSuite(JSF2ModelTest.class.getName());
+// jsf2.addTestSuite(JSF2ModelTest.class);
+// ProjectImportTestSetup testSetup = new ProjectImportTestSetup(jsf2,
+// "org.jboss.tools.jsf.base.test",
+// new String[]{"projects/JSF2Beans", "projects/JSF2Web"},
+// new String[]{"JSF2Beans", "JSF2Web"});
+// suite.addTest(testSetup);
- TestSuite jsf2 = new TestSuite(JSF2ModelTest.class.getName());
- jsf2.addTestSuite(JSF2ModelTest.class);
- ProjectImportTestSetup testSetup = new ProjectImportTestSetup(jsf2,
- "org.jboss.tools.jsf.base.test",
- new String[]{"projects/JSF2Beans", "projects/JSF2Web"},
- new String[]{"JSF2Beans", "JSF2Web"});
- suite.addTest(testSetup);
-
- TestSuite old = new TestSuite("Tests are using JSFKickStartOldFormat"); //$NON-NLS-1$
- old.addTestSuite(JSFModelTest.class);
- old.addTestSuite(ModelFormat_2_0_0_Test.class);
- old.addTestSuite(JSFBeansTest.class);
- suite.addTestSuite(WebContentTest.class);
- suite.addTestSuite(XHTMLValidatorTest.class);
- suite.addTestSuite(XHTMLDetectorAndValidatorTest.class);
- suite.addTestSuite(XMLCatalogTest.class);
- suite.addTestSuite(JSFPaletteTest.class);
- suite.addTest(new ProjectImportTestSetup(old,
- "org.jboss.tools.jsf.test", "projects/JSFKickStartOldFormat", //$NON-NLS-1$ //$NON-NLS-2$
- "JSFKickStartOldFormat")); //$NON-NLS-1$
+ //TestSuite old = new TestSuite("Tests are using JSFKickStartOldFormat"); //$NON-NLS-1$
+ //old.addTestSuite(JSFModelTest.class);
+ //old.addTestSuite(ModelFormat_2_0_0_Test.class);
+ //old.addTestSuite(JSFBeansTest.class);
+ //suite.addTestSuite(WebContentTest.class);
+ //suite.addTestSuite(XHTMLValidatorTest.class);
+ //suite.addTestSuite(XHTMLDetectorAndValidatorTest.class);
+ //suite.addTestSuite(XMLCatalogTest.class);
+ //suite.addTestSuite(JSFPaletteTest.class);
+ //suite.addTest(new ProjectImportTestSetup(old,
+ // "org.jboss.tools.jsf.test", "projects/JSFKickStartOldFormat", //$NON-NLS-1$ //$NON-NLS-2$
+ // "JSFKickStartOldFormat")); //$NON-NLS-1$
suite.addTest(new ProjectImportTestSetup(new TestSuite(
JSFPromptingProviderTest.class),
"org.jboss.tools.jsf.test", //$NON-NLS-1$
Modified: trunk/jsf/tests/org.jboss.tools.jsf.test/src/org/jboss/tools/jsf/test/refactoring/JSF2RefactoringTest.java
===================================================================
--- trunk/jsf/tests/org.jboss.tools.jsf.test/src/org/jboss/tools/jsf/test/refactoring/JSF2RefactoringTest.java 2012-06-29 20:08:24 UTC (rev 42325)
+++ trunk/jsf/tests/org.jboss.tools.jsf.test/src/org/jboss/tools/jsf/test/refactoring/JSF2RefactoringTest.java 2012-06-29 20:26:12 UTC (rev 42326)
@@ -48,30 +48,30 @@
public void testRenameCompositeComponentFolder() throws CoreException {
ArrayList<TestChangeStructure> list = new ArrayList<TestChangeStructure>();
- TestChangeStructure structure = new TestChangeStructure(project.getProject(), "/WebContent/pages/inputname.xhtml");
- TestTextChange change = new TestTextChange(382, 5, "demo2");
+ TestChangeStructure structure = new TestChangeStructure(project.getProject(), "/WebContent/pages/inputtype.xhtml");
+ TestTextChange change = new TestTextChange(382, 5, "type2");
structure.addTextChange(change);
list.add(structure);
- IFolder sourceFolder = project.getProject().getFolder("/WebContent/resources/demo");
+ IFolder sourceFolder = project.getProject().getFolder("/WebContent/resources/type");
RenameResourceProcessor processor = new RenameResourceProcessor(sourceFolder);
- processor.setNewResourceName("demo2");
+ processor.setNewResourceName("type2");
JSF2RenameParticipant participant = new JSF2RenameParticipant();
- checkRename(processor, sourceFolder, "demo2", participant, list);
+ checkRename(processor, sourceFolder, "type2", participant, list);
}
public void testMoveCompositeComponentFile() throws CoreException {
ArrayList<TestChangeStructure> list = new ArrayList<TestChangeStructure>();
- TestChangeStructure structure = new TestChangeStructure(project.getProject(), "/WebContent/pages/inputname.xhtml");
+ TestChangeStructure structure = new TestChangeStructure(project.getProject(), "/WebContent/pages/inputdata.xhtml");
TestTextChange change = new TestTextChange(382, 3, "new");
structure.addTextChange(change);
list.add(structure);
- IFile sourceFile = project.getProject().getFile("/WebContent/resources/demo2/input2.xhtml");
+ IFile sourceFile = project.getProject().getFile("/WebContent/resources/data/data.xhtml");
IFolder destinationFolder = project.getProject().getFolder("/WebContent/resources/new");
MoveResourcesProcessor processor = new MoveResourcesProcessor(new IResource[]{sourceFile});
@@ -85,13 +85,13 @@
public void testMoveCompositeComponentFolder() throws CoreException {
ArrayList<TestChangeStructure> list = new ArrayList<TestChangeStructure>();
- TestChangeStructure structure = new TestChangeStructure(project.getProject(), "/WebContent/pages/inputname.xhtml");
- TestTextChange change = new TestTextChange(382, 9, "demo2/new");
+ TestChangeStructure structure = new TestChangeStructure(project.getProject(), "/WebContent/pages/inputnmbr.xhtml");
+ TestTextChange change = new TestTextChange(382, 8, "new/nmbr");
structure.addTextChange(change);
list.add(structure);
- IFolder sourceFolder = project.getProject().getFolder("/WebContent/resources/new");
- IFolder destinationFolder = project.getProject().getFolder("/WebContent/resources/demo2");
+ IFolder sourceFolder = project.getProject().getFolder("/WebContent/resources/nmbr");
+ IFolder destinationFolder = project.getProject().getFolder("/WebContent/resources/new");
MoveResourcesProcessor processor = new MoveResourcesProcessor(new IResource[]{sourceFolder});
processor.setDestination(destinationFolder);
12 years, 3 months
JBoss Tools SVN: r42325 - trunk/build/target-platform.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2012-06-29 16:08:24 -0400 (Fri, 29 Jun 2012)
New Revision: 42325
Modified:
trunk/build/target-platform/jbds.target
trunk/build/target-platform/jbds.target.p2mirror.xml
trunk/build/target-platform/multiple.target
trunk/build/target-platform/multiple.target.p2mirror.xml
trunk/build/target-platform/unified.target
trunk/build/target-platform/unified.target.p2mirror.xml
Log:
replace org.eclipse.mylyn.commons.xmlrpc with org.eclipse.mylyn.commons.sdk.feature.group to bring in other deps needed (like org.apache.xmlrpc)
Modified: trunk/build/target-platform/jbds.target
===================================================================
--- trunk/build/target-platform/jbds.target 2012-06-29 18:02:12 UTC (rev 42324)
+++ trunk/build/target-platform/jbds.target 2012-06-29 20:08:24 UTC (rev 42325)
@@ -211,7 +211,7 @@
<unit id="org.eclipse.mylyn.cvs.feature.group" version="1.0.0.v20120612-0600"/>
<unit id="org.eclipse.mylyn.git.feature.group" version="1.0.0.v20120612-0600"/>
<unit id="org.eclipse.mylyn.versions.feature.group" version="1.0.0.v20120612-0600"/>
- <unit id="org.eclipse.mylyn.commons.xmlrpc" version="3.8.0.v20120612-0600"/>
+ <unit id="org.eclipse.mylyn.commons.sdk.feature.group" version="3.8.0.v20120612-0600"/>
<unit id="org.eclipse.mylyn.tasks.ui" version="3.8.0.v20120612-0600"/>
<unit id="org.eclipse.mylyn.tasks.core" version="3.8.0.v20120612-0600"/>
<unit id="org.eclipse.mylyn.tasks.bugs" version="3.8.0.v20120612-0600"/>
Modified: trunk/build/target-platform/jbds.target.p2mirror.xml
===================================================================
--- trunk/build/target-platform/jbds.target.p2mirror.xml 2012-06-29 18:02:12 UTC (rev 42324)
+++ trunk/build/target-platform/jbds.target.p2mirror.xml 2012-06-29 20:08:24 UTC (rev 42325)
@@ -204,7 +204,7 @@
<iu id="org.eclipse.mylyn.cvs.feature.group" version=""/>
<iu id="org.eclipse.mylyn.git.feature.group" version=""/>
<iu id="org.eclipse.mylyn.versions.feature.group" version=""/>
-<iu id="org.eclipse.mylyn.commons.xmlrpc" version=""/>
+<iu id="org.eclipse.mylyn.commons.sdk.feature.group" version=""/>
<iu id="org.eclipse.mylyn.tasks.ui" version=""/>
<iu id="org.eclipse.mylyn.tasks.core" version=""/>
<iu id="org.eclipse.mylyn.tasks.bugs" version=""/>
Modified: trunk/build/target-platform/multiple.target
===================================================================
--- trunk/build/target-platform/multiple.target 2012-06-29 18:02:12 UTC (rev 42324)
+++ trunk/build/target-platform/multiple.target 2012-06-29 20:08:24 UTC (rev 42325)
@@ -232,7 +232,7 @@
<unit id="org.eclipse.mylyn.cvs.feature.group" version="1.0.0.v20120612-0600"/>
<unit id="org.eclipse.mylyn.git.feature.group" version="1.0.0.v20120612-0600"/>
<unit id="org.eclipse.mylyn.versions.feature.group" version="1.0.0.v20120612-0600"/>
- <unit id="org.eclipse.mylyn.commons.xmlrpc" version="3.8.0.v20120612-0600"/>
+ <unit id="org.eclipse.mylyn.commons.sdk.feature.group" version="3.8.0.v20120612-0600"/>
<unit id="org.eclipse.mylyn.tasks.ui" version="3.8.0.v20120612-0600"/>
<unit id="org.eclipse.mylyn.tasks.core" version="3.8.0.v20120612-0600"/>
<unit id="org.eclipse.mylyn.tasks.bugs" version="3.8.0.v20120612-0600"/>
Modified: trunk/build/target-platform/multiple.target.p2mirror.xml
===================================================================
--- trunk/build/target-platform/multiple.target.p2mirror.xml 2012-06-29 18:02:12 UTC (rev 42324)
+++ trunk/build/target-platform/multiple.target.p2mirror.xml 2012-06-29 20:08:24 UTC (rev 42325)
@@ -224,7 +224,7 @@
<iu id="org.eclipse.mylyn.cvs.feature.group" version=""/>
<iu id="org.eclipse.mylyn.git.feature.group" version=""/>
<iu id="org.eclipse.mylyn.versions.feature.group" version=""/>
-<iu id="org.eclipse.mylyn.commons.xmlrpc" version=""/>
+<iu id="org.eclipse.mylyn.commons.sdk.feature.group" version=""/>
<iu id="org.eclipse.mylyn.tasks.ui" version=""/>
<iu id="org.eclipse.mylyn.tasks.core" version=""/>
<iu id="org.eclipse.mylyn.tasks.bugs" version=""/>
Modified: trunk/build/target-platform/unified.target
===================================================================
--- trunk/build/target-platform/unified.target 2012-06-29 18:02:12 UTC (rev 42324)
+++ trunk/build/target-platform/unified.target 2012-06-29 20:08:24 UTC (rev 42325)
@@ -232,7 +232,7 @@
<unit id="org.eclipse.mylyn.cvs.feature.group" version="1.0.0.v20120612-0600"/>
<unit id="org.eclipse.mylyn.git.feature.group" version="1.0.0.v20120612-0600"/>
<unit id="org.eclipse.mylyn.versions.feature.group" version="1.0.0.v20120612-0600"/>
- <unit id="org.eclipse.mylyn.commons.xmlrpc" version="3.8.0.v20120612-0600"/>
+ <unit id="org.eclipse.mylyn.commons.sdk.feature.group" version="3.8.0.v20120612-0600"/>
<unit id="org.eclipse.mylyn.tasks.ui" version="3.8.0.v20120612-0600"/>
<unit id="org.eclipse.mylyn.tasks.core" version="3.8.0.v20120612-0600"/>
<unit id="org.eclipse.mylyn.tasks.bugs" version="3.8.0.v20120612-0600"/>
Modified: trunk/build/target-platform/unified.target.p2mirror.xml
===================================================================
--- trunk/build/target-platform/unified.target.p2mirror.xml 2012-06-29 18:02:12 UTC (rev 42324)
+++ trunk/build/target-platform/unified.target.p2mirror.xml 2012-06-29 20:08:24 UTC (rev 42325)
@@ -224,7 +224,7 @@
<iu id="org.eclipse.mylyn.cvs.feature.group" version=""/>
<iu id="org.eclipse.mylyn.git.feature.group" version=""/>
<iu id="org.eclipse.mylyn.versions.feature.group" version=""/>
-<iu id="org.eclipse.mylyn.commons.xmlrpc" version=""/>
+<iu id="org.eclipse.mylyn.commons.sdk.feature.group" version=""/>
<iu id="org.eclipse.mylyn.tasks.ui" version=""/>
<iu id="org.eclipse.mylyn.tasks.core" version=""/>
<iu id="org.eclipse.mylyn.tasks.bugs" version=""/>
12 years, 3 months
JBoss Tools SVN: r42324 - branches/jbosstools-3.3.x/jst/plugins/org.jboss.tools.jst.jsp/src/org/jboss/tools/jst/jsp/contentassist/computers.
by jbosstools-commits@lists.jboss.org
Author: vrubezhny
Date: 2012-06-29 14:02:12 -0400 (Fri, 29 Jun 2012)
New Revision: 42324
Modified:
branches/jbosstools-3.3.x/jst/plugins/org.jboss.tools.jst.jsp/src/org/jboss/tools/jst/jsp/contentassist/computers/XmlTagCompletionProposalComputer.java
Log:
JBIDE-12177
autocompletion is broken in visual editor
Issue is fixed. Committed to branch jbosstools-3.3.x.
Modified: branches/jbosstools-3.3.x/jst/plugins/org.jboss.tools.jst.jsp/src/org/jboss/tools/jst/jsp/contentassist/computers/XmlTagCompletionProposalComputer.java
===================================================================
--- branches/jbosstools-3.3.x/jst/plugins/org.jboss.tools.jst.jsp/src/org/jboss/tools/jst/jsp/contentassist/computers/XmlTagCompletionProposalComputer.java 2012-06-29 17:33:21 UTC (rev 42323)
+++ branches/jbosstools-3.3.x/jst/plugins/org.jboss.tools.jst.jsp/src/org/jboss/tools/jst/jsp/contentassist/computers/XmlTagCompletionProposalComputer.java 2012-06-29 18:02:12 UTC (rev 42324)
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2010-2011 Red Hat, Inc.
+ * Copyright (c) 2010-2012 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,
@@ -359,9 +359,11 @@
continue; // Don't query proposals for the default value here
String possibleURI = namespace.getURI();
- String possibleQuery = namespace.getPrefix() + ":" + query; //$NON-NLS-1$
+ if (possibleURI == null || possibleURI.length() == 0)
+ continue;
+
addTagNameProposalsForPrefix(contentAssistRequest, childPosition,
- possibleQuery, possiblePrefix, possibleURI,
+ query, possiblePrefix, possibleURI,
TextProposal.R_TAG_INSERTION - 1,
insertTagOpenningCharacter);
}
@@ -379,9 +381,14 @@
boolean insertTagOpenningCharacter) {
if (query == null)
query = ""; //$NON-NLS-1$
- String stringQuery = "<" + query; //$NON-NLS-1$
-
- KbQuery kbQuery = createKbQuery(Type.TAG_NAME, query, stringQuery, prefix, uri);
+
+ StringBuilder stringQuery = new StringBuilder();
+ if (query.indexOf(':') == -1 && prefix != null && prefix.length() > 0) {
+ stringQuery.append(prefix).append(':');
+ }
+ stringQuery.append(query);
+
+ KbQuery kbQuery = createKbQuery(Type.TAG_NAME, stringQuery.toString(), '<' + stringQuery.toString(), prefix, uri);
TextProposal[] proposals = PageProcessor.getInstance().getProposals(kbQuery, getContext(), true);
for (int i = 0; proposals != null && i < proposals.length; i++) {
12 years, 3 months
JBoss Tools SVN: r42322 - trunk/build/target-platform.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2012-06-29 13:30:22 -0400 (Fri, 29 Jun 2012)
New Revision: 42322
Modified:
trunk/build/target-platform/jbds.target
trunk/build/target-platform/jbds.target.p2mirror.xml
trunk/build/target-platform/multiple.target
trunk/build/target-platform/multiple.target.p2mirror.xml
trunk/build/target-platform/unified.target
trunk/build/target-platform/unified.target.p2mirror.xml
Log:
replace org.eclipse.mylyn.commons.sdk.feature.group with org.eclipse.mylyn.commons.xmlrpc; add org.eclipse.update.core to TPs
Modified: trunk/build/target-platform/jbds.target
===================================================================
--- trunk/build/target-platform/jbds.target 2012-06-29 17:19:24 UTC (rev 42321)
+++ trunk/build/target-platform/jbds.target 2012-06-29 17:30:22 UTC (rev 42322)
@@ -80,6 +80,7 @@
<unit id="org.eclipse.rcp.feature.group" version="4.2.0.v20120528-1648-7IAPA7BrHQicRpNdOz-Obz-rlRCA"/>
<unit id="org.eclipse.pde.feature.group" version="3.8.0.v20120525-1249-7c7vFitFFt6Zr5a12MM4IKMFZ"/>
<unit id="org.eclipse.help.feature.group" version="1.4.0.v20120608-133537-8P7vFOTFK_Qj4JmDIQXL8Tn"/>
+ <unit id="org.eclipse.update.core" version="3.2.600.v20120530-1204"/>
<!-- DTP -->
<unit id="org.eclipse.datatools.modelbase.feature.feature.group" version="1.10.0.v201201161512-7707DCcNBHJDWIYG_Ni"/>
@@ -210,7 +211,7 @@
<unit id="org.eclipse.mylyn.cvs.feature.group" version="1.0.0.v20120612-0600"/>
<unit id="org.eclipse.mylyn.git.feature.group" version="1.0.0.v20120612-0600"/>
<unit id="org.eclipse.mylyn.versions.feature.group" version="1.0.0.v20120612-0600"/>
- <unit id="org.eclipse.mylyn.commons.sdk.feature.group" version="3.8.0.v20120612-0600"/>
+ <unit id="org.eclipse.mylyn.commons.xmlrpc" version="3.8.0.v20120612-0600"/>
<unit id="org.eclipse.mylyn.tasks.ui" version="3.8.0.v20120612-0600"/>
<unit id="org.eclipse.mylyn.tasks.core" version="3.8.0.v20120612-0600"/>
<unit id="org.eclipse.mylyn.tasks.bugs" version="3.8.0.v20120612-0600"/>
Modified: trunk/build/target-platform/jbds.target.p2mirror.xml
===================================================================
--- trunk/build/target-platform/jbds.target.p2mirror.xml 2012-06-29 17:19:24 UTC (rev 42321)
+++ trunk/build/target-platform/jbds.target.p2mirror.xml 2012-06-29 17:30:22 UTC (rev 42322)
@@ -85,6 +85,7 @@
<iu id="org.eclipse.rcp.feature.group" version=""/>
<iu id="org.eclipse.pde.feature.group" version=""/>
<iu id="org.eclipse.help.feature.group" version=""/>
+<iu id="org.eclipse.update.core" version=""/>
<iu id="org.eclipse.datatools.modelbase.feature.feature.group" version=""/>
<iu id="org.eclipse.datatools.connectivity.feature.feature.group" version=""/>
<iu id="org.eclipse.datatools.connectivity.oda.feature.feature.group" version=""/>
@@ -203,7 +204,7 @@
<iu id="org.eclipse.mylyn.cvs.feature.group" version=""/>
<iu id="org.eclipse.mylyn.git.feature.group" version=""/>
<iu id="org.eclipse.mylyn.versions.feature.group" version=""/>
-<iu id="org.eclipse.mylyn.commons.sdk.feature.group" version=""/>
+<iu id="org.eclipse.mylyn.commons.xmlrpc" version=""/>
<iu id="org.eclipse.mylyn.tasks.ui" version=""/>
<iu id="org.eclipse.mylyn.tasks.core" version=""/>
<iu id="org.eclipse.mylyn.tasks.bugs" version=""/>
Modified: trunk/build/target-platform/multiple.target
===================================================================
--- trunk/build/target-platform/multiple.target 2012-06-29 17:19:24 UTC (rev 42321)
+++ trunk/build/target-platform/multiple.target 2012-06-29 17:30:22 UTC (rev 42322)
@@ -101,6 +101,7 @@
<unit id="org.eclipse.rcp.feature.group" version="4.2.0.v20120528-1648-7IAPA7BrHQicRpNdOz-Obz-rlRCA"/>
<unit id="org.eclipse.pde.feature.group" version="3.8.0.v20120525-1249-7c7vFitFFt6Zr5a12MM4IKMFZ"/>
<unit id="org.eclipse.help.feature.group" version="1.4.0.v20120608-133537-8P7vFOTFK_Qj4JmDIQXL8Tn"/>
+ <unit id="org.eclipse.update.core" version="3.2.600.v20120530-1204"/>
<!-- DTP -->
<unit id="org.eclipse.datatools.modelbase.feature.feature.group" version="1.10.0.v201201161512-7707DCcNBHJDWIYG_Ni"/>
@@ -231,7 +232,7 @@
<unit id="org.eclipse.mylyn.cvs.feature.group" version="1.0.0.v20120612-0600"/>
<unit id="org.eclipse.mylyn.git.feature.group" version="1.0.0.v20120612-0600"/>
<unit id="org.eclipse.mylyn.versions.feature.group" version="1.0.0.v20120612-0600"/>
- <unit id="org.eclipse.mylyn.commons.sdk.feature.group" version="3.8.0.v20120612-0600"/>
+ <unit id="org.eclipse.mylyn.commons.xmlrpc" version="3.8.0.v20120612-0600"/>
<unit id="org.eclipse.mylyn.tasks.ui" version="3.8.0.v20120612-0600"/>
<unit id="org.eclipse.mylyn.tasks.core" version="3.8.0.v20120612-0600"/>
<unit id="org.eclipse.mylyn.tasks.bugs" version="3.8.0.v20120612-0600"/>
Modified: trunk/build/target-platform/multiple.target.p2mirror.xml
===================================================================
--- trunk/build/target-platform/multiple.target.p2mirror.xml 2012-06-29 17:19:24 UTC (rev 42321)
+++ trunk/build/target-platform/multiple.target.p2mirror.xml 2012-06-29 17:30:22 UTC (rev 42322)
@@ -105,6 +105,7 @@
<iu id="org.eclipse.rcp.feature.group" version=""/>
<iu id="org.eclipse.pde.feature.group" version=""/>
<iu id="org.eclipse.help.feature.group" version=""/>
+<iu id="org.eclipse.update.core" version=""/>
<iu id="org.eclipse.datatools.modelbase.feature.feature.group" version=""/>
<iu id="org.eclipse.datatools.connectivity.feature.feature.group" version=""/>
<iu id="org.eclipse.datatools.connectivity.oda.feature.feature.group" version=""/>
@@ -223,7 +224,7 @@
<iu id="org.eclipse.mylyn.cvs.feature.group" version=""/>
<iu id="org.eclipse.mylyn.git.feature.group" version=""/>
<iu id="org.eclipse.mylyn.versions.feature.group" version=""/>
-<iu id="org.eclipse.mylyn.commons.sdk.feature.group" version=""/>
+<iu id="org.eclipse.mylyn.commons.xmlrpc" version=""/>
<iu id="org.eclipse.mylyn.tasks.ui" version=""/>
<iu id="org.eclipse.mylyn.tasks.core" version=""/>
<iu id="org.eclipse.mylyn.tasks.bugs" version=""/>
Modified: trunk/build/target-platform/unified.target
===================================================================
--- trunk/build/target-platform/unified.target 2012-06-29 17:19:24 UTC (rev 42321)
+++ trunk/build/target-platform/unified.target 2012-06-29 17:30:22 UTC (rev 42322)
@@ -101,6 +101,7 @@
<unit id="org.eclipse.rcp.feature.group" version="4.2.0.v20120528-1648-7IAPA7BrHQicRpNdOz-Obz-rlRCA"/>
<unit id="org.eclipse.pde.feature.group" version="3.8.0.v20120525-1249-7c7vFitFFt6Zr5a12MM4IKMFZ"/>
<unit id="org.eclipse.help.feature.group" version="1.4.0.v20120608-133537-8P7vFOTFK_Qj4JmDIQXL8Tn"/>
+ <unit id="org.eclipse.update.core" version="3.2.600.v20120530-1204"/>
<!-- DTP -->
<unit id="org.eclipse.datatools.modelbase.feature.feature.group" version="1.10.0.v201201161512-7707DCcNBHJDWIYG_Ni"/>
@@ -231,7 +232,7 @@
<unit id="org.eclipse.mylyn.cvs.feature.group" version="1.0.0.v20120612-0600"/>
<unit id="org.eclipse.mylyn.git.feature.group" version="1.0.0.v20120612-0600"/>
<unit id="org.eclipse.mylyn.versions.feature.group" version="1.0.0.v20120612-0600"/>
- <unit id="org.eclipse.mylyn.commons.sdk.feature.group" version="3.8.0.v20120612-0600"/>
+ <unit id="org.eclipse.mylyn.commons.xmlrpc" version="3.8.0.v20120612-0600"/>
<unit id="org.eclipse.mylyn.tasks.ui" version="3.8.0.v20120612-0600"/>
<unit id="org.eclipse.mylyn.tasks.core" version="3.8.0.v20120612-0600"/>
<unit id="org.eclipse.mylyn.tasks.bugs" version="3.8.0.v20120612-0600"/>
Modified: trunk/build/target-platform/unified.target.p2mirror.xml
===================================================================
--- trunk/build/target-platform/unified.target.p2mirror.xml 2012-06-29 17:19:24 UTC (rev 42321)
+++ trunk/build/target-platform/unified.target.p2mirror.xml 2012-06-29 17:30:22 UTC (rev 42322)
@@ -105,6 +105,7 @@
<iu id="org.eclipse.rcp.feature.group" version=""/>
<iu id="org.eclipse.pde.feature.group" version=""/>
<iu id="org.eclipse.help.feature.group" version=""/>
+<iu id="org.eclipse.update.core" version=""/>
<iu id="org.eclipse.datatools.modelbase.feature.feature.group" version=""/>
<iu id="org.eclipse.datatools.connectivity.feature.feature.group" version=""/>
<iu id="org.eclipse.datatools.connectivity.oda.feature.feature.group" version=""/>
@@ -223,7 +224,7 @@
<iu id="org.eclipse.mylyn.cvs.feature.group" version=""/>
<iu id="org.eclipse.mylyn.git.feature.group" version=""/>
<iu id="org.eclipse.mylyn.versions.feature.group" version=""/>
-<iu id="org.eclipse.mylyn.commons.sdk.feature.group" version=""/>
+<iu id="org.eclipse.mylyn.commons.xmlrpc" version=""/>
<iu id="org.eclipse.mylyn.tasks.ui" version=""/>
<iu id="org.eclipse.mylyn.tasks.core" version=""/>
<iu id="org.eclipse.mylyn.tasks.bugs" version=""/>
12 years, 3 months
JBoss Tools SVN: r42321 - trunk/build/results.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2012-06-29 13:19:24 -0400 (Fri, 29 Jun 2012)
New Revision: 42321
Modified:
trunk/build/results/pom.xml
Log:
use antrun 1.7 instead of 1.3 to hopefully work around 'Execution install of goal org.apache.maven.plugins:maven-antrun-plugin:1.3:run failed: An API incompatibility was encountered while executing org.apache.maven.plugins:maven-antrun-plugin:1.3:run: java.lang.NoSuchMethodError: org.apache.tools.ant.launch.Locator.fromJarURI(Ljava/lang/String;)Ljava/lang/String'
Modified: trunk/build/results/pom.xml
===================================================================
--- trunk/build/results/pom.xml 2012-06-29 17:13:38 UTC (rev 42320)
+++ trunk/build/results/pom.xml 2012-06-29 17:19:24 UTC (rev 42321)
@@ -31,6 +31,7 @@
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
+ <version>1.7</version>
<inherited>false</inherited>
<executions>
<execution>
@@ -57,11 +58,6 @@
</executions>
<dependencies>
<dependency>
- <groupId>org.apache.ant</groupId>
- <artifactId>ant</artifactId>
- <version>1.8.2</version>
- </dependency>
- <dependency>
<groupId>commons-net</groupId>
<artifactId>commons-net</artifactId>
<version>1.4.1</version>
@@ -69,27 +65,27 @@
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant</artifactId>
- <version>1.7.1</version>
+ <version>1.8.2</version>
</dependency>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant-nodeps</artifactId>
- <version>1.7.1</version>
+ <version>1.8.1</version>
</dependency>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant-trax</artifactId>
- <version>1.7.1</version>
+ <version>1.8.0</version>
</dependency>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant-commons-net</artifactId>
- <version>1.7.1</version>
+ <version>1.8.2</version>
</dependency>
<dependency>
<groupId>org.apache.ant</groupId>
<artifactId>ant-apache-regexp</artifactId>
- <version>1.7.1</version>
+ <version>1.8.2</version>
</dependency>
<dependency>
<groupId>ant-contrib</groupId>
12 years, 3 months
JBoss Tools SVN: r42319 - trunk/download.jboss.org/jbosstools/updates/juno.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2012-06-29 13:12:59 -0400 (Fri, 29 Jun 2012)
New Revision: 42319
Modified:
trunk/download.jboss.org/jbosstools/updates/juno/index.html
Log:
add links to SOA Tooling comp reqs mirrors too
Modified: trunk/download.jboss.org/jbosstools/updates/juno/index.html
===================================================================
--- trunk/download.jboss.org/jbosstools/updates/juno/index.html 2012-06-29 17:07:45 UTC (rev 42318)
+++ trunk/download.jboss.org/jbosstools/updates/juno/index.html 2012-06-29 17:12:59 UTC (rev 42319)
@@ -27,12 +27,20 @@
Point Eclipse at this URL to browse or install features. You can also explore this site's contents via its <a class=link href=compositeArtifacts.xml>compositeArtifacts.xml</a> file, or <a href=../requirements/>here</a>. For more on building this site, see <a href=README.building.txt>this README</a>.
</p>
- <p class="bodyText">Available Versions:<ul>
+ <p class="bodyText">Available Versions - <b style="color:green">Core</b>:
+ <ul>
<li><a href=SR0>Juno SR0</a></li>
<ul><li><a href=extras>Juno Extras</a> (currently the same as the <a href="../indigo/extras/">Indigo extras</a>)</li></ul>
<li><a href=M6>Juno M6</a></li>
</ul>
</p>
+ <p class="bodyText">Available Versions - <b style="color:blue">SOA</b>:
+ <ul>
+ <li><a href=soa-tooling/SR0>Juno SR0</a></li>
+ <li><a href=soa/tooling/M6>Juno M6</a></li>
+ </ul>
+ </p>
+
</td>
</tr>
<tr class="light-row" style="height: 30px">
12 years, 3 months