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.
easy-rules/easyrules-quartz/pom.xml

118 lines
4.0 KiB
XML

10 years ago
<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>
10 years ago
<artifactId>easyrules</artifactId>
<version>2.1.1-SNAPSHOT</version>
</parent>
10 years ago
<artifactId>easyrules-quartz</artifactId>
<packaging>jar</packaging>
10 years ago
<name>Easy Rules Quartz module</name>
<description>Module providing support for engine scheduling using Quartz</description>
10 years ago
<scm>
<url>git@github.com:benas/easy-rules.git</url>
<connection>scm:git:git@github.com:benas/easy-rules.git</connection>
<developerConnection>scm:git:git@github.com:benas/easy-rules.git</developerConnection>
<tag>HEAD</tag>
10 years ago
</scm>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/benas/easy-rules/issues</url>
</issueManagement>
10 years ago
<ciManagement>
<system>Jenkins</system>
<url>https://buildhive.cloudbees.com/job/benas/job/easy-rules/</url>
</ciManagement>
<developers>
<developer>
<id>benas</id>
<name>Mahmoud Ben Hassine</name>
<url>http://www.mahmoud-benhassine.fr</url>
<email>mahmoud@benhassine.fr</email>
<roles>
<role>Project founder</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>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>${maven-checkstyle-plugin.version}</version>
<reportSets>
<reportSet>
<reports>
<report>checkstyle</report>
</reports>
</reportSet>
</reportSets>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-pmd-plugin</artifactId>
<version>${maven-pmd-plugin.version}</version>
<configuration>
<linkXRef>true</linkXRef>
<sourceEncoding>${project.build.sourceEncoding}</sourceEncoding>
<minimumTokens>100</minimumTokens>
10 years ago
<targetJdk>1.5</targetJdk>
</configuration>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>findbugs-maven-plugin</artifactId>
<version>${findbugs-maven-plugin.version}</version>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>cobertura-maven-plugin</artifactId>
<version>${cobertura-maven-plugin.version}</version>
</plugin>
</plugins>
</reporting>
</project>