You are viewing a plain text version of this content. The canonical link for it is here.
Posted to scm@geronimo.apache.org by jb...@apache.org on 2008/06/02 18:21:16 UTC

svn commit: r662476 - in /geronimo/samples/branches/2.1/samples/customer-service: ./ CustomerService-ear/ CustomerService-ejb/ CustomerService-jetty/ CustomerService-tomcat/ CustomerService-war/ customer-service-ear/ customer-service-ejb/ customer-serv...

Author: jbohn
Date: Mon Jun  2 09:21:15 2008
New Revision: 662476

URL: http://svn.apache.org/viewvc?rev=662476&view=rev
Log:
changes to match 661881 from trunk - naming conventions 2

Added:
    geronimo/samples/branches/2.1/samples/customer-service/customer-service-ear/
      - copied from r662471, geronimo/samples/branches/2.1/samples/customer-service/CustomerService-ear/
    geronimo/samples/branches/2.1/samples/customer-service/customer-service-ejb/
      - copied from r662471, geronimo/samples/branches/2.1/samples/customer-service/CustomerService-ejb/
    geronimo/samples/branches/2.1/samples/customer-service/customer-service-jetty/
      - copied from r662471, geronimo/samples/branches/2.1/samples/customer-service/CustomerService-jetty/
    geronimo/samples/branches/2.1/samples/customer-service/customer-service-tomcat/
      - copied from r662471, geronimo/samples/branches/2.1/samples/customer-service/CustomerService-tomcat/
    geronimo/samples/branches/2.1/samples/customer-service/customer-service-war/
      - copied from r662471, geronimo/samples/branches/2.1/samples/customer-service/CustomerService-war/
Removed:
    geronimo/samples/branches/2.1/samples/customer-service/CustomerService-ear/
    geronimo/samples/branches/2.1/samples/customer-service/CustomerService-ejb/
    geronimo/samples/branches/2.1/samples/customer-service/CustomerService-jetty/
    geronimo/samples/branches/2.1/samples/customer-service/CustomerService-tomcat/
    geronimo/samples/branches/2.1/samples/customer-service/CustomerService-war/
Modified:
    geronimo/samples/branches/2.1/samples/customer-service/customer-service-ear/pom.xml
    geronimo/samples/branches/2.1/samples/customer-service/customer-service-ejb/pom.xml
    geronimo/samples/branches/2.1/samples/customer-service/customer-service-jetty/pom.xml
    geronimo/samples/branches/2.1/samples/customer-service/customer-service-tomcat/pom.xml
    geronimo/samples/branches/2.1/samples/customer-service/customer-service-war/pom.xml
    geronimo/samples/branches/2.1/samples/customer-service/pom.xml

Modified: geronimo/samples/branches/2.1/samples/customer-service/customer-service-ear/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/samples/branches/2.1/samples/customer-service/customer-service-ear/pom.xml?rev=662476&r1=662471&r2=662476&view=diff
==============================================================================
--- geronimo/samples/branches/2.1/samples/customer-service/customer-service-ear/pom.xml (original)
+++ geronimo/samples/branches/2.1/samples/customer-service/customer-service-ear/pom.xml Mon Jun  2 09:21:15 2008
@@ -26,12 +26,12 @@
 
     <parent>
         <groupId>org.apache.geronimo.samples</groupId>
-        <artifactId>CustomerService</artifactId>
+        <artifactId>customer-service</artifactId>
         <version>2.1-SNAPSHOT</version>
     </parent>
 
-    <artifactId>CustomerService-ear</artifactId>
-    <name>Geronimo Samples :: CustomerService :: EAR</name>
+    <artifactId>customer-service-ear</artifactId>
+    <name>Geronimo Samples :: customer-service :: EAR</name>
     <packaging>ear</packaging>
 
     <description>Geronimo Samples. EAR Module</description>
@@ -39,14 +39,14 @@
     <dependencies>
         <dependency>
             <groupId>org.apache.geronimo.samples</groupId>
-            <artifactId>CustomerService-war</artifactId>
+            <artifactId>customer-service-war</artifactId>
             <version>${version}</version>
             <type>war</type>
         </dependency>
 
         <dependency>
             <groupId>org.apache.geronimo.samples</groupId>
-            <artifactId>CustomerService-ejb</artifactId>
+            <artifactId>customer-service-ejb</artifactId>
             <version>${version}</version>
             <type>ejb</type>
         </dependency>
@@ -57,21 +57,21 @@
             <plugin>
                 <artifactId>maven-ear-plugin</artifactId>
                 <configuration>
-                    <displayName>Geronimo Sample EAR for CustomerService</displayName>
-                    <description>Geronimo Sample EAR for CustomerService</description>
+                    <displayName>Geronimo Sample EAR for customer-service</displayName>
+                    <description>Geronimo Sample EAR for customer-service</description>
                     <version>5</version>
                     <modules>
                       <ejbModule>
                             <groupId>org.apache.geronimo.samples</groupId>
-                            <artifactId>CustomerService-ejb</artifactId>
-                            <bundleFileName>CustomerService-ejb-${version}.jar</bundleFileName>
+                            <artifactId>customer-service-ejb</artifactId>
+                            <bundleFileName>customer-service-ejb-${version}.jar</bundleFileName>
                         </ejbModule>
 
                         <webModule>
                             <groupId>org.apache.geronimo.samples</groupId>
-                            <artifactId>CustomerService-war</artifactId>
+                            <artifactId>customer-service-war</artifactId>
                             <contextRoot>/service</contextRoot>
-                            <bundleFileName>CustomerService-war-${version}.war</bundleFileName>
+                            <bundleFileName>customer-service-war-${version}.war</bundleFileName>
                         </webModule>
                     </modules>
                 </configuration>

Modified: geronimo/samples/branches/2.1/samples/customer-service/customer-service-ejb/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/samples/branches/2.1/samples/customer-service/customer-service-ejb/pom.xml?rev=662476&r1=662471&r2=662476&view=diff
==============================================================================
--- geronimo/samples/branches/2.1/samples/customer-service/customer-service-ejb/pom.xml (original)
+++ geronimo/samples/branches/2.1/samples/customer-service/customer-service-ejb/pom.xml Mon Jun  2 09:21:15 2008
@@ -26,12 +26,12 @@
 
     <parent>
         <groupId>org.apache.geronimo.samples</groupId>
-        <artifactId>CustomerService</artifactId>
+        <artifactId>customer-service</artifactId>
         <version>2.1-SNAPSHOT</version>
     </parent>
 
-    <artifactId>CustomerService-ejb</artifactId>
-    <name>Geronimo Samples :: CustomerService :: EJB</name>
+    <artifactId>customer-service-ejb</artifactId>
+    <name>Geronimo Samples :: customer-service :: EJB</name>
     <packaging>jar</packaging>
 
     <description>Geronimo Samples. EJB Module</description>

Modified: geronimo/samples/branches/2.1/samples/customer-service/customer-service-jetty/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/samples/branches/2.1/samples/customer-service/customer-service-jetty/pom.xml?rev=662476&r1=662471&r2=662476&view=diff
==============================================================================
--- geronimo/samples/branches/2.1/samples/customer-service/customer-service-jetty/pom.xml (original)
+++ geronimo/samples/branches/2.1/samples/customer-service/customer-service-jetty/pom.xml Mon Jun  2 09:21:15 2008
@@ -26,21 +26,21 @@
 
     <parent>
         <groupId>org.apache.geronimo.samples</groupId>
-        <artifactId>CustomerService</artifactId>
+        <artifactId>customer-service</artifactId>
         <version>2.1-SNAPSHOT</version>
     </parent>
 
     <groupId>org.apache.geronimo.samples</groupId>
-    <artifactId>CustomerService-jetty</artifactId>
-    <name>Geronimo Samples :: CustomerService Plugin for Jetty</name>
+    <artifactId>customer-service-jetty</artifactId>
+    <name>Geronimo Samples :: customer-service Plugin for Jetty</name>
     <packaging>car</packaging>
 
-    <description>Geronimo Samples. CustomerService Plugin for Jetty</description>
+    <description>Geronimo Samples. customer-service Plugin for Jetty</description>
 
     <dependencies>
         <dependency>
             <groupId>org.apache.geronimo.samples</groupId>
-            <artifactId>CustomerService-ear</artifactId>
+            <artifactId>customer-service-ear</artifactId>
             <version>${version}</version>
             <type>ear</type>
             <scope>provided</scope>
@@ -145,7 +145,7 @@
                     </deploymentConfigs>
                     <module>
                         <groupId>org.apache.geronimo.samples</groupId>
-                        <artifactId>CustomerService-ear</artifactId>
+                        <artifactId>customer-service-ear</artifactId>
                         <version>${version}</version>
                         <type>ear</type>
                     </module>

Modified: geronimo/samples/branches/2.1/samples/customer-service/customer-service-tomcat/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/samples/branches/2.1/samples/customer-service/customer-service-tomcat/pom.xml?rev=662476&r1=662471&r2=662476&view=diff
==============================================================================
--- geronimo/samples/branches/2.1/samples/customer-service/customer-service-tomcat/pom.xml (original)
+++ geronimo/samples/branches/2.1/samples/customer-service/customer-service-tomcat/pom.xml Mon Jun  2 09:21:15 2008
@@ -26,21 +26,21 @@
 
     <parent>
         <groupId>org.apache.geronimo.samples</groupId>
-        <artifactId>CustomerService</artifactId>
+        <artifactId>customer-service</artifactId>
         <version>2.1-SNAPSHOT</version>
     </parent>
 
     <groupId>org.apache.geronimo.samples</groupId>
-    <artifactId>CustomerService-tomcat</artifactId>
-    <name>Geronimo Samples :: CustomerService Plugin for Tomcat</name>
+    <artifactId>customer-service-tomcat</artifactId>
+    <name>Geronimo Samples :: customer-service Plugin for Tomcat</name>
     <packaging>car</packaging>
 
-    <description>Geronimo Samples. CustomerService Plugin for Tomcat</description>
+    <description>Geronimo Samples. customer-service Plugin for Tomcat</description>
 
     <dependencies>
         <dependency>
             <groupId>org.apache.geronimo.samples</groupId>
-            <artifactId>CustomerService-ear</artifactId>
+            <artifactId>customer-service-ear</artifactId>
             <version>${version}</version>
             <type>ear</type>
             <scope>provided</scope>
@@ -145,7 +145,7 @@
                     </deploymentConfigs>
                     <module>
                         <groupId>org.apache.geronimo.samples</groupId>
-                        <artifactId>CustomerService-ear</artifactId>
+                        <artifactId>customer-service-ear</artifactId>
                         <version>${version}</version>
                         <type>ear</type>
                     </module>

Modified: geronimo/samples/branches/2.1/samples/customer-service/customer-service-war/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/samples/branches/2.1/samples/customer-service/customer-service-war/pom.xml?rev=662476&r1=662471&r2=662476&view=diff
==============================================================================
--- geronimo/samples/branches/2.1/samples/customer-service/customer-service-war/pom.xml (original)
+++ geronimo/samples/branches/2.1/samples/customer-service/customer-service-war/pom.xml Mon Jun  2 09:21:15 2008
@@ -26,12 +26,12 @@
 
     <parent>
         <groupId>org.apache.geronimo.samples</groupId>
-        <artifactId>CustomerService</artifactId>
+        <artifactId>customer-service</artifactId>
         <version>2.1-SNAPSHOT</version>
     </parent>
 
-    <artifactId>CustomerService-war</artifactId>
-    <name>Geronimo Samples :: CustomerService :: WAR</name>
+    <artifactId>customer-service-war</artifactId>
+    <name>Geronimo Samples :: customer-service :: WAR</name>
     <packaging>war</packaging>
 
     <description>Geronimo Samples. WEB Module</description>
@@ -39,7 +39,7 @@
     <dependencies>
         <dependency>
             <groupId>org.apache.geronimo.samples</groupId>
-            <artifactId>CustomerService-ejb</artifactId>
+            <artifactId>customer-service-ejb</artifactId>
             <version>${version}</version>
             <scope>provided</scope>
         </dependency>

Modified: geronimo/samples/branches/2.1/samples/customer-service/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/samples/branches/2.1/samples/customer-service/pom.xml?rev=662476&r1=662475&r2=662476&view=diff
==============================================================================
--- geronimo/samples/branches/2.1/samples/customer-service/pom.xml (original)
+++ geronimo/samples/branches/2.1/samples/customer-service/pom.xml Mon Jun  2 09:21:15 2008
@@ -30,20 +30,20 @@
         <version>2.1-SNAPSHOT</version>
     </parent>
     
-    <artifactId>CustomerService</artifactId>
-    <name>Geronimo Samples :: CustomerService</name>
+    <artifactId>customer-service</artifactId>
+    <name>Geronimo Samples :: customer-service</name>
     <packaging>pom</packaging>
     
     <description>
-        Geronimo CustomerService sample created from an archetype.
+        Geronimo customer-service sample created from an archetype.
     </description>
     
    <modules>
-        <module>CustomerService-ejb</module>
-        <module>CustomerService-war</module>
-        <module>CustomerService-ear</module>
-        <module>CustomerService-jetty</module>
-        <module>CustomerService-tomcat</module>
+        <module>customer-service-ejb</module>
+        <module>customer-service-war</module>
+        <module>customer-service-ear</module>
+        <module>customer-service-jetty</module>
+        <module>customer-service-tomcat</module>
    </modules>
 
    <dependencies>