JBoss Tools SVN: r25381 - trunk/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2010-09-30 23:31:58 -0400 (Thu, 30 Sep 2010)
New Revision: 25381
Modified:
trunk/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/register_a_new_repository-task.xml
Log:
updated with new information from what's new wiki
Modified: trunk/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/register_a_new_repository-task.xml
===================================================================
--- trunk/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/register_a_new_repository-task.xml 2010-10-01 03:03:30 UTC (rev 25380)
+++ trunk/modeshape/docs/ModeShape_Tools_Reference_Guide/en-US/register_a_new_repository-task.xml 2010-10-01 03:31:58 UTC (rev 25381)
@@ -20,7 +20,7 @@
<para>
To add a ModeShape repository, click on the <guilabel>Create a new server</guilabel> icon that appears in the <guilabel>Modeshape</guilabel> view. This view is located in the lower section of your interface, along with other views such as <guilabel>Severs</guilabel> and <guilabel>Console</guilabel>.
</para>
- <figure>
+ <figure id="Adding_a_new_server_for_ModeShape_repositories">
<title>Adding a new server for ModeShape repositories</title>
<mediaobject>
<imageobject>
@@ -39,5 +39,11 @@
</imageobject>
</mediaobject>
</figure>
+ <para>
+ Once the server with the ModeShape repository has been added three new options become available within the <guilabel>ModeShape</guilabel> view. These options allow you to <guilabel>Edit server properties</guilabel>, <guilabel>Delete a server from the server registry</guilabel> and <guilabel>Reconnect to the selected server</guilabel>. To perform one of these actions either right-click on a server and select from the presented menu of actions, or use the buttons beside the <guilabel>Create a new server</guilabel> button seen in <xref linkend="Adding_a_new_server_for_ModeShape_repositories"/>.
+ </para>
+ <para>
+ The <guilabel>ModeShape</guilabel> view also allows you to remove files from a workspace in an environment where the registry is being persisted from session to session.
+ </para>
</section>
14 years
JBoss Tools SVN: r25380 - in trunk/bpmn/plugins/org.jboss.tools.jbpm: src/main/java/org/jboss/tools/jbpm/wizard/project and 1 other directories.
by jbosstools-commits@lists.jboss.org
Author: KrisVerlaenen
Date: 2010-09-30 23:03:30 -0400 (Thu, 30 Sep 2010)
New Revision: 25380
Added:
trunk/bpmn/plugins/org.jboss.tools.jbpm/src/main/resources/org/jboss/tools/jbpm/wizard/project/sample.bpmn2.template
trunk/bpmn/plugins/org.jboss.tools.jbpm/src/main/resources/org/jboss/tools/jbpm/wizard/project/sample.prd.template
Removed:
trunk/bpmn/plugins/org.jboss.tools.jbpm/src/main/resources/org/jboss/tools/jbpm/wizard/project/sample.bpmn.template
Modified:
trunk/bpmn/plugins/org.jboss.tools.jbpm/META-INF/MANIFEST.MF
trunk/bpmn/plugins/org.jboss.tools.jbpm/src/main/java/org/jboss/tools/jbpm/wizard/project/NewJBPMProjectWizard.java
Log:
updated bpmn2 example
Modified: trunk/bpmn/plugins/org.jboss.tools.jbpm/META-INF/MANIFEST.MF
===================================================================
--- trunk/bpmn/plugins/org.jboss.tools.jbpm/META-INF/MANIFEST.MF 2010-10-01 02:07:14 UTC (rev 25379)
+++ trunk/bpmn/plugins/org.jboss.tools.jbpm/META-INF/MANIFEST.MF 2010-10-01 03:03:30 UTC (rev 25380)
@@ -7,19 +7,9 @@
Bundle-Vendor: JBoss, a division of Red Hat
Bundle-Localization: plugin
Require-Bundle: org.eclipse.core.runtime,
- org.eclipse.core.resources,
- org.eclipse.debug.core,
org.eclipse.debug.ui,
- org.eclipse.jface.text,
- org.eclipse.ui,
- org.eclipse.ui.console,
- org.eclipse.ui.editors,
- org.eclipse.ui.forms,
org.eclipse.ui.ide,
- org.eclipse.ui.views,
org.eclipse.ui.views.properties.tabbed,
- org.eclipse.ui.workbench.texteditor,
- com.ibm.icu,
org.eclipse.jdt.core,
org.eclipse.jdt.ui
Eclipse-LazyStart: true
Modified: trunk/bpmn/plugins/org.jboss.tools.jbpm/src/main/java/org/jboss/tools/jbpm/wizard/project/NewJBPMProjectWizard.java
===================================================================
--- trunk/bpmn/plugins/org.jboss.tools.jbpm/src/main/java/org/jboss/tools/jbpm/wizard/project/NewJBPMProjectWizard.java 2010-10-01 02:07:14 UTC (rev 25379)
+++ trunk/bpmn/plugins/org.jboss.tools.jbpm/src/main/java/org/jboss/tools/jbpm/wizard/project/NewJBPMProjectWizard.java 2010-10-01 03:03:30 UTC (rev 25380)
@@ -286,7 +286,7 @@
throws CoreException, JavaModelException, IOException {
try {
if (extraPage.createProcessFile()) {
- createRuleFlow(project, monitor);
+ createProcess(project, monitor);
}
if (extraPage.createJavaProcessFile()) {
createProcessSampleLauncher(project);
@@ -299,17 +299,24 @@
/**
* Create the sample process file.
*/
- private void createRuleFlow(IJavaProject project, IProgressMonitor monitor) throws CoreException {
-
- String fileName = "org/jboss/tools/jbpm/wizard/project/sample.bpmn.template";
+ private void createProcess(IJavaProject project, IProgressMonitor monitor) throws CoreException {
+ String fileName = "org/jboss/tools/jbpm/wizard/project/sample.bpmn2.template";
IFolder folder = project.getProject().getFolder("src/main/resources");
- IFile file = folder.getFile("sample.bpmn");
+ IFile file = folder.getFile("sample.bpmn2");
InputStream inputstream = getClass().getClassLoader().getResourceAsStream(fileName);
if (!file.exists()) {
file.create(inputstream, true, monitor);
} else {
file.setContents(inputstream, true, false, monitor);
}
+ fileName = "org/jboss/tools/jbpm/wizard/project/sample.prd.template";
+ file = folder.getFile("sample.prd");
+ inputstream = getClass().getClassLoader().getResourceAsStream(fileName);
+ if (!file.exists()) {
+ file.create(inputstream, true, monitor);
+ } else {
+ file.setContents(inputstream, true, false, monitor);
+ }
}
/**
Deleted: trunk/bpmn/plugins/org.jboss.tools.jbpm/src/main/resources/org/jboss/tools/jbpm/wizard/project/sample.bpmn.template
===================================================================
--- trunk/bpmn/plugins/org.jboss.tools.jbpm/src/main/resources/org/jboss/tools/jbpm/wizard/project/sample.bpmn.template 2010-10-01 02:07:14 UTC (rev 25379)
+++ trunk/bpmn/plugins/org.jboss.tools.jbpm/src/main/resources/org/jboss/tools/jbpm/wizard/project/sample.bpmn.template 2010-10-01 03:03:30 UTC (rev 25380)
@@ -1,27 +0,0 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<definitions id="Definition"
- targetNamespace="http://www.jboss.org/drools"
- typeLanguage="http://www.java.com/javaTypes"
- expressionLanguage="http://www.mvel.org/2.0"
- xmlns="http://www.omg.org/spec/BPMN/20100524/MODEL"
- xmlns:xs="http://www.w3.org/2001/XMLSchema-instance"
- xs:schemaLocation="http://www.omg.org/spec/BPMN/20100524/MODEL BPMN20.xsd"
- xmlns:g="http://www.jboss.org/drools/flow/gpd"
- xmlns:tns="http://www.jboss.org/drools">
-
- <process processType="Private" isExecutable="true" id="com.sample.bpmn.hello" name="Hello World" >
-
- <!-- nodes -->
- <startEvent id="_1" name="StartProcess" g:x="16" g:y="16" g:width="48" g:height="48" />
- <scriptTask id="_2" name="Hello" g:x="96" g:y="16" g:width="80" g:height="48" >
- <script>System.out.println("Hello World");</script>
- </scriptTask>
- <endEvent id="_3" name="EndProcess" g:x="208" g:y="16" g:width="48" g:height="48" />
-
- <!-- connections -->
- <sequenceFlow id="_1-_2" sourceRef="_1" targetRef="_2" />
- <sequenceFlow id="_2-_3" sourceRef="_2" targetRef="_3" />
-
- </process>
-
-</definitions>
\ No newline at end of file
Added: trunk/bpmn/plugins/org.jboss.tools.jbpm/src/main/resources/org/jboss/tools/jbpm/wizard/project/sample.bpmn2.template
===================================================================
--- trunk/bpmn/plugins/org.jboss.tools.jbpm/src/main/resources/org/jboss/tools/jbpm/wizard/project/sample.bpmn2.template (rev 0)
+++ trunk/bpmn/plugins/org.jboss.tools.jbpm/src/main/resources/org/jboss/tools/jbpm/wizard/project/sample.bpmn2.template 2010-10-01 03:03:30 UTC (rev 25380)
@@ -0,0 +1,18 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<bpmn2:definitions xmlns:bpmn2="http://www.omg.org/spec/BPMN/20100524/MODEL" id="_KyKosM0AEd-jEMnzz1kFRw">
+ <bpmn2:process id="com.sample.bpmn.hello">
+ <bpmn2:startEvent id="_U0GnsM0AEd-jEMnzz1kFRw">
+ <bpmn2:outgoing>_WZPZgM0AEd-jEMnzz1kFRw</bpmn2:outgoing>
+ </bpmn2:startEvent>
+ <bpmn2:scriptTask id="_WZB-IM0AEd-jEMnzz1kFRw" name="HelloWorld">
+ <bpmn2:incoming>_WZPZgM0AEd-jEMnzz1kFRw</bpmn2:incoming>
+ <bpmn2:outgoing>_ZS2q8M0AEd-jEMnzz1kFRw</bpmn2:outgoing>
+ <bpmn2:script>System.out.println("Hello World");</bpmn2:script>
+ </bpmn2:scriptTask>
+ <bpmn2:sequenceFlow id="_WZPZgM0AEd-jEMnzz1kFRw" sourceRef="_U0GnsM0AEd-jEMnzz1kFRw" targetRef="_WZB-IM0AEd-jEMnzz1kFRw"/>
+ <bpmn2:sequenceFlow id="_ZS2q8M0AEd-jEMnzz1kFRw" sourceRef="_WZB-IM0AEd-jEMnzz1kFRw" targetRef="_a3pegM0AEd-jEMnzz1kFRw"/>
+ <bpmn2:endEvent id="_a3pegM0AEd-jEMnzz1kFRw">
+ <bpmn2:incoming>_ZS2q8M0AEd-jEMnzz1kFRw</bpmn2:incoming>
+ </bpmn2:endEvent>
+ </bpmn2:process>
+</bpmn2:definitions>
\ No newline at end of file
Added: trunk/bpmn/plugins/org.jboss.tools.jbpm/src/main/resources/org/jboss/tools/jbpm/wizard/project/sample.prd.template
===================================================================
--- trunk/bpmn/plugins/org.jboss.tools.jbpm/src/main/resources/org/jboss/tools/jbpm/wizard/project/sample.prd.template (rev 0)
+++ trunk/bpmn/plugins/org.jboss.tools.jbpm/src/main/resources/org/jboss/tools/jbpm/wizard/project/sample.prd.template 2010-10-01 03:03:30 UTC (rev 25380)
@@ -0,0 +1,28 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<notation:Diagram xmi:version="2.0" xmlns:xmi="http://www.omg.org/XMI" xmlns:bpmn2="http://www.omg.org/spec/BPMN/20100524/MODEL-XMI" xmlns:notation="http://www.eclipse.org/gmf/runtime/1.0.2/notation" xmi:id="_KyIMcc0AEd-jEMnzz1kFRw" type="bpmn2" name="sample.prd" measurementUnit="Pixel">
+ <children xmi:type="notation:Shape" xmi:id="_U0QYsM0AEd-jEMnzz1kFRw" type="2003" fontName="Sans">
+ <element xmi:type="bpmn2:StartEvent" href="sample.bpmn2#_U0GnsM0AEd-jEMnzz1kFRw"/>
+ <layoutConstraint xmi:type="notation:Bounds" xmi:id="_U0QYsc0AEd-jEMnzz1kFRw" x="72" y="27"/>
+ </children>
+ <children xmi:type="notation:Shape" xmi:id="_WZEaYM0AEd-jEMnzz1kFRw" type="2017" fontName="Sans">
+ <children xmi:type="notation:DecorationNode" xmi:id="_WZFogM0AEd-jEMnzz1kFRw" type="5009"/>
+ <element xmi:type="bpmn2:ScriptTask" href="sample.bpmn2#_WZB-IM0AEd-jEMnzz1kFRw"/>
+ <layoutConstraint xmi:type="notation:Bounds" xmi:id="_WZFBcM0AEd-jEMnzz1kFRw" x="162" y="18" width="106"/>
+ </children>
+ <children xmi:type="notation:Shape" xmi:id="_a3r6wM0AEd-jEMnzz1kFRw" type="2004" fontName="Sans">
+ <element xmi:type="bpmn2:EndEvent" href="sample.bpmn2#_a3pegM0AEd-jEMnzz1kFRw"/>
+ <layoutConstraint xmi:type="notation:Bounds" xmi:id="_a3r6wc0AEd-jEMnzz1kFRw" x="324" y="27"/>
+ </children>
+ <styles xmi:type="notation:DiagramStyle" xmi:id="_KyIMcs0AEd-jEMnzz1kFRw"/>
+ <element xmi:type="bpmn2:Process" href="sample.bpmn2#_KyKosc0AEd-jEMnzz1kFRw"/>
+ <edges xmi:type="notation:Connector" xmi:id="_WZQnoM0AEd-jEMnzz1kFRw" type="4001" source="_U0QYsM0AEd-jEMnzz1kFRw" target="_WZEaYM0AEd-jEMnzz1kFRw">
+ <styles xmi:type="notation:FontStyle" xmi:id="_WZQnoc0AEd-jEMnzz1kFRw" fontName="Sans"/>
+ <element xmi:type="bpmn2:SequenceFlow" href="sample.bpmn2#_WZPZgM0AEd-jEMnzz1kFRw"/>
+ <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_WZQnos0AEd-jEMnzz1kFRw" points="[0, 0, 0, -60]$[0, 60, 0, 0]"/>
+ </edges>
+ <edges xmi:type="notation:Connector" xmi:id="_ZS6VUM0AEd-jEMnzz1kFRw" type="4001" source="_WZEaYM0AEd-jEMnzz1kFRw" target="_a3r6wM0AEd-jEMnzz1kFRw">
+ <styles xmi:type="notation:FontStyle" xmi:id="_ZS6VUc0AEd-jEMnzz1kFRw" fontName="Sans"/>
+ <element xmi:type="bpmn2:SequenceFlow" href="sample.bpmn2#_ZS2q8M0AEd-jEMnzz1kFRw"/>
+ <bendpoints xmi:type="notation:RelativeBendpoints" xmi:id="_ZS6VUs0AEd-jEMnzz1kFRw" points="[0, 0, 0, -60]$[0, 60, 0, 0]"/>
+ </edges>
+</notation:Diagram>
14 years
JBoss Tools SVN: r25379 - in trunk/documentation/guides/GettingStartedGuide/en-US: images/getting_started and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2010-09-30 22:07:14 -0400 (Thu, 30 Sep 2010)
New Revision: 25379
Added:
trunk/documentation/guides/GettingStartedGuide/en-US/images/getting_started/usage_plug-in_1_JBDS.png
Modified:
trunk/documentation/guides/GettingStartedGuide/en-US/getting_started.xml
Log:
updated to include the JBDS usage image instead of the JBT one
Modified: trunk/documentation/guides/GettingStartedGuide/en-US/getting_started.xml
===================================================================
--- trunk/documentation/guides/GettingStartedGuide/en-US/getting_started.xml 2010-10-01 01:28:15 UTC (rev 25378)
+++ trunk/documentation/guides/GettingStartedGuide/en-US/getting_started.xml 2010-10-01 02:07:14 UTC (rev 25379)
@@ -888,7 +888,7 @@
</para>
<mediaobject>
<imageobject>
- <imagedata fileref="images/getting_started/usage_plug-in_1.png"/>
+ <imagedata fileref="images/getting_started/usage_plug-in_1_JBDS.png"/>
</imageobject>
<caption>Usage plug-in pop-up</caption>
</mediaobject>
Added: trunk/documentation/guides/GettingStartedGuide/en-US/images/getting_started/usage_plug-in_1_JBDS.png
===================================================================
(Binary files differ)
Property changes on: trunk/documentation/guides/GettingStartedGuide/en-US/images/getting_started/usage_plug-in_1_JBDS.png
___________________________________________________________________
Name: svn:mime-type
+ application/octet-stream
14 years
JBoss Tools SVN: r25378 - trunk/documentation/guides/GettingStartedGuide/en-US.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2010-09-30 21:28:15 -0400 (Thu, 30 Sep 2010)
New Revision: 25378
Modified:
trunk/documentation/guides/GettingStartedGuide/en-US/getting_started.xml
Log:
updated to fix tag error
Modified: trunk/documentation/guides/GettingStartedGuide/en-US/getting_started.xml
===================================================================
--- trunk/documentation/guides/GettingStartedGuide/en-US/getting_started.xml 2010-10-01 01:05:44 UTC (rev 25377)
+++ trunk/documentation/guides/GettingStartedGuide/en-US/getting_started.xml 2010-10-01 01:28:15 UTC (rev 25378)
@@ -918,7 +918,6 @@
</para>
</listitem>
</varlistentry>
- <variablelist>
<varlistentry>
<term>Installed components</term>
<listitem>
14 years
JBoss Tools SVN: r25377 - in trunk: ws/docs and 1 other directory.
by jbosstools-commits@lists.jboss.org
Author: irooskov(a)redhat.com
Date: 2010-09-30 21:05:44 -0400 (Thu, 30 Sep 2010)
New Revision: 25377
Added:
trunk/ws/docs/Web_Service_Test_View/
Removed:
trunk/documentation/Web_Service_Test_View/
Log:
moving the web service test view documentation into the correct directory
Copied: trunk/ws/docs/Web_Service_Test_View (from rev 25376, trunk/documentation/Web_Service_Test_View)
14 years
JBoss Tools SVN: r25376 - trunk/deltacloud/features/org.jboss.tools.deltacloud.feature.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-09-30 20:16:50 -0400 (Thu, 30 Sep 2010)
New Revision: 25376
Modified:
trunk/deltacloud/features/org.jboss.tools.deltacloud.feature/pom.xml
Log:
validate-version (default-validate-version) on project org.jboss.tools.deltacloud.feature: Unqualified OSGi version 0.0.2.qualifier must match unqualified Maven version 0.0.1-SNAPSHOT for SNAPSHOT builds -- or in other words, when you update feature.xml version, update pom.xml version too
Modified: trunk/deltacloud/features/org.jboss.tools.deltacloud.feature/pom.xml
===================================================================
--- trunk/deltacloud/features/org.jboss.tools.deltacloud.feature/pom.xml 2010-10-01 00:10:26 UTC (rev 25375)
+++ trunk/deltacloud/features/org.jboss.tools.deltacloud.feature/pom.xml 2010-10-01 00:16:50 UTC (rev 25376)
@@ -8,6 +8,6 @@
</parent>
<groupId>org.jboss.tools.deltacloud.features</groupId>
<artifactId>org.jboss.tools.deltacloud.feature</artifactId>
- <version>0.0.1-SNAPSHOT</version>
+ <version>0.0.2-SNAPSHOT</version>
<packaging>eclipse-feature</packaging>
</project>
14 years
JBoss Tools SVN: r25375 - branches/jbosstools-3.2.0.Beta1/build.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-09-30 20:10:26 -0400 (Thu, 30 Sep 2010)
New Revision: 25375
Modified:
branches/jbosstools-3.2.0.Beta1/build/publish.sh
Log:
creating a named dir in staging eats too much disk / requires manual cleanup (or me to write a script), so stop doing that for now
Modified: branches/jbosstools-3.2.0.Beta1/build/publish.sh
===================================================================
--- branches/jbosstools-3.2.0.Beta1/build/publish.sh 2010-10-01 00:10:08 UTC (rev 25374)
+++ branches/jbosstools-3.2.0.Beta1/build/publish.sh 2010-10-01 00:10:26 UTC (rev 25375)
@@ -179,10 +179,11 @@
fi
rm -f /tmp/latestBuild.html
else
+ # COMMENTED OUT as this uses too much disk space
# if a release build, create a named dir
- if [[ ${RELEASE} == "Yes" ]]; then
- date; rsync -arzq --delete ${STAGINGDIR}/* $DESTINATION/builds/staging/${JOB_NAME}-${ZIPSUFFIX}/
- fi
+ #if [[ ${RELEASE} == "Yes" ]]; then
+ # date; rsync -arzq --delete ${STAGINGDIR}/* $DESTINATION/builds/staging/${JOB_NAME}-${ZIPSUFFIX}/
+ #fi
fi
# and create/replace a snapshot dir w/ static URL
14 years
JBoss Tools SVN: r25374 - trunk/build.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-09-30 20:10:08 -0400 (Thu, 30 Sep 2010)
New Revision: 25374
Modified:
trunk/build/publish.sh
Log:
creating a named dir in staging eats too much disk / requires manual cleanup (or me to write a script), so stop doing that for now
Modified: trunk/build/publish.sh
===================================================================
--- trunk/build/publish.sh 2010-10-01 00:06:23 UTC (rev 25373)
+++ trunk/build/publish.sh 2010-10-01 00:10:08 UTC (rev 25374)
@@ -179,10 +179,11 @@
fi
rm -f /tmp/latestBuild.html
else
+ # COMMENTED OUT as this uses too much disk space
# if a release build, create a named dir
- if [[ ${RELEASE} == "Yes" ]]; then
- date; rsync -arzq --delete ${STAGINGDIR}/* $DESTINATION/builds/staging/${JOB_NAME}-${ZIPSUFFIX}/
- fi
+ #if [[ ${RELEASE} == "Yes" ]]; then
+ # date; rsync -arzq --delete ${STAGINGDIR}/* $DESTINATION/builds/staging/${JOB_NAME}-${ZIPSUFFIX}/
+ #fi
fi
# and create/replace a snapshot dir w/ static URL
14 years
JBoss Tools SVN: r25373 - in trunk/deltacloud: plugins and 2 other directories.
by jbosstools-commits@lists.jboss.org
Author: nickboldt
Date: 2010-09-30 20:06:23 -0400 (Thu, 30 Sep 2010)
New Revision: 25373
Added:
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.docs/
Removed:
trunk/deltacloud/plugins/org.jboss.tools.deltacloud-docs/
Modified:
trunk/deltacloud/features/org.jboss.tools.deltacloud.feature/feature.xml
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.docs/META-INF/MANIFEST.MF
trunk/deltacloud/plugins/org.jboss.tools.deltacloud.docs/pom.xml
trunk/deltacloud/plugins/pom.xml
Log:
refactor docs plugins so THAT IT'S CONSISTENT between filename and artifact ID (I mean, really.)
Modified: trunk/deltacloud/features/org.jboss.tools.deltacloud.feature/feature.xml
===================================================================
--- trunk/deltacloud/features/org.jboss.tools.deltacloud.feature/feature.xml 2010-09-30 23:30:18 UTC (rev 25372)
+++ trunk/deltacloud/features/org.jboss.tools.deltacloud.feature/feature.xml 2010-10-01 00:06:23 UTC (rev 25373)
@@ -37,7 +37,7 @@
unpack="false"/>
<plugin
- id="org.jboss.tools.deltacloud_docs"
+ id="org.jboss.tools.deltacloud.docs"
download-size="0"
install-size="0"
version="0.0.0"
Copied: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.docs (from rev 25372, trunk/deltacloud/plugins/org.jboss.tools.deltacloud-docs)
Modified: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.docs/META-INF/MANIFEST.MF
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud-docs/META-INF/MANIFEST.MF 2010-09-30 23:30:18 UTC (rev 25372)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.docs/META-INF/MANIFEST.MF 2010-10-01 00:06:23 UTC (rev 25373)
@@ -1,7 +1,7 @@
Manifest-Version: 1.0
Bundle-ManifestVersion: 2
Bundle-Name: Deltacloud_docs
-Bundle-SymbolicName: org.jboss.tools.deltacloud_docs; singleton:=true
+Bundle-SymbolicName: org.jboss.tools.deltacloud.docs; singleton:=true
Bundle-Version: 0.0.1.qualifier
Bundle-Vendor: Red Hat Inc.
Bundle-Localization: plugin
Modified: trunk/deltacloud/plugins/org.jboss.tools.deltacloud.docs/pom.xml
===================================================================
--- trunk/deltacloud/plugins/org.jboss.tools.deltacloud-docs/pom.xml 2010-09-30 23:30:18 UTC (rev 25372)
+++ trunk/deltacloud/plugins/org.jboss.tools.deltacloud.docs/pom.xml 2010-10-01 00:06:23 UTC (rev 25373)
@@ -7,7 +7,7 @@
<version>0.0.1-SNAPSHOT</version>
</parent>
<groupId>org.jboss.tools.deltacloud.plugins</groupId>
- <artifactId>org.jboss.tools.deltacloud-docs</artifactId>
+ <artifactId>org.jboss.tools.deltacloud.docs</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>eclipse-plugin</packaging>
</project>
Modified: trunk/deltacloud/plugins/pom.xml
===================================================================
--- trunk/deltacloud/plugins/pom.xml 2010-09-30 23:30:18 UTC (rev 25372)
+++ trunk/deltacloud/plugins/pom.xml 2010-10-01 00:06:23 UTC (rev 25373)
@@ -9,5 +9,6 @@
<modules>
<module>org.jboss.tools.deltacloud.ui</module>
<module>org.jboss.tools.deltacloud.core</module>
+ <module>org.jboss.tools.deltacloud.docs</module>
</modules>
</project>
14 years