|
|
|
<?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/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
<groupId>org.sonatype.oss</groupId>
|
|
|
|
<artifactId>oss-parent</artifactId>
|
|
|
|
<version>7</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<groupId>org.easyrules</groupId>
|
|
|
|
<artifactId>easyrules</artifactId>
|
|
|
|
<version>2.2.0-SNAPSHOT</version>
|
|
|
|
|
|
|
|
<modules>
|
|
|
|
<module>easyrules-archetype</module>
|
|
|
|
<module>easyrules-core</module>
|
|
|
|
<module>easyrules-samples</module>
|
|
|
|
<module>easyrules-jmx</module>
|
|
|
|
<module>easyrules-quartz</module>
|
|
|
|
<module>easyrules-spring</module>
|
|
|
|
</modules>
|
|
|
|
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
<name>Easy Rules</name>
|
|
|
|
<description>Easy Rules is a simple, stupid Java rules engine</description>
|
|
|
|
<url>http://www.easyrules.org</url>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<java.version>1.7</java.version>
|
|
|
|
<junit.version>4.12</junit.version>
|
|
|
|
<assertj.version>2.2.0</assertj.version>
|
|
|
|
<mockito.version>1.10.19</mockito.version>
|
|
|
|
<quartz.version>2.2.2</quartz.version>
|
|
|
|
<spring.version>4.2.3.RELEASE</spring.version>
|
|
|
|
<maven-cobertura-plugin.version>2.7</maven-cobertura-plugin.version>
|
|
|
|
<maven-coveralls-plugin.version>4.1.0</maven-coveralls-plugin.version>
|
|
|
|
<maven-release-plugin.version>2.5.3</maven-release-plugin.version>
|
|
|
|
<maven-compiler-plugin.version>3.3</maven-compiler-plugin.version>
|
|
|
|
<maven-surefire-plugin.version>2.19</maven-surefire-plugin.version>
|
|
|
|
<maven-javadoc-plugin.version>2.10.3</maven-javadoc-plugin.version>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<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>
|
|
|
|
</scm>
|
|
|
|
|
|
|
|
<issueManagement>
|
|
|
|
<system>GitHub</system>
|
|
|
|
<url>https://github.com/benas/easy-rules/issues</url>
|
|
|
|
</issueManagement>
|
|
|
|
|
|
|
|
<ciManagement>
|
|
|
|
<system>Travis CI</system>
|
|
|
|
<url>https://travis-ci.org/benas/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>
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.easyrules</groupId>
|
|
|
|
<artifactId>easyrules-core</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.easyrules</groupId>
|
|
|
|
<artifactId>easyrules-jmx</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.easyrules</groupId>
|
|
|
|
<artifactId>easyrules-quartz</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.easyrules</groupId>
|
|
|
|
<artifactId>easyrules-spring</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<version>${junit.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.assertj</groupId>
|
|
|
|
<artifactId>assertj-core</artifactId>
|
|
|
|
<version>${assertj.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mockito</groupId>
|
|
|
|
<artifactId>mockito-core</artifactId>
|
|
|
|
<version>${mockito.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<pluginManagement>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
|
|
<version>${maven-release-plugin.version}</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>${maven-compiler-plugin.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<verbose>true</verbose>
|
|
|
|
<source>${java.version}</source>
|
|
|
|
<target>${java.version}</target>
|
|
|
|
<showWarnings>true</showWarnings>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>cobertura-maven-plugin</artifactId>
|
|
|
|
<version>${maven-cobertura-plugin.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<format>xml</format>
|
|
|
|
<maxmem>256m</maxmem>
|
|
|
|
<aggregate>true</aggregate>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.eluder.coveralls</groupId>
|
|
|
|
<artifactId>coveralls-maven-plugin</artifactId>
|
|
|
|
<version>${maven-coveralls-plugin.version}</version>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<version>${maven-surefire-plugin.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<includes>
|
|
|
|
<include>**/*Test*.java</include>
|
|
|
|
</includes>
|
|
|
|
<reportFormat>html</reportFormat>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
<version>${maven-javadoc-plugin.version}</version>
|
|
|
|
<configuration>
|
|
|
|
<stylesheet>maven</stylesheet>
|
|
|
|
</configuration>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>install</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>javadoc</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</pluginManagement>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|