[weld-commits] Weld SVN: r5055 - extensions/trunk/archetypes/weld-jsf-minimal-jee/src/main/resources/archetype-resources.

weld-commits at lists.jboss.org weld-commits at lists.jboss.org
Fri Nov 13 14:39:52 EST 2009


Author: dan.j.allen
Date: 2009-11-13 14:39:52 -0500 (Fri, 13 Nov 2009)
New Revision: 5055

Modified:
   extensions/trunk/archetypes/weld-jsf-minimal-jee/src/main/resources/archetype-resources/pom.xml
Log:
add bean validation api
add hibernate validator impl


Modified: extensions/trunk/archetypes/weld-jsf-minimal-jee/src/main/resources/archetype-resources/pom.xml
===================================================================
--- extensions/trunk/archetypes/weld-jsf-minimal-jee/src/main/resources/archetype-resources/pom.xml	2009-11-13 19:30:41 UTC (rev 5054)
+++ extensions/trunk/archetypes/weld-jsf-minimal-jee/src/main/resources/archetype-resources/pom.xml	2009-11-13 19:39:52 UTC (rev 5055)
@@ -41,6 +41,18 @@
          <artifactId>jsr250-api</artifactId>
          <scope>provided</scope>
       </dependency>
+      <dependency>
+         <groupId>javax.validation</groupId>
+         <artifactId>validation-api</artifactId>
+         <scope>provided</scope>
+      </dependency>
+      <!-- Provided on JBoss AS, not necessarily Java EE 6 -->
+      <dependency>
+         <groupId>org.hibernate</groupId>
+         <artifactId>hibernate-validator</artifactId>
+         <version>4.0.0.GA</version>
+         <scope>provided</scope>
+      </dependency>
       <!-- JSF 2.0 -->
       <dependency>
          <groupId>javax.faces</groupId>



More information about the weld-commits mailing list