easyrules-samples
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.easyrules</groupId> <artifactId>easyrules-samples</artifactId> <version>2.1.0</version> </dependency>
<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.1.0</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>easyrules-2.1.0</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>