[jboss-cvs] JBossAS SVN: r104330 - in projects/snowdrop/branches/1_0/documentation/samples: horoscope/horoscope-ear and 4 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Apr 29 16:01:24 EDT 2010


Author: marius.bogoevici
Date: 2010-04-29 16:01:23 -0400 (Thu, 29 Apr 2010)
New Revision: 104330

Modified:
   projects/snowdrop/branches/1_0/documentation/samples/horoscope/horoscope-ear/pom.xml
   projects/snowdrop/branches/1_0/documentation/samples/horoscope/horoscope-ejb/pom.xml
   projects/snowdrop/branches/1_0/documentation/samples/horoscope/horoscope-war/pom.xml
   projects/snowdrop/branches/1_0/documentation/samples/horoscope/pom.xml
   projects/snowdrop/branches/1_0/documentation/samples/web-scanning/pom.xml
   projects/snowdrop/branches/1_0/documentation/samples/web-weaving/pom.xml
Log:
adjusting versions

Modified: projects/snowdrop/branches/1_0/documentation/samples/horoscope/horoscope-ear/pom.xml
===================================================================
--- projects/snowdrop/branches/1_0/documentation/samples/horoscope/horoscope-ear/pom.xml	2010-04-29 19:51:15 UTC (rev 104329)
+++ projects/snowdrop/branches/1_0/documentation/samples/horoscope/horoscope-ear/pom.xml	2010-04-29 20:01:23 UTC (rev 104330)
@@ -3,35 +3,28 @@
   <parent>
     <artifactId>horoscope</artifactId>
     <groupId>org.jboss.snowdrop.samples</groupId>
-    <version>1.0.0-SNAPSHOT</version>
+    <version>1.0.1</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.jboss.snowdrop.samples</groupId>
   <artifactId>horoscope-ear</artifactId>
   <packaging>ear</packaging>
-  <name>horoscope-ear Maven Webapp</name>
+  <name>Horoscope Example EAR Module</name>
   <url>http://maven.apache.org</url>
 
     <dependencies>
       <dependency>
         <groupId>org.jboss.snowdrop.samples</groupId>
         <artifactId>horoscope-war</artifactId>
-        <version>1.0.0-SNAPSHOT</version>
+        <version>${project.version}</version>
         <type>war</type>
       </dependency>
       <dependency>
         <groupId>org.jboss.snowdrop.samples</groupId>
         <artifactId>horoscope-ejb</artifactId>
-        <version>1.0.0-SNAPSHOT</version>
+        <version>${project.version}</version>
         <type>ejb</type>
       </dependency>
-<!--
-      <dependency>
-        <groupId>org.jboss.snowdrop.samples</groupId>
-        <artifactId>horoscope-spring</artifactId>
-        <version>1.0.0-SNAPSHOT</version>
-      </dependency>
--->
     </dependencies>
 
   <build>
@@ -55,14 +48,7 @@
               <artifactId>horoscope-war</artifactId>
               <contextRoot>/horoscope</contextRoot>
             </webModule>
-<!--
-            <jarModule>
-              <groupId>org.jboss.snowdrop.samples</groupId>
-              <artifactId>horoscope-spring</artifactId>
-              <bundleDir>/</bundleDir>
-            </jarModule>
--->
-          </modules>
+        </modules>
         </configuration>
       </plugin>
     </plugins>

Modified: projects/snowdrop/branches/1_0/documentation/samples/horoscope/horoscope-ejb/pom.xml
===================================================================
--- projects/snowdrop/branches/1_0/documentation/samples/horoscope/horoscope-ejb/pom.xml	2010-04-29 19:51:15 UTC (rev 104329)
+++ projects/snowdrop/branches/1_0/documentation/samples/horoscope/horoscope-ejb/pom.xml	2010-04-29 20:01:23 UTC (rev 104330)
@@ -4,31 +4,41 @@
   <parent>
     <artifactId>horoscope</artifactId>
     <groupId>org.jboss.snowdrop.samples</groupId>
-    <version>1.0.0-SNAPSHOT</version>
+    <version>1.0.1</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.jboss.snowdrop.samples</groupId>
   <artifactId>horoscope-ejb</artifactId>
-  <version>1.0.0-SNAPSHOT</version>
+  <name>Horoscope Example EJB Module</name>
   <packaging>ejb</packaging>
   <dependencies>
     <dependency>
+      <groupId>org.jboss.ejb3</groupId>
+      <artifactId>jboss-ejb3-ext-api</artifactId>
+      <version>1.0.0</version>
+      <scope>provided</scope>
+    </dependency>
+    <dependency>
       <groupId>javax.ejb</groupId>
       <artifactId>ejb-api</artifactId>
       <version>3.0</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
+      <groupId>org.springframework</groupId>
+      <artifactId>spring-beans</artifactId>
+      <version>2.5.6.SEC01</version>
+    </dependency>
+    <dependency>
+      <groupId>org.springframework</groupId>
+      <artifactId>spring-core</artifactId>
+      <version>2.5.6.SEC01</version>
+    </dependency>
+    <dependency>
       <groupId>org.jboss.snowdrop</groupId>
       <artifactId>snowdrop-deployers</artifactId>
-      <version>1.0.0-SNAPSHOT</version>
+      <version>1.0.1.GA</version>
     </dependency>
-    <dependency>
-      <groupId>org.jboss.client</groupId>
-      <artifactId>jbossall-client</artifactId>
-      <version>5.0.0.Beta4</version>
-      <scope>provided</scope>
-    </dependency>
   </dependencies>
   <build>
     <plugins>

Modified: projects/snowdrop/branches/1_0/documentation/samples/horoscope/horoscope-war/pom.xml
===================================================================
--- projects/snowdrop/branches/1_0/documentation/samples/horoscope/horoscope-war/pom.xml	2010-04-29 19:51:15 UTC (rev 104329)
+++ projects/snowdrop/branches/1_0/documentation/samples/horoscope/horoscope-war/pom.xml	2010-04-29 20:01:23 UTC (rev 104330)
@@ -3,13 +3,13 @@
   <parent>
     <artifactId>horoscope</artifactId>
     <groupId>org.jboss.snowdrop.samples</groupId>
-    <version>1.0.0-SNAPSHOT</version>
+    <version>1.0.1</version>
   </parent>
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.jboss.snowdrop.samples</groupId>
   <artifactId>horoscope-war</artifactId>
   <packaging>war</packaging>
-  <name>horoscope-war Maven Webapp</name>
+  <name>Horoscope Example WAR Module</name>
   <url>http://maven.apache.org</url>
   <dependencies>
     <dependency>
@@ -26,7 +26,7 @@
     <dependency>
        <groupId>org.jboss.snowdrop.samples</groupId>
        <artifactId>horoscope-ejb</artifactId>
-       <version>1.0.0-SNAPSHOT</version>
+       <version>${project.version}</version>
        <scope>provided</scope>
       <type>ejb</type>
     </dependency>

Modified: projects/snowdrop/branches/1_0/documentation/samples/horoscope/pom.xml
===================================================================
--- projects/snowdrop/branches/1_0/documentation/samples/horoscope/pom.xml	2010-04-29 19:51:15 UTC (rev 104329)
+++ projects/snowdrop/branches/1_0/documentation/samples/horoscope/pom.xml	2010-04-29 20:01:23 UTC (rev 104330)
@@ -5,7 +5,9 @@
   <modelVersion>4.0.0</modelVersion>
   <groupId>org.jboss.snowdrop.samples</groupId>
   <artifactId>horoscope</artifactId>
-  <version>1.0.0-SNAPSHOT</version>
+  <version>1.0.1</version>
+  <name>Horoscope Example</name>
+
   <modules>
     <module>horoscope-ejb</module>
     <module>horoscope-war</module>
@@ -27,15 +29,8 @@
         <version>${project.version}</version>
         <type>ejb</type>
       </dependency>
-<!--
       <dependency>
         <groupId>org.jboss.snowdrop.samples</groupId>
-        <artifactId>horoscope-spring</artifactId>
-        <version>${project.version}</version>
-      </dependency>
--->
-      <dependency>
-        <groupId>org.jboss.snowdrop.samples</groupId>
         <artifactId>horoscope-ear</artifactId>
         <version>${project.version}</version>
       </dependency>

Modified: projects/snowdrop/branches/1_0/documentation/samples/web-scanning/pom.xml
===================================================================
--- projects/snowdrop/branches/1_0/documentation/samples/web-scanning/pom.xml	2010-04-29 19:51:15 UTC (rev 104329)
+++ projects/snowdrop/branches/1_0/documentation/samples/web-scanning/pom.xml	2010-04-29 20:01:23 UTC (rev 104330)
@@ -41,7 +41,7 @@
       <dependency>
           <groupId>org.jboss.snowdrop</groupId>
           <artifactId>snowdrop-vfs</artifactId>
-          <version>1.0.0-SNAPSHOT</version>
+          <version>1.0.1.GA</version>
       </dependency>
       <dependency>
         <groupId>jstl</groupId>

Modified: projects/snowdrop/branches/1_0/documentation/samples/web-weaving/pom.xml
===================================================================
--- projects/snowdrop/branches/1_0/documentation/samples/web-weaving/pom.xml	2010-04-29 19:51:15 UTC (rev 104329)
+++ projects/snowdrop/branches/1_0/documentation/samples/web-weaving/pom.xml	2010-04-29 20:01:23 UTC (rev 104330)
@@ -42,7 +42,7 @@
     <dependency>
       <groupId>org.jboss.snowdrop</groupId>
       <artifactId>snowdrop-weaving</artifactId>
-      <version>1.0.0-SNAPSHOT</version>
+      <version>1.0.1.GA</version>
     </dependency>
     <dependency>
       <groupId>commons-logging</groupId>




More information about the jboss-cvs-commits mailing list