[webbeans-commits] Webbeans SVN: r619 - in ri/trunk: webbeans-ri-spi and 3 other directories.

webbeans-commits at lists.jboss.org webbeans-commits at lists.jboss.org
Sat Dec 20 11:28:32 EST 2008


Author: pete.muir at jboss.org
Date: 2008-12-20 11:28:32 -0500 (Sat, 20 Dec 2008)
New Revision: 619

Added:
   ri/trunk/webbeans-ri-spi/
   ri/trunk/webbeans-ri-spi/pom.xml
   ri/trunk/webbeans-ri-spi/src/
   ri/trunk/webbeans-ri-spi/src/main/
   ri/trunk/webbeans-ri-spi/src/main/java/
   ri/trunk/webbeans-ri-spi/src/main/resources/
   ri/trunk/webbeans-ri-spi/src/test/
   ri/trunk/webbeans-ri-spi/src/test/java/
   ri/trunk/webbeans-ri-spi/src/test/resources/
Log:
add spi project

Added: ri/trunk/webbeans-ri-spi/pom.xml
===================================================================
--- ri/trunk/webbeans-ri-spi/pom.xml	                        (rev 0)
+++ ri/trunk/webbeans-ri-spi/pom.xml	2008-12-20 16:28:32 UTC (rev 619)
@@ -0,0 +1,51 @@
+<?xml version="1.0"?>
+<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">
+   <parent>
+      <artifactId>parent</artifactId>
+      <groupId>org.jboss.webbeans</groupId>
+      <version>1.0.0-SNAPSHOT</version>
+   </parent>
+   <modelVersion>4.0.0</modelVersion>
+   <groupId>org.jboss.webbeans</groupId>
+   <artifactId>webbeans-ri-spi</artifactId>
+   <name>Web Beans RI Service Provider Interfaces</name>
+   <dependencies>
+
+      <dependency>
+         <groupId>org.jboss.webbeans</groupId>
+         <artifactId>webbeans-api</artifactId>
+      </dependency>
+
+      <dependency>
+         <groupId>org.testng</groupId>
+         <artifactId>testng</artifactId>
+         <scope>test</scope>
+         <classifier>jdk15</classifier>
+      </dependency>
+      
+      <dependency>
+         <groupId>com.google.collections</groupId>
+         <artifactId>google-collections</artifactId>
+      </dependency>
+
+   </dependencies>
+
+   <build>
+   	<defaultGoal>install</defaultGoal>
+   	<plugins>
+         <plugin>
+            <groupId>org.apache.maven.plugins</groupId>
+            <artifactId>maven-surefire-plugin</artifactId>
+            <version>2.4.2</version>
+            <configuration>
+               <suiteXmlFiles>
+                  <suiteXmlFile>testng.xml</suiteXmlFile>
+               </suiteXmlFiles>
+            </configuration>
+         </plugin>
+      </plugins>
+   </build>
+
+</project>




More information about the weld-commits mailing list