diff options
Diffstat (limited to 'modules/ri-module-parent/pom.xml')
-rw-r--r-- | modules/ri-module-parent/pom.xml | 128 |
1 files changed, 128 insertions, 0 deletions
diff --git a/modules/ri-module-parent/pom.xml b/modules/ri-module-parent/pom.xml new file mode 100644 index 0000000..d593ca8 --- /dev/null +++ b/modules/ri-module-parent/pom.xml @@ -0,0 +1,128 @@ +<?xml version="1.0" encoding="UTF-8"?> +<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> + + <artifactId>ri-module-parent</artifactId> + <groupId>io.trygvis.rules-sandbox.module</groupId> + <version>1.0-SNAPSHOT</version> + <packaging>pom</packaging> + + <properties> + <version.drools>7.48.0.Final</version.drools> + <java.version>13</java.version> + </properties> + + <dependencies> + <dependency> + <groupId>org.drools</groupId> + <artifactId>drools-model-compiler</artifactId> + </dependency> + <dependency> + <groupId>commons-io</groupId> + <artifactId>commons-io</artifactId> + </dependency> + </dependencies> + + <dependencyManagement> + <dependencies> + <dependency> + <groupId>io.trygvis.rules-sandbox</groupId> + <artifactId>ri-engine</artifactId> + <version>${project.version}</version> + <type>pom</type> + <scope>import</scope> + </dependency> + </dependencies> + </dependencyManagement> + + <build> + <finalName>${project.artifactId}</finalName> + <plugins> + <plugin> + <groupId>org.kie</groupId> + <artifactId>kie-maven-plugin</artifactId> + <extensions>true</extensions> + </plugin> + <plugin> + <groupId>eu.nets.oss.maven</groupId> + <artifactId>classpath-maven-plugin</artifactId> + <executions> + <execution> + <id>default</id> + <goals> + <goal>export-classpath</goal> + </goals> + </execution> + </executions> + </plugin> + </plugins> + <pluginManagement> + <plugins> + <!--This plugin's configuration is used to store Eclipse m2e settings only. It has no influence on the Maven build itself.--> + <plugin> + <groupId>org.eclipse.m2e</groupId> + <artifactId>lifecycle-mapping</artifactId> + <version>1.0.0</version> + <configuration> + <lifecycleMappingMetadata> + <pluginExecutions> + <pluginExecution> + <pluginExecutionFilter> + <groupId>org.kie</groupId> + <artifactId>kie-maven-plugin</artifactId> + <versionRange>[7.48.0.Final,)</versionRange> + <goals> + <goal>generatePMMLModel</goal> + <goal>generateDMNModel</goal> + <goal>build</goal> + <goal>generateANC</goal> + <goal>generateModel</goal> + <goal>validateDMN</goal> + <goal>injectreactive</goal> + </goals> + </pluginExecutionFilter> + <action> + <ignore></ignore> + </action> + </pluginExecution> + </pluginExecutions> + </lifecycleMappingMetadata> + </configuration> + </plugin> + <plugin> + <groupId>org.kie</groupId> + <artifactId>kie-maven-plugin</artifactId> + <version>${version.drools}</version> + <extensions>true</extensions> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-compiler-plugin</artifactId> + <version>3.8.1</version> + <configuration> + <encoding>UTF-8</encoding> + <release>${java.version}</release> + <source>${java.version}</source> + <target>${java.version}</target> + </configuration> + </plugin> + <plugin> + <groupId>org.apache.maven.plugins</groupId> + <artifactId>maven-resources-plugin</artifactId> + <version>3.2.0</version> + <configuration> + <encoding>UTF-8</encoding> + </configuration> + </plugin> + <plugin> + <groupId>eu.nets.oss.maven</groupId> + <artifactId>classpath-maven-plugin</artifactId> + <version>1.0</version> + </plugin> + </plugins> + </pluginManagement> + </build> + +</project> |