|
|
@@ -0,0 +1,911 @@
|
|
|
+<?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>
|
|
|
+ <parent>
|
|
|
+ <groupId>org.sonatype.oss</groupId>
|
|
|
+ <artifactId>oss-parent</artifactId>
|
|
|
+ <version>7</version>
|
|
|
+ <relativePath/>
|
|
|
+ </parent>
|
|
|
+ <groupId>org.activiti</groupId>
|
|
|
+ <artifactId>activiti-root</artifactId>
|
|
|
+ <version>6.1.0</version>
|
|
|
+ <packaging>pom</packaging>
|
|
|
+ <name>Activiti</name>
|
|
|
+ <description>BPM and workflow engine</description>
|
|
|
+ <properties>
|
|
|
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
+ <java.version>1.8</java.version>
|
|
|
+ <!-- Dependency versions -->
|
|
|
+ <batik.version>1.14</batik.version>
|
|
|
+ <cxf.version>3.5.0</cxf.version>
|
|
|
+ <drools.version>7.63.0.Final</drools.version>
|
|
|
+ <hibernate.version>5.5.9.Final</hibernate.version>
|
|
|
+ <openjpa.version>3.2.0</openjpa.version>
|
|
|
+ <jackson.version>2.13.1</jackson.version>
|
|
|
+ <jetty.version>11.0.7</jetty.version>
|
|
|
+ <log4j2.version>2.17.1</log4j2.version>
|
|
|
+ <logback.version>1.2.10</logback.version>
|
|
|
+ <joda-time.version>2.10.13</joda-time.version>
|
|
|
+ <mysql.version>8.0.27</mysql.version>
|
|
|
+ <mule.version>3.9.0</mule.version>
|
|
|
+ <spring.version>5.3.7</spring.version>
|
|
|
+ <spring-boot.version>2.4.6</spring-boot.version>
|
|
|
+ <groovy.version>3.0.9</groovy.version>
|
|
|
+ <!-- Plugin versions -->
|
|
|
+ <maven-antrun-plugin.version>3.3.0</maven-antrun-plugin.version>
|
|
|
+ <maven-assembly-plugin.version>3.3.0</maven-assembly-plugin.version>
|
|
|
+ <maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
|
|
|
+ <maven-jar-plugin.version>3.2.0</maven-jar-plugin.version>
|
|
|
+ <maven-javadoc-plugin.version>3.3.1</maven-javadoc-plugin.version>
|
|
|
+ <maven-source-plugin.version>3.2.1</maven-source-plugin.version>
|
|
|
+ <maven-surefire-plugin.version>2.22.2</maven-surefire-plugin.version>
|
|
|
+ <maven-war-plugin.version>2.6</maven-war-plugin.version>
|
|
|
+ <!-- JVM params for test execution -->
|
|
|
+ <argLine>-Duser.language=en</argLine>
|
|
|
+ </properties>
|
|
|
+ <dependencyManagement>
|
|
|
+ <dependencies>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.fasterxml.jackson</groupId>
|
|
|
+ <artifactId>jackson-bom</artifactId>
|
|
|
+ <version>${jackson.version}</version>
|
|
|
+ <type>pom</type>
|
|
|
+ <scope>import</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.logging.log4j</groupId>
|
|
|
+ <artifactId>log4j-bom</artifactId>
|
|
|
+ <version>${log4j2.version}</version>
|
|
|
+ <type>pom</type>
|
|
|
+ <scope>import</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>ch.qos.logback</groupId>
|
|
|
+ <artifactId>logback-access</artifactId>
|
|
|
+ <version>${logback.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>ch.qos.logback</groupId>
|
|
|
+ <artifactId>logback-classic</artifactId>
|
|
|
+ <version>${logback.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>ch.qos.logback</groupId>
|
|
|
+ <artifactId>logback-core</artifactId>
|
|
|
+ <version>${logback.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework</groupId>
|
|
|
+ <artifactId>spring-core</artifactId>
|
|
|
+ <version>${spring.version}</version>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>commons-logging</groupId>
|
|
|
+ <artifactId>commons-logging</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.eclipse.jetty</groupId>
|
|
|
+ <artifactId>jetty-server</artifactId>
|
|
|
+ <version>${jetty.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.eclipse.jetty</groupId>
|
|
|
+ <artifactId>jetty-util</artifactId>
|
|
|
+ <version>${jetty.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.eclipse.jetty</groupId>
|
|
|
+ <artifactId>jetty-io</artifactId>
|
|
|
+ <version>${jetty.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.eclipse.jetty</groupId>
|
|
|
+ <artifactId>jetty-security</artifactId>
|
|
|
+ <version>${jetty.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.eclipse.jetty</groupId>
|
|
|
+ <artifactId>jetty-continuation</artifactId>
|
|
|
+ <version>${jetty.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.eclipse.jetty</groupId>
|
|
|
+ <artifactId>jetty-http</artifactId>
|
|
|
+ <version>${jetty.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.eclipse.jetty</groupId>
|
|
|
+ <artifactId>jetty-servlet</artifactId>
|
|
|
+ <version>${jetty.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.eclipse.jetty</groupId>
|
|
|
+ <artifactId>jetty-webapp</artifactId>
|
|
|
+ <version>${jetty.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.eclipse.jetty</groupId>
|
|
|
+ <artifactId>jetty-xml</artifactId>
|
|
|
+ <version>${jetty.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.commons</groupId>
|
|
|
+ <artifactId>commons-lang3</artifactId>
|
|
|
+ <version>3.3.2</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>commons-io</groupId>
|
|
|
+ <artifactId>commons-io</artifactId>
|
|
|
+ <version>2.4</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>commons-fileupload</groupId>
|
|
|
+ <artifactId>commons-fileupload</artifactId>
|
|
|
+ <version>1.3.3</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.oracle.jdbc</groupId>
|
|
|
+ <artifactId>ojdbc7</artifactId>
|
|
|
+ <version>12.1.0.1</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.sun.xml.bind</groupId>
|
|
|
+ <artifactId>jaxb-impl</artifactId>
|
|
|
+ <version>2.2.11</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.sun.xml.bind</groupId>
|
|
|
+ <artifactId>jaxb-xjc</artifactId>
|
|
|
+ <version>2.2.11</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>javax.persistence</groupId>
|
|
|
+ <artifactId>javax.persistence-api</artifactId>
|
|
|
+ <version>2.2</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>javax.enterprise.concurrent</groupId>
|
|
|
+ <artifactId>javax.enterprise.concurrent-api</artifactId>
|
|
|
+ <version>1.0</version>
|
|
|
+ <scope>provided</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>javax.xml.bind</groupId>
|
|
|
+ <artifactId>jaxb-api</artifactId>
|
|
|
+ <version>2.2.11</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>de.odysseus.juel</groupId>
|
|
|
+ <artifactId>juel-api</artifactId>
|
|
|
+ <version>2.2.7</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>de.odysseus.juel</groupId>
|
|
|
+ <artifactId>juel-impl</artifactId>
|
|
|
+ <version>2.2.7</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>de.odysseus.juel</groupId>
|
|
|
+ <artifactId>juel-spi</artifactId>
|
|
|
+ <version>2.2.7</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>mysql</groupId>
|
|
|
+ <artifactId>mysql-connector-java</artifactId>
|
|
|
+ <version>${mysql.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.microsoft.sqlserver</groupId>
|
|
|
+ <artifactId>sqljdbc4</artifactId>
|
|
|
+ <version>4.0</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.ibm.db2.jcc</groupId>
|
|
|
+ <artifactId>db2jcc4</artifactId>
|
|
|
+ <version>10.1</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.mchange</groupId>
|
|
|
+ <artifactId>c3p0</artifactId>
|
|
|
+ <version>0.9.5.2</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.activiti</groupId>
|
|
|
+ <artifactId>activiti-engine</artifactId>
|
|
|
+ <version>${project.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.activiti</groupId>
|
|
|
+ <artifactId>activiti-secure-tasks</artifactId>
|
|
|
+ <version>${project.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.activiti</groupId>
|
|
|
+ <artifactId>activiti-spring</artifactId>
|
|
|
+ <version>${project.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.activiti</groupId>
|
|
|
+ <artifactId>activiti-bpmn-model</artifactId>
|
|
|
+ <version>${project.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.activiti</groupId>
|
|
|
+ <artifactId>activiti-bpmn-converter</artifactId>
|
|
|
+ <version>${project.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.activiti</groupId>
|
|
|
+ <artifactId>activiti-json-converter</artifactId>
|
|
|
+ <version>${project.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.activiti</groupId>
|
|
|
+ <artifactId>activiti-explorer</artifactId>
|
|
|
+ <version>${project.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.activiti</groupId>
|
|
|
+ <artifactId>activiti-common-rest</artifactId>
|
|
|
+ <version>${project.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.activiti</groupId>
|
|
|
+ <artifactId>activiti-rest</artifactId>
|
|
|
+ <version>${project.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.activiti</groupId>
|
|
|
+ <artifactId>activiti-crystalball</artifactId>
|
|
|
+ <version>${project.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.activiti</groupId>
|
|
|
+ <artifactId>activiti-bpmn-layout</artifactId>
|
|
|
+ <version>${project.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.activiti</groupId>
|
|
|
+ <artifactId>activiti-process-validation</artifactId>
|
|
|
+ <version>${project.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.activiti</groupId>
|
|
|
+ <artifactId>activiti-image-generator</artifactId>
|
|
|
+ <version>${project.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.activiti</groupId>
|
|
|
+ <artifactId>activiti-jmx</artifactId>
|
|
|
+ <version>${project.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <!-- EMAIL -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.commons</groupId>
|
|
|
+ <artifactId>commons-email</artifactId>
|
|
|
+ <version>1.5</version>
|
|
|
+ </dependency>
|
|
|
+ <!-- Web service -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.cxf</groupId>
|
|
|
+ <artifactId>cxf-rt-frontend-jaxws</artifactId>
|
|
|
+ <version>${cxf.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.cxf</groupId>
|
|
|
+ <artifactId>cxf-rt-transports-http</artifactId>
|
|
|
+ <version>${cxf.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.cxf</groupId>
|
|
|
+ <artifactId>cxf-rt-transports-http-jetty</artifactId>
|
|
|
+ <version>${cxf.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.cxf</groupId>
|
|
|
+ <artifactId>cxf-rt-bindings-soap</artifactId>
|
|
|
+ <version>${cxf.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.geronimo.specs</groupId>
|
|
|
+ <artifactId>geronimo-jta_1.1_spec</artifactId>
|
|
|
+ <version>1.1.1</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.opensaml</groupId>
|
|
|
+ <artifactId>opensaml</artifactId>
|
|
|
+ <version>1.1</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.hibernate</groupId>
|
|
|
+ <artifactId>hibernate-core</artifactId>
|
|
|
+ <version>${hibernate.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.hibernate</groupId>
|
|
|
+ <artifactId>hibernate-entitymanager</artifactId>
|
|
|
+ <version>${hibernate.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.drools</groupId>
|
|
|
+ <artifactId>drools-core</artifactId>
|
|
|
+ <version>${drools.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.drools</groupId>
|
|
|
+ <artifactId>drools-compiler</artifactId>
|
|
|
+ <version>${drools.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.drools</groupId>
|
|
|
+ <artifactId>drools-mvel</artifactId>
|
|
|
+ <version>${drools.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.drools</groupId>
|
|
|
+ <artifactId>knowledge-api</artifactId>
|
|
|
+ <version>${drools.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <!-- https://mvnrepository.com/artifact/org.codehaus.groovy/groovy-all -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.codehaus.groovy</groupId>
|
|
|
+ <artifactId>groovy</artifactId>
|
|
|
+ <version>${groovy.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.codehaus.groovy</groupId>
|
|
|
+ <artifactId>groovy-jsr223</artifactId>
|
|
|
+ <version>${groovy.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.thoughtworks.xstream</groupId>
|
|
|
+ <artifactId>xstream</artifactId>
|
|
|
+ <version>1.4.10</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.json</groupId>
|
|
|
+ <artifactId>json</artifactId>
|
|
|
+ <version>20070829</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.mule</groupId>
|
|
|
+ <artifactId>mule-core</artifactId>
|
|
|
+ <version>${mule.version}</version>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>org.apache.logging.log4j</groupId>
|
|
|
+ <artifactId>log4j-jcl</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.mule</groupId>
|
|
|
+ <artifactId>mule-core</artifactId>
|
|
|
+ <version>${mule.version}</version>
|
|
|
+ <classifier>tests</classifier>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>org.apache.logging.log4j</groupId>
|
|
|
+ <artifactId>log4j-jcl</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.mule.tests</groupId>
|
|
|
+ <artifactId>mule-tests-functional</artifactId>
|
|
|
+ <version>${mule.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.mule.transports</groupId>
|
|
|
+ <artifactId>mule-transport-http</artifactId>
|
|
|
+ <version>${mule.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.mule.transports</groupId>
|
|
|
+ <artifactId>mule-transport-vm</artifactId>
|
|
|
+ <version>${mule.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.mule.modules</groupId>
|
|
|
+ <artifactId>mule-module-scripting</artifactId>
|
|
|
+ <version>${mule.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.mule.modules</groupId>
|
|
|
+ <artifactId>mule-module-spring-security</artifactId>
|
|
|
+ <version>${mule.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.python</groupId>
|
|
|
+ <artifactId>jython-standalone</artifactId>
|
|
|
+ <version>2.7.1</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.mybatis</groupId>
|
|
|
+ <artifactId>mybatis</artifactId>
|
|
|
+ <version>3.5.8</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.felix</groupId>
|
|
|
+ <artifactId>org.apache.felix.fileinstall</artifactId>
|
|
|
+ <version>3.5.4</version>
|
|
|
+ <optional>true</optional>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.subethamail</groupId>
|
|
|
+ <artifactId>subethasmtp-wiser</artifactId>
|
|
|
+ <version>1.2</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>commons-logging</artifactId>
|
|
|
+ <groupId>commons-logging</groupId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>wsdl4j</groupId>
|
|
|
+ <artifactId>wsdl4j</artifactId>
|
|
|
+ <version>1.6.2</version>
|
|
|
+ </dependency>
|
|
|
+ <!-- Activiti Modeler -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.xmlgraphics</groupId>
|
|
|
+ <artifactId>batik-parser</artifactId>
|
|
|
+ <version>${batik.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.xmlgraphics</groupId>
|
|
|
+ <artifactId>batik-transcoder</artifactId>
|
|
|
+ <version>${batik.version}</version>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <artifactId>commons-logging</artifactId>
|
|
|
+ <groupId>commons-logging</groupId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.xmlgraphics</groupId>
|
|
|
+ <artifactId>batik-bridge</artifactId>
|
|
|
+ <version>${batik.version}</version>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>commons-logging</groupId>
|
|
|
+ <artifactId>commons-logging</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>org.apache.xmlgraphics</groupId>
|
|
|
+ <artifactId>batik-script</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.xmlgraphics</groupId>
|
|
|
+ <artifactId>batik-codec</artifactId>
|
|
|
+ <version>${batik.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.xmlgraphics</groupId>
|
|
|
+ <artifactId>batik-css</artifactId>
|
|
|
+ <version>${batik.version}</version>
|
|
|
+ <exclusions>
|
|
|
+ <exclusion>
|
|
|
+ <groupId>commons-logging</groupId>
|
|
|
+ <artifactId>commons-logging</artifactId>
|
|
|
+ </exclusion>
|
|
|
+ </exclusions>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.xmlgraphics</groupId>
|
|
|
+ <artifactId>batik-svg-dom</artifactId>
|
|
|
+ <version>${batik.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.apache.xmlgraphics</groupId>
|
|
|
+ <artifactId>batik-svggen</artifactId>
|
|
|
+ <version>${batik.version}</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.imgscalr</groupId>
|
|
|
+ <artifactId>imgscalr-lib</artifactId>
|
|
|
+ <version>4.2</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>math.geom2d</groupId>
|
|
|
+ <artifactId>javaGeom</artifactId>
|
|
|
+ <version>0.11.1</version>
|
|
|
+ </dependency>
|
|
|
+ <!-- Mule integration -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.safehaus.jug</groupId>
|
|
|
+ <artifactId>jug</artifactId>
|
|
|
+ <classifier>lgpl</classifier>
|
|
|
+ <version>2.0.0</version>
|
|
|
+ </dependency>
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.fasterxml.uuid</groupId>
|
|
|
+ <artifactId>java-uuid-generator</artifactId>
|
|
|
+ <version>3.1.4</version>
|
|
|
+ </dependency>
|
|
|
+ <!-- https://mvnrepository.com/artifact/joda-time/joda-time -->
|
|
|
+ <dependency>
|
|
|
+ <groupId>joda-time</groupId>
|
|
|
+ <artifactId>joda-time</artifactId>
|
|
|
+ <version>${joda-time.version}</version>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>com.h2database</groupId>
|
|
|
+ <artifactId>h2</artifactId>
|
|
|
+ <version>2.0.204</version>
|
|
|
+ <scope>test</scope>
|
|
|
+ </dependency>
|
|
|
+
|
|
|
+ <dependency>
|
|
|
+ <groupId>org.springframework.boot</groupId>
|
|
|
+ <artifactId>spring-boot-dependencies</artifactId>
|
|
|
+ <version>${spring-boot.version}</version>
|
|
|
+ <type>pom</type>
|
|
|
+ <scope>import</scope>
|
|
|
+ </dependency>
|
|
|
+ </dependencies>
|
|
|
+ </dependencyManagement>
|
|
|
+ <modules>
|
|
|
+ <module>modules/activiti-dependency-check</module>
|
|
|
+ <module>modules/activiti-parent</module>
|
|
|
+ <module>modules/activiti-bpmn-model</module>
|
|
|
+ <module>modules/activiti-process-validation</module>
|
|
|
+ <module>modules/activiti-bpmn-layout</module>
|
|
|
+ <module>modules/activiti-image-generator</module>
|
|
|
+ <module>modules/activiti-bpmn-converter</module>
|
|
|
+ <module>modules/activiti-engine</module>
|
|
|
+ </modules>
|
|
|
+ <build>
|
|
|
+ <plugins>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-compiler-plugin</artifactId>
|
|
|
+ <version>${maven-compiler-plugin.version}</version>
|
|
|
+ <configuration>
|
|
|
+ <source>${java.version}</source>
|
|
|
+ <target>${java.version}</target>
|
|
|
+ <showDeprecation>true</showDeprecation>
|
|
|
+ <showWarnings>true</showWarnings>
|
|
|
+ <optimize>true</optimize>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-surefire-plugin</artifactId>
|
|
|
+ <configuration>
|
|
|
+ <failIfNoTests>false</failIfNoTests>
|
|
|
+ <trimStackTrace>false</trimStackTrace>
|
|
|
+ <redirectTestOutputToFile>true</redirectTestOutputToFile>
|
|
|
+ <excludes>
|
|
|
+ <exclude>**/*TestCase.java</exclude>
|
|
|
+ </excludes>
|
|
|
+ <runOrder>alphabetical</runOrder>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+ </plugins>
|
|
|
+ <pluginManagement>
|
|
|
+ <plugins>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-antrun-plugin</artifactId>
|
|
|
+ <version>${maven-antrun-plugin.version}</version>
|
|
|
+ </plugin>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-assembly-plugin</artifactId>
|
|
|
+ <version>${maven-assembly-plugin.version}</version>
|
|
|
+ </plugin>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-compiler-plugin</artifactId>
|
|
|
+ <version>${maven-compiler-plugin.version}</version>
|
|
|
+ <configuration>
|
|
|
+ <source>${java.version}</source>
|
|
|
+ <target>${java.version}</target>
|
|
|
+ <showDeprecation>true</showDeprecation>
|
|
|
+ <showWarnings>true</showWarnings>
|
|
|
+ <optimize>true</optimize>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-jar-plugin</artifactId>
|
|
|
+ <version>${maven-jar-plugin.version}</version>
|
|
|
+ </plugin>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-javadoc-plugin</artifactId>
|
|
|
+ <version>${maven-javadoc-plugin.version}</version>
|
|
|
+ <configuration>
|
|
|
+ <quiet>true</quiet>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-release-plugin</artifactId>
|
|
|
+ <version>2.4.2</version>
|
|
|
+ <configuration>
|
|
|
+ <mavenExecutorId>forked-path</mavenExecutorId>
|
|
|
+ <useReleaseProfile>false</useReleaseProfile>
|
|
|
+ <arguments>${arguments} -Psonatype-oss-release</arguments>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-source-plugin</artifactId>
|
|
|
+ <version>${maven-source-plugin.version}</version>
|
|
|
+ </plugin>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-surefire-plugin</artifactId>
|
|
|
+ <version>${maven-surefire-plugin.version}</version>
|
|
|
+ </plugin>
|
|
|
+ </plugins>
|
|
|
+ </pluginManagement>
|
|
|
+ </build>
|
|
|
+ <profiles>
|
|
|
+ <profile>
|
|
|
+ <id>nofail</id>
|
|
|
+ <properties>
|
|
|
+ <maven.test.failure.ignore>true</maven.test.failure.ignore>
|
|
|
+ </properties>
|
|
|
+ </profile>
|
|
|
+ <profile>
|
|
|
+ <id>deploy</id>
|
|
|
+ <modules>
|
|
|
+ <module>modules/activiti-bpmn-model</module>
|
|
|
+ <module>modules/activiti-process-validation</module>
|
|
|
+ <module>modules/activiti-image-generator</module>
|
|
|
+ <module>modules/activiti-bpmn-converter</module>
|
|
|
+ <module>modules/activiti-engine</module>
|
|
|
+ <module>modules/activiti-secure-tasks</module>
|
|
|
+ <module>modules/activiti-secure-javascript</module>
|
|
|
+ <module>modules/activiti-secure-service-tasks</module>
|
|
|
+ <module>modules/activiti-bpmn-layout</module>
|
|
|
+ <module>modules/activiti-json-converter</module>
|
|
|
+ <module>modules/activiti-common-rest</module>
|
|
|
+ <module>modules/activiti-rest</module>
|
|
|
+ <module>modules/activiti-spring</module>
|
|
|
+ <module>modules/activiti-spring-boot</module>
|
|
|
+ <module>modules/activiti-ui</module>
|
|
|
+ <module>modules/activiti-cdi</module>
|
|
|
+ <module>modules/activiti-jmx</module>
|
|
|
+ <module>modules/activiti-jms-spring-executor</module>
|
|
|
+<!-- <module>tooling/archetypes/activiti-archetype-unittest</module> -->
|
|
|
+ </modules>
|
|
|
+ <build>
|
|
|
+ <plugins>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-source-plugin</artifactId>
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <goals>
|
|
|
+ <goal>jar</goal>
|
|
|
+ </goals>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
+ </plugin>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-javadoc-plugin</artifactId>
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <id>attach-javadocs</id>
|
|
|
+ <goals>
|
|
|
+ <goal>jar</goal>
|
|
|
+ </goals>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
+ </plugin>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-gpg-plugin</artifactId>
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <id>sign-artifacts</id>
|
|
|
+ <phase>verify</phase>
|
|
|
+ <goals>
|
|
|
+ <goal>sign</goal>
|
|
|
+ </goals>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
+ </plugin>
|
|
|
+ </plugins>
|
|
|
+ </build>
|
|
|
+ </profile>
|
|
|
+ <profile>
|
|
|
+ <id>check</id>
|
|
|
+ <modules>
|
|
|
+ <module>modules/activiti-bpmn-model</module>
|
|
|
+ <module>modules/activiti-process-validation</module>
|
|
|
+ <module>modules/activiti-image-generator</module>
|
|
|
+ <module>modules/activiti-bpmn-converter</module>
|
|
|
+ <module>modules/activiti-bpmn-layout</module>
|
|
|
+ <module>modules/activiti-json-converter</module>
|
|
|
+ <module>modules/activiti-spring</module>
|
|
|
+ <module>modules/activiti-spring-boot</module>
|
|
|
+ <module>modules/activiti-common-rest</module>
|
|
|
+ <module>modules/activiti-rest</module>
|
|
|
+ <module>modules/activiti-secure-tasks</module>
|
|
|
+ <module>modules/activiti-secure-javascript</module>
|
|
|
+ <module>modules/activiti-secure-service-tasks</module>
|
|
|
+ <module>modules/activiti-jms-spring-executor</module>
|
|
|
+ </modules>
|
|
|
+ </profile>
|
|
|
+ <profile>
|
|
|
+ <!-- A profile dedicated to JDK 6. SpringBoot module is disabled as it
|
|
|
+ needs JDK7+. -->
|
|
|
+ <id>checkJdk6</id>
|
|
|
+ <modules>
|
|
|
+ <module>modules/activiti-bpmn-model</module>
|
|
|
+ <module>modules/activiti-process-validation</module>
|
|
|
+ <module>modules/activiti-image-generator</module>
|
|
|
+ <module>modules/activiti-bpmn-converter</module>
|
|
|
+ <module>modules/activiti-bpmn-layout</module>
|
|
|
+ <module>modules/activiti-json-converter</module>
|
|
|
+ <module>modules/activiti-spring</module>
|
|
|
+ <module>modules/activiti-common-rest</module>
|
|
|
+ <module>modules/activiti-rest</module>
|
|
|
+ <module>modules/activiti-secure-tasks</module>
|
|
|
+ <module>modules/activiti-secure-javascript</module>
|
|
|
+ <module>modules/activiti-secure-service-tasks</module>
|
|
|
+ </modules>
|
|
|
+ </profile>
|
|
|
+ <profile>
|
|
|
+ <id>checkspring</id> <!-- [Joram] Is this still used?? -->
|
|
|
+ <modules>
|
|
|
+ <module>modules/activiti-spring</module>
|
|
|
+ </modules>
|
|
|
+ </profile>
|
|
|
+ <profile>
|
|
|
+ <id>checkcdi</id>
|
|
|
+ <modules>
|
|
|
+ <module>modules/activiti-cdi</module>
|
|
|
+ </modules>
|
|
|
+ </profile>
|
|
|
+ <profile>
|
|
|
+ <id>checkosgi</id>
|
|
|
+ <modules>
|
|
|
+ <module>modules/activiti-osgi</module>
|
|
|
+ </modules>
|
|
|
+ </profile>
|
|
|
+ <profile>
|
|
|
+ <!-- this profile prevents that tests are executed while running the qa/build.xml
|
|
|
+ test.demo.setup target -->
|
|
|
+ <id>nodocs</id>
|
|
|
+ <activation>
|
|
|
+ <property>
|
|
|
+ <name>nodocs</name>
|
|
|
+ </property>
|
|
|
+ </activation>
|
|
|
+ <properties>
|
|
|
+ <skipTests>true</skipTests>
|
|
|
+ </properties>
|
|
|
+ </profile>
|
|
|
+ <profile>
|
|
|
+ <id>distro</id>
|
|
|
+ <modules>
|
|
|
+ <module>modules/activiti-bpmn-model</module>
|
|
|
+ <module>modules/activiti-process-validation</module>
|
|
|
+ <module>modules/activiti-image-generator</module>
|
|
|
+ <module>modules/activiti-bpmn-converter</module>
|
|
|
+ <module>modules/activiti-bpmn-layout</module>
|
|
|
+ <module>modules/activiti-json-converter</module>
|
|
|
+ <module>modules/activiti-secure-tasks</module>
|
|
|
+ <module>modules/activiti-secure-javascript</module>
|
|
|
+ <module>modules/activiti-secure-service-tasks</module>
|
|
|
+ <module>modules/activiti-spring</module>
|
|
|
+ <module>modules/activiti-spring-boot</module>
|
|
|
+ <module>modules/activiti-common-rest</module>
|
|
|
+ <module>modules/activiti-rest</module>
|
|
|
+ <module>modules/activiti-ui</module>
|
|
|
+ <module>modules/activiti-cdi</module>
|
|
|
+ <module>modules/activiti-jmx</module>
|
|
|
+ <module>modules/activiti-jms-spring-executor</module>
|
|
|
+ <module>modules/activiti-crystalball</module>
|
|
|
+ <module>modules/activiti-admin</module>
|
|
|
+<!-- <module>tooling/archetypes/activiti-archetype-unittest</module> -->
|
|
|
+ </modules>
|
|
|
+ </profile>
|
|
|
+ <profile>
|
|
|
+ <id>database</id>
|
|
|
+ <activation>
|
|
|
+ <property>
|
|
|
+ <name>database</name>
|
|
|
+ </property>
|
|
|
+ </activation>
|
|
|
+ <modules>
|
|
|
+ <module>modules/activiti-engine</module>
|
|
|
+ </modules>
|
|
|
+ </profile>
|
|
|
+ <profile>
|
|
|
+ <id>databasedmn</id>
|
|
|
+ <activation>
|
|
|
+ <property>
|
|
|
+ <name>databasedmn</name>
|
|
|
+ </property>
|
|
|
+ </activation>
|
|
|
+ </profile>
|
|
|
+ <profile>
|
|
|
+ <id>databasewithschemadmn</id>
|
|
|
+ <activation>
|
|
|
+ <property>
|
|
|
+ <name>databasewithschemadmn</name>
|
|
|
+ </property>
|
|
|
+ </activation>
|
|
|
+ </profile>
|
|
|
+ <profile>
|
|
|
+ <!-- Profile used by the start-rest.sh script to build the Explorer webapp
|
|
|
+ and all its dependencies -->
|
|
|
+ <id>buildRestappDependencies</id>
|
|
|
+ <modules>
|
|
|
+ <module>modules/activiti-bpmn-model</module>
|
|
|
+ <module>modules/activiti-process-validation</module>
|
|
|
+ <module>modules/activiti-image-generator</module>
|
|
|
+ <module>modules/activiti-json-converter</module>
|
|
|
+ <module>modules/activiti-secure-tasks</module>
|
|
|
+ <module>modules/activiti-secure-javascript</module>
|
|
|
+ <module>modules/activiti-secure-service-tasks</module>
|
|
|
+ <module>modules/activiti-bpmn-converter</module>
|
|
|
+ <module>modules/activiti-engine</module>
|
|
|
+ <module>modules/activiti-spring</module>
|
|
|
+ <module>modules/activiti-common-rest</module>
|
|
|
+ <module>modules/activiti-rest</module>
|
|
|
+ </modules>
|
|
|
+ <properties>
|
|
|
+ <skipTests>true</skipTests>
|
|
|
+ </properties>
|
|
|
+ <build>
|
|
|
+ <plugins>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.zeroturnaround</groupId>
|
|
|
+ <artifactId>jrebel-maven-plugin</artifactId>
|
|
|
+ <version>1.1.1</version>
|
|
|
+ <executions>
|
|
|
+ <execution>
|
|
|
+ <id>generate-rebel-xml</id>
|
|
|
+ <phase>process-resources</phase>
|
|
|
+ <goals>
|
|
|
+ <goal>generate</goal>
|
|
|
+ </goals>
|
|
|
+ </execution>
|
|
|
+ </executions>
|
|
|
+ </plugin>
|
|
|
+ </plugins>
|
|
|
+ </build>
|
|
|
+ </profile>
|
|
|
+ <profile>
|
|
|
+ <id>doclint-java8-disable</id>
|
|
|
+ <activation>
|
|
|
+ <jdk>[1.8,)</jdk>
|
|
|
+ </activation>
|
|
|
+ <build>
|
|
|
+ <plugins>
|
|
|
+ <plugin>
|
|
|
+ <groupId>org.apache.maven.plugins</groupId>
|
|
|
+ <artifactId>maven-javadoc-plugin</artifactId>
|
|
|
+ <configuration>
|
|
|
+ <additionalparam>-Xdoclint:none</additionalparam>
|
|
|
+ </configuration>
|
|
|
+ </plugin>
|
|
|
+ </plugins>
|
|
|
+ </build>
|
|
|
+ </profile>
|
|
|
+ </profiles>
|
|
|
+</project>
|