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.
195 lines
7.3 KiB
XML
195 lines
7.3 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.easyrules</groupId>
|
|
<artifactId>easyrules</artifactId>
|
|
<version>2.2.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>easyrules-samples</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>Easy Rules Samples module</name>
|
|
<description>Module containing samples and tutorial about Easy Rules</description>
|
|
|
|
<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>
|
|
|
|
<dependency>
|
|
<groupId>org.easyrules</groupId>
|
|
<artifactId>easyrules-spring</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-context-support</artifactId>
|
|
<version>${spring.version}</version>
|
|
</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.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>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.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>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>
|
|
<profile>
|
|
<id>runSpringTutorial</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.spring.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>
|