[seam-commits] Seam SVN: r14373 - in branches/community/Seam_2_3/examples-ee6/mail: mail-arquillian and 4 other directories.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Tue Mar 6 17:45:31 EST 2012


Author: dhinojosa
Date: 2012-03-06 17:45:30 -0500 (Tue, 06 Mar 2012)
New Revision: 14373

Modified:
   branches/community/Seam_2_3/examples-ee6/mail/mail-arquillian/
   branches/community/Seam_2_3/examples-ee6/mail/mail-arquillian/pom.xml
   branches/community/Seam_2_3/examples-ee6/mail/mail-ear/pom.xml
   branches/community/Seam_2_3/examples-ee6/mail/mail-ejb/pom.xml
   branches/community/Seam_2_3/examples-ee6/mail/mail-seamtest/pom.xml
   branches/community/Seam_2_3/examples-ee6/mail/mail-web/pom.xml
   branches/community/Seam_2_3/examples-ee6/mail/pom.xml
Log:
update mail pom


Property changes on: branches/community/Seam_2_3/examples-ee6/mail/mail-arquillian
___________________________________________________________________
Modified: svn:ignore
   - target


   + target
*.iml



Modified: branches/community/Seam_2_3/examples-ee6/mail/mail-arquillian/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/mail/mail-arquillian/pom.xml	2012-03-06 22:44:54 UTC (rev 14372)
+++ branches/community/Seam_2_3/examples-ee6/mail/mail-arquillian/pom.xml	2012-03-06 22:45:30 UTC (rev 14373)
@@ -3,8 +3,8 @@
          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
+      <groupId>org.jboss.seam.examples-ee6</groupId>
       <artifactId>mail</artifactId>
-      <groupId>org.jboss.seam.examples-ee6</groupId>
       <version>2.3.0-SNAPSHOT</version>
       <relativePath>../pom.xml</relativePath>
    </parent>

Modified: branches/community/Seam_2_3/examples-ee6/mail/mail-ear/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/mail/mail-ear/pom.xml	2012-03-06 22:44:54 UTC (rev 14372)
+++ branches/community/Seam_2_3/examples-ee6/mail/mail-ear/pom.xml	2012-03-06 22:45:30 UTC (rev 14373)
@@ -1,186 +1,192 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-    <modelVersion>4.0.0</modelVersion>
-    <parent>
-        <artifactId>mail</artifactId>
-        <groupId>org.jboss.seam.examples-ee6</groupId>
-        <version>2.3.0-SNAPSHOT</version>
-        <relativePath>../pom.xml</relativePath>
-    </parent>
-    
-    <groupId>org.jboss.seam.examples-ee6.mail</groupId>
-    <artifactId>mail-ear</artifactId>
-    <packaging>ear</packaging>
-    <name>Mail EAR Module (EE6)</name>
-    
-    <properties>
-        <jboss.home>${env.JBOSS_HOME}</jboss.home>
-        <jboss.domain>default</jboss.domain>
-    </properties>
-    
-    <dependencies>
-        <dependency>
-            <groupId>org.jboss.seam.examples-ee6.mail</groupId>
-            <artifactId>mail-web</artifactId>
-            <type>war</type>
-        </dependency>
-        <dependency>
-            <groupId>org.jboss.seam.examples-ee6.mail</groupId>
-            <artifactId>mail-ejb</artifactId>
-            <type>ejb</type>
-        </dependency>
-        <dependency>
-            <groupId>org.jboss.seam</groupId>
-            <artifactId>jboss-seam-jsf2</artifactId>
-            <type>ejb</type>
-            <scope>compile</scope>
-            <exclusions>
-                <exclusion>
-                    <groupId>com.thoughtworks.xstream</groupId>
-                    <artifactId>xstream</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>xpp3</groupId>
-                    <artifactId>xpp3_min</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-        <dependency>
-            <groupId>jfree</groupId>
-            <artifactId>jfreechart</artifactId>
-        </dependency>
-        <dependency>
-        	<groupId>org.hibernate</groupId>
-        	<artifactId>hibernate-validator</artifactId>
-        </dependency>
-    </dependencies>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+   <modelVersion>4.0.0</modelVersion>
+   <parent>
+      <groupId>org.jboss.seam.examples-ee6</groupId>
+      <artifactId>mail</artifactId>
+      <version>2.3.0-SNAPSHOT</version>
+      <relativePath>../pom.xml</relativePath>
+   </parent>
 
-    <build>
-        <finalName>seam-mail</finalName>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-ear-plugin</artifactId>
-                <configuration>
-                    <version>5</version>
-                    <defaultLibBundleDir>lib</defaultLibBundleDir>
-                    <!-- Exclude eclipse generated application.xml and manually modified jboss-app.xml during mvn build  -->
-                    <earSourceExcludes>**/application.xml, **/jboss-app.xml</earSourceExcludes>
-                    <!-- use maven generated application.xml instead -->
-                    <generateApplicationXml>true</generateApplicationXml>
-                    <filtering>true</filtering>
-<!--                    <jboss>
-                        <version>4.2</version>
-                        <loader-repository>seam.jboss.org:loader=seam-mail</loader-repository>
-                    </jboss>-->
-                    <modules>
-                        <ejbModule>
-                            <groupId>org.jboss.seam</groupId>
-                            <artifactId>jboss-seam-jsf2</artifactId>
-                            <bundleFileName>jboss-seam.jar</bundleFileName>
-                        </ejbModule>
-                        <webModule>
-                            <groupId>org.jboss.seam.examples-ee6.mail</groupId>
-                            <artifactId>mail-web</artifactId>
-                            <contextRoot>/seam-mail</contextRoot>
-                            <bundleFileName>mail-web.war</bundleFileName>
-                        </webModule>
-                        <ejbModule>
-                            <groupId>org.jboss.seam.examples-ee6.mail</groupId>
-                            <artifactId>mail-ejb</artifactId>
-                            <bundleFileName>mail-ejb.jar</bundleFileName>
-                        </ejbModule>
-                    </modules>
-                </configuration>
-            </plugin>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-dependency-plugin</artifactId>
-                <executions>
-                    <execution>
-                       <id>copy-greenmail-service</id>
-                       <phase>package</phase>
-                       <goals>
-                          <goal>copy</goal>
-                       </goals>
-                       <configuration>
-                          <artifactItems>
+   <groupId>org.jboss.seam.examples-ee6.mail</groupId>
+   <artifactId>mail-ear</artifactId>
+   <packaging>ear</packaging>
+   <name>Mail EAR Module (EE6)</name>
+
+   <properties>
+      <jboss.home>${env.JBOSS_HOME}</jboss.home>
+      <jboss.domain>default</jboss.domain>
+   </properties>
+
+   <dependencies>
+      <dependency>
+         <groupId>org.jboss.seam.examples-ee6.mail</groupId>
+         <artifactId>mail-web</artifactId>
+         <type>war</type>
+      </dependency>
+      <dependency>
+         <groupId>org.jboss.seam.examples-ee6.mail</groupId>
+         <artifactId>mail-ejb</artifactId>
+         <type>ejb</type>
+      </dependency>
+      <dependency>
+         <groupId>org.jboss.seam</groupId>
+         <artifactId>jboss-seam-jsf2</artifactId>
+         <type>ejb</type>
+         <scope>compile</scope>
+         <exclusions>
+            <exclusion>
+               <groupId>com.thoughtworks.xstream</groupId>
+               <artifactId>xstream</artifactId>
+            </exclusion>
+            <exclusion>
+               <groupId>xpp3</groupId>
+               <artifactId>xpp3_min</artifactId>
+            </exclusion>
+         </exclusions>
+      </dependency>
+      <dependency>
+         <groupId>jfree</groupId>
+         <artifactId>jfreechart</artifactId>
+      </dependency>
+      <dependency>
+         <groupId>org.hibernate</groupId>
+         <artifactId>hibernate-validator</artifactId>
+      </dependency>
+   </dependencies>
+
+   <build>
+      <finalName>seam-mail</finalName>
+      <plugins>
+         <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-ear-plugin</artifactId>
+            <configuration>
+               <version>5</version>
+               <defaultLibBundleDir>lib</defaultLibBundleDir>
+               <!-- Exclude eclipse generated application.xml and manually modified jboss-app.xml during mvn build  -->
+               <earSourceExcludes>**/application.xml, **/jboss-app.xml</earSourceExcludes>
+               <!-- use maven generated application.xml instead -->
+               <generateApplicationXml>true</generateApplicationXml>
+               <filtering>true</filtering>
+               <!--                    <jboss>
+                   <version>4.2</version>
+                   <loader-repository>seam.jboss.org:loader=seam-mail</loader-repository>
+               </jboss>-->
+               <modules>
+                  <ejbModule>
+                     <groupId>org.jboss.seam</groupId>
+                     <artifactId>jboss-seam-jsf2</artifactId>
+                     <bundleFileName>jboss-seam.jar</bundleFileName>
+                  </ejbModule>
+                  <webModule>
+                     <groupId>org.jboss.seam.examples-ee6.mail</groupId>
+                     <artifactId>mail-web</artifactId>
+                     <contextRoot>/seam-mail</contextRoot>
+                     <bundleFileName>mail-web.war</bundleFileName>
+                  </webModule>
+                  <ejbModule>
+                     <groupId>org.jboss.seam.examples-ee6.mail</groupId>
+                     <artifactId>mail-ejb</artifactId>
+                     <bundleFileName>mail-ejb.jar</bundleFileName>
+                  </ejbModule>
+               </modules>
+            </configuration>
+         </plugin>
+         <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-dependency-plugin</artifactId>
+            <executions>
+               <execution>
+                  <id>copy-greenmail-service</id>
+                  <phase>package</phase>
+                  <goals>
+                     <goal>copy</goal>
+                  </goals>
+                  <configuration>
+                     <artifactItems>
+                        <artifactItem>
+                           <groupId>com.icegreen</groupId>
+                           <artifactId>greenmail-jboss-service</artifactId>
+                           <version>1.3.1b</version>
+                           <type>sar</type>
+                           <overWrite>false</overWrite>
+                           <outputDirectory>${project.build.directory}</outputDirectory>
+                           <destFileName>greenmail-jboss-service.sar</destFileName>
+                        </artifactItem>
+                     </artifactItems>
+                  </configuration>
+               </execution>
+            </executions>
+         </plugin>
+      </plugins>
+   </build>
+
+   <profiles>
+      <profile>
+         <id>exploded</id>
+         <properties>
+            <example.name>mail</example.name>
+         </properties>
+         <build>
+            <plugins>
+               <plugin>
+                  <groupId>org.apache.maven.plugins</groupId>
+                  <artifactId>maven-dependency-plugin</artifactId>
+                  <executions>
+                     <execution>
+                        <id>unpack</id>
+                        <phase>package</phase>
+                        <goals>
+                           <goal>unpack</goal>
+                        </goals>
+                        <configuration>
+                           <artifactItems>
                               <artifactItem>
-                                   <groupId>com.icegreen</groupId>
-                                   <artifactId>greenmail-jboss-service</artifactId>
-                                   <version>1.3.1b</version>
-                                   <type>sar</type>
-                                   <overWrite>false</overWrite>
-                                   <outputDirectory>${project.build.directory}</outputDirectory>
-                                    <destFileName>greenmail-jboss-service.sar</destFileName>
+                                 <groupId>org.jboss.seam.examples-ee6.mail</groupId>
+                                 <artifactId>mail-ear</artifactId>
+                                 <type>ear</type>
+                                 <overWrite>true</overWrite>
+                                 <outputDirectory>${project.build.directory}/${project.build.finalName}-exploded/${project.build.finalName}.ear
+                                 </outputDirectory>
                               </artifactItem>
-                          </artifactItems>
-                       </configuration>
-                    </execution>
-                </executions>
-            </plugin>
-        </plugins>
-    </build>
+                              <artifactItem>
+                                 <groupId>org.jboss.seam.examples-ee6.mail</groupId>
+                                 <artifactId>mail-web</artifactId>
+                                 <type>war</type>
+                                 <overWrite>true</overWrite>
+                                 <outputDirectory>
+                                    ${project.build.directory}/${project.build.finalName}-exploded/${project.build.finalName}.ear/${example.name}-web.war
+                                 </outputDirectory>
+                              </artifactItem>
+                              <artifactItem>
+                                 <groupId>org.jboss.seam.examples-ee6.mail</groupId>
+                                 <artifactId>mail-ejb</artifactId>
+                                 <type>jar</type>
+                                 <overWrite>true</overWrite>
+                                 <outputDirectory>
+                                    ${project.build.directory}/${project.build.finalName}-exploded/${project.build.finalName}.ear/${example.name}-ejb.jar
+                                 </outputDirectory>
+                              </artifactItem>
+                           </artifactItems>
+                        </configuration>
+                     </execution>
+                  </executions>
+               </plugin>
+            </plugins>
+         </build>
+      </profile>
 
-    <profiles>
-        <profile>
-            <id>exploded</id>
-            <properties>
-                <example.name>mail</example.name>
-            </properties>
-            <build>
-                <plugins>
-                    <plugin>
-                        <groupId>org.apache.maven.plugins</groupId>
-                        <artifactId>maven-dependency-plugin</artifactId>
-                        <executions>
-                            <execution>
-                                <id>unpack</id>
-                                <phase>package</phase>
-                                <goals>
-                                    <goal>unpack</goal>
-                                </goals>
-                                <configuration>
-                                    <artifactItems>
-                                        <artifactItem>
-                                            <groupId>org.jboss.seam.examples-ee6.mail</groupId>
-                                            <artifactId>mail-ear</artifactId>
-                                            <type>ear</type>
-                                            <overWrite>true</overWrite>
-                                            <outputDirectory>${project.build.directory}/${project.build.finalName}-exploded/${project.build.finalName}.ear</outputDirectory>
-                                        </artifactItem>
-                                        <artifactItem>
-                                            <groupId>org.jboss.seam.examples-ee6.mail</groupId>
-                                            <artifactId>mail-web</artifactId>
-                                            <type>war</type>
-                                            <overWrite>true</overWrite>
-                                            <outputDirectory>${project.build.directory}/${project.build.finalName}-exploded/${project.build.finalName}.ear/${example.name}-web.war</outputDirectory>
-                                        </artifactItem>
-                                        <artifactItem>
-                                            <groupId>org.jboss.seam.examples-ee6.mail</groupId>
-                                            <artifactId>mail-ejb</artifactId>
-                                            <type>jar</type>
-                                            <overWrite>true</overWrite>
-                                            <outputDirectory>${project.build.directory}/${project.build.finalName}-exploded/${project.build.finalName}.ear/${example.name}-ejb.jar</outputDirectory>
-                                        </artifactItem>
-                                    </artifactItems>
-                                </configuration>
-                            </execution>
-                        </executions>
-                    </plugin>
-                </plugins>
-            </build>
-        </profile>
-        
-    </profiles>
-    <dependencyManagement>
-    	<dependencies>
-    		<dependency>
-    			<groupId>org.hibernate</groupId>
-    			<artifactId>hibernate-validator</artifactId>
-    			<version>3.1.0.GA</version>
-    			<scope>compile</scope>
-    		</dependency>
-    	</dependencies>
-    </dependencyManagement>
+   </profiles>
+   <dependencyManagement>
+      <dependencies>
+         <dependency>
+            <groupId>org.hibernate</groupId>
+            <artifactId>hibernate-validator</artifactId>
+            <version>3.1.0.GA</version>
+            <scope>compile</scope>
+         </dependency>
+      </dependencies>
+   </dependencyManagement>
 </project>

Modified: branches/community/Seam_2_3/examples-ee6/mail/mail-ejb/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/mail/mail-ejb/pom.xml	2012-03-06 22:44:54 UTC (rev 14372)
+++ branches/community/Seam_2_3/examples-ee6/mail/mail-ejb/pom.xml	2012-03-06 22:45:30 UTC (rev 14373)
@@ -1,43 +1,34 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-	<modelVersion>4.0.0</modelVersion>
-	<parent>
-		<artifactId>mail</artifactId>
-		<groupId>org.jboss.seam.examples-ee6</groupId>
-		<version>2.3.0-SNAPSHOT</version>
-		<relativePath>../pom.xml</relativePath>
-	</parent>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+   <modelVersion>4.0.0</modelVersion>
+   <parent>
+      <groupId>org.jboss.seam.examples-ee6</groupId>
+      <artifactId>mail</artifactId>
+      <version>2.3.0-SNAPSHOT</version>
+      <relativePath>../pom.xml</relativePath>
+   </parent>
 
-	<groupId>org.jboss.seam.examples-ee6.mail</groupId>
-	<artifactId>mail-ejb</artifactId>
-	<packaging>ejb</packaging>
-	<name>Mail EJB Module (EE6)</name>
+   <groupId>org.jboss.seam.examples-ee6.mail</groupId>
+   <artifactId>mail-ejb</artifactId>
+   <packaging>ejb</packaging>
+   <name>Mail EJB Module (EE6)</name>
 
-	<dependencies>
-		<dependency>
-			<groupId>org.jboss.seam</groupId>
-			<artifactId>jboss-seam-jsf2</artifactId>
-			<type>ejb</type>
-		</dependency>
-		<dependency>
-			<groupId>org.hibernate</groupId>
-			<artifactId>hibernate-validator</artifactId>
-		</dependency>
-		<dependency>
-			<groupId>javax.servlet</groupId>
-			<artifactId>servlet-api</artifactId>
-			<scope>provided</scope>
-		</dependency>
-		<dependency>
-			<groupId>javax.ejb</groupId>
-			<artifactId>ejb-api</artifactId>
-			<scope>provided</scope>
-		</dependency>
-		<dependency>
-			<groupId>com.sun.faces</groupId>
-			<artifactId>jsf-api</artifactId>
-			<scope>provided</scope>
-		</dependency>
-	</dependencies>
+   <dependencies>
+      <dependency>
+         <groupId>org.jboss.seam</groupId>
+         <artifactId>jboss-seam-jsf2</artifactId>
+         <version>2.3.0-SNAPSHOT</version>
+         <type>ejb</type>
+      </dependency>
+      <dependency>
+         <groupId>org.jboss.spec.javax.faces</groupId>
+         <artifactId>jboss-jsf-api_2.0_spec</artifactId>
+      </dependency>
+      <dependency>
+         <groupId>javax.validation</groupId>
+         <artifactId>validation-api</artifactId>
+      </dependency>
+   </dependencies>
 
 </project>

Modified: branches/community/Seam_2_3/examples-ee6/mail/mail-seamtest/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/mail/mail-seamtest/pom.xml	2012-03-06 22:44:54 UTC (rev 14372)
+++ branches/community/Seam_2_3/examples-ee6/mail/mail-seamtest/pom.xml	2012-03-06 22:45:30 UTC (rev 14373)
@@ -2,14 +2,14 @@
 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
     <modelVersion>4.0.0</modelVersion>
     <parent>
-        <artifactId>mail</artifactId>
-        <groupId>org.jboss.seam.examples-ee6</groupId>
+       <groupId>org.jboss.seam.examples-ee6</groupId>
+       <artifactId>mail</artifactId>
         <version>2.3.0-SNAPSHOT</version>
         <relativePath>../pom.xml</relativePath>
     </parent>
     
     <groupId>org.jboss.seam.examples-ee6.mail</groupId>
-    <artifactId>mail-tests</artifactId>
+    <artifactId>mail-seamtest</artifactId>
     <name>Mail Seam Test Module (EE6)</name>
     
     <dependencies>

Modified: branches/community/Seam_2_3/examples-ee6/mail/mail-web/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/mail/mail-web/pom.xml	2012-03-06 22:44:54 UTC (rev 14372)
+++ branches/community/Seam_2_3/examples-ee6/mail/mail-web/pom.xml	2012-03-06 22:45:30 UTC (rev 14373)
@@ -1,208 +1,209 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-    <modelVersion>4.0.0</modelVersion>
-    <parent>
-        <artifactId>mail</artifactId>
-        <groupId>org.jboss.seam.examples-ee6</groupId>
-        <version>2.3.0-SNAPSHOT</version>
-        <relativePath>../pom.xml</relativePath>
-    </parent>
-    
-    <groupId>org.jboss.seam.examples-ee6.mail</groupId>
-    <artifactId>mail-web</artifactId>
-    <packaging>war</packaging>
-    <name>Mail Web Module (EE6)</name>
-    
-    <properties>
-        <!-- filtering property for components.xml -->
-        <jndiPattern>seam-mail/#{ejbName}/local</jndiPattern>
-    </properties>
-    
-    <dependencies>
-        <dependency>
-            <groupId>org.jboss.seam.examples-ee6.mail</groupId>
-            <artifactId>mail-ejb</artifactId>
-            <type>ejb</type>
-            <scope>provided</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.jboss.seam</groupId>
-            <artifactId>jboss-seam-jsf2</artifactId>
-            <type>ejb</type>
-        </dependency>
-        <dependency>
-            <groupId>org.jboss.seam</groupId>
-            <artifactId>jboss-seam-mail</artifactId>
-            <exclusions>
-            	<exclusion>
-            		<artifactId>jboss-seam-ui</artifactId>
-            		<groupId>org.jboss.seam</groupId>
-            	</exclusion>
-            	<exclusion>
-            		<artifactId>jsf-facelets</artifactId>
-            		<groupId>com.sun.facelets</groupId>
-            	</exclusion>
-            	<exclusion>
-            		<artifactId>jboss-seam</artifactId>
-            		<groupId>org.jboss.seam</groupId>
-            	</exclusion>
-                <exclusion>
-                    <groupId>javax.faces</groupId>
-                    <artifactId>jsf-api</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-        <dependency>
-            <groupId>org.jboss.seam</groupId>
-            <artifactId>jboss-seam-ui-jsf2</artifactId>
-            <exclusions>
-                <exclusion>
-                    <groupId>org.jboss.seam</groupId>
-                    <artifactId>jboss-seam-jul</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-        <dependency>
-            <groupId>org.jboss.seam</groupId>
-            <artifactId>jboss-seam-debug-jsf2</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>org.jboss.seam</groupId>
-            <artifactId>jboss-seam-pdf</artifactId>
-            <exclusions>
-            	<exclusion>
-            		<artifactId>jboss-seam-ui</artifactId>
-            		<groupId>org.jboss.seam</groupId>
-            	</exclusion>
-            	<exclusion>
-            		<artifactId>jsf-facelets</artifactId>
-            		<groupId>com.sun.facelets</groupId>
-            	</exclusion>
-            	<exclusion>
-            		<artifactId>jboss-seam</artifactId>
-            		<groupId>org.jboss.seam</groupId>
-            	</exclusion>
-                <exclusion>
-                    <groupId>javax.faces</groupId>
-                    <artifactId>jsf-api</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-        <dependency>
-            <groupId>org.jboss.seam</groupId>
-            <artifactId>jboss-seam-excel</artifactId>
-            <exclusions>
-            	<exclusion>
-            		<artifactId>jboss-seam-ui</artifactId>
-            		<groupId>org.jboss.seam</groupId>
-            	</exclusion>
-            	<exclusion>
-            		<artifactId>jsf-facelets</artifactId>
-            		<groupId>com.sun.facelets</groupId>
-            	</exclusion>
-            	<exclusion>
-            		<artifactId>jboss-seam</artifactId>
-            		<groupId>org.jboss.seam</groupId>
-            	</exclusion>
-                <exclusion>
-                    <groupId>javax.faces</groupId>
-                    <artifactId>jsf-api</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-<!--         <dependency> -->
-<!--             <groupId>com.sun.facelets</groupId> -->
-<!--             <artifactId>jsf-facelets</artifactId> -->
-<!--         </dependency> -->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+   <modelVersion>4.0.0</modelVersion>
+   <parent>
+      <groupId>org.jboss.seam.examples-ee6</groupId>
+      <artifactId>mail</artifactId>
+      <version>2.3.0-SNAPSHOT</version>
+      <relativePath>../pom.xml</relativePath>
+   </parent>
 
-    </dependencies>
-  
-    <build>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-war-plugin</artifactId>
-                <configuration>
-                    <webResources>
-                        <resource>
-                            <directory>src/main/webapp</directory>
-                            <filtering>true</filtering>
-                        </resource>
-                    </webResources>
-                </configuration>
-            </plugin>
-        </plugins>
-    </build>
-  
-    <profiles>
-        <profile>
-            <id>tomcat</id>
-            <properties>
-                <!-- filtering property for components.xml -->
-                <jndiPattern>#{ejbName}/local</jndiPattern>
-            </properties>
-            <dependencies>
-                <dependency>
-                    <groupId>org.jboss.seam.examples-ee6.mail</groupId>
-                    <artifactId>mail-ejb</artifactId>
-                    <type>ejb</type>
-                    <scope>compile</scope>
-                </dependency>
-                <dependency>
-                    <groupId>org.jboss.seam</groupId>
-                    <artifactId>jboss-seam-jsf2</artifactId>
-                    <type>ejb</type>
-                    <scope>compile</scope>
-                    <exclusions>
-                        <exclusion>
-                            <groupId>com.thoughtworks.xstream</groupId>
-                            <artifactId>xstream</artifactId>
-                        </exclusion>
-                        <exclusion>
-                            <groupId>xpp3</groupId>
-                            <artifactId>xpp3_min</artifactId>
-                        </exclusion>
-                    </exclusions>
-                </dependency>
-                <dependency>
-                    <groupId>javax.faces</groupId>
-                    <artifactId>jsf-api</artifactId>
-                    <scope>compile</scope>
-                </dependency>
-                <dependency>
-                    <groupId>javax.faces</groupId>
-                    <artifactId>jsf-impl</artifactId>
-                    <scope>compile</scope>
-                </dependency>
-            </dependencies>
-            <build>
-                <finalName>jboss-seam-mail</finalName>
-                <plugins>
-                    <plugin>
-                    <artifactId>maven-resources-plugin</artifactId>
-                        <executions>
-                            <execution>
-                                <id>copy-resources</id>
-                                <phase>validate</phase>
-                                <goals>
-                                    <goal>copy-resources</goal>
-                                </goals>
-                                <configuration>
-                                    <outputDirectory>${basedir}/target/classes</outputDirectory>
-                                    <resources>          
-                                        <resource>
-                                            <directory>${basedir}/../mail-ear/src/main/resources</directory>
-                                            <includes>
-                                                <include>jboss-seam-mail-ds.xml</include>
-                                            </includes>
-                                        </resource>
-                                  </resources>              
-                                </configuration>            
-                            </execution>
-                        </executions>
-                    </plugin>
-                </plugins>
-            </build>
-        </profile>
-    </profiles>
+   <groupId>org.jboss.seam.examples-ee6.mail</groupId>
+   <artifactId>mail-web</artifactId>
+   <packaging>war</packaging>
+   <name>Mail Web Module (EE6)</name>
+
+   <properties>
+      <!-- filtering property for components.xml -->
+      <jndiPattern>seam-mail/#{ejbName}/local</jndiPattern>
+   </properties>
+
+   <dependencies>
+      <dependency>
+         <groupId>org.jboss.seam.examples-ee6.mail</groupId>
+         <artifactId>mail-ejb</artifactId>
+         <type>ejb</type>
+         <scope>provided</scope>
+      </dependency>
+      <dependency>
+         <groupId>org.jboss.seam</groupId>
+         <artifactId>jboss-seam-jsf2</artifactId>
+         <type>ejb</type>
+      </dependency>
+      <dependency>
+         <groupId>org.jboss.seam</groupId>
+         <artifactId>jboss-seam-mail</artifactId>
+         <exclusions>
+            <exclusion>
+               <artifactId>jboss-seam-ui</artifactId>
+               <groupId>org.jboss.seam</groupId>
+            </exclusion>
+            <exclusion>
+               <artifactId>jsf-facelets</artifactId>
+               <groupId>com.sun.facelets</groupId>
+            </exclusion>
+            <exclusion>
+               <artifactId>jboss-seam</artifactId>
+               <groupId>org.jboss.seam</groupId>
+            </exclusion>
+            <exclusion>
+               <groupId>javax.faces</groupId>
+               <artifactId>jsf-api</artifactId>
+            </exclusion>
+         </exclusions>
+      </dependency>
+      <dependency>
+         <groupId>org.jboss.seam</groupId>
+         <artifactId>jboss-seam-ui-jsf2</artifactId>
+         <exclusions>
+            <exclusion>
+               <groupId>org.jboss.seam</groupId>
+               <artifactId>jboss-seam-jul</artifactId>
+            </exclusion>
+         </exclusions>
+      </dependency>
+      <dependency>
+         <groupId>org.jboss.seam</groupId>
+         <artifactId>jboss-seam-debug-jsf2</artifactId>
+      </dependency>
+      <dependency>
+         <groupId>org.jboss.seam</groupId>
+         <artifactId>jboss-seam-pdf</artifactId>
+         <exclusions>
+            <exclusion>
+               <artifactId>jboss-seam-ui</artifactId>
+               <groupId>org.jboss.seam</groupId>
+            </exclusion>
+            <exclusion>
+               <artifactId>jsf-facelets</artifactId>
+               <groupId>com.sun.facelets</groupId>
+            </exclusion>
+            <exclusion>
+               <artifactId>jboss-seam</artifactId>
+               <groupId>org.jboss.seam</groupId>
+            </exclusion>
+            <exclusion>
+               <groupId>javax.faces</groupId>
+               <artifactId>jsf-api</artifactId>
+            </exclusion>
+         </exclusions>
+      </dependency>
+      <dependency>
+         <groupId>org.jboss.seam</groupId>
+         <artifactId>jboss-seam-excel</artifactId>
+         <exclusions>
+            <exclusion>
+               <artifactId>jboss-seam-ui</artifactId>
+               <groupId>org.jboss.seam</groupId>
+            </exclusion>
+            <exclusion>
+               <artifactId>jsf-facelets</artifactId>
+               <groupId>com.sun.facelets</groupId>
+            </exclusion>
+            <exclusion>
+               <artifactId>jboss-seam</artifactId>
+               <groupId>org.jboss.seam</groupId>
+            </exclusion>
+            <exclusion>
+               <groupId>javax.faces</groupId>
+               <artifactId>jsf-api</artifactId>
+            </exclusion>
+         </exclusions>
+      </dependency>
+      <!--         <dependency> -->
+      <!--             <groupId>com.sun.facelets</groupId> -->
+      <!--             <artifactId>jsf-facelets</artifactId> -->
+      <!--         </dependency> -->
+
+   </dependencies>
+
+   <build>
+      <plugins>
+         <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-war-plugin</artifactId>
+            <configuration>
+               <webResources>
+                  <resource>
+                     <directory>src/main/webapp</directory>
+                     <filtering>true</filtering>
+                  </resource>
+               </webResources>
+            </configuration>
+         </plugin>
+      </plugins>
+   </build>
+
+   <profiles>
+      <profile>
+         <id>tomcat</id>
+         <properties>
+            <!-- filtering property for components.xml -->
+            <jndiPattern>#{ejbName}/local</jndiPattern>
+         </properties>
+         <dependencies>
+            <dependency>
+               <groupId>org.jboss.seam.examples-ee6.mail</groupId>
+               <artifactId>mail-ejb</artifactId>
+               <type>ejb</type>
+               <scope>compile</scope>
+            </dependency>
+            <dependency>
+               <groupId>org.jboss.seam</groupId>
+               <artifactId>jboss-seam-jsf2</artifactId>
+               <type>ejb</type>
+               <scope>compile</scope>
+               <exclusions>
+                  <exclusion>
+                     <groupId>com.thoughtworks.xstream</groupId>
+                     <artifactId>xstream</artifactId>
+                  </exclusion>
+                  <exclusion>
+                     <groupId>xpp3</groupId>
+                     <artifactId>xpp3_min</artifactId>
+                  </exclusion>
+               </exclusions>
+            </dependency>
+            <dependency>
+               <groupId>javax.faces</groupId>
+               <artifactId>jsf-api</artifactId>
+               <scope>compile</scope>
+            </dependency>
+            <dependency>
+               <groupId>javax.faces</groupId>
+               <artifactId>jsf-impl</artifactId>
+               <scope>compile</scope>
+            </dependency>
+         </dependencies>
+         <build>
+            <finalName>jboss-seam-mail</finalName>
+            <plugins>
+               <plugin>
+                  <artifactId>maven-resources-plugin</artifactId>
+                  <executions>
+                     <execution>
+                        <id>copy-resources</id>
+                        <phase>validate</phase>
+                        <goals>
+                           <goal>copy-resources</goal>
+                        </goals>
+                        <configuration>
+                           <outputDirectory>${basedir}/target/classes</outputDirectory>
+                           <resources>
+                              <resource>
+                                 <directory>${basedir}/../mail-ear/src/main/resources</directory>
+                                 <includes>
+                                    <include>jboss-seam-mail-ds.xml</include>
+                                 </includes>
+                              </resource>
+                           </resources>
+                        </configuration>
+                     </execution>
+                  </executions>
+               </plugin>
+            </plugins>
+         </build>
+      </profile>
+   </profiles>
 </project>

Modified: branches/community/Seam_2_3/examples-ee6/mail/pom.xml
===================================================================
--- branches/community/Seam_2_3/examples-ee6/mail/pom.xml	2012-03-06 22:44:54 UTC (rev 14372)
+++ branches/community/Seam_2_3/examples-ee6/mail/pom.xml	2012-03-06 22:45:30 UTC (rev 14373)
@@ -1,47 +1,51 @@
 <?xml version="1.0" encoding="UTF-8"?>
-<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
-	<modelVersion>4.0.0</modelVersion>
-	<groupId>org.jboss.seam.examples-ee6</groupId>
-	<artifactId>mail</artifactId>
-	<parent>
-		<groupId>org.jboss.seam</groupId>
-		<artifactId>examples-ee6</artifactId>
-		<version>2.3.0-SNAPSHOT</version>
-		<relativePath>../pom.xml</relativePath>
-	</parent>
-    <packaging>pom</packaging>
-    <name>Seam Mail Example (EE6)</name>
-    
-    <properties>
-        <example.name>mail</example.name>
-    </properties>
-    
-    <modules>
-    	<module>mail-ear</module>
-    	<module>mail-ejb</module>
-    	<module>mail-web</module>
-    	<module>mail-tests</module>
-    </modules>
-    
-    <dependencyManagement>
-        <dependencies>
-            <dependency>
-                <groupId>org.jboss.seam.examples-ee6.mail</groupId>
-                <artifactId>mail-ejb</artifactId>
-                <version>${project.version}</version>
-                <type>ejb</type>
-            </dependency>
-            <dependency>
-                <groupId>org.jboss.seam.examples-ee6.mail</groupId>
-                <artifactId>mail-web</artifactId>
-                <version>${project.version}</version>
-                <type>war</type>
-            </dependency>
-            <dependency>
-                <groupId>org.jboss.seam.examples-ee6.mail</groupId>
-                <artifactId>mail-ear</artifactId>
-                <version>${project.version}</version>
-            </dependency>
-        </dependencies>
-    </dependencyManagement>
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+   <modelVersion>4.0.0</modelVersion>
+   <groupId>org.jboss.seam.examples-ee6</groupId>
+   <artifactId>mail</artifactId>
+
+   <parent>
+      <groupId>org.jboss.seam</groupId>
+      <artifactId>examples-ee6</artifactId>
+      <version>2.3.0-SNAPSHOT</version>
+      <relativePath>../pom.xml</relativePath>
+   </parent>
+
+   <packaging>pom</packaging>
+   <name>Seam Mail Example (EE6)</name>
+
+   <properties>
+      <example.name>mail</example.name>
+   </properties>
+
+   <modules>
+      <module>mail-ear</module>
+      <module>mail-ejb</module>
+      <module>mail-web</module>
+      <module>mail-seamtest</module>
+      <module>mail-arquillian</module>
+   </modules>
+
+   <dependencyManagement>
+      <dependencies>
+         <dependency>
+            <groupId>org.jboss.seam.examples-ee6.mail</groupId>
+            <artifactId>mail-ejb</artifactId>
+            <version>${project.version}</version>
+            <type>ejb</type>
+         </dependency>
+         <dependency>
+            <groupId>org.jboss.seam.examples-ee6.mail</groupId>
+            <artifactId>mail-web</artifactId>
+            <version>${project.version}</version>
+            <type>war</type>
+         </dependency>
+         <dependency>
+            <groupId>org.jboss.seam.examples-ee6.mail</groupId>
+            <artifactId>mail-ear</artifactId>
+            <version>${project.version}</version>
+         </dependency>
+      </dependencies>
+   </dependencyManagement>
 </project>



More information about the seam-commits mailing list