Author: dan.j.allen
Date: 2009-05-11 16:10:19 -0400 (Mon, 11 May 2009)
New Revision: 10855
Modified:
modules/trunk/drools/pom.xml
Log:
cleanup
Modified: modules/trunk/drools/pom.xml
===================================================================
--- modules/trunk/drools/pom.xml 2009-05-11 20:09:53 UTC (rev 10854)
+++ modules/trunk/drools/pom.xml 2009-05-11 20:10:19 UTC (rev 10855)
@@ -1,56 +1,69 @@
-<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">
+<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>seam-parent</artifactId>
- <groupId>org.jboss.seam</groupId>
+ <groupId>org.jboss.seam</groupId>
<version>3.0.0-SNAPSHOT</version>
- </parent>
-
- <modelVersion>4.0.0</modelVersion>
+ </parent>
+
+ <modelVersion>4.0.0</modelVersion>
<groupId>org.jboss.seam</groupId>
<artifactId>seam-drools</artifactId>
<packaging>jar</packaging>
<version>3.0.0-SNAPSHOT</version>
<name>Seam Drools</name>
-
+
<dependencies>
+
<dependency>
<groupId>${webbeans.groupId}</groupId>
<artifactId>jsr299-api</artifactId>
- </dependency>
+ <scope>provided</scope>
+ </dependency>
+
<dependency>
<groupId>${webbeans.groupId}</groupId>
<artifactId>webbeans-logging</artifactId>
- </dependency>
- <!--dependency>
+ <scope>provided</scope>
+ </dependency>
+
+ <!--
+ <dependency>
<groupId>${seam.groupId}</groupId>
<artifactId>seam-bpm</artifactId>
- </dependency-->
+ </dependency>
+ -->
+
<dependency>
<groupId>${seam.groupId}</groupId>
<artifactId>seam-el</artifactId>
- </dependency>
+ </dependency>
+
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>servlet-api</artifactId>
<scope>provided</scope>
</dependency>
+
<dependency>
<groupId>org.drools</groupId>
<artifactId>drools-core</artifactId>
</dependency>
+
<dependency>
<groupId>org.drools</groupId>
<artifactId>drools-compiler</artifactId>
<scope>provided</scope>
</dependency>
- <!--dependency>
+
+ <!--
+ <dependency>
<groupId>org.jbpm</groupId>
<artifactId>jbpm-jpdl</artifactId>
- </dependency-->
-
-
+ </dependency>
+ -->
+
</dependencies>
</project>