|
|
|
<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>
|
|
|
|
|
|
|
|
<groupId>io.github.benas</groupId>
|
|
|
|
<artifactId>easyrules</artifactId>
|
|
|
|
<version>1.1.0</version>
|
|
|
|
|
|
|
|
<modules>
|
|
|
|
<module>easyrules-core</module>
|
|
|
|
<module>easyrules-samples</module>
|
|
|
|
</modules>
|
|
|
|
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
|
|
|
<name>Easy Rules</name>
|
|
|
|
<description>Easy Rules is a simple yet powerful Java Rules Engine</description>
|
|
|
|
<url>https://github.com/benas/easy-rules</url>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<scm>
|
|
|
|
<developerConnection>scm:git:git@github.com:benas/easy-rules.git</developerConnection>
|
|
|
|
</scm>
|
|
|
|
|
|
|
|
<developers>
|
|
|
|
<developer>
|
|
|
|
<id>benas</id>
|
|
|
|
<email>md.benhassine@gmail.com</email>
|
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>MIT License</name>
|
|
|
|
<url>http://opensource.org/licenses/mit-license.php</url>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
|
|
<version>2.4.1</version>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
|
|
|
</project>
|