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.
easy-rules/easyrules-samples/pom.xml

59 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">
12 years ago
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>io.github.benas</groupId>
12 years ago
<artifactId>easyrules</artifactId>
<version>1.1.0</version>
12 years ago
</parent>
<artifactId>easyrules-samples</artifactId>
<packaging>jar</packaging>
<name>Easy Rules samples module</name>
<dependencies>
<dependency>
<groupId>io.github.benas</groupId>
12 years ago
<artifactId>easyrules-core</artifactId>
<version>1.1.0</version>
12 years ago
</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.2.1</version>
<configuration>
<mainClass>io.github.easyrules.samples.helloworld.HelloWorldSampleLauncher</mainClass>
</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.2.1</version>
<configuration>
<mainClass>io.github.easyrules.samples.order.OrderSampleLauncher</mainClass>
</configuration>
</plugin>
</plugins>
</build>
</profile>
</profiles>
12 years ago
</project>