You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
81 lines
2.5 KiB
XML
81 lines
2.5 KiB
XML
<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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>org.easyrules</groupId>
|
|
<artifactId>easyrules</artifactId>
|
|
<version>2.3.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>easyrules-quartz</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>Easy Rules Quartz module</name>
|
|
<description>Module providing support for engine scheduling using Quartz</description>
|
|
|
|
<scm>
|
|
<url>git@github.com:EasyRules/easyrules.git</url>
|
|
<connection>scm:git:git@github.com:EasyRules/easyrules.git</connection>
|
|
<developerConnection>scm:git:git@github.com:EasyRules/easyrules.git</developerConnection>
|
|
<tag>HEAD</tag>
|
|
</scm>
|
|
|
|
<issueManagement>
|
|
<system>GitHub</system>
|
|
<url>https://github.com/EasyRules/easyrules/issues</url>
|
|
</issueManagement>
|
|
|
|
<ciManagement>
|
|
<system>Travis CI</system>
|
|
<url>https://travis-ci.org/EasyRules/easyrules</url>
|
|
</ciManagement>
|
|
|
|
<developers>
|
|
<developer>
|
|
<id>benas</id>
|
|
<name>Mahmoud Ben Hassine</name>
|
|
<url>http://benas.github.io</url>
|
|
<email>mahmoud.benhassine@icloud.com</email>
|
|
<roles>
|
|
<role>Lead developer</role>
|
|
</roles>
|
|
</developer>
|
|
</developers>
|
|
<licenses>
|
|
<license>
|
|
<name>MIT License</name>
|
|
<url>http://opensource.org/licenses/mit-license.php</url>
|
|
</license>
|
|
</licenses>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.quartz-scheduler</groupId>
|
|
<artifactId>quartz</artifactId>
|
|
<version>${quartz.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.easyrules</groupId>
|
|
<artifactId>easyrules-core</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>junit</groupId>
|
|
<artifactId>junit</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.assertj</groupId>
|
|
<artifactId>assertj-core</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.mockito</groupId>
|
|
<artifactId>mockito-core</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|