[seam-commits] Seam SVN: r15329 - in branches/community/Seam_2_3/examples: groovybooking and 16 other directories.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Tue Oct 30 12:09:22 EDT 2012


Author: vdedik
Date: 2012-10-30 12:09:21 -0400 (Tue, 30 Oct 2012)
New Revision: 15329

Modified:
   branches/community/Seam_2_3/examples/groovybooking/groovybooking-tests/pom.xml
   branches/community/Seam_2_3/examples/groovybooking/groovybooking-web/pom.xml
   branches/community/Seam_2_3/examples/groovybooking/readme.txt
   branches/community/Seam_2_3/examples/hibernate/hibernate-tests/pom.xml
   branches/community/Seam_2_3/examples/hibernate/hibernate-tests/src/test/java/org/jboss/seam/example/hibernate/test/Deployments.java
   branches/community/Seam_2_3/examples/hibernate/hibernate-web/pom.xml
   branches/community/Seam_2_3/examples/hibernate/readme.txt
   branches/community/Seam_2_3/examples/jee6/jee6-tests/pom.xml
   branches/community/Seam_2_3/examples/jee6/jee6-tests/src/test/java/org/jboss/seam/example/booking/test/Deployments.java
   branches/community/Seam_2_3/examples/jee6/jee6-web/pom.xml
   branches/community/Seam_2_3/examples/jee6/readme.txt
   branches/community/Seam_2_3/examples/jpa/jpa-tests/pom.xml
   branches/community/Seam_2_3/examples/jpa/jpa-tests/src/test/java/org/jboss/seam/example/jpa/test/Deployments.java
   branches/community/Seam_2_3/examples/jpa/jpa-web/pom.xml
   branches/community/Seam_2_3/examples/jpa/readme.txt
   branches/community/Seam_2_3/examples/readme.txt
   branches/community/Seam_2_3/examples/spring/spring-tests/pom.xml
   branches/community/Seam_2_3/examples/spring/spring-web/pom.xml
Log:
all war examples finalName changed to artifactId due to some IDE problems

Modified: branches/community/Seam_2_3/examples/groovybooking/groovybooking-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples/groovybooking/groovybooking-tests/pom.xml	2012-10-30 16:04:49 UTC (rev 15328)
+++ branches/community/Seam_2_3/examples/groovybooking/groovybooking-tests/pom.xml	2012-10-30 16:09:21 UTC (rev 15329)
@@ -126,7 +126,7 @@
         <profile>
             <id>ftest-jbossas</id>
             <properties>
-                <example.context.path>jboss-seam-groovybooking</example.context.path>
+                <example.context.path>groovybooking-web</example.context.path>
             </properties>
             <build>
                 <plugins>

Modified: branches/community/Seam_2_3/examples/groovybooking/groovybooking-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples/groovybooking/groovybooking-web/pom.xml	2012-10-30 16:04:49 UTC (rev 15328)
+++ branches/community/Seam_2_3/examples/groovybooking/groovybooking-web/pom.xml	2012-10-30 16:09:21 UTC (rev 15329)
@@ -125,7 +125,7 @@
    </dependencies>
 
    <build>
-      <finalName>jboss-seam-groovybooking</finalName>
+      <finalName>groovybooking-web</finalName>
       <plugins>
          <!-- Can't use gmaven-plugin because hot deployment won't work otherwise -->
          <plugin>

Modified: branches/community/Seam_2_3/examples/groovybooking/readme.txt
===================================================================
--- branches/community/Seam_2_3/examples/groovybooking/readme.txt	2012-10-30 16:04:49 UTC (rev 15328)
+++ branches/community/Seam_2_3/examples/groovybooking/readme.txt	2012-10-30 16:09:21 UTC (rev 15329)
@@ -16,4 +16,4 @@
 
     mvn jboss-as:deploy
 
-* Open this URL in a web browser: http://localhost:8080/jboss-seam-groovybooking
+* Open this URL in a web browser: http://localhost:8080/groovybooking-web

Modified: branches/community/Seam_2_3/examples/hibernate/hibernate-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples/hibernate/hibernate-tests/pom.xml	2012-10-30 16:04:49 UTC (rev 15328)
+++ branches/community/Seam_2_3/examples/hibernate/hibernate-tests/pom.xml	2012-10-30 16:09:21 UTC (rev 15329)
@@ -157,7 +157,7 @@
         <profile>
             <id>ftest-jbossas</id>
             <properties>
-                <example.context.path>jboss-seam-hibernate</example.context.path>
+                <example.context.path>hibernate-web</example.context.path>
             </properties>
             <build>
                 <plugins>

Modified: branches/community/Seam_2_3/examples/hibernate/hibernate-tests/src/test/java/org/jboss/seam/example/hibernate/test/Deployments.java
===================================================================
--- branches/community/Seam_2_3/examples/hibernate/hibernate-tests/src/test/java/org/jboss/seam/example/hibernate/test/Deployments.java	2012-10-30 16:04:49 UTC (rev 15328)
+++ branches/community/Seam_2_3/examples/hibernate/hibernate-tests/src/test/java/org/jboss/seam/example/hibernate/test/Deployments.java	2012-10-30 16:09:21 UTC (rev 15329)
@@ -9,7 +9,7 @@
 
 public class Deployments {
     public static WebArchive hibernateDeployment() {
-       WebArchive web = ShrinkWrap.create(ZipImporter.class, "jboss-seam-hibernate.war").importFrom(new File("../hibernate-web/target/jboss-seam-hibernate.war"))
+       WebArchive web = ShrinkWrap.create(ZipImporter.class, "hibernate-web.war").importFrom(new File("../hibernate-web/target/hibernate-web.war"))
               .as(WebArchive.class);
 
         // Install org.jboss.seam.mock.MockSeamListener

Modified: branches/community/Seam_2_3/examples/hibernate/hibernate-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples/hibernate/hibernate-web/pom.xml	2012-10-30 16:04:49 UTC (rev 15328)
+++ branches/community/Seam_2_3/examples/hibernate/hibernate-web/pom.xml	2012-10-30 16:09:21 UTC (rev 15329)
@@ -17,7 +17,7 @@
 
 
    <build>
-      <finalName>jboss-seam-hibernate</finalName>
+      <finalName>hibernate-web</finalName>
       <plugins>
          <plugin>
             <groupId>org.apache.maven.plugins</groupId>

Modified: branches/community/Seam_2_3/examples/hibernate/readme.txt
===================================================================
--- branches/community/Seam_2_3/examples/hibernate/readme.txt	2012-10-30 16:04:49 UTC (rev 15328)
+++ branches/community/Seam_2_3/examples/hibernate/readme.txt	2012-10-30 16:09:21 UTC (rev 15329)
@@ -15,4 +15,4 @@
 
     mvn jboss-as:deploy
 
-* Open this URL in a web browser: http://localhost:8080/jboss-seam-hibernate
+* Open this URL in a web browser: http://localhost:8080/hibernate-web

Modified: branches/community/Seam_2_3/examples/jee6/jee6-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples/jee6/jee6-tests/pom.xml	2012-10-30 16:04:49 UTC (rev 15328)
+++ branches/community/Seam_2_3/examples/jee6/jee6-tests/pom.xml	2012-10-30 16:09:21 UTC (rev 15329)
@@ -159,7 +159,7 @@
         <profile>
             <id>ftest-jbossas</id>
             <properties>
-                <example.context.path>jboss-seam-jee6</example.context.path>
+                <example.context.path>jee6-web</example.context.path>
             </properties>
             <build>
                 <plugins>

Modified: branches/community/Seam_2_3/examples/jee6/jee6-tests/src/test/java/org/jboss/seam/example/booking/test/Deployments.java
===================================================================
--- branches/community/Seam_2_3/examples/jee6/jee6-tests/src/test/java/org/jboss/seam/example/booking/test/Deployments.java	2012-10-30 16:04:49 UTC (rev 15328)
+++ branches/community/Seam_2_3/examples/jee6/jee6-tests/src/test/java/org/jboss/seam/example/booking/test/Deployments.java	2012-10-30 16:09:21 UTC (rev 15329)
@@ -8,7 +8,7 @@
 
 public class Deployments {
    public static WebArchive bookingDeployment() {
-      return ShrinkWrap.create(ZipImporter.class, "jboss-seam-jee6.war").importFrom(new File("../jee6-web/target/jboss-seam-jee6.war"))
+      return ShrinkWrap.create(ZipImporter.class, "jee6-web.war").importFrom(new File("jee6-web.war"))
             .as(WebArchive.class);
    }
 }

Modified: branches/community/Seam_2_3/examples/jee6/jee6-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples/jee6/jee6-web/pom.xml	2012-10-30 16:04:49 UTC (rev 15328)
+++ branches/community/Seam_2_3/examples/jee6/jee6-web/pom.xml	2012-10-30 16:09:21 UTC (rev 15329)
@@ -15,7 +15,7 @@
     
     <properties>
         <!-- filtering property for components.xml -->
-        <jndiPattern>java:app/jboss-seam-jee6/#{ejbName}</jndiPattern>
+        <jndiPattern>java:app/jee6-web/#{ejbName}</jndiPattern>
         <distributable>false</distributable>
     </properties>
     
@@ -106,7 +106,7 @@
     </dependencies>
   
     <build>
-        <finalName>jboss-seam-jee6</finalName>
+        <finalName>jee6-web</finalName>
         <plugins>
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>

Modified: branches/community/Seam_2_3/examples/jee6/readme.txt
===================================================================
--- branches/community/Seam_2_3/examples/jee6/readme.txt	2012-10-30 16:04:49 UTC (rev 15328)
+++ branches/community/Seam_2_3/examples/jee6/readme.txt	2012-10-30 16:09:21 UTC (rev 15329)
@@ -15,5 +15,5 @@
 
     mvn jboss-as:deploy
 
-* Open this URL in a web browser: http://localhost:8080/seam-jee6
+* Open this URL in a web browser: http://localhost:8080/jee6-web
 

Modified: branches/community/Seam_2_3/examples/jpa/jpa-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples/jpa/jpa-tests/pom.xml	2012-10-30 16:04:49 UTC (rev 15328)
+++ branches/community/Seam_2_3/examples/jpa/jpa-tests/pom.xml	2012-10-30 16:09:21 UTC (rev 15329)
@@ -156,7 +156,7 @@
       <profile>
          <id>ftest-jbossas</id>
          <properties>
-            <example.context.path>jboss-seam-jpa</example.context.path>
+            <example.context.path>jpa-web</example.context.path>
          </properties>
          <build>
             <plugins>

Modified: branches/community/Seam_2_3/examples/jpa/jpa-tests/src/test/java/org/jboss/seam/example/jpa/test/Deployments.java
===================================================================
--- branches/community/Seam_2_3/examples/jpa/jpa-tests/src/test/java/org/jboss/seam/example/jpa/test/Deployments.java	2012-10-30 16:04:49 UTC (rev 15328)
+++ branches/community/Seam_2_3/examples/jpa/jpa-tests/src/test/java/org/jboss/seam/example/jpa/test/Deployments.java	2012-10-30 16:09:21 UTC (rev 15329)
@@ -9,7 +9,7 @@
 
 public class Deployments {
    public static WebArchive jpaDeployment() {
-      WebArchive web = ShrinkWrap.create(ZipImporter.class, "jboss-seam-jpa.war").importFrom(new File("../jpa-web/target/jboss-seam-jpa.war"))
+      WebArchive web = ShrinkWrap.create(ZipImporter.class, "jpa-web.war").importFrom(new File("../jpa-web/target/jpa-web.war"))
             .as(WebArchive.class);
 
       web.delete("/WEB-INF/web.xml");

Modified: branches/community/Seam_2_3/examples/jpa/jpa-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples/jpa/jpa-web/pom.xml	2012-10-30 16:04:49 UTC (rev 15328)
+++ branches/community/Seam_2_3/examples/jpa/jpa-web/pom.xml	2012-10-30 16:09:21 UTC (rev 15329)
@@ -87,7 +87,7 @@
     </dependencies>
   
     <build>
-        <finalName>jboss-seam-jpa</finalName>
+        <finalName>jpa-web</finalName>
         <plugins>
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>

Modified: branches/community/Seam_2_3/examples/jpa/readme.txt
===================================================================
--- branches/community/Seam_2_3/examples/jpa/readme.txt	2012-10-30 16:04:49 UTC (rev 15328)
+++ branches/community/Seam_2_3/examples/jpa/readme.txt	2012-10-30 16:09:21 UTC (rev 15329)
@@ -15,4 +15,4 @@
 
     mvn jboss-as:deploy
 
-* Open this URL in a web browser: http://localhost:8080/jboss-seam-jpa
+* Open this URL in a web browser: http://localhost:8080/jpa-web

Modified: branches/community/Seam_2_3/examples/readme.txt
===================================================================
--- branches/community/Seam_2_3/examples/readme.txt	2012-10-30 16:04:49 UTC (rev 15328)
+++ branches/community/Seam_2_3/examples/readme.txt	2012-10-30 16:09:21 UTC (rev 15329)
@@ -61,7 +61,7 @@
    However, WAR deployments use a different naming convention for the context
    path. If you deploy a WAR example, point your web browser to:
 
-   http://localhost:8080/jboss-seam-${example.name}
+   http://localhost:8080/${example.name}-web
 
    The WAR examples are:
    spring, jpa, hibernate, groovybooking 

Modified: branches/community/Seam_2_3/examples/spring/spring-tests/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples/spring/spring-tests/pom.xml	2012-10-30 16:04:49 UTC (rev 15328)
+++ branches/community/Seam_2_3/examples/spring/spring-tests/pom.xml	2012-10-30 16:09:21 UTC (rev 15329)
@@ -65,7 +65,7 @@
         <profile>
             <id>ftest-jbossas</id>
             <properties>
-                <example.context.path>jboss-seam-spring</example.context.path>
+                <example.context.path>spring-web</example.context.path>
             </properties>
             <build>
                 <plugins>

Modified: branches/community/Seam_2_3/examples/spring/spring-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples/spring/spring-web/pom.xml	2012-10-30 16:04:49 UTC (rev 15328)
+++ branches/community/Seam_2_3/examples/spring/spring-web/pom.xml	2012-10-30 16:09:21 UTC (rev 15329)
@@ -108,7 +108,7 @@
     </dependencies>
   
     <build>
-        <finalName>jboss-seam-spring</finalName>
+        <finalName>spring-web</finalName>
         <plugins>
             <plugin>
                 <groupId>org.apache.maven.plugins</groupId>



More information about the seam-commits mailing list