Skip to content

Commit

Permalink
drools-cdi-example pom cleanup: don't use different groupId + don't d…
Browse files Browse the repository at this point in the history
…uplicate stuff from parent pom + ...
  • Loading branch information
ge0ffrey committed Oct 8, 2012
1 parent accd082 commit 0daf4a2
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 50 deletions.
3 changes: 0 additions & 3 deletions drools-cdi-example/.gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,3 @@
/*.ipr
/*.iws
/*.iml

# Repository wide ignore mac DS_Store files
.DS_Store
72 changes: 25 additions & 47 deletions drools-cdi-example/pom.xml
Original file line number Diff line number Diff line change
@@ -1,26 +1,19 @@
<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.drools</groupId>
<artifactId>drools-multiproject</artifactId>
<version>5.5.0-SNAPSHOT</version>
</parent>

<groupId>org.droolsjbpm</groupId>
<artifactId>drools-cdi-example</artifactId>
<version>5.5.0-SNAPSHOT</version>
<packaging>jar</packaging>

<name>drools-cdi-example</name>
<url>http://maven.apache.org</url>

<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
<name>Drools :: CDI example</name>

<dependencies>
<dependencies>
<!-- Internal dependencies -->
<dependency>
<groupId>org.drools</groupId>
Expand All @@ -31,51 +24,43 @@
<artifactId>drools-core</artifactId>
<type>test-jar</type>
<scope>test</scope>
</dependency>
</dependency>

<dependency>
<groupId>org.jboss.weld.se</groupId>
<artifactId>weld-se-core</artifactId>
<groupId>org.jboss.weld.se</groupId>
<artifactId>weld-se-core</artifactId>
</dependency>

<dependency>
<groupId>javax.enterprise</groupId>
<artifactId>cdi-api</artifactId>
</dependency>
<groupId>javax.enterprise</groupId>
<artifactId>cdi-api</artifactId>
</dependency>

<dependency>
<groupId>com.thoughtworks.xstream</groupId>
<artifactId>xstream</artifactId>
</dependency>

<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.8.2</version>
<scope>test</scope>
</dependency>

<dependency>
<groupId>org.jboss.arquillian</groupId>
<artifactId>arquillian-bom</artifactId>
<version>1.0.2.Final</version>
<scope>import</scope>
<type>pom</type>
</dependency>
<type>pom</type>
</dependency>

<dependency>
<groupId>org.jboss.arquillian.junit</groupId>
<artifactId>arquillian-junit-container</artifactId>
<scope>test</scope>
</dependency>
<artifactId>arquillian-junit-container</artifactId>
<scope>test</scope>
</dependency>
</dependencies>



<build>
<resources>
<resource>
<directory>src/main/resources</directory>
</resource>
</resource>
<resource>
<directory>src/kbases/fol4.test1.KBase1</directory>
</resource>
Expand All @@ -84,15 +69,8 @@
</resource>
<resource>
<directory>src/kbases/fol4.test3.KBase3</directory>
</resource>
</resource>
</resources>

<testResources>
<testResource>
<directory>src/test/resources</directory>
</testResource>
</testResources>
</build>



</project>

0 comments on commit 0daf4a2

Please sign in to comment.