[webbeans-commits] Webbeans SVN: r2710 - examples/trunk/se/numberguess.

webbeans-commits at lists.jboss.org webbeans-commits at lists.jboss.org
Mon May 25 12:56:19 EDT 2009


Author: peteroyle
Date: 2009-05-25 12:56:19 -0400 (Mon, 25 May 2009)
New Revision: 2710

Modified:
   examples/trunk/se/numberguess/pom.xml
Log:
added webbeans-core as runtime dependency

Modified: examples/trunk/se/numberguess/pom.xml
===================================================================
--- examples/trunk/se/numberguess/pom.xml	2009-05-25 16:55:34 UTC (rev 2709)
+++ examples/trunk/se/numberguess/pom.xml	2009-05-25 16:56:19 UTC (rev 2710)
@@ -17,53 +17,58 @@
             <groupId>org.jboss.webbeans</groupId>
             <artifactId>webbeans-se</artifactId>
         </dependency>
+        <dependency>
+            <groupId>org.jboss.webbeans</groupId>
+            <artifactId>webbeans-core</artifactId>
+            <scope>runtime</scope>
+        </dependency>
     </dependencies>
     
-	<build>
-		<plugins>
-			<plugin>
-				<groupId>org.apache.maven.plugins</groupId>
-				<artifactId>maven-jar-plugin</artifactId>
-				<configuration>
-					<archive>
-						<manifest>
-							<mainClass>org.jboss.webbeans.environment.se.StartMain</mainClass>
-						</manifest>
-					</archive>
-				</configuration>
-			</plugin>
-		</plugins>
-	</build>
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-jar-plugin</artifactId>
+                <configuration>
+                    <archive>
+                        <manifest>
+                            <mainClass>org.jboss.webbeans.environment.se.StartMain</mainClass>
+                        </manifest>
+                    </archive>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
 	
-	<profiles>
-		<profile>
-         <id>run</id>
-         <activation>
-         	<property>
-         		<name>run</name>
-         	</property>
-         </activation>
-         <build>
-         	<plugins>
-         		<plugin>
-         			<executions>
-                     <execution>
-                        <id>run</id>
-                        <phase>package</phase> 
-                        <goals>
-                        <goal>java</goal>
-                        </goals>
-                     </execution>
-                  </executions>
-		        		<groupId>org.codehaus.mojo</groupId>
-			         <artifactId>exec-maven-plugin</artifactId>
-		  				<configuration>
-		  					<mainClass>org.jboss.webbeans.environment.se.StartMain</mainClass>
-		  				</configuration>
-		  			</plugin>
-         	</plugins>
-         </build>
-    	</profile>
-	</profiles>
+    <profiles>
+        <profile>
+            <id>run</id>
+            <activation>
+                <property>
+                    <name>run</name>
+                </property>
+            </activation>
+            <build>
+                <plugins>
+                    <plugin>
+                        <executions>
+                            <execution>
+                                <id>run</id>
+                                <phase>package</phase>
+                                <goals>
+                                    <goal>java</goal>
+                                </goals>
+                            </execution>
+                        </executions>
+                        <groupId>org.codehaus.mojo</groupId>
+                        <artifactId>exec-maven-plugin</artifactId>
+                        <configuration>
+                            <mainClass>org.jboss.webbeans.environment.se.StartMain</mainClass>
+                        </configuration>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+    </profiles>
     
 </project>




More information about the weld-commits mailing list