[weld-commits] Weld SVN: r5171 - archetypes/trunk/jsf/servlet-minimal/src/main/resources/archetype-resources.

weld-commits at lists.jboss.org weld-commits at lists.jboss.org
Sun Nov 29 15:55:27 EST 2009


Author: sboscarine
Date: 2009-11-29 15:55:27 -0500 (Sun, 29 Nov 2009)
New Revision: 5171

Modified:
   archetypes/trunk/jsf/servlet-minimal/src/main/resources/archetype-resources/pom.xml
Log:
documentation error

Modified: archetypes/trunk/jsf/servlet-minimal/src/main/resources/archetype-resources/pom.xml
===================================================================
--- archetypes/trunk/jsf/servlet-minimal/src/main/resources/archetype-resources/pom.xml	2009-11-28 17:41:34 UTC (rev 5170)
+++ archetypes/trunk/jsf/servlet-minimal/src/main/resources/archetype-resources/pom.xml	2009-11-29 20:55:27 UTC (rev 5171)
@@ -7,18 +7,17 @@
    <packaging>war</packaging>
    <name>${artifactId}</name>
    <version>${version}</version>
-   
+
    <properties>
       <!--
          eliminates [WARNING] Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is
          platform dependent!
       -->
       <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-      
       <!-- The version of Weld extensions in use -->
       <weld.extensions.version>1.0.0-CR2</weld.extensions.version>
    </properties>
-   
+
    <dependencyManagement>
       <dependencies>
          <!-- Import scope will provide versions for dependencies below. -->
@@ -31,22 +30,22 @@
          </dependency>
       </dependencies>
    </dependencyManagement>
-   
+
    <dependencies>
-      
+
       <!-- Common to JEE and Servlet containers -->
       <dependency>
          <groupId>javax.enterprise</groupId>
          <artifactId>cdi-api</artifactId>
          <scope>provided</scope>
       </dependency>
-      
+
       <dependency>
          <groupId>javax.annotation</groupId>
          <artifactId>jsr250-api</artifactId>
          <scope>provided</scope>
       </dependency>
-      
+
       <!-- JSF 2.0 API -->
       <dependency>
          <groupId>javax.faces</groupId>
@@ -55,10 +54,7 @@
 
       <!-- Optional, but pretty useful. -->
       <!--
-      <dependency>
-         <groupId>javax.servlet</groupId>
-         <artifactId>jstl</artifactId>
-      </dependency>
+         <dependency> <groupId>javax.servlet</groupId> <artifactId>jstl</artifactId> </dependency>
       -->
 
       <!-- Optional, but highly recommended. -->
@@ -85,20 +81,7 @@
          <scope>runtime</scope>
       </dependency>
 
-      <!-- Bean Validation API (JSR 303) -->
       <dependency>
-         <groupId>javax.validation</groupId>
-         <artifactId>validation-api</artifactId>
-      </dependency>
-
-      <!-- Bean Validation Implementation -->
-      <dependency>
-         <groupId>org.hibernate</groupId>
-         <artifactId>hibernate-validator</artifactId>
-         <version>4.0.0.GA</version>
-      </dependency>
-
-      <dependency>
          <groupId>org.glassfish.web</groupId>
          <artifactId>el-impl</artifactId>
          <scope>runtime</scope>
@@ -109,11 +92,22 @@
             </exclusion>
          </exclusions>
       </dependency>
-      
       <!-- end Jetty/Tomcat-specific scopes and artifacts -->
-      
+
+      <!-- Bean Validation API (JSR 303) -->
+      <dependency>
+         <groupId>javax.validation</groupId>
+         <artifactId>validation-api</artifactId>
+      </dependency>
+
+      <!-- Bean Validation Implementation -->
+      <dependency>
+         <groupId>org.hibernate</groupId>
+         <artifactId>hibernate-validator</artifactId>
+         <version>4.0.0.GA</version>
+      </dependency>
    </dependencies>
-   
+
    <build>
       <finalName>${artifactId}</finalName>
       <plugins>
@@ -137,7 +131,7 @@
                <downloadJavadocs>true</downloadJavadocs>
             </configuration>
          </plugin>
-         
+
          <!-- Embedded Jetty (jetty:run) -->
          <plugin>
             <groupId>org.mortbay.jetty</groupId>
@@ -169,15 +163,12 @@
                <!-- Embedded port -->
                <port>9090</port>
                <!--
-                  The default authentication credentials for remote deployment are username "admin" with no password
-                  To override credentials, define a server in settings.xml and activate it using the <server> element
+                  The default authentication credentials for remote deployment are username "admin" with no password To
+                  override credentials, define a server in settings.xml and activate it using the <server> element
                -->
                <url>http://localhost:8080/manager</url>
             </configuration>
          </plugin>
-
       </plugins>
-      
    </build>
-   
-</project>
+</project>
\ No newline at end of file



More information about the weld-commits mailing list