|
|
|
<?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.jeasy</groupId>
|
|
|
|
<artifactId>easy-rules</artifactId>
|
|
|
|
<version>4.1.0</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>easy-rules-mvel</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<name>Easy Rules MVEL module</name>
|
|
|
|
<description>MVEL integration module</description>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<mvel2.version>2.4.10.Final</mvel2.version>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<scm>
|
|
|
|
<url>git@github.com:j-easy/easy-rules.git</url>
|
|
|
|
<connection>scm:git:git@github.com:j-easy/easy-rules.git</connection>
|
|
|
|
<developerConnection>scm:git:git@github.com:j-easy/easy-rules.git</developerConnection>
|
|
|
|
<tag>easy-rules-4.1.0</tag>
|
|
|
|
</scm>
|
|
|
|
|
|
|
|
<issueManagement>
|
|
|
|
<system>GitHub</system>
|
|
|
|
<url>https://github.com/j-easy/easy-rules/issues</url>
|
|
|
|
</issueManagement>
|
|
|
|
|
|
|
|
<ciManagement>
|
|
|
|
<system>Github Actions</system>
|
|
|
|
<url>https://github.com/j-easy/easy-rules/actions</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>
|
|
|
|
<!-- production dependencies -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jeasy</groupId>
|
|
|
|
<artifactId>easy-rules-support</artifactId>
|
|
|
|
<version>${project.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.mvel</groupId>
|
|
|
|
<artifactId>mvel2</artifactId>
|
|
|
|
<version>${mvel2.version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- test dependencies -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</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>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.stefanbirkner</groupId>
|
|
|
|
<artifactId>system-lambda</artifactId>
|
|
|
|
<version>${system-lambda.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>com.mycila</groupId>
|
|
|
|
<artifactId>license-maven-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<header>${project.parent.basedir}/licence-header-template.txt</header>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</project>
|