JBoss Tools SVN: r21764 - trunk/modeshape/tests/org.jboss.tools.modeshape.rest.test/src/org/jboss/tools/modeshape/rest.
by jbosstools-commits@lists.jboss.org
Author: elvisisking
Date: 2010-04-27 14:53:33 -0400 (Tue, 27 Apr 2010)
New Revision: 21764
Added:
trunk/modeshape/tests/org.jboss.tools.modeshape.rest.test/src/org/jboss/tools/modeshape/rest/AllTests.java
Log:
JBIDE-5318 Move Eclipse-based client DNA publishing projects to JBoss Tools SVN: Created an AllTests.java test suite class.
Added: trunk/modeshape/tests/org.jboss.tools.modeshape.rest.test/src/org/jboss/tools/modeshape/rest/AllTests.java
===================================================================
--- trunk/modeshape/tests/org.jboss.tools.modeshape.rest.test/src/org/jboss/tools/modeshape/rest/AllTests.java (rev 0)
+++ trunk/modeshape/tests/org.jboss.tools.modeshape.rest.test/src/org/jboss/tools/modeshape/rest/AllTests.java 2010-04-27 18:53:33 UTC (rev 21764)
@@ -0,0 +1,10 @@
+package org.jboss.tools.modeshape.rest;
+
+import org.junit.runner.RunWith;
+import org.junit.runners.Suite;
+
+@RunWith( Suite.class )
+(a)Suite.SuiteClasses( {PersistedServerTest.class, ServerManagerTest.class, ServerRegistryEventTest.class} )
+public class AllTests {
+ // nothing to do
+}
Property changes on: trunk/modeshape/tests/org.jboss.tools.modeshape.rest.test/src/org/jboss/tools/modeshape/rest/AllTests.java
___________________________________________________________________
Name: svn:mime-type
+ text/plain
14 years, 8 months
JBoss Tools SVN: r21763 - in trunk: drools/tests/org.jboss.tools.drools.ui.bot.test/src/org/jboss/tools/drools/ui/bot/test/smoke and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: vpakan(a)redhat.com
Date: 2010-04-27 13:31:58 -0400 (Tue, 27 Apr 2010)
New Revision: 21763
Added:
trunk/drools/tests/org.jboss.tools.drools.ui.bot.test/src/org/jboss/tools/drools/ui/bot/test/smoke/DomainSpecificLanguageEditorTest.java
Modified:
trunk/drools/tests/org.jboss.tools.drools.ui.bot.test/src/org/jboss/tools/drools/ui/bot/test/DroolsAllBotTests.java
trunk/jst/tests/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/types/EntityType.java
trunk/jst/tests/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/types/IDELabel.java
Log:
Added Domain Specific Language File Editor
Modified: trunk/drools/tests/org.jboss.tools.drools.ui.bot.test/src/org/jboss/tools/drools/ui/bot/test/DroolsAllBotTests.java
===================================================================
--- trunk/drools/tests/org.jboss.tools.drools.ui.bot.test/src/org/jboss/tools/drools/ui/bot/test/DroolsAllBotTests.java 2010-04-27 17:29:41 UTC (rev 21762)
+++ trunk/drools/tests/org.jboss.tools.drools.ui.bot.test/src/org/jboss/tools/drools/ui/bot/test/DroolsAllBotTests.java 2010-04-27 17:31:58 UTC (rev 21763)
@@ -14,6 +14,7 @@
import org.eclipse.swtbot.eclipse.finder.widgets.SWTBotView;
import org.eclipse.swtbot.swt.finder.exceptions.WidgetNotFoundException;
+import org.jboss.tools.drools.ui.bot.test.smoke.DomainSpecificLanguageEditorTest;
import org.jboss.tools.drools.ui.bot.test.smoke.GuidedDroolsRulesEditorTest;
import org.jboss.tools.drools.ui.bot.test.smoke.ManageDroolsRuntime;
import org.jboss.tools.drools.ui.bot.test.smoke.ManageDroolsProject;
@@ -41,7 +42,8 @@
ManageDroolsProject.class,
ManageDroolsRules.class,
DroolsRulesEditorTest.class,
- GuidedDroolsRulesEditorTest.class})
+ GuidedDroolsRulesEditorTest.class,
+ DomainSpecificLanguageEditorTest.class})
public class DroolsAllBotTests extends SWTTestExt {
public static final String DROOLS_PROJECT_NAME = "droolsTest";
public static final String DROOLS_RUNTIME_NAME = "Drools Test Runtime";
@@ -54,6 +56,7 @@
public static final String TEST_DROOLS_RULE_NAME = "TestRule.drl";
public static final String SAMPLE_DROOLS_RULE_NAME = "Sample.drl";
public static final String GUIDED_DROOLS_RULE_NAME = "GuidedRule.brl";
+ public static final String DOMAIN_SPECIFIC_LANGUAGE_FILE_NAME = "DslTest.dsl";
private static String testDroolsRuntimeName = null;
public static String getTestDroolsRuntimeName() {
return testDroolsRuntimeName;
Added: trunk/drools/tests/org.jboss.tools.drools.ui.bot.test/src/org/jboss/tools/drools/ui/bot/test/smoke/DomainSpecificLanguageEditorTest.java
===================================================================
--- trunk/drools/tests/org.jboss.tools.drools.ui.bot.test/src/org/jboss/tools/drools/ui/bot/test/smoke/DomainSpecificLanguageEditorTest.java (rev 0)
+++ trunk/drools/tests/org.jboss.tools.drools.ui.bot.test/src/org/jboss/tools/drools/ui/bot/test/smoke/DomainSpecificLanguageEditorTest.java 2010-04-27 17:31:58 UTC (rev 21763)
@@ -0,0 +1,224 @@
+ /*******************************************************************************
+ * Copyright (c) 2007-2010 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.drools.ui.bot.test.smoke;
+
+import org.eclipse.swt.SWT;
+import org.eclipse.swtbot.eclipse.finder.widgets.SWTBotEclipseEditor;
+import org.eclipse.swtbot.eclipse.finder.widgets.SWTBotEditor;
+import org.eclipse.swtbot.swt.finder.SWTBot;
+import org.eclipse.swtbot.swt.finder.widgets.SWTBotTreeItem;
+import org.jboss.tools.ui.bot.ext.SWTEclipseExt;
+import org.jboss.tools.ui.bot.ext.SWTTestExt;
+import org.jboss.tools.ui.bot.ext.Timing;
+import org.jboss.tools.ui.bot.ext.helper.KeyboardHelper;
+import org.jboss.tools.ui.bot.ext.types.EntityType;
+import org.jboss.tools.ui.bot.ext.types.IDELabel;
+import org.jboss.tools.ui.bot.ext.types.JobName;
+import org.jboss.tools.ui.bot.ext.view.ProblemsView;
+import org.jboss.tools.drools.ui.bot.test.DroolsAllBotTests;
+import org.junit.Test;
+/**
+ * Tests Domain Specific Language Editor
+ * @author Vladimir Pakan
+ *
+ */
+public class DomainSpecificLanguageEditorTest extends SWTTestExt{
+ /**
+ * Tests Domain Specific Language Editor
+ */
+ private static final String LANGUAGE_EXRESSION = "Message {msg} of type {t} contains {what}";
+ @Test
+ public void testGuidedDroolsRulesEditorTest() {
+ createDslFile(DroolsAllBotTests.DOMAIN_SPECIFIC_LANGUAGE_FILE_NAME);
+ addDslExpression(DroolsAllBotTests.DOMAIN_SPECIFIC_LANGUAGE_FILE_NAME);
+ useDslExpression(DroolsAllBotTests.DOMAIN_SPECIFIC_LANGUAGE_FILE_NAME,
+ DroolsAllBotTests.SAMPLE_DROOLS_RULE_NAME);
+ runDslExpressionCheck(DroolsAllBotTests.DROOLS_TEST_JAVA_TREE_NODE,
+ DroolsAllBotTests.DOMAIN_SPECIFIC_LANGUAGE_FILE_NAME);
+ }
+ /**
+ * Creates DSL File
+ * @param dslFileName
+ */
+ private void createDslFile(String dslFileName){
+ packageExplorer.show();
+ SWTBotTreeItem tiRules = packageExplorer.selectTreeItem(DroolsAllBotTests.SRC_MAIN_RULES_TREE_NODE,
+ new String[] {DroolsAllBotTests.DROOLS_PROJECT_NAME});
+
+ tiRules.select();
+ eclipse.createNew(EntityType.DSL_DROOLS_FILE);
+ bot.textWithLabel(IDELabel.NewDslDroolsFileDialog.FILE_NAME).setText(dslFileName);
+ eclipse.selectTreeLocation(DroolsAllBotTests.DROOLS_PROJECT_NAME,
+ "src",
+ "main",
+ "rules");
+ bot.button(IDELabel.Button.FINISH).click();
+ bot.sleep(Timing.time1S());
+ tiRules.expand();
+ // Test if new DSL File is within package tree view
+ assertTrue("New DSL File was not created properly. It's not present within Package Explorer",
+ SWTEclipseExt.containsTreeItemWithLabel(tiRules, dslFileName));
+ // Test if new DSL File is opened in editor
+ assertTrue("New DSL File was not created properly. File " + dslFileName + " is not opened in editor",
+ SWTEclipseExt.existEditorWithLabel(bot,dslFileName));
+
+ }
+ /**
+ * Adds DSL Expression to DSL File
+ * @param dslFileName
+ */
+ private void addDslExpression(String dslFileName){
+ SWTBotEditor dslRuleEditor = bot.editorByTitle(dslFileName);
+ SWTBot dslRuleEditorBot = dslRuleEditor.bot();
+ dslRuleEditorBot
+ .button(IDELabel.Button.ADD_WITHOUT_DOTS).click();
+ SWTBot dialogBot = dslRuleEditorBot
+ .shell(IDELabel.DslDroolsFileEditor.ADD_LANGUAGE_MAPPING_DIALOG_TITLE)
+ .activate()
+ .bot();
+
+ dialogBot.textWithLabel(IDELabel.DslDroolsFileEditor.LANGUAGE_EXPRESSION_TEXT_LABEL)
+ .setText(DomainSpecificLanguageEditorTest.LANGUAGE_EXRESSION);
+ dialogBot.textWithLabel(IDELabel.DslDroolsFileEditor.RULE_MAPPING_TEXT_LABEL)
+ .setText("{msg} : Message(status == {t}, {what} : message)");
+ dialogBot.comboBoxWithLabel(IDELabel.DslDroolsFileEditor.SCOPE_COMBO_LABEL)
+ .setSelection(IDELabel.DslDroolsFileEditor.SCOPE_COMBO_VALUE);
+ dialogBot.button(IDELabel.Button.OK).click();
+ dslRuleEditor.save();
+
+ assertTrue("DSL table has to containt this Language Expression:\n" +
+ DomainSpecificLanguageEditorTest.LANGUAGE_EXRESSION,
+ SWTEclipseExt.isItemInTableColumn(dslRuleEditorBot.table(),
+ DomainSpecificLanguageEditorTest.LANGUAGE_EXRESSION,
+ 0));
+
+ }
+ /**
+ * Use defined language expression in dslFileName file within sampleDrlFileName file
+ * @param dslFileName
+ * @param sampleDrlFileName
+ */
+ private void useDslExpression (String dslFileName,String sampleDrlFileName){
+ packageExplorer.show();
+ SWTBotEclipseEditor drlDroolsEditor = packageExplorer.openFile(DroolsAllBotTests.DROOLS_PROJECT_NAME ,
+ DroolsAllBotTests.SRC_MAIN_RULES_TREE_NODE,
+ DroolsAllBotTests.SAMPLE_DROOLS_RULE_NAME).toTextEditor();
+ // update drl file
+ drlDroolsEditor.insertText(3,0,"\nexpander " +
+ dslFileName +
+ ";\n");
+ int[] linesToIgnoreExpander = new int[]{8,10,11,12,13,20};
+ for (int lineNumber : linesToIgnoreExpander){
+ drlDroolsEditor.insertText(lineNumber,0,">");
+ }
+ drlDroolsEditor.selectLine(18);
+ KeyboardHelper.pressKeyCode(bot.getDisplay(),(int)SWT.DEL);
+ drlDroolsEditor.insertText(18, 0, " Message m of type Message.GOODBYE contains myMessage");
+ drlDroolsEditor.save();
+ util.waitForJobs(Timing.time10S(), JobName.BUILDING_WS);
+ SWTBotTreeItem[] errors = ProblemsView
+ .getFilteredErrorsTreeItems(bot,
+ null,
+ null,
+ sampleDrlFileName,
+ null);
+ assertTrue("File "
+ + sampleDrlFileName
+ + " was not udpated properly. There are these errors: "
+ + SWTEclipseExt.getFormattedTreeNodesText(bot.tree(), errors),
+ errors == null || errors.length == 0);
+
+ SWTBotTreeItem[] warnings = ProblemsView
+ .getFilteredWarningsTreeItems(bot,
+ null,
+ null,
+ sampleDrlFileName,
+ null);
+ assertTrue("File "
+ + sampleDrlFileName
+ + " was not udpated properly. There are these warnings: "
+ + SWTEclipseExt.getFormattedTreeNodesText(bot.tree(), warnings),
+ warnings == null || warnings.length == 0);
+ }
+ /**
+ * Runs javaFileName testing defined DSL
+ * @param javaFileName
+ * @param dslFileName
+ */
+ private void runDslExpressionCheck(String javaFileName,
+ String dslFileName){
+
+ packageExplorer.show();
+ SWTBotEclipseEditor drlDroolsEditor = packageExplorer.openFile(DroolsAllBotTests.DROOLS_PROJECT_NAME ,
+ DroolsAllBotTests.SRC_MAIN_JAVA_TREE_NODE,
+ DroolsAllBotTests.COM_SAMPLE_TREE_NODE,
+ javaFileName).toTextEditor();
+ // Change java file content to support new DSL
+ updateJavaTestFile(drlDroolsEditor,dslFileName);
+
+ console.clearConsole();
+ bot.sleep(Timing.time5S());
+
+ SWTBotTreeItem tiTestFile = packageExplorer.selectTreeItem(javaFileName,
+ new String[] {DroolsAllBotTests.DROOLS_PROJECT_NAME,
+ DroolsAllBotTests.SRC_MAIN_JAVA_TREE_NODE,
+ DroolsAllBotTests.COM_SAMPLE_TREE_NODE});
+
+ eclipse.runTreeItemAsJavaApplication(tiTestFile);
+
+ String consoleText = console.getConsoleText(3*1000L,60*1000L,true);
+
+ assertTrue(javaFileName + " didn't run properly.\n" +
+ "Console Text was: " + consoleText + "\n" +
+ "Expected console text is: " + "Hello World\nGoodbye cruel world\n",
+ "Hello World\nGoodbye cruel world\n".equals(consoleText));
+ }
+ /**
+ * Update properly Java Test file in drlDroolsEditor to be able to run
+ * with new DSL definition
+ * @param drlDroolsEditor
+ * @param dslFileName
+ */
+ private void updateJavaTestFile(SWTBotEclipseEditor drlDroolsEditor,
+ String dslFileName){
+ int lineIndex = 0;
+ String foundLineText = null;
+ while (lineIndex < drlDroolsEditor.getLineCount() && foundLineText == null){
+ String lineText = drlDroolsEditor.getTextOnLine(lineIndex);
+ if(lineText.trim().startsWith("kbuilder.add")){
+ foundLineText = lineText;
+ }
+ else{
+ lineIndex++;
+ }
+ }
+ if (foundLineText != null){
+ drlDroolsEditor.insertText(lineIndex,0,
+ "kbuilder.add(ResourceFactory.newClassPathResource(\"" +
+ dslFileName +
+ "\"), ResourceType.DSL);\n");
+ lineIndex++;
+ drlDroolsEditor.selectLine(lineIndex);
+ KeyboardHelper.pressKeyCode(bot.getDisplay(),(int)SWT.DEL);
+ drlDroolsEditor.insertText(foundLineText
+ .replace("ResourceType.DRL","ResourceType.DSLR") + "\n");
+ drlDroolsEditor.save();
+ util.waitForJobs(Timing.time10S(), JobName.BUILDING_WS);
+ }
+ else{
+ throw new RuntimeException("File " +
+ drlDroolsEditor.getTitle() +
+ " has wrong content. It doesn't contain 'kbuilder.add' string.");
+ }
+ }
+
+}
\ No newline at end of file
Property changes on: trunk/drools/tests/org.jboss.tools.drools.ui.bot.test/src/org/jboss/tools/drools/ui/bot/test/smoke/DomainSpecificLanguageEditorTest.java
___________________________________________________________________
Name: svn:mime-type
+ text/plain
Modified: trunk/jst/tests/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/types/EntityType.java
===================================================================
--- trunk/jst/tests/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/types/EntityType.java 2010-04-27 17:29:41 UTC (rev 21762)
+++ trunk/jst/tests/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/types/EntityType.java 2010-04-27 17:31:58 UTC (rev 21763)
@@ -22,7 +22,7 @@
public enum EntityType {
HIBERNATE_MAPPING_FILE, JAVA_PROJECT, JAVA_CLASS, HIBERNATE_REVERSE_FILE, HIBERNATE_CONSOLE,
HIBERNATE_CONFIGURATION_FILE, STRUTS_PROJECT, JPA_PROJECT, DROOLS_PROJECT, DROOLS_RULE,
- GUIDED_DROOLS_RULE;
+ GUIDED_DROOLS_RULE,DSL_DROOLS_FILE;
public List<String> getGroupsLabels() {
List<String> groupLabel = new LinkedList<String>();
@@ -38,7 +38,8 @@
case JPA_PROJECT: groupLabel.add(IDELabel.EntityGroup.JPA);break;
case DROOLS_PROJECT: groupLabel.add(IDELabel.EntityGroup.DROOLS);break;
case DROOLS_RULE: groupLabel.add(IDELabel.EntityGroup.DROOLS);break;
- case GUIDED_DROOLS_RULE: groupLabel.add(IDELabel.EntityGroup.DROOLS);break;
+ case GUIDED_DROOLS_RULE: groupLabel.add(IDELabel.EntityGroup.DROOLS);break;
+ case DSL_DROOLS_FILE: groupLabel.add(IDELabel.EntityGroup.DROOLS);break;
default: fail("Unknown Entity Type");
}
@@ -64,6 +65,7 @@
case DROOLS_PROJECT: entityLabel = IDELabel.EntityLabel.DROOLS_PROJECT; break;
case DROOLS_RULE: entityLabel = IDELabel.EntityLabel.DROOLS_RULE; break;
case GUIDED_DROOLS_RULE: entityLabel = IDELabel.EntityLabel.GUIDED_DROOLS_RULE; break;
+ case DSL_DROOLS_FILE: entityLabel = IDELabel.EntityLabel.DSL_DROOLS_FILE; break;
default: fail("Unknown Entity Type");
}
Modified: trunk/jst/tests/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/types/IDELabel.java
===================================================================
--- trunk/jst/tests/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/types/IDELabel.java 2010-04-27 17:29:41 UTC (rev 21762)
+++ trunk/jst/tests/org.jboss.tools.ui.bot.ext/src/org/jboss/tools/ui/bot/ext/types/IDELabel.java 2010-04-27 17:31:58 UTC (rev 21763)
@@ -83,6 +83,7 @@
public static final String CONTINUE = "Continue";
public static final String REMOVE = "Remove";
public static final String EDIT = "Edit...";
+ public static final String ADD_WITHOUT_DOTS = "Add";
}
public class Shell {
@@ -142,6 +143,7 @@
public static final String DROOLS_PROJECT = "Drools Project";
public static final String DROOLS_RULE = "Rule Resource";
public static final String GUIDED_DROOLS_RULE = "Guided Rule";
+ public static final String DSL_DROOLS_FILE = "Domain Specific Language";
}
public class JavaProjectWizard {
@@ -411,4 +413,20 @@
public static final String FIELD_VALUE_COMBO_VALUE = "true";
}
+
+ public static final class NewDslDroolsFileDialog {
+
+ public static final String FILE_NAME = "File name:";
+
+ }
+
+ public static final class DslDroolsFileEditor {
+
+ public static final String ADD_LANGUAGE_MAPPING_DIALOG_TITLE = "New language mapping";
+ public static final String LANGUAGE_EXPRESSION_TEXT_LABEL = "Language expression:";
+ public static final String RULE_MAPPING_TEXT_LABEL = "Rule mapping:";
+ public static final String SCOPE_COMBO_LABEL = "Scope:";
+ public static final String SCOPE_COMBO_VALUE = "condition";
+
+ }
}
14 years, 8 months
JBoss Tools SVN: r21762 - trunk/drools/tests/org.jboss.tools.drools.ui.bot.test/src/org/jboss/tools/drools/ui/bot/test/smoke.
by jbosstools-commits@lists.jboss.org
Author: vpakan(a)redhat.com
Date: 2010-04-27 13:29:41 -0400 (Tue, 27 Apr 2010)
New Revision: 21762
Modified:
trunk/drools/tests/org.jboss.tools.drools.ui.bot.test/src/org/jboss/tools/drools/ui/bot/test/smoke/DroolsRulesEditorTest.java
Log:
Rename main test method to testDroolsRulesEditor.
Modified: trunk/drools/tests/org.jboss.tools.drools.ui.bot.test/src/org/jboss/tools/drools/ui/bot/test/smoke/DroolsRulesEditorTest.java
===================================================================
--- trunk/drools/tests/org.jboss.tools.drools.ui.bot.test/src/org/jboss/tools/drools/ui/bot/test/smoke/DroolsRulesEditorTest.java 2010-04-27 17:04:38 UTC (rev 21761)
+++ trunk/drools/tests/org.jboss.tools.drools.ui.bot.test/src/org/jboss/tools/drools/ui/bot/test/smoke/DroolsRulesEditorTest.java 2010-04-27 17:29:41 UTC (rev 21762)
@@ -19,7 +19,6 @@
import org.jboss.tools.ui.bot.ext.types.IDELabel;
import org.jboss.tools.drools.ui.bot.test.DroolsAllBotTests;
import org.junit.Test;
-// import org.eclipse.ui.forms.editor.FormEditor;
/**
* Tests Drools Rule Editor
* @author Vladimir Pakan
@@ -32,7 +31,7 @@
private static final String CONTENT_ASSIST_IMPORT = "import";
private static final String CONTENT_ASSIST_MESSAGE = "Message";
@Test
- public void testManageDroolsProject() {
+ public void testDroolsRulesEditor() {
codeCompletionCheck(DroolsAllBotTests.SAMPLE_DROOLS_RULE_NAME);
reteViewCheck(DroolsAllBotTests.SAMPLE_DROOLS_RULE_NAME);
}
14 years, 8 months
JBoss Tools SVN: r21761 - trunk/modeshape/plugins/org.jboss.tools.modeshape.rest.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-04-27 13:04:38 -0400 (Tue, 27 Apr 2010)
New Revision: 21761
Added:
trunk/modeshape/plugins/org.jboss.tools.modeshape.rest/pom.xml
Log:
add pom.xml
Added: trunk/modeshape/plugins/org.jboss.tools.modeshape.rest/pom.xml
===================================================================
--- trunk/modeshape/plugins/org.jboss.tools.modeshape.rest/pom.xml (rev 0)
+++ trunk/modeshape/plugins/org.jboss.tools.modeshape.rest/pom.xml 2010-04-27 17:04:38 UTC (rev 21761)
@@ -0,0 +1,14 @@
+<project
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <relativePath>../../../parent-pom.xml</relativePath>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>org.jboss.tools.parent.pom</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>org.jboss.tools.modeshape.rest</artifactId>
+ <version>1.0.0</version>
+ <packaging>eclipse-plugin</packaging>
+</project>
14 years, 8 months
JBoss Tools SVN: r21760 - in branches/modular_build/modeshape: features and 6 other directories.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-04-27 13:04:17 -0400 (Tue, 27 Apr 2010)
New Revision: 21760
Added:
branches/modular_build/modeshape/features/org.jboss.tools.modeshape.rest.feature/pom.xml
branches/modular_build/modeshape/features/org.jboss.tools.modeshape.rest.test.feature/pom.xml
branches/modular_build/modeshape/features/pom.xml
branches/modular_build/modeshape/plugins/org.jboss.tools.modeshape.rest/pom.xml
branches/modular_build/modeshape/plugins/pom.xml
branches/modular_build/modeshape/pom.xml
branches/modular_build/modeshape/tests/org.jboss.tools.modeshape.rest.test/pom.xml
branches/modular_build/modeshape/tests/pom.xml
Log:
add pom.xml files
Added: branches/modular_build/modeshape/features/org.jboss.tools.modeshape.rest.feature/pom.xml
===================================================================
--- branches/modular_build/modeshape/features/org.jboss.tools.modeshape.rest.feature/pom.xml (rev 0)
+++ branches/modular_build/modeshape/features/org.jboss.tools.modeshape.rest.feature/pom.xml 2010-04-27 17:04:17 UTC (rev 21760)
@@ -0,0 +1,14 @@
+<project
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <relativePath>../../../parent-pom.xml</relativePath>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>org.jboss.tools.parent.pom</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>org.jboss.tools.modeshape.rest.feature</artifactId>
+ <version>1.0.0</version>
+ <packaging>eclipse-feature</packaging>
+</project>
Added: branches/modular_build/modeshape/features/org.jboss.tools.modeshape.rest.test.feature/pom.xml
===================================================================
--- branches/modular_build/modeshape/features/org.jboss.tools.modeshape.rest.test.feature/pom.xml (rev 0)
+++ branches/modular_build/modeshape/features/org.jboss.tools.modeshape.rest.test.feature/pom.xml 2010-04-27 17:04:17 UTC (rev 21760)
@@ -0,0 +1,14 @@
+<project
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <relativePath>../../../parent-pom.xml</relativePath>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>org.jboss.tools.parent.pom</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>org.jboss.tools.modeshape.rest.test.feature</artifactId>
+ <version>1.0.0</version>
+ <packaging>eclipse-feature</packaging>
+</project>
Added: branches/modular_build/modeshape/features/pom.xml
===================================================================
--- branches/modular_build/modeshape/features/pom.xml (rev 0)
+++ branches/modular_build/modeshape/features/pom.xml 2010-04-27 17:04:17 UTC (rev 21760)
@@ -0,0 +1,19 @@
+<project
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <relativePath>../../parent-pom.xml</relativePath>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>org.jboss.tools.parent.pom</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>modeshape.features</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <modules>
+ <module>org.jboss.tools.modeshape.rest.feature</module>
+ <module>org.jboss.tools.modeshape.rest.test.feature</module>
+ </modules>
+</project>
+
\ No newline at end of file
Added: branches/modular_build/modeshape/plugins/org.jboss.tools.modeshape.rest/pom.xml
===================================================================
--- branches/modular_build/modeshape/plugins/org.jboss.tools.modeshape.rest/pom.xml (rev 0)
+++ branches/modular_build/modeshape/plugins/org.jboss.tools.modeshape.rest/pom.xml 2010-04-27 17:04:17 UTC (rev 21760)
@@ -0,0 +1,14 @@
+<project
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <relativePath>../../../parent-pom.xml</relativePath>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>org.jboss.tools.parent.pom</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>org.jboss.tools.modeshape.rest</artifactId>
+ <version>1.0.0</version>
+ <packaging>eclipse-plugin</packaging>
+</project>
Added: branches/modular_build/modeshape/plugins/pom.xml
===================================================================
--- branches/modular_build/modeshape/plugins/pom.xml (rev 0)
+++ branches/modular_build/modeshape/plugins/pom.xml 2010-04-27 17:04:17 UTC (rev 21760)
@@ -0,0 +1,18 @@
+<project
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <relativePath>../../parent-pom.xml</relativePath>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>org.jboss.tools.parent.pom</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>modeshape.plugins</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <modules>
+ <module>org.jboss.tools.modeshape.rest</module>
+ </modules>
+</project>
+
\ No newline at end of file
Added: branches/modular_build/modeshape/pom.xml
===================================================================
--- branches/modular_build/modeshape/pom.xml (rev 0)
+++ branches/modular_build/modeshape/pom.xml 2010-04-27 17:04:17 UTC (rev 21760)
@@ -0,0 +1,20 @@
+<project
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <relativePath>../parent-pom.xml</relativePath>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>org.jboss.tools.parent.pom</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>modeshape.all</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <modules>
+ <module>features</module>
+ <module>plugins</module>
+ <module>tests</module>
+ </modules>
+</project>
+
\ No newline at end of file
Added: branches/modular_build/modeshape/tests/org.jboss.tools.modeshape.rest.test/pom.xml
===================================================================
--- branches/modular_build/modeshape/tests/org.jboss.tools.modeshape.rest.test/pom.xml (rev 0)
+++ branches/modular_build/modeshape/tests/org.jboss.tools.modeshape.rest.test/pom.xml 2010-04-27 17:04:17 UTC (rev 21760)
@@ -0,0 +1,14 @@
+<project
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <relativePath>../../../parent-pom.xml</relativePath>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>org.jboss.tools.parent.pom</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>org.jboss.tools.modeshape.rest.test</artifactId>
+ <version>1.0.0</version>
+ <packaging>eclipse-test-plugin</packaging>
+</project>
Added: branches/modular_build/modeshape/tests/pom.xml
===================================================================
--- branches/modular_build/modeshape/tests/pom.xml (rev 0)
+++ branches/modular_build/modeshape/tests/pom.xml 2010-04-27 17:04:17 UTC (rev 21760)
@@ -0,0 +1,18 @@
+<project
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <relativePath>../../parent-pom.xml</relativePath>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>org.jboss.tools.parent.pom</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>modeshape.tests</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <modules>
+ <module>org.jboss.tools.modeshape.rest.test</module>
+ </modules>
+</project>
+
\ No newline at end of file
14 years, 8 months
JBoss Tools SVN: r21759 - in trunk/modeshape: features and 5 other directories.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-04-27 13:03:13 -0400 (Tue, 27 Apr 2010)
New Revision: 21759
Added:
trunk/modeshape/features/org.jboss.tools.modeshape.rest.feature/pom.xml
trunk/modeshape/features/org.jboss.tools.modeshape.rest.test.feature/pom.xml
trunk/modeshape/features/pom.xml
trunk/modeshape/plugins/pom.xml
trunk/modeshape/pom.xml
trunk/modeshape/tests/org.jboss.tools.modeshape.rest.test/pom.xml
trunk/modeshape/tests/pom.xml
Log:
add pom.xml files
Added: trunk/modeshape/features/org.jboss.tools.modeshape.rest.feature/pom.xml
===================================================================
--- trunk/modeshape/features/org.jboss.tools.modeshape.rest.feature/pom.xml (rev 0)
+++ trunk/modeshape/features/org.jboss.tools.modeshape.rest.feature/pom.xml 2010-04-27 17:03:13 UTC (rev 21759)
@@ -0,0 +1,14 @@
+<project
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <relativePath>../../../parent-pom.xml</relativePath>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>org.jboss.tools.parent.pom</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>org.jboss.tools.modeshape.rest.feature</artifactId>
+ <version>1.0.0</version>
+ <packaging>eclipse-feature</packaging>
+</project>
Added: trunk/modeshape/features/org.jboss.tools.modeshape.rest.test.feature/pom.xml
===================================================================
--- trunk/modeshape/features/org.jboss.tools.modeshape.rest.test.feature/pom.xml (rev 0)
+++ trunk/modeshape/features/org.jboss.tools.modeshape.rest.test.feature/pom.xml 2010-04-27 17:03:13 UTC (rev 21759)
@@ -0,0 +1,14 @@
+<project
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <relativePath>../../../parent-pom.xml</relativePath>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>org.jboss.tools.parent.pom</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>org.jboss.tools.modeshape.rest.test.feature</artifactId>
+ <version>1.0.0</version>
+ <packaging>eclipse-feature</packaging>
+</project>
Added: trunk/modeshape/features/pom.xml
===================================================================
--- trunk/modeshape/features/pom.xml (rev 0)
+++ trunk/modeshape/features/pom.xml 2010-04-27 17:03:13 UTC (rev 21759)
@@ -0,0 +1,19 @@
+<project
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <relativePath>../../parent-pom.xml</relativePath>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>org.jboss.tools.parent.pom</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>modeshape.features</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <modules>
+ <module>org.jboss.tools.modeshape.rest.feature</module>
+ <module>org.jboss.tools.modeshape.rest.test.feature</module>
+ </modules>
+</project>
+
\ No newline at end of file
Added: trunk/modeshape/plugins/pom.xml
===================================================================
--- trunk/modeshape/plugins/pom.xml (rev 0)
+++ trunk/modeshape/plugins/pom.xml 2010-04-27 17:03:13 UTC (rev 21759)
@@ -0,0 +1,18 @@
+<project
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <relativePath>../../parent-pom.xml</relativePath>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>org.jboss.tools.parent.pom</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>modeshape.plugins</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <modules>
+ <module>org.jboss.tools.modeshape.rest</module>
+ </modules>
+</project>
+
\ No newline at end of file
Added: trunk/modeshape/pom.xml
===================================================================
--- trunk/modeshape/pom.xml (rev 0)
+++ trunk/modeshape/pom.xml 2010-04-27 17:03:13 UTC (rev 21759)
@@ -0,0 +1,20 @@
+<project
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <relativePath>../parent-pom.xml</relativePath>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>org.jboss.tools.parent.pom</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>modeshape.all</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <modules>
+ <module>features</module>
+ <module>plugins</module>
+ <module>tests</module>
+ </modules>
+</project>
+
\ No newline at end of file
Added: trunk/modeshape/tests/org.jboss.tools.modeshape.rest.test/pom.xml
===================================================================
--- trunk/modeshape/tests/org.jboss.tools.modeshape.rest.test/pom.xml (rev 0)
+++ trunk/modeshape/tests/org.jboss.tools.modeshape.rest.test/pom.xml 2010-04-27 17:03:13 UTC (rev 21759)
@@ -0,0 +1,14 @@
+<project
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <relativePath>../../../parent-pom.xml</relativePath>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>org.jboss.tools.parent.pom</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>org.jboss.tools.modeshape.rest.test</artifactId>
+ <version>1.0.0</version>
+ <packaging>eclipse-test-plugin</packaging>
+</project>
Added: trunk/modeshape/tests/pom.xml
===================================================================
--- trunk/modeshape/tests/pom.xml (rev 0)
+++ trunk/modeshape/tests/pom.xml 2010-04-27 17:03:13 UTC (rev 21759)
@@ -0,0 +1,18 @@
+<project
+xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
+ <modelVersion>4.0.0</modelVersion>
+ <parent>
+ <relativePath>../../parent-pom.xml</relativePath>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>org.jboss.tools.parent.pom</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ </parent>
+ <groupId>org.jboss.tools</groupId>
+ <artifactId>modeshape.tests</artifactId>
+ <version>0.0.1-SNAPSHOT</version>
+ <packaging>pom</packaging>
+ <modules>
+ <module>org.jboss.tools.modeshape.rest.test</module>
+ </modules>
+</project>
+
\ No newline at end of file
14 years, 8 months
JBoss Tools SVN: r21758 - trunk/modeshape/releng/psfs.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-04-27 13:02:30 -0400 (Tue, 27 Apr 2010)
New Revision: 21758
Modified:
trunk/modeshape/releng/psfs/project.subclipse.psf
trunk/modeshape/releng/psfs/project.subversive.psf
Log:
use new tests.sdk.feature
Modified: trunk/modeshape/releng/psfs/project.subclipse.psf
===================================================================
--- trunk/modeshape/releng/psfs/project.subclipse.psf 2010-04-27 16:35:38 UTC (rev 21757)
+++ trunk/modeshape/releng/psfs/project.subclipse.psf 2010-04-27 17:02:30 UTC (rev 21758)
@@ -6,6 +6,7 @@
<project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/modeshape/features/..."/>
<project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/modeshape/features/..."/>
<project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/modeshape/features/..."/>
+ <project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/modeshape/features/..."/>
<project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/modeshape/plugins/o..."/>
<project reference="0.9.3,http://anonsvn.jboss.org/repos/jbosstools/trunk/modeshape/tests/org..."/>
Modified: trunk/modeshape/releng/psfs/project.subversive.psf
===================================================================
--- trunk/modeshape/releng/psfs/project.subversive.psf 2010-04-27 16:35:38 UTC (rev 21757)
+++ trunk/modeshape/releng/psfs/project.subversive.psf 2010-04-27 17:02:30 UTC (rev 21758)
@@ -6,6 +6,7 @@
<project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/modeshape/features/..."/>
<project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/modeshape/features/..."/>
<project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/modeshape/features/..."/>
+ <project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/modeshape/features/..."/>
<project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/modeshape/plugins/o..."/>
<project reference="1.0.1,http://anonsvn.jboss.org/repos/jbosstools/trunk/modeshape/tests/org..."/>
14 years, 8 months
JBoss Tools SVN: r21757 - trunk.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-04-27 12:35:38 -0400 (Tue, 27 Apr 2010)
New Revision: 21757
Modified:
trunk/genpom.xml
trunk/parent-pom.xml
Log:
update from modular_build branch
Modified: trunk/genpom.xml
===================================================================
--- trunk/genpom.xml 2010-04-27 16:31:18 UTC (rev 21756)
+++ trunk/genpom.xml 2010-04-27 16:35:38 UTC (rev 21757)
@@ -5,7 +5,7 @@
<property name="COMPONENT" value="trunk" />
<property name="pomVersion" value="0.0.1-SNAPSHOT" />
<property name="dirsToExclude"
- value="**/*.sdk.*, **/doc*, **/releng/**, **/download.jboss.org, **/sampleprojects/**, **/util/**, **/test, **/builders, **/contrib, **/releng/**, ."
+ value="**/*.sdk.*, **/doc*, **/releng/**, **/build/**, **/download.jboss.org, **/sampleprojects/**, **/util/**, **/test, **/builders/**, **/contrib, **/releng/**, ."
/>
<property name="overwrite.existing.pom.xml" value="false" />
<!-- Configuration Ends -->
@@ -454,7 +454,7 @@
<!-- summary -->
<length string="${modulecountstring}" property="modulecount" />
<length string="${aggregatorcountstring}" property="aggregatorcount" />
- <echo level="info">Modules: ${modulecount} Aggregations: ${aggregatorcount}</echo>
+ <echo level="info">${WORKINGDIR}/${COMPONENT} :: Modules: ${modulecount}, Aggregations: ${aggregatorcount}</echo>
</target>
Modified: trunk/parent-pom.xml
===================================================================
--- trunk/parent-pom.xml 2010-04-27 16:31:18 UTC (rev 21756)
+++ trunk/parent-pom.xml 2010-04-27 16:35:38 UTC (rev 21757)
@@ -10,7 +10,7 @@
<properties>
<tychoVersion>0.9.0-SNAPSHOT</tychoVersion>
<!-- <tychoVersion>0.8.0</tychoVersion> -->
- <scmBranch>modular_build</scmBranch>
+ <scmBranch>trunk</scmBranch>
</properties>
<build>
@@ -120,9 +120,9 @@
</build>
<scm>
- <connection>scm:svn:http://anonsvn.jboss.org/repos/jbosstools/branches/${scmBranch}
+ <connection>scm:svn:http://anonsvn.jboss.org/repos/jbosstools/${scmBranch}
</connection>
- <developerConnection>scm:svn:http://anonsvn.jboss.org/repos/jbosstools/branches/${scmBranch}
+ <developerConnection>scm:svn:http://anonsvn.jboss.org/repos/jbosstools/${scmBranch}
</developerConnection>
<url>http://anonsvn.jboss.org/repos/jbosstools/branches/${scmBranch}
</url>
14 years, 8 months
JBoss Tools SVN: r21756 - trunk/build.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-04-27 12:31:18 -0400 (Tue, 27 Apr 2010)
New Revision: 21756
Modified:
trunk/build/build.xml
Log:
switch to fetch from trunk
Modified: trunk/build/build.xml
===================================================================
--- trunk/build/build.xml 2010-04-27 16:25:35 UTC (rev 21755)
+++ trunk/build/build.xml 2010-04-27 16:31:18 UTC (rev 21756)
@@ -17,7 +17,7 @@
/>
<!-- svn root, including trunk or branch path -->
- <property name="svn.root" value="http://anonsvn.jboss.org/repos/jbosstools/branches/modular_build" />
+ <property name="svn.root" value="http://anonsvn.jboss.org/repos/jbosstools/trunk" />
<!-- default maven version -->
<property name="maven.version" value="3.0-alpha-7" />
14 years, 8 months
JBoss Tools SVN: r21755 - trunk/cdi/tests/org.jboss.tools.cdi.core.test/src/org/jboss/tools/cdi/core/test/tck.
by jbosstools-commits@lists.jboss.org
Author: scabanovich
Date: 2010-04-27 12:25:35 -0400 (Tue, 27 Apr 2010)
New Revision: 21755
Modified:
trunk/cdi/tests/org.jboss.tools.cdi.core.test/src/org/jboss/tools/cdi/core/test/tck/ValidationTest.java
Log:
https://jira.jboss.org/jira/browse/JBIDE-6195
Modified: trunk/cdi/tests/org.jboss.tools.cdi.core.test/src/org/jboss/tools/cdi/core/test/tck/ValidationTest.java
===================================================================
--- trunk/cdi/tests/org.jboss.tools.cdi.core.test/src/org/jboss/tools/cdi/core/test/tck/ValidationTest.java 2010-04-27 16:24:14 UTC (rev 21754)
+++ trunk/cdi/tests/org.jboss.tools.cdi.core.test/src/org/jboss/tools/cdi/core/test/tck/ValidationTest.java 2010-04-27 16:25:35 UTC (rev 21755)
@@ -276,7 +276,7 @@
*/
public void testObserverMethodWithDisposesParamFails() throws Exception {
IFile file = tckProject.getFile("JavaSource/org/jboss/jsr299/tck/tests/event/broken/observer/isDisposer/FoxTerrier_Broken.java");
- AbstractResourceMarkerTest.assertMarkerIsCreated(file, AbstractResourceMarkerTest.MARKER_TYPE, CDIValidationMessages.OBSERVER_PARAMETER_ILLEGALLY_ANNOTATED, 32, 32);
+ AbstractResourceMarkerTest.assertMarkerIsCreated(file, AbstractResourceMarkerTest.MARKER_TYPE, CDIValidationMessages.OBSERVER_PARAMETER_ILLEGALLY_ANNOTATED, 28, 28);
}
public static int getMarkersNumber(IResource resource) {
14 years, 8 months