[webbeans-commits] Webbeans SVN: r3338 - in examples/trunk/se: numberguess and 1 other directory.

webbeans-commits at lists.jboss.org webbeans-commits at lists.jboss.org
Tue Jul 28 20:04:28 EDT 2009


Author: peteroyle
Date: 2009-07-28 20:04:28 -0400 (Tue, 28 Jul 2009)
New Revision: 3338

Modified:
   examples/trunk/se/hello-world/pom.xml
   examples/trunk/se/numberguess/pom.xml
Log:
Changing the webbeans-core dependencies from runtime to provided makes the WebBeansBootstrap class available at runtime when using mvn -Drun. Fixes WBX-43

Modified: examples/trunk/se/hello-world/pom.xml
===================================================================
--- examples/trunk/se/hello-world/pom.xml	2009-07-28 23:43:43 UTC (rev 3337)
+++ examples/trunk/se/hello-world/pom.xml	2009-07-29 00:04:28 UTC (rev 3338)
@@ -83,7 +83,7 @@
         <dependency>
             <groupId>org.jboss.webbeans</groupId>
             <artifactId>webbeans-core</artifactId>
-            <scope>runtime</scope>
+            <scope>provided</scope>
         </dependency>
     </dependencies>
 

Modified: examples/trunk/se/numberguess/pom.xml
===================================================================
--- examples/trunk/se/numberguess/pom.xml	2009-07-28 23:43:43 UTC (rev 3337)
+++ examples/trunk/se/numberguess/pom.xml	2009-07-29 00:04:28 UTC (rev 3338)
@@ -20,7 +20,7 @@
         <dependency>
             <groupId>org.jboss.webbeans</groupId>
             <artifactId>webbeans-core</artifactId>
-            <scope>runtime</scope>
+            <scope>provided</scope>
         </dependency>
         <dependency>
            <groupId>javax.annotation</groupId>




More information about the weld-commits mailing list