|
|
|
<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>
|
|
|
|
<artifactId>easyrules</artifactId>
|
|
|
|
<version>2.0.1-SNAPSHOT</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>easyrules-samples</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<name>Easy Rules samples module</name>
|
|
|
|
|
|
|
|
<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>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.easyrules</groupId>
|
|
|
|
<artifactId>easyrules-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.easyrules</groupId>
|
|
|
|
<artifactId>easyrules-jmx</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.easyrules</groupId>
|
|
|
|
<artifactId>easyrules-quartz</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>runHelloWorldTutorial</id>
|
|
|
|
<build>
|
|
|
|
<defaultGoal>exec:java</defaultGoal>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
|
|
<version>1.3</version>
|
|
|
|
<configuration>
|
|
|
|
<mainClass>org.easyrules.samples.helloworld.HelloWorldSampleLauncher</mainClass>
|
|
|
|
<systemProperties>
|
|
|
|
<systemProperty>
|
|
|
|
<key>java.util.logging.SimpleFormatter.format</key>
|
|
|
|
<value>[%1$tc] %4$s: %5$s%n</value>
|
|
|
|
</systemProperty>
|
|
|
|
</systemProperties>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>runRulePriorityTutorial</id>
|
|
|
|
<build>
|
|
|
|
<defaultGoal>exec:java</defaultGoal>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
|
|
<version>1.3</version>
|
|
|
|
<configuration>
|
|
|
|
<mainClass>org.easyrules.samples.rulePriority.Launcher</mainClass>
|
|
|
|
<systemProperties>
|
|
|
|
<systemProperty>
|
|
|
|
<key>java.util.logging.SimpleFormatter.format</key>
|
|
|
|
<value>[%1$tc] %4$s: %5$s%n</value>
|
|
|
|
</systemProperty>
|
|
|
|
</systemProperties>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>runOnlineShopTutorial</id>
|
|
|
|
<build>
|
|
|
|
<defaultGoal>exec:java</defaultGoal>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
|
|
<version>1.3</version>
|
|
|
|
<configuration>
|
|
|
|
<mainClass>org.easyrules.samples.order.OrderSampleLauncher</mainClass>
|
|
|
|
<systemProperties>
|
|
|
|
<systemProperty>
|
|
|
|
<key>java.util.logging.SimpleFormatter.format</key>
|
|
|
|
<value>[%1$tc] %4$s: %5$s%n</value>
|
|
|
|
</systemProperty>
|
|
|
|
</systemProperties>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
<profile>
|
|
|
|
<id>runSchedulerTutorial</id>
|
|
|
|
<build>
|
|
|
|
<defaultGoal>exec:java</defaultGoal>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
|
|
<version>1.3</version>
|
|
|
|
<configuration>
|
|
|
|
<mainClass>org.easyrules.samples.scheduling.Launcher</mainClass>
|
|
|
|
<systemProperties>
|
|
|
|
<systemProperty>
|
|
|
|
<key>java.util.logging.SimpleFormatter.format</key>
|
|
|
|
<value>[%1$tc] %4$s: %5$s%n</value>
|
|
|
|
</systemProperty>
|
|
|
|
</systemProperties>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
</profile>
|
|
|
|
</profiles>
|
|
|
|
|
|
|
|
</project>
|