Select Git revision
-
Edson Tirelli authoredEdson Tirelli authored
pom.xml 2.41 KiB
<?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>droolsjbpm-integration</artifactId>
<version>6.0.0.Alpha3</version>
</parent>
<artifactId>drools-simulator</artifactId>
<name>Drools Simulator</name>
<description>TODO</description>
<dependencies>
<!-- Internal dependencies -->
<dependency>
<groupId>org.kie</groupId>
<artifactId>kie-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.jbpm</groupId>
<artifactId>jbpm-flow-builder</artifactId>
</dependency>
<dependency>
<groupId>org.jbpm</groupId>
<artifactId>jbpm-bpmn2</artifactId>
</dependency>
<dependency><!-- Overwrites (or duplicates) the parent junit dependency
because it is needed at compile time -->
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.yaml</groupId>
<artifactId>snakeyaml</artifactId>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
</dependency>
<dependency>
<!-- Overwrites the older junit dependency on hamcrest-core 1.1 -->
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-core</artifactId>
<version>1.2.1</version>
<scope>runtime</scope>
</dependency>
<dependency>
<groupId>org.hamcrest</groupId>
<artifactId>hamcrest-integration</artifactId>
<version>1.2.1</version>
</dependency>
<!-- dependency>
<groupId>org.hamsandwich</groupId>
<artifactId>hamsandwich</artifactId>
<version>1.2</version>
</dependency-->
</dependencies>
<!-- repositories>
<repository>
<id>hamsandwich-repo</id>
<name>hamsandwich repository on GitHub</name>
<url>http://wcmatthysen.github.com/hamsandwich/repository/</url>
</repository>
</repositories -->
</project>