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.
80 lines
2.5 KiB
XML
80 lines
2.5 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>io.github.benas</groupId>
|
|
<artifactId>easyrules</artifactId>
|
|
<version>1.1.0</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>
|
|
|
|
<developers>
|
|
<developer>
|
|
<id>benas</id>
|
|
<email>md.benhassine@gmail.com</email>
|
|
</developer>
|
|
</developers>
|
|
|
|
<licenses>
|
|
<license>
|
|
<name>MIT License</name>
|
|
<url>http://opensource.org/licenses/mit-license.php</url>
|
|
</license>
|
|
</licenses>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>io.github.benas</groupId>
|
|
<artifactId>easyrules-core</artifactId>
|
|
<version>1.1.0</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.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>
|
|
|
|
</project>
|