JBoss Tools SVN: r39589 - branches/jbosstools-3.3.0.Beta1/build.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2012-03-16 15:00:06 -0400 (Fri, 16 Mar 2012)
New Revision: 39589
Modified:
branches/jbosstools-3.3.0.Beta1/build/publish.sh
Log:
missing bootstrap step when publishing a new job for the first time
Modified: branches/jbosstools-3.3.0.Beta1/build/publish.sh
===================================================================
--- branches/jbosstools-3.3.0.Beta1/build/publish.sh 2012-03-16 18:59:51 UTC (rev 39588)
+++ branches/jbosstools-3.3.0.Beta1/build/publish.sh 2012-03-16 19:00:06 UTC (rev 39589)
@@ -409,6 +409,7 @@
date; rsync -arzq --delete ${STAGINGDIR}/* $INTRNALDEST/builds/staging/${JOB_NAME}.next
# cycle internal copy of ${JOB_NAME} in staging and staging.previous
+ mkdir -p $INTRNALDEST/builds/staging/${JOB_NAME}/
# purge contents of /builds/staging.previous/${JOB_NAME} and remove empty dir
rm -fr $INTRNALDEST/builds/staging.previous/${JOB_NAME}/
# move contents of /builds/staging/${JOB_NAME} into /builds/staging.previous/${JOB_NAME}
12 years, 7 months
JBoss Tools SVN: r39588 - trunk/build.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2012-03-16 14:59:51 -0400 (Fri, 16 Mar 2012)
New Revision: 39588
Modified:
trunk/build/publish.sh
Log:
missing bootstrap step when publishing a new job for the first time
Modified: trunk/build/publish.sh
===================================================================
--- trunk/build/publish.sh 2012-03-16 18:44:47 UTC (rev 39587)
+++ trunk/build/publish.sh 2012-03-16 18:59:51 UTC (rev 39588)
@@ -414,6 +414,7 @@
date; rsync -arzq --delete ${STAGINGDIR}/* $INTRNALDEST/builds/staging/${JOB_NAME}.next
# cycle internal copy of ${JOB_NAME} in staging and staging.previous
+ mkdir -p $INTRNALDEST/builds/staging/${JOB_NAME}/
# purge contents of /builds/staging.previous/${JOB_NAME} and remove empty dir
rm -fr $INTRNALDEST/builds/staging.previous/${JOB_NAME}/
# move contents of /builds/staging/${JOB_NAME} into /builds/staging.previous/${JOB_NAME}
12 years, 7 months
JBoss Tools SVN: r39587 - in trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test: editor/tags and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: vpakan(a)redhat.com
Date: 2012-03-16 14:44:47 -0400 (Fri, 16 Mar 2012)
New Revision: 39587
Added:
trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/ArticleTagTest.java
trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/AsideTagTest.java
Modified:
trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/VPEAllBotTests.java
trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/VPEAutoTestCase.java
trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/AbstractTagTest.java
trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/TestPageType.java
Log:
Added tests for HTML5 tags <ASIDE> and <ARTICLE>.
Modified: trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/VPEAllBotTests.java
===================================================================
--- trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/VPEAllBotTests.java 2012-03-16 18:41:37 UTC (rev 39586)
+++ trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/VPEAllBotTests.java 2012-03-16 18:44:47 UTC (rev 39587)
@@ -44,6 +44,8 @@
import org.jboss.tools.vpe.ui.bot.test.editor.tags.ActionParamTagTest;
import org.jboss.tools.vpe.ui.bot.test.editor.tags.AjaxInvisibleTagsTest;
import org.jboss.tools.vpe.ui.bot.test.editor.tags.AjaxValidatorTagTest;
+import org.jboss.tools.vpe.ui.bot.test.editor.tags.ArticleTagTest;
+import org.jboss.tools.vpe.ui.bot.test.editor.tags.AsideTagTest;
import org.jboss.tools.vpe.ui.bot.test.editor.tags.BeanValidatorTagTest;
import org.jboss.tools.vpe.ui.bot.test.editor.tags.CalendarTagTest;
import org.jboss.tools.vpe.ui.bot.test.editor.tags.ColumnGroupTagTest;
@@ -104,7 +106,7 @@
@RunWith(RequirementAwareSuite.class)
@SuiteClasses ({
- VisualEditorContextMenuTest.class,
+ VisualEditorContextMenuTest.class,
EditingActionsTest.class,
NewXHTMLPageWizardTest.class,
CodeCompletionTest.class,
@@ -190,7 +192,9 @@
MarkersTest.class,
JBIDE9445Test_DuplicateSourceMenu.class,
TestNPEinHugeFile.class,
- Jbide10020_TestHotKeyForVpeRefresh.class
+ Jbide10020_TestHotKeyForVpeRefresh.class,
+ ArticleTagTest.class,
+ AsideTagTest.class
})
public class VPEAllBotTests extends SWTBotTestCase{
Modified: trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/VPEAutoTestCase.java
===================================================================
--- trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/VPEAutoTestCase.java 2012-03-16 18:41:37 UTC (rev 39586)
+++ trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/VPEAutoTestCase.java 2012-03-16 18:44:47 UTC (rev 39587)
@@ -695,5 +695,37 @@
}
}
+ /**
+ * Creates new empty HTML page within test project
+ *
+ * @param pageName
+ * @param subDirs
+ * - complete path to page location within workspace
+ */
+ protected void createHtmlPage(String pageName, String... subDirs) {
+ SWTBotTreeItem tiPageParent = null;
+ if (subDirs == null || subDirs.length == 0) {
+ tiPageParent = packageExplorer.selectTreeItem("pages",
+ new String[] { VPEAutoTestCase.JBT_TEST_PROJECT_NAME,
+ "WebContent" });
+ } else {
+ String[] subPath = Arrays.copyOfRange(subDirs, 0,
+ subDirs.length - 1);
+ tiPageParent = packageExplorer.selectTreeItem(
+ subDirs[subDirs.length - 1], subPath);
+ }
+ tiPageParent.expand();
+ try {
+ tiPageParent.getNode(pageName).doubleClick();
+ } catch (WidgetNotFoundException e) {
+ open.newObject(ActionItem.NewObject.WebHTMLPage.LABEL);
+ bot.shell(IDELabel.Shell.NEW_HTML_FILE).activate();
+ bot.textWithLabel(ActionItem.NewObject.WebHTMLPage.TEXT_FILE_NAME)
+ .setText(pageName);
+ bot.button(IDELabel.Button.NEXT).click();
+ bot.button(IDELabel.Button.FINISH).click();
+ }
+ bot.sleep(Timing.time2S());
+ }
}
Modified: trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/AbstractTagTest.java
===================================================================
--- trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/AbstractTagTest.java 2012-03-16 18:41:37 UTC (rev 39586)
+++ trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/AbstractTagTest.java 2012-03-16 18:44:47 UTC (rev 39587)
@@ -25,6 +25,7 @@
*/
public abstract class AbstractTagTest extends VPEEditorTestCase {
+ private static final String TEST_PAGE_NAME_HTML = "TagTest.html";
private static final String TEST_PAGE_NAME_JSP = "TagTest.jsp";
private static final String TEST_PAGE_NAME_XHTML = "TagTest.xhtml";
@@ -51,7 +52,11 @@
*/
protected void initTestPage(TestPageType testPageType , String pageText){
this.testPageType = testPageType;
- if (testPageType.equals(TestPageType.JSP)){
+ if (testPageType.equals(TestPageType.HTML)){
+ createHtmlPage(AbstractTagTest.TEST_PAGE_NAME_HTML);
+ sourceEditor = botExt.swtBotEditorExtByTitle(AbstractTagTest.TEST_PAGE_NAME_HTML);
+ visualEditor = new SWTBotWebBrowser(AbstractTagTest.TEST_PAGE_NAME_HTML,botExt);
+ }else if (testPageType.equals(TestPageType.JSP)){
createJspPage(AbstractTagTest.TEST_PAGE_NAME_JSP);
sourceEditor = botExt.swtBotEditorExtByTitle(AbstractTagTest.TEST_PAGE_NAME_JSP);
visualEditor = new SWTBotWebBrowser(AbstractTagTest.TEST_PAGE_NAME_JSP,botExt);
@@ -127,7 +132,9 @@
protected String getTestPageFileName() {
String fileName = null;
- if (testPageType.equals(TestPageType.JSP)){
+ if (testPageType.equals(TestPageType.HTML)){
+ fileName = AbstractTagTest.TEST_PAGE_NAME_HTML;
+ }else if (testPageType.equals(TestPageType.JSP)){
fileName = AbstractTagTest.TEST_PAGE_NAME_JSP;
} else if (testPageType.equals(TestPageType.XHTML)){
fileName = AbstractTagTest.TEST_PAGE_NAME_XHTML;
Added: trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/ArticleTagTest.java
===================================================================
--- trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/ArticleTagTest.java (rev 0)
+++ trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/ArticleTagTest.java 2012-03-16 18:44:47 UTC (rev 39587)
@@ -0,0 +1,49 @@
+/*******************************************************************************
+
+ * Copyright (c) 2007-2011 Exadel, Inc. and 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
+ *
+ * Contributors:
+ * Exadel, Inc. and Red Hat, Inc. - initial API and implementation
+ ******************************************************************************/
+package org.jboss.tools.vpe.ui.bot.test.editor.tags;
+
+/**
+ * Tests Rich Faces Calendar Tag behavior
+ * @author vlado pakan
+ *
+ */
+public class ArticleTagTest extends AbstractTagTest{
+ private static String ARTICLE_TEXT = "!@#$ ARTICLE TEXT $#@!";
+ @Override
+ protected void initTestPage() {
+ initTestPage(TestPageType.HTML,
+ "<!DOCTYPE html>\n" +
+ "<html>\n" +
+ " <head>\n" +
+ " <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n" +
+ " <title>Insert title here</title>\n" +
+ " </head>\n" +
+ " <body>\n" +
+ " <article>\n" +
+ " " + ArticleTagTest.ARTICLE_TEXT + "\n" +
+ " </article>\n" +
+ " </body>\n" +
+ "</html>\n");
+ }
+
+ @Override
+ protected void verifyTag() {
+ // check Problems View for Errors
+ assertProbelmsViewNoErrors(botExt);
+ // visual representation contains ARTICLE tag
+ assertVisualEditorContains(getVisualEditor(), "ARTICLE", null, null, getTestPageFileName());
+ // visual representation contains ARTICLE_TEXT text
+ assertVisualEditorContainsNodeWithValue(getVisualEditor(),
+ ArticleTagTest.ARTICLE_TEXT, getTestPageFileName());
+ }
+
+}
Property changes on: trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/ArticleTagTest.java
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Added: trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/AsideTagTest.java
===================================================================
--- trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/AsideTagTest.java (rev 0)
+++ trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/AsideTagTest.java 2012-03-16 18:44:47 UTC (rev 39587)
@@ -0,0 +1,49 @@
+/*******************************************************************************
+
+ * Copyright (c) 2007-2011 Exadel, Inc. and 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
+ *
+ * Contributors:
+ * Exadel, Inc. and Red Hat, Inc. - initial API and implementation
+ ******************************************************************************/
+package org.jboss.tools.vpe.ui.bot.test.editor.tags;
+
+/**
+ * Tests Rich Faces Calendar Tag behavior
+ * @author vlado pakan
+ *
+ */
+public class AsideTagTest extends AbstractTagTest{
+ private static String ASIDE_TEXT = "!@#$ ASIDE TEXT $#@!";
+ @Override
+ protected void initTestPage() {
+ initTestPage(TestPageType.HTML,
+ "<!DOCTYPE html>\n" +
+ "<html>\n" +
+ " <head>\n" +
+ " <meta http-equiv=\"Content-Type\" content=\"text/html; charset=UTF-8\">\n" +
+ " <title>Insert title here</title>\n" +
+ " </head>\n" +
+ " <body>\n" +
+ " <aside>\n" +
+ " " + AsideTagTest.ASIDE_TEXT + "\n" +
+ " </aside>\n" +
+ " </body>\n" +
+ "</html>\n");
+ }
+
+ @Override
+ protected void verifyTag() {
+ // check Problems View for Errors
+ assertProbelmsViewNoErrors(botExt);
+ // visual representation contains ARTICLE tag
+ assertVisualEditorContains(getVisualEditor(), "ASIDE", null, null, getTestPageFileName());
+ // visual representation contains ARTICLE_TEXT text
+ assertVisualEditorContainsNodeWithValue(getVisualEditor(),
+ AsideTagTest.ASIDE_TEXT, getTestPageFileName());
+ }
+
+}
Property changes on: trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/AsideTagTest.java
___________________________________________________________________
Added: svn:mime-type
+ text/plain
Modified: trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/TestPageType.java
===================================================================
--- trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/TestPageType.java 2012-03-16 18:41:37 UTC (rev 39586)
+++ trunk/vpe/tests/org.jboss.tools.vpe.ui.bot.test/src/org/jboss/tools/vpe/ui/bot/test/editor/tags/TestPageType.java 2012-03-16 18:44:47 UTC (rev 39587)
@@ -11,6 +11,7 @@
package org.jboss.tools.vpe.ui.bot.test.editor.tags;
public enum TestPageType {
+ HTML,
XHTML,
JSP;
}
12 years, 7 months
JBoss Tools SVN: r39586 - trunk/build.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2012-03-16 14:41:37 -0400 (Fri, 16 Mar 2012)
New Revision: 39586
Modified:
trunk/build/publish.sh
Log:
missing bootstrap step when publishing a new job for the first time
Modified: trunk/build/publish.sh
===================================================================
--- trunk/build/publish.sh 2012-03-16 18:41:16 UTC (rev 39585)
+++ trunk/build/publish.sh 2012-03-16 18:41:37 UTC (rev 39586)
@@ -339,6 +339,7 @@
# JBIDE-8667 move current to previous; move next to current
if [[ ${DESTINATION##*@*:*} == "" ]]; then # user@server, do remote op
# create folders if not already there (could be empty)
+ echo -e "mkdir ${JOB_NAME}" | sftp $DESTINATION/builds/staging/
echo -e "mkdir ${JOB_NAME}" | sftp $DESTINATION/builds/staging.previous/
#echo -e "mkdir ${JOB_NAME}.2" | sftp $DESTINATION/builds/staging.previous/
@@ -365,6 +366,7 @@
echo -e "rename ${JOB_NAME}.next ${JOB_NAME}" | sftp $DESTINATION/builds/staging/
else # work locally
# create folders if not already there (could be empty)
+ mkdir -p $DESTINATION/builds/staging/${JOB_NAME}
mkdir -p $DESTINATION/builds/staging.previous/${JOB_NAME}
#mkdir -p $DESTINATION/builds/staging.previous/${JOB_NAME}.2
12 years, 7 months
JBoss Tools SVN: r39585 - branches/jbosstools-3.3.0.Beta1/build.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2012-03-16 14:41:16 -0400 (Fri, 16 Mar 2012)
New Revision: 39585
Modified:
branches/jbosstools-3.3.0.Beta1/build/publish.sh
Log:
missing bootstrap step when publishing a new job for the first time
Modified: branches/jbosstools-3.3.0.Beta1/build/publish.sh
===================================================================
--- branches/jbosstools-3.3.0.Beta1/build/publish.sh 2012-03-16 18:34:45 UTC (rev 39584)
+++ branches/jbosstools-3.3.0.Beta1/build/publish.sh 2012-03-16 18:41:16 UTC (rev 39585)
@@ -334,6 +334,7 @@
# JBIDE-8667 move current to previous; move next to current
if [[ ${DESTINATION##*@*:*} == "" ]]; then # user@server, do remote op
# create folders if not already there (could be empty)
+ echo -e "mkdir ${JOB_NAME}" | sftp $DESTINATION/builds/staging/
echo -e "mkdir ${JOB_NAME}" | sftp $DESTINATION/builds/staging.previous/
#echo -e "mkdir ${JOB_NAME}.2" | sftp $DESTINATION/builds/staging.previous/
@@ -360,6 +361,7 @@
echo -e "rename ${JOB_NAME}.next ${JOB_NAME}" | sftp $DESTINATION/builds/staging/
else # work locally
# create folders if not already there (could be empty)
+ mkdir -p $DESTINATION/builds/staging/${JOB_NAME}
mkdir -p $DESTINATION/builds/staging.previous/${JOB_NAME}
#mkdir -p $DESTINATION/builds/staging.previous/${JOB_NAME}.2
12 years, 7 months
JBoss Tools SVN: r39584 - branches/jbosstools-3.3.0.Beta1/runtime-soa.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2012-03-16 14:34:45 -0400 (Fri, 16 Mar 2012)
New Revision: 39584
Modified:
branches/jbosstools-3.3.0.Beta1/runtime-soa/pom.xml
Log:
revert runtime-soa root pom to use parent pom from 0.0.3 (Beta1 branch) JBIDE-10968
Modified: branches/jbosstools-3.3.0.Beta1/runtime-soa/pom.xml
===================================================================
--- branches/jbosstools-3.3.0.Beta1/runtime-soa/pom.xml 2012-03-16 18:31:11 UTC (rev 39583)
+++ branches/jbosstools-3.3.0.Beta1/runtime-soa/pom.xml 2012-03-16 18:34:45 UTC (rev 39584)
@@ -4,8 +4,8 @@
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.jboss.tools</groupId>
- <artifactId>parent</artifactId>
- <version>0.0.4-SNAPSHOT</version>
+ <artifactId>org.jboss.tools.parent.pom</artifactId>
+ <version>0.0.3-SNAPSHOT</version>
<relativePath>../build/parent/pom.xml</relativePath>
</parent>
<groupId>org.jboss.tools</groupId>
@@ -18,19 +18,5 @@
<module>features</module>
<module>site</module>
</modules>
-
- <repositories>
- <!-- To resolve parent artifact -->
- <repository>
- <id>jboss-public-repository-group</id>
- <name>JBoss Public Repository Group</name>
- <url>http://repository.jboss.org/nexus/content/groups/public/</url>
- </repository>
- <repository>
- <id>jboss-snapshots-repository</id>
- <name>JBoss Snapshots Repository</name>
- <url>https://repository.jboss.org/nexus/content/repositories/snapshots/</url>
- </repository>
- </repositories>
</project>
12 years, 7 months
JBoss Tools SVN: r39582 - in trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-tooling: trunk and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2012-03-16 14:27:21 -0400 (Fri, 16 Mar 2012)
New Revision: 39582
Modified:
trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-toolin...
trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-toolin...
trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-toolin...
trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-toolin...
Log:
add runtime-soa component to soa-tooling composite staging site
Modified: trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-toolin...
===================================================================
--- trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-toolin... 2012-03-16 18:13:50 UTC (rev 39581)
+++ trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-toolin... 2012-03-16 18:27:21 UTC (rev 39582)
@@ -7,18 +7,20 @@
get new time w/
date +%s000
-->
-<property name='p2.timestamp' value='1327343492000'/>
+<property name='p2.timestamp' value='1331922270000'/>
</properties>
-<children size='9'>
+<children size='10'>
-<!-- SOA Tooling : 9 x 1 = 9 -->
+<!-- SOA Tooling : 10 x 1 = 10 -->
<child location='../../../../staging/jbosstools-3.3_stable_branch.component--bpel/all/repo/'/>
<child location='../../../../staging/jbosstools-drools-5.3_stable_branch/all/repo/'/>
<child location='../../../../staging/jbosstools-3.3_stable_branch.component--esb/all/repo/'/>
<child location='../../../../staging/jbosstools-3.3_stable_branch.component--flow/all/repo/'/>
<child location='../../../../staging/jbosstools-3.3_stable_branch.component--jbpm/all/repo/'/>
+
<child location='../../../../staging/jbosstools-3.3_stable_branch.component--modeshape/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--runtime-soa/all/repo/'/>
<child location='http://download.jboss.org/savara/releases/updates/2.0.x/' />
<child location='../../../../staging/SwitchYard-Tools/eclipse/'/>
<child location='../../../../staging/jbosstools-teiid-designer-7.6_stable_branch/all/repo/'/>
Modified: trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-toolin...
===================================================================
--- trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-toolin... 2012-03-16 18:13:50 UTC (rev 39581)
+++ trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-toolin... 2012-03-16 18:27:21 UTC (rev 39582)
@@ -7,18 +7,20 @@
get new time w/
date +%s000
-->
-<property name='p2.timestamp' value='1327343495000'/>
+<property name='p2.timestamp' value='1331922270000'/>
</properties>
-<children size='9'>
+<children size='10'>
-<!-- SOA Tooling : 9 x 1 = 9 -->
+<!-- SOA Tooling : 10 x 1 = 10 -->
<child location='../../../../staging/jbosstools-3.3_stable_branch.component--bpel/all/repo/'/>
<child location='../../../../staging/jbosstools-drools-5.3_stable_branch/all/repo/'/>
<child location='../../../../staging/jbosstools-3.3_stable_branch.component--esb/all/repo/'/>
<child location='../../../../staging/jbosstools-3.3_stable_branch.component--flow/all/repo/'/>
<child location='../../../../staging/jbosstools-3.3_stable_branch.component--jbpm/all/repo/'/>
+
<child location='../../../../staging/jbosstools-3.3_stable_branch.component--modeshape/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_stable_branch.component--runtime-soa/all/repo/'/>
<child location='http://download.jboss.org/savara/releases/updates/2.0.x/' />
<child location='../../../../staging/SwitchYard-Tools/eclipse/'/>
<child location='../../../../staging/jbosstools-teiid-designer-7.6_stable_branch/all/repo/'/>
Modified: trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-toolin...
===================================================================
--- trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-toolin... 2012-03-16 18:13:50 UTC (rev 39581)
+++ trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-toolin... 2012-03-16 18:27:21 UTC (rev 39582)
@@ -7,18 +7,20 @@
get new time w/
date +%s000
-->
-<property name='p2.timestamp' value='1327343487000'/>
+<property name='p2.timestamp' value='1331922371000'/>
</properties>
-<children size='18'>
+<children size='20'>
-<!-- SOA Tooling : 9 x 2 = 18 -->
+<!-- SOA Tooling : 10 x 2 = 20 -->
<child location='../../../../staging/jbosstools-3.3_trunk.component--bpel/all/repo/'/>
<child location='../../../../staging/jbosstools-drools-5.3_trunk/all/repo/'/>
<child location='../../../../staging/jbosstools-3.3_trunk.component--esb/all/repo/'/>
<child location='../../../../staging/jbosstools-3.3_trunk.component--flow/all/repo/'/>
<child location='../../../../staging/jbosstools-3.3_trunk.component--jbpm/all/repo/'/>
+
<child location='../../../../staging/jbosstools-3.3_trunk.component--modeshape/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--runtime-soa/all/repo/'/>
<child location='../../../../staging/savara-tools-eclipse-master/all/repo/'/>
<child location='../../../../staging/SwitchYard-Tools/eclipse/'/>
<child location='../../../../staging/jbosstools-teiid-designer_trunk/all/repo/'/>
@@ -28,7 +30,9 @@
<child location='../../../../staging.previous/jbosstools-drools-5.3_trunk/all/repo/'/>
<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--flow/all/repo/'/>
<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--jbpm/all/repo/'/>
+
<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--modeshape/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--runtime-soa/all/repo/'/>
<child location='../../../../staging.previous/savara-tools-eclipse-master/all/repo/'/>
<child location='../../../../staging.previous/SwitchYard-Tools/eclipse/'/>
<child location='../../../../staging.previous/jbosstools-teiid-designer_trunk/all/repo/'/>
Modified: trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-toolin...
===================================================================
--- trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-toolin... 2012-03-16 18:13:50 UTC (rev 39581)
+++ trunk/download.jboss.org/jbosstools/builds/staging/_composite_/soa-toolin... 2012-03-16 18:27:21 UTC (rev 39582)
@@ -7,18 +7,20 @@
get new time w/
date +%s000
-->
-<property name='p2.timestamp' value='1327343490000'/>
+<property name='p2.timestamp' value='1331922371000'/>
</properties>
-<children size='18'>
+<children size='20'>
-<!-- SOA Tooling : 9 x 2 = 18 -->
+<!-- SOA Tooling : 10 x 2 = 20 -->
<child location='../../../../staging/jbosstools-3.3_trunk.component--bpel/all/repo/'/>
<child location='../../../../staging/jbosstools-drools-5.3_trunk/all/repo/'/>
<child location='../../../../staging/jbosstools-3.3_trunk.component--esb/all/repo/'/>
<child location='../../../../staging/jbosstools-3.3_trunk.component--flow/all/repo/'/>
<child location='../../../../staging/jbosstools-3.3_trunk.component--jbpm/all/repo/'/>
+
<child location='../../../../staging/jbosstools-3.3_trunk.component--modeshape/all/repo/'/>
+<child location='../../../../staging/jbosstools-3.3_trunk.component--runtime-soa/all/repo/'/>
<child location='../../../../staging/savara-tools-eclipse-master/all/repo/'/>
<child location='../../../../staging/SwitchYard-Tools/eclipse/'/>
<child location='../../../../staging/jbosstools-teiid-designer_trunk/all/repo/'/>
@@ -28,7 +30,9 @@
<child location='../../../../staging.previous/jbosstools-drools-5.3_trunk/all/repo/'/>
<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--flow/all/repo/'/>
<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--jbpm/all/repo/'/>
+
<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--modeshape/all/repo/'/>
+<child location='../../../../staging.previous/jbosstools-3.3_trunk.component--runtime-soa/all/repo/'/>
<child location='../../../../staging.previous/savara-tools-eclipse-master/all/repo/'/>
<child location='../../../../staging.previous/SwitchYard-Tools/eclipse/'/>
<child location='../../../../staging.previous/jbosstools-teiid-designer_trunk/all/repo/'/>
12 years, 7 months
JBoss Tools SVN: r39581 - trunk/build.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2012-03-16 14:13:50 -0400 (Fri, 16 Mar 2012)
New Revision: 39581
Modified:
trunk/build/pom-soa-tooling.xml
Log:
add bootstrap profile for runtime-soa component (JBIDE-10968)
Modified: trunk/build/pom-soa-tooling.xml
===================================================================
--- trunk/build/pom-soa-tooling.xml 2012-03-16 18:12:35 UTC (rev 39580)
+++ trunk/build/pom-soa-tooling.xml 2012-03-16 18:13:50 UTC (rev 39581)
@@ -126,6 +126,28 @@
</profile>
<profile>
+ <id>runtime-soa</id>
+ <activation>
+ <activeByDefault>true</activeByDefault>
+ </activation>
+ <modules>
+ <module>../runtime-soa</module>
+ </modules>
+ </profile>
+
+ <profile>
+ <id>runtime-soa-bootstrap</id>
+ <modules>
+ <module>../tests</module>
+ <module>../common</module>
+ <module>../jmx</module>
+ <module>../usage</module>
+ <module>../runtime</module>
+ <module>../runtime-soa</module>
+ </modules>
+ </profile>
+
+ <profile>
<id>smooks</id>
<activation>
<activeByDefault>true</activeByDefault>
12 years, 7 months
JBoss Tools SVN: r39580 - in trunk/runtime-soa: features/org.jboss.tools.runtime.esb.detector.feature and 7 other directories.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2012-03-16 14:12:35 -0400 (Fri, 16 Mar 2012)
New Revision: 39580
Modified:
trunk/runtime-soa/features/org.jboss.tools.runtime.drools.detector.feature/pom.xml
trunk/runtime-soa/features/org.jboss.tools.runtime.esb.detector.feature/pom.xml
trunk/runtime-soa/features/org.jboss.tools.runtime.jbpm.detector.feature/pom.xml
trunk/runtime-soa/plugins/org.jboss.tools.runtime.drools.detector/META-INF/MANIFEST.MF
trunk/runtime-soa/plugins/org.jboss.tools.runtime.drools.detector/pom.xml
trunk/runtime-soa/plugins/org.jboss.tools.runtime.esb.detector/META-INF/MANIFEST.MF
trunk/runtime-soa/plugins/org.jboss.tools.runtime.esb.detector/pom.xml
trunk/runtime-soa/plugins/org.jboss.tools.runtime.jbpm.detector/META-INF/MANIFEST.MF
trunk/runtime-soa/plugins/org.jboss.tools.runtime.jbpm.detector/pom.xml
Log:
fix GAVs and set restrictive limits in MANIFEST.MF: [3.7.0,3.8.0)
Modified: trunk/runtime-soa/features/org.jboss.tools.runtime.drools.detector.feature/pom.xml
===================================================================
--- trunk/runtime-soa/features/org.jboss.tools.runtime.drools.detector.feature/pom.xml 2012-03-16 17:17:39 UTC (rev 39579)
+++ trunk/runtime-soa/features/org.jboss.tools.runtime.drools.detector.feature/pom.xml 2012-03-16 18:12:35 UTC (rev 39580)
@@ -3,7 +3,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
- <groupId>org.jboss.tools.runtime</groupId>
+ <groupId>org.jboss.tools.runtime-soa</groupId>
<artifactId>features</artifactId>
<version>1.3.0-SNAPSHOT</version>
</parent>
@@ -11,4 +11,4 @@
<artifactId>org.jboss.tools.runtime.drools.detector.feature</artifactId>
<packaging>eclipse-feature</packaging>
-</project>
\ No newline at end of file
+</project>
Modified: trunk/runtime-soa/features/org.jboss.tools.runtime.esb.detector.feature/pom.xml
===================================================================
--- trunk/runtime-soa/features/org.jboss.tools.runtime.esb.detector.feature/pom.xml 2012-03-16 17:17:39 UTC (rev 39579)
+++ trunk/runtime-soa/features/org.jboss.tools.runtime.esb.detector.feature/pom.xml 2012-03-16 18:12:35 UTC (rev 39580)
@@ -3,7 +3,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
- <groupId>org.jboss.tools.runtime</groupId>
+ <groupId>org.jboss.tools.runtime-soa</groupId>
<artifactId>features</artifactId>
<version>1.3.0-SNAPSHOT</version>
</parent>
@@ -11,4 +11,4 @@
<artifactId>org.jboss.tools.runtime.esb.detector.feature</artifactId>
<packaging>eclipse-feature</packaging>
-</project>
\ No newline at end of file
+</project>
Modified: trunk/runtime-soa/features/org.jboss.tools.runtime.jbpm.detector.feature/pom.xml
===================================================================
--- trunk/runtime-soa/features/org.jboss.tools.runtime.jbpm.detector.feature/pom.xml 2012-03-16 17:17:39 UTC (rev 39579)
+++ trunk/runtime-soa/features/org.jboss.tools.runtime.jbpm.detector.feature/pom.xml 2012-03-16 18:12:35 UTC (rev 39580)
@@ -3,7 +3,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
- <groupId>org.jboss.tools.runtime</groupId>
+ <groupId>org.jboss.tools.runtime-soa</groupId>
<artifactId>features</artifactId>
<version>1.3.0-SNAPSHOT</version>
</parent>
@@ -11,4 +11,4 @@
<artifactId>org.jboss.tools.runtime.jbpm.detector.feature</artifactId>
<packaging>eclipse-feature</packaging>
-</project>
\ No newline at end of file
+</project>
Modified: trunk/runtime-soa/plugins/org.jboss.tools.runtime.drools.detector/META-INF/MANIFEST.MF
===================================================================
--- trunk/runtime-soa/plugins/org.jboss.tools.runtime.drools.detector/META-INF/MANIFEST.MF 2012-03-16 17:17:39 UTC (rev 39579)
+++ trunk/runtime-soa/plugins/org.jboss.tools.runtime.drools.detector/META-INF/MANIFEST.MF 2012-03-16 18:12:35 UTC (rev 39580)
@@ -4,8 +4,8 @@
Bundle-SymbolicName: org.jboss.tools.runtime.drools.detector;singleton:=true
Bundle-Version: 1.3.0.qualifier
Bundle-Activator: org.jboss.tools.runtime.drools.detector.RuntimeDroolsActivator
-Require-Bundle: org.eclipse.ui;bundle-version="3.7.0",
- org.eclipse.core.runtime;bundle-version="3.7.0",
+Require-Bundle: org.eclipse.ui;bundle-version="[3.7.0,3.8.0)",
+ org.eclipse.core.runtime;bundle-version="[3.7.0,3.8.0)",
org.jboss.tools.runtime.core,
org.drools.eclipse
Bundle-ActivationPolicy: lazy
Modified: trunk/runtime-soa/plugins/org.jboss.tools.runtime.drools.detector/pom.xml
===================================================================
--- trunk/runtime-soa/plugins/org.jboss.tools.runtime.drools.detector/pom.xml 2012-03-16 17:17:39 UTC (rev 39579)
+++ trunk/runtime-soa/plugins/org.jboss.tools.runtime.drools.detector/pom.xml 2012-03-16 18:12:35 UTC (rev 39580)
@@ -3,7 +3,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
- <groupId>org.jboss.tools.runtime</groupId>
+ <groupId>org.jboss.tools.runtime-soa</groupId>
<artifactId>plugins</artifactId>
<version>1.3.0-SNAPSHOT</version>
</parent>
@@ -11,4 +11,4 @@
<artifactId>org.jboss.tools.runtime.drools.detector</artifactId>
<packaging>eclipse-plugin</packaging>
-</project>
\ No newline at end of file
+</project>
Modified: trunk/runtime-soa/plugins/org.jboss.tools.runtime.esb.detector/META-INF/MANIFEST.MF
===================================================================
--- trunk/runtime-soa/plugins/org.jboss.tools.runtime.esb.detector/META-INF/MANIFEST.MF 2012-03-16 17:17:39 UTC (rev 39579)
+++ trunk/runtime-soa/plugins/org.jboss.tools.runtime.esb.detector/META-INF/MANIFEST.MF 2012-03-16 18:12:35 UTC (rev 39580)
@@ -4,8 +4,8 @@
Bundle-SymbolicName: org.jboss.tools.runtime.esb.detector;singleton:=true
Bundle-Version: 1.3.0.qualifier
Bundle-Activator: org.jboss.tools.runtime.esb.detector.RuntimeEsbActivator
-Require-Bundle: org.eclipse.ui;bundle-version="3.7.0",
- org.eclipse.core.runtime;bundle-version="3.7.0",
+Require-Bundle: org.eclipse.ui;bundle-version="[3.7.0,3.8.0)",
+ org.eclipse.core.runtime;bundle-version="[3.7.0,3.8.0)",
org.jboss.tools.esb.project.core,
org.jboss.tools.runtime.core
Bundle-ActivationPolicy: lazy
Modified: trunk/runtime-soa/plugins/org.jboss.tools.runtime.esb.detector/pom.xml
===================================================================
--- trunk/runtime-soa/plugins/org.jboss.tools.runtime.esb.detector/pom.xml 2012-03-16 17:17:39 UTC (rev 39579)
+++ trunk/runtime-soa/plugins/org.jboss.tools.runtime.esb.detector/pom.xml 2012-03-16 18:12:35 UTC (rev 39580)
@@ -3,7 +3,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
- <groupId>org.jboss.tools.runtime</groupId>
+ <groupId>org.jboss.tools.runtime-soa</groupId>
<artifactId>plugins</artifactId>
<version>1.3.0-SNAPSHOT</version>
</parent>
@@ -11,4 +11,4 @@
<artifactId>org.jboss.tools.runtime.esb.detector</artifactId>
<packaging>eclipse-plugin</packaging>
-</project>
\ No newline at end of file
+</project>
Modified: trunk/runtime-soa/plugins/org.jboss.tools.runtime.jbpm.detector/META-INF/MANIFEST.MF
===================================================================
--- trunk/runtime-soa/plugins/org.jboss.tools.runtime.jbpm.detector/META-INF/MANIFEST.MF 2012-03-16 17:17:39 UTC (rev 39579)
+++ trunk/runtime-soa/plugins/org.jboss.tools.runtime.jbpm.detector/META-INF/MANIFEST.MF 2012-03-16 18:12:35 UTC (rev 39580)
@@ -3,8 +3,8 @@
Bundle-SymbolicName: org.jboss.tools.runtime.jbpm.detector;singleton:=true
Bundle-Version: 1.3.0.qualifier
Bundle-Activator: org.jboss.tools.runtime.jbpm.detector.RuntimeJbpmActivator
-Require-Bundle: org.eclipse.ui;bundle-version="3.7.0",
- org.eclipse.core.runtime;bundle-version="3.7.0",
+Require-Bundle: org.eclipse.ui;bundle-version="[3.7.0,3.8.0)",
+ org.eclipse.core.runtime;bundle-version="[3.7.0,3.8.0)",
org.jboss.tools.runtime.core,
org.jboss.tools.jbpm.common
Bundle-RequiredExecutionEnvironment: JavaSE-1.6
Modified: trunk/runtime-soa/plugins/org.jboss.tools.runtime.jbpm.detector/pom.xml
===================================================================
--- trunk/runtime-soa/plugins/org.jboss.tools.runtime.jbpm.detector/pom.xml 2012-03-16 17:17:39 UTC (rev 39579)
+++ trunk/runtime-soa/plugins/org.jboss.tools.runtime.jbpm.detector/pom.xml 2012-03-16 18:12:35 UTC (rev 39580)
@@ -3,7 +3,7 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
- <groupId>org.jboss.tools.runtime</groupId>
+ <groupId>org.jboss.tools.runtime-soa</groupId>
<artifactId>plugins</artifactId>
<version>1.3.0-SNAPSHOT</version>
</parent>
@@ -11,4 +11,4 @@
<artifactId>org.jboss.tools.runtime.jbpm.detector</artifactId>
<packaging>eclipse-plugin</packaging>
-</project>
\ No newline at end of file
+</project>
12 years, 7 months