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.
66 lines
1.9 KiB
XML
66 lines
1.9 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.sonatype.oss</groupId>
|
|
<artifactId>oss-parent</artifactId>
|
|
<version>7</version>
|
|
</parent>
|
|
|
|
<groupId>io.github.benas</groupId>
|
|
<artifactId>easyrules</artifactId>
|
|
<version>1.0.2-SNAPSHOT</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>
|
|
<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>
|
|
|
|
<developers>
|
|
<developer>
|
|
<id>benas</id>
|
|
<name>Mahmoud Ben Hassine</name>
|
|
<url>http://www.mahmoudbenhassine.com</url>
|
|
<email>md.benhassine@gmail.com</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>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
<version>2.5</version>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|