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.
252 lines
9.7 KiB
XML
252 lines
9.7 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.jeasy</groupId>
|
|
<artifactId>easy-rules</artifactId>
|
|
<version>4.0.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>easy-rules-tutorials</artifactId>
|
|
<packaging>war</packaging>
|
|
|
|
<name>Easy Rules tutorials</name>
|
|
|
|
<properties>
|
|
<maven-exec-plugin.version>1.6.0</maven-exec-plugin.version>
|
|
<servlet.version>3.1.0</servlet.version>
|
|
<maven-war-plugin.version>2.6</maven-war-plugin.version>
|
|
<tomcat7-maven-plugin.version>2.2</tomcat7-maven-plugin.version>
|
|
<maven-dependency-plugin.version>2.10</maven-dependency-plugin.version>
|
|
<slf4j.version>1.7.25</slf4j.version>
|
|
</properties>
|
|
|
|
<scm>
|
|
<url>git@github.com:j-easy/easy-rules.git</url>
|
|
<connection>scm:git:git@github.com:j-easy/easy-rules.git</connection>
|
|
<developerConnection>scm:git:git@github.com:j-easy/easy-rules.git</developerConnection>
|
|
<tag>HEAD</tag>
|
|
</scm>
|
|
|
|
<issueManagement>
|
|
<system>GitHub</system>
|
|
<url>https://github.com/j-easy/easy-rules/issues</url>
|
|
</issueManagement>
|
|
|
|
<ciManagement>
|
|
<system>Travis CI</system>
|
|
<url>https://travis-ci.org/j-easy/easy-rules</url>
|
|
</ciManagement>
|
|
|
|
<developers>
|
|
<developer>
|
|
<id>benas</id>
|
|
<name>Mahmoud Ben Hassine</name>
|
|
<url>http://benas.github.io</url>
|
|
<email>mahmoud.benhassine@icloud.com</email>
|
|
<roles>
|
|
<role>Lead developer</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.jeasy</groupId>
|
|
<artifactId>easy-rules-core</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jeasy</groupId>
|
|
<artifactId>easy-rules-mvel</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jeasy</groupId>
|
|
<artifactId>easy-rules-support</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.slf4j</groupId>
|
|
<artifactId>slf4j-simple</artifactId>
|
|
<version>${slf4j.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>javax.servlet</groupId>
|
|
<artifactId>javax.servlet-api</artifactId>
|
|
<version>${servlet.version}</version>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>${maven-compiler-plugin.version}</version>
|
|
<configuration>
|
|
<verbose>true</verbose>
|
|
<source>${java.version}</source>
|
|
<target>${java.version}</target>
|
|
<showWarnings>true</showWarnings>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-war-plugin</artifactId>
|
|
<version>${maven-war-plugin.version}</version>
|
|
<configuration>
|
|
<failOnMissingWebXml>false</failOnMissingWebXml>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.tomcat.maven</groupId>
|
|
<artifactId>tomcat7-maven-plugin</artifactId>
|
|
<version>${tomcat7-maven-plugin.version}</version>
|
|
<configuration>
|
|
<port>8080</port>
|
|
<path>/</path>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
<version>${maven-dependency-plugin.version}</version>
|
|
<executions>
|
|
<execution>
|
|
<id>copy-dependencies</id>
|
|
<phase>package</phase>
|
|
<goals>
|
|
<goal>copy-dependencies</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>com.mycila</groupId>
|
|
<artifactId>license-maven-plugin</artifactId>
|
|
<configuration>
|
|
<header>${project.parent.basedir}/licence-header-template.txt</header>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>runHelloWorldTutorial</id>
|
|
<build>
|
|
<defaultGoal>exec:java</defaultGoal>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
<version>${maven-exec-plugin.version}</version>
|
|
<configuration>
|
|
<mainClass>org.jeasy.rules.tutorials.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>runWeatherTutorial</id>
|
|
<build>
|
|
<defaultGoal>exec:java</defaultGoal>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
<version>${maven-exec-plugin.version}</version>
|
|
<configuration>
|
|
<mainClass>org.jeasy.rules.tutorials.weather.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>runAircoTutorial</id>
|
|
<build>
|
|
<defaultGoal>exec:java</defaultGoal>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
<version>${maven-exec-plugin.version}</version>
|
|
<configuration>
|
|
<mainClass>org.jeasy.rules.tutorials.airco.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>runShopTutorial</id>
|
|
<build>
|
|
<defaultGoal>exec:java</defaultGoal>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
<version>${maven-exec-plugin.version}</version>
|
|
<configuration>
|
|
<mainClass>org.jeasy.rules.tutorials.shop.Launcher</mainClass>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
<profile>
|
|
<id>runFizzBuzzTutorial</id>
|
|
<build>
|
|
<defaultGoal>exec:java</defaultGoal>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
<version>${maven-exec-plugin.version}</version>
|
|
<configuration>
|
|
<mainClass>org.jeasy.rules.tutorials.fizzbuzz.FizzBuzzWithEasyRules</mainClass>
|
|
<systemProperties>
|
|
<property>
|
|
<key>org.slf4j.simpleLogger.defaultLogLevel</key>
|
|
<value>off</value>
|
|
</property>
|
|
</systemProperties>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
</profiles>
|
|
|
|
</project>
|