[seam-commits] Seam SVN: r12306 - in modules/drools/trunk: core and 1 other directories.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Sat Mar 27 10:59:30 EDT 2010


Author: tsurdilovic
Date: 2010-03-27 10:59:29 -0400 (Sat, 27 Mar 2010)
New Revision: 12306

Modified:
   modules/drools/trunk/core/pom.xml
   modules/drools/trunk/docs/drools-reference.pdf
   modules/drools/trunk/pom.xml
Log:
added test dependencies to pom.

Modified: modules/drools/trunk/core/pom.xml
===================================================================
--- modules/drools/trunk/core/pom.xml	2010-03-27 01:27:39 UTC (rev 12305)
+++ modules/drools/trunk/core/pom.xml	2010-03-27 14:59:29 UTC (rev 12306)
@@ -1,68 +1,85 @@
-<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">
-   <modelVersion>4.0.0</modelVersion>
+<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">
+	<modelVersion>4.0.0</modelVersion>
 
-   <parent>
-      <groupId>org.jboss.seam.drools</groupId>
-      <artifactId>seam-drools-parent</artifactId>      
-      <version>3.0.0-SNAPSHOT</version>
-   </parent>
+	<parent>
+		<groupId>org.jboss.seam.drools</groupId>
+		<artifactId>seam-drools-parent</artifactId>
+		<version>3.0.0-SNAPSHOT</version>
+	</parent>
 
-   <groupId>org.jboss.seam.drools</groupId>
-   <artifactId>seam-drools-core</artifactId>
-   <version>3.0.0-SNAPSHOT</version>
-   <packaging>jar</packaging>   
-   <name>Seam Drools Core</name>
-  
-  <dependencies>
-			<dependency>
-				<groupId>javax.el</groupId>
-				<artifactId>el-api</artifactId>
-			</dependency>
-			<dependency>
-				<groupId>javax.validation</groupId>
-				<artifactId>validation-api</artifactId>
-			</dependency>
-			<dependency>
-				<groupId>javax.enterprise</groupId>
-				<artifactId>cdi-api</artifactId>
-			</dependency>
-			<dependency>
-				<groupId>org.slf4j</groupId>
-				<artifactId>slf4j-api</artifactId>
-			</dependency>
-			<dependency>
-				<groupId>org.drools</groupId>
-				<artifactId>drools-core</artifactId>
-			</dependency>
-			<dependency>
-				<groupId>org.drools</groupId>
-				<artifactId>drools-compiler</artifactId>
-			</dependency>
-			<dependency>
-				<groupId>org.drools</groupId>
-				<artifactId>drools-api</artifactId>
-			</dependency>
-			<dependency>
-				<groupId>org.drools</groupId>
-				<artifactId>drools-templates</artifactId>
-			</dependency>
-			<dependency>
-				<groupId>org.drools</groupId>
-				<artifactId>drools-decisiontables</artifactId>
-			</dependency>
-			<dependency>
-				<groupId>org.drools</groupId>
-				<artifactId>drools-workitems</artifactId>
-			</dependency>
-		</dependencies>
-   <build>
-      <plugins>
-         <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-javadoc-plugin</artifactId>
-            <version>2.6.1</version>
-         </plugin>
-      </plugins>
-   </build>
+	<groupId>org.jboss.seam.drools</groupId>
+	<artifactId>seam-drools-core</artifactId>
+	<version>3.0.0-SNAPSHOT</version>
+	<packaging>jar</packaging>
+	<name>Seam Drools Core</name>
 
+	<dependencies>
+		<dependency>
+			<groupId>javax.el</groupId>
+			<artifactId>el-api</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>javax.validation</groupId>
+			<artifactId>validation-api</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>javax.enterprise</groupId>
+			<artifactId>cdi-api</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.slf4j</groupId>
+			<artifactId>slf4j-api</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.drools</groupId>
+			<artifactId>drools-core</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.drools</groupId>
+			<artifactId>drools-compiler</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.drools</groupId>
+			<artifactId>drools-api</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.drools</groupId>
+			<artifactId>drools-templates</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.drools</groupId>
+			<artifactId>drools-decisiontables</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.drools</groupId>
+			<artifactId>drools-workitems</artifactId>
+		</dependency>
+		<!-- Test Dependencies -->
+		<dependency>
+			<groupId>junit</groupId>
+			<artifactId>junit</artifactId>
+			<scope>test</scope>
+		</dependency>
+		<dependency>
+			<groupId>org.jboss.arquillian</groupId>
+			<artifactId>arquillian-junit</artifactId>
+			<scope>test</scope>
+		</dependency>
+		<dependency>
+			<groupId>org.jboss.arquillian.container</groupId>
+			<artifactId>arquillian-weld-embedded</artifactId>
+			<scope>test</scope>
+		</dependency>
+	</dependencies>
+	<build>
+		<plugins>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-javadoc-plugin</artifactId>
+				<version>2.6.1</version>
+			</plugin>
+		</plugins>
+	</build>
+
 </project>

Modified: modules/drools/trunk/docs/drools-reference.pdf
===================================================================
(Binary files differ)

Modified: modules/drools/trunk/pom.xml
===================================================================
--- modules/drools/trunk/pom.xml	2010-03-27 01:27:39 UTC (rev 12305)
+++ modules/drools/trunk/pom.xml	2010-03-27 14:59:29 UTC (rev 12306)
@@ -20,6 +20,24 @@
 		<!-- <module>examples</module> -->
 	</modules>
 
+	<developers>
+		<developer>
+			<name>Tihomir Surdilovic</name>
+			<email>tsurdilo at redhat.com</email>
+			<url>http://in.relation.to/Bloggers/Tihomir</url>
+			<organization>JBoss, by Red Hat</organization>
+			<organizationUrl>http://jboss.org</organizationUrl>
+			<timezone>EST</timezone>
+			<roles>
+				<role>Project Lead</role>
+			</roles>
+		</developer>
+	</developers>
+
+	<properties>
+		<arquillian.version>1.0.0.Alpha1</arquillian.version>
+	</properties>
+
 	<build>
 		<plugins>
 			<plugin>
@@ -87,6 +105,22 @@
 				<artifactId>drools-workitems</artifactId>
 				<version>5.1.0.M1</version>
 			</dependency>
+			<!-- Test Dependencies -->
+			<dependency>
+				<groupId>junit</groupId>
+				<artifactId>junit</artifactId>
+				<version>4.8.1</version>
+			</dependency>
+			<dependency>
+				<groupId>org.jboss.arquillian</groupId>
+				<artifactId>arquillian-junit</artifactId>
+				<version>${arquillian.version}</version>
+			</dependency>
+			<dependency>
+				<groupId>org.jboss.arquillian.container</groupId>
+				<artifactId>arquillian-weld-embedded</artifactId>
+				<version>${arquillian.version}</version>
+			</dependency>
 		</dependencies>
 	</dependencyManagement>
 



More information about the seam-commits mailing list