[savara-commits] savara SVN: r152 - in tools/eclipse/trunk: distribution/src/main/assembly and 2 other directories.

do-not-reply at jboss.org do-not-reply at jboss.org
Wed Dec 16 13:31:07 EST 2009


Author: objectiser
Date: 2009-12-16 13:31:06 -0500 (Wed, 16 Dec 2009)
New Revision: 152

Added:
   tools/eclipse/trunk/distribution/src/main/assembly/src.xml
Modified:
   tools/eclipse/trunk/distribution/pom.xml
   tools/eclipse/trunk/distribution/src/main/release/ReleaseNotes.txt
   tools/eclipse/trunk/docs/gettingstartedguide/src/main/module/installation.xml
Log:
Updated to include source distribution and addition to installation guide.

Modified: tools/eclipse/trunk/distribution/pom.xml
===================================================================
--- tools/eclipse/trunk/distribution/pom.xml	2009-12-16 16:41:16 UTC (rev 151)
+++ tools/eclipse/trunk/distribution/pom.xml	2009-12-16 18:31:06 UTC (rev 152)
@@ -68,6 +68,21 @@
                   </descriptors>
                 </configuration>
                 </execution>
+		          <execution>
+		            <id>distribution-package-source</id>
+		            <phase>package</phase>
+		            <goals>
+		              <goal>single</goal>
+		            </goals>
+		            <configuration>
+		              <finalName>savara-tools-eclipse-${project.version}-src</finalName>
+		              <appendAssemblyId>false</appendAssemblyId>
+		              <descriptors>
+		                <descriptor>src/main/assembly/src.xml</descriptor>
+		              </descriptors>
+		              <tarLongFileMode>gnu</tarLongFileMode>
+		            </configuration>
+		          </execution>
                </executions>
               </plugin>
         </plugins>

Added: tools/eclipse/trunk/distribution/src/main/assembly/src.xml
===================================================================
--- tools/eclipse/trunk/distribution/src/main/assembly/src.xml	                        (rev 0)
+++ tools/eclipse/trunk/distribution/src/main/assembly/src.xml	2009-12-16 18:31:06 UTC (rev 152)
@@ -0,0 +1,110 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+ * JBoss, Home of Professional Open Source
+ * Copyright 2008, JBoss Inc., and others contributors as indicated 
+ * by the @authors tag. All rights reserved. 
+ * See the copyright.txt in the distribution for a
+ * full listing of individual contributors. 
+ * This copyrighted material is made available to anyone wishing to use,
+ * modify, copy, or redistribute it subject to the terms and conditions
+ * of the GNU Lesser General Public License, v. 2.1.
+ * This program is distributed in the hope that it will be useful, but WITHOUT A 
+ * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A 
+ * PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more details.
+ * You should have received a copy of the GNU Lesser General Public License,
+ * v.2.1 along with this distribution; if not, write to the Free Software
+ * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 
+ * MA  02110-1301, USA.
+ * 
+ * (C) 2008
+-->
+<assembly>
+  <!-- id typically identifies the "type" (src vs bin etc) of the assembly -->
+  <id>src</id>
+  <includeBaseDirectory>true</includeBaseDirectory>
+  <formats>
+    <format>zip</format>
+  </formats>
+
+  <fileSets>
+      <fileSet>
+          <directory>../distribution</directory>
+          <outputDirectory>/distribution</outputDirectory>
+          <excludes>
+             <exclude>**/.project</exclude>
+             <exclude>**/.classpath</exclude>
+             <exclude>**/.settings</exclude>
+             <exclude>**/.settings/**/*</exclude>
+             <exclude>**/target</exclude>
+         	 <exclude>**/target/**/*</exclude>
+         	 <exclude>**/*.iml</exclude>
+         	 <exclude>**/*.ipr</exclude>
+         	 <exclude>**/*.iws</exclude>
+          </excludes>
+      </fileSet>
+      <fileSet>
+          <directory>../docs</directory>
+          <outputDirectory>/docs</outputDirectory>
+          <excludes>
+             <exclude>**/.project</exclude>
+             <exclude>**/.classpath</exclude>
+             <exclude>**/.settings</exclude>
+             <exclude>**/.settings/**/*</exclude>
+             <exclude>**/target</exclude>
+         	 <exclude>**/target/**/*</exclude>
+         	 <exclude>**/*.iml</exclude>
+         	 <exclude>**/*.ipr</exclude>
+         	 <exclude>**/*.iws</exclude>
+          </excludes>
+      </fileSet>
+      <fileSet>
+          <directory>../features</directory>
+          <outputDirectory>/features</outputDirectory>
+          <excludes>
+             <exclude>**/.settings</exclude>
+             <exclude>**/.settings/**/*</exclude>
+             <exclude>**/target</exclude>
+         	 <exclude>**/target/**/*</exclude>
+         	 <exclude>**/*.iml</exclude>
+         	 <exclude>**/*.ipr</exclude>
+         	 <exclude>**/*.iws</exclude>
+          </excludes>
+      </fileSet>
+      <fileSet>
+          <directory>../plugins</directory>
+          <outputDirectory>/plugins</outputDirectory>
+          <excludes>
+             <exclude>**/.settings</exclude>
+             <exclude>**/.settings/**/*</exclude>
+             <exclude>**/target</exclude>
+         	 <exclude>**/target/**/*</exclude>
+         	 <exclude>**/*.iml</exclude>
+         	 <exclude>**/*.ipr</exclude>
+         	 <exclude>**/*.iws</exclude>
+          </excludes>
+      </fileSet>
+      <fileSet>
+          <directory>../samples</directory>
+          <outputDirectory>/samples</outputDirectory>
+          <excludes>
+             <exclude>**/.project</exclude>
+             <exclude>**/.classpath</exclude>
+             <exclude>**/.settings</exclude>
+             <exclude>**/.settings/**/*</exclude>
+             <exclude>**/target</exclude>
+         	 <exclude>**/target/**/*</exclude>
+         	 <exclude>**/*.iml</exclude>
+         	 <exclude>**/*.ipr</exclude>
+         	 <exclude>**/*.iws</exclude>
+          </excludes>
+      </fileSet>
+      <fileSet>
+          <directory>..</directory>
+          <outputDirectory>/</outputDirectory>
+          <includes>
+           <include>pom.xml</include>
+          </includes>
+      </fileSet>
+  </fileSets>
+
+</assembly>

Modified: tools/eclipse/trunk/distribution/src/main/release/ReleaseNotes.txt
===================================================================
--- tools/eclipse/trunk/distribution/src/main/release/ReleaseNotes.txt	2009-12-16 16:41:16 UTC (rev 151)
+++ tools/eclipse/trunk/distribution/src/main/release/ReleaseNotes.txt	2009-12-16 18:31:06 UTC (rev 152)
@@ -1,3 +1,15 @@
 SAVARA Tools Eclipse 1.0-M1
 ===========================
 
+This is the first milestone of version 1.0 of the SAVARA tools for Eclipse.
+
+This distribution includes:
+- early access work on checking the conformance of a choreography, defined using the pi4soa
+choreography editor, against service implementations in BPEL and JBossESB "conversation aware"
+actions
+- generation of a choreography to BPEL services
+- generation of a choreography to JBossESB services (using "conversation aware" ESB actions)
+- generation of a choreography as a BPMN collaboration diagram
+
+The details release notes for all SAVARA 1.0-M1 components can be found at:
+https://jira.jboss.org/jira/secure/ReleaseNote.jspa?version=12313912&styleName=Html&projectId=12310870&Create=Create

Modified: tools/eclipse/trunk/docs/gettingstartedguide/src/main/module/installation.xml
===================================================================
--- tools/eclipse/trunk/docs/gettingstartedguide/src/main/module/installation.xml	2009-12-16 16:41:16 UTC (rev 151)
+++ tools/eclipse/trunk/docs/gettingstartedguide/src/main/module/installation.xml	2009-12-16 18:31:06 UTC (rev 152)
@@ -44,7 +44,9 @@
        			then select the appropriate components and follow the instructions to install
        			them within your Eclipse environment. The minimum requirement is to select the
        			<emphasis>pi4soa core</emphasis> feature in the <emphasis>JBoss Tools</emphasis>
-       			category.
+       			category. If you wish to view the generated BPEL using a BPEL editor, rather than
+       			XML, then you should also select the <emphasis>BPEL Editor</emphasis> from the
+       			<emphasis>JBoss Tools</emphasis> category.
        			</para>
        			</listitem>
 					



More information about the savara-commits mailing list