drools-jsr94
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.drools</groupId> <artifactId>drools-jsr94</artifactId> <version>7.2.0.Final</version> </dependency>
<?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</artifactId> <version>7.2.0.Final</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> <dependency> <groupId>org.kie</groupId> <artifactId>kie-api</artifactId> </dependency> <dependency> <groupId>org.kie</groupId> <artifactId>kie-internal</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>org.jboss.spec.javax.xml.bind</groupId> <artifactId>jboss-jaxb-api_2.2_spec</artifactId> <scope>provided</scope> </dependency> </dependencies> </project>