You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by gn...@apache.org on 2006/06/09 16:55:09 UTC

svn commit: r413062 - in /incubator/servicemix/trunk: pom.xml samples/wsdl-first/pom.xml servicemix-assembly/pom.xml servicemix-assembly/src/main/assembly/bin.xml

Author: gnodet
Date: Fri Jun  9 07:55:08 2006
New Revision: 413062

URL: http://svn.apache.org/viewvc?rev=413062&view=rev
Log:
Add wsdl-first example to the distribution

Modified:
    incubator/servicemix/trunk/pom.xml
    incubator/servicemix/trunk/samples/wsdl-first/pom.xml
    incubator/servicemix/trunk/servicemix-assembly/pom.xml
    incubator/servicemix/trunk/servicemix-assembly/src/main/assembly/bin.xml

Modified: incubator/servicemix/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/pom.xml?rev=413062&r1=413061&r2=413062&view=diff
==============================================================================
--- incubator/servicemix/trunk/pom.xml (original)
+++ incubator/servicemix/trunk/pom.xml Fri Jun  9 07:55:08 2006
@@ -214,6 +214,7 @@
     <module>servicemix-itests</module>
     <module>servicemix-beanflow</module>
     <module>tooling</module>
+    <module>samples</module>
     <module>servicemix-assembly</module>
   </modules>
   
@@ -371,6 +372,11 @@
         <artifactId>servicemix-web</artifactId>
         <version>3.0-SNAPSHOT</version>
         <type>war</type>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.servicemix.samples</groupId>
+        <artifactId>wsdl-first</artifactId>
+        <version>3.0-SNAPSHOT</version>
       </dependency>
  
       <dependency>

Modified: incubator/servicemix/trunk/samples/wsdl-first/pom.xml
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/samples/wsdl-first/pom.xml?rev=413062&r1=413061&r2=413062&view=diff
==============================================================================
--- incubator/servicemix/trunk/samples/wsdl-first/pom.xml (original)
+++ incubator/servicemix/trunk/samples/wsdl-first/pom.xml Fri Jun  9 07:55:08 2006
@@ -29,7 +29,7 @@
         <version>3.0-SNAPSHOT</version>
     </parent>
 
-    <groupId>org.apache.servicemix.saples</groupId>
+    <groupId>org.apache.servicemix.samples</groupId>
     <artifactId>wsdl-first</artifactId>
     <version>3.0-SNAPSHOT</version>
 
@@ -80,6 +80,7 @@
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>
                 <artifactId>maven-assembly-plugin</artifactId>
+                <version>${mavenAssemblyPluginVersion}</version>
                 <configuration>
                     <descriptors>
                         <descriptor>src/main/assembly/sa.xml</descriptor>

Modified: incubator/servicemix/trunk/servicemix-assembly/pom.xml
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/servicemix-assembly/pom.xml?rev=413062&r1=413061&r2=413062&view=diff
==============================================================================
--- incubator/servicemix/trunk/servicemix-assembly/pom.xml (original)
+++ incubator/servicemix/trunk/servicemix-assembly/pom.xml Fri Jun  9 07:55:08 2006
@@ -96,6 +96,10 @@
       <artifactId>servicemix-components</artifactId>
     </dependency>
     <dependency>
+      <groupId>org.apache.servicemix.samples</groupId>
+      <artifactId>wsdl-first</artifactId>
+    </dependency>
+    <dependency>
       <groupId>org.apache.geronimo.specs</groupId>
       <artifactId>geronimo-ejb_2.1_spec</artifactId>
     </dependency>
@@ -242,18 +246,25 @@
             </configuration>
           </execution>
           <execution>
-            <id>unpack-servicemix-web</id>
+            <id>unpack-samples</id>
             <phase>generate-resources</phase>
             <goals>
               <goal>unpack</goal>
             </goals>
             <configuration>
-              <outputDirectory>target/servicemix-web</outputDirectory>
+              <outputDirectory>target/samples</outputDirectory>
               <artifactItems>
                 <artifactItem>
                   <groupId>${pom.groupId}</groupId>
                   <artifactId>servicemix-web</artifactId>
                   <version>${pom.version}</version>
+                  <classifier>src</classifier>
+                  <type>zip</type>
+                </artifactItem>
+                <artifactItem>
+                  <groupId>org.apache.servicemix.samples</groupId>
+                  <artifactId>wsdl-first</artifactId>
+                  <version>3.0-SNAPSHOT</version>
                   <classifier>src</classifier>
                   <type>zip</type>
                 </artifactItem>

Modified: incubator/servicemix/trunk/servicemix-assembly/src/main/assembly/bin.xml
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/servicemix-assembly/src/main/assembly/bin.xml?rev=413062&r1=413061&r2=413062&view=diff
==============================================================================
--- incubator/servicemix/trunk/servicemix-assembly/src/main/assembly/bin.xml (original)
+++ incubator/servicemix/trunk/servicemix-assembly/src/main/assembly/bin.xml Fri Jun  9 07:55:08 2006
@@ -41,8 +41,12 @@
       <outputDirectory>components</outputDirectory>
     </fileSet>
     <fileSet>
-      <directory>target/servicemix-web/servicemix-web-${pom.version}</directory>
+      <directory>target/samples/servicemix-web-${pom.version}</directory>
       <outputDirectory>examples/servicemix-web</outputDirectory>
+    </fileSet>
+    <fileSet>
+      <directory>target/samples/wsdl-first-${pom.version}</directory>
+      <outputDirectory>examples/wsdl-first</outputDirectory>
     </fileSet>
   </fileSets>
   <dependencySets>