blob: 502d33e63cf97405b68fcf164d72dbc7b8899807 [file] [log] [blame]
<?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/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.drools</groupId>
<artifactId>drools-multiproject</artifactId>
<version>5.5.1-SNAPSHOT</version>
</parent>
<artifactId>drools-jsr94</artifactId>
<name>Drools :: JSR-94 API Module</name>
<description>Implements the JSR-94 API with Drools.</description>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
<configuration>
<systemProperties>
<property>
<name>jsr94.tck.configuration</name>
<value>${basedir}/target/test-classes/org/drools/jsr94/tck</value>
</property>
</systemProperties>
<includes>
<include>**/*Tests.java</include>
<include>**/*Test.java</include>
</includes>
<excludes>
<exclude>**/ClassLoaderTest.java</exclude>
<exclude>**/RuleExecutionSetProviderTest.java</exclude>
</excludes>
</configuration>
</plugin>
</plugins>
</build>
<dependencies>
<!-- Internal dependencies -->
<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-decisiontables</artifactId>
</dependency>
<!-- External dependencies -->
<dependency>
<groupId>jsr94</groupId>
<artifactId>jsr94</artifactId>
</dependency>
<dependency>
<groupId>jsr94</groupId>
<artifactId>jsr94-tck</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>jsr94</groupId>
<artifactId>jsr94-sigtest</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
</project>