代码拉取完成,页面将自动刷新
同步操作将从 Gitee 极速下载/flowable 强制同步,此操作会覆盖自 Fork 仓库以来所做的任何修改,且无法恢复!!!
确定后同步将在后台操作,完成时将刷新页面,请耐心等待。
<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>
<name>Flowable</name>
<description>BPM and workflow engine</description>
<groupId>org.flowable</groupId>
<artifactId>flowable-root</artifactId>
<packaging>pom</packaging>
<version>6.6.0-SNAPSHOT</version>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<distributionManagementSnapshotsUrl>https://oss.sonatype.org/content/repositories/snapshots/</distributionManagementSnapshotsUrl>
<jdk.version>1.8</jdk.version>
<!-- When updating one spring version, make sure that all of them are updated to their latest compatible versions -->
<spring.boot.version>2.3.1.RELEASE</spring.boot.version>
<spring.framework.version>5.2.8.RELEASE</spring.framework.version>
<spring.security.version>5.3.3.RELEASE</spring.security.version>
<spring.amqp.version>2.2.7.RELEASE</spring.amqp.version>
<spring.kafka.version>2.5.2.RELEASE</spring.kafka.version>
<reactor-netty.version>0.9.10.RELEASE</reactor-netty.version>
<jackson.version>2.11.0</jackson.version>
<jakarta-jms.version>2.0.3</jakarta-jms.version>
<mule.version>3.8.0</mule.version>
<camel.version>2.25.0</camel.version>
<cxf.version>3.3.6</cxf.version>
<slf4j.version>1.7.30</slf4j.version>
<junit.version>4.13</junit.version>
<junit.jupiter.version>5.6.2</junit.jupiter.version>
<hikari.version>3.4.5</hikari.version>
<maven.deploy.plugin.version>2.8.2</maven.deploy.plugin.version>
<maven.resources.plugin.version>3.1.0</maven.resources.plugin.version>
<mockito.version>3.3.3</mockito.version>
<testcontainers.version>1.12.4</testcontainers.version>
<oracle.jdbc.version>12.1.0.1</oracle.jdbc.version>
<oracle.jdbc.artifact>ojdbc7</oracle.jdbc.artifact>
<spotify.docker.plugin.version>1.4.10</spotify.docker.plugin.version>
<checkstyle.config.location>checkstyle/flowable-checkstyle.xml</checkstyle.config.location>
<checkstyle.suppressions.location>/checkstyle/flowable-suppressions.xml</checkstyle.suppressions.location>
<!-- JVM params for test execution -->
<argLine>-Duser.language=en -XX:+UseParallelGC</argLine>
<!-- OSGi bundles properties -->
<flowable.artifact />
<flowable.osgi.import.flowable.version>version="[$(version;==;${flowable.osgi.version.clean}),$(version;=+;${flowable.osgi.version.clean}))"</flowable.osgi.import.flowable.version>
<flowable.osgi.import.strict.version>version="[$(version;===;${flowable.osgi.version.clean}),$(version;==+;${flowable.osgi.version.clean}))"</flowable.osgi.import.strict.version>
<flowable.osgi.import.default.version>[$(version;==;$(@)),$(version;+;$(@)))</flowable.osgi.import.default.version>
<flowable.osgi.import.defaults>
</flowable.osgi.import.defaults>
<flowable.osgi.import.before.defaults />
<flowable.osgi.import.additional />
<flowable.osgi.export.additional />
<flowable.osgi.import.pkg>
org.flowable.*;${flowable.osgi.import.flowable.version},
${flowable.osgi.import.before.defaults},
${flowable.osgi.import.defaults},
${flowable.osgi.import.additional},
*
</flowable.osgi.import.pkg>
<flowable.osgi.activator />
<flowable.osgi.failok>false</flowable.osgi.failok>
<flowable.osgi.export>${flowable.osgi.export.pkg};${flowable.osgi.version};-noimport:=true</flowable.osgi.export>
<!-- <flowable.osgi.export.pkg>!*.impl;${flowable.artifact}*</flowable.osgi.export.pkg>
<flowable.osgi.private.pkg>${flowable.artifact}*.impl</flowable.osgi.private.pkg> -->
<flowable.osgi.export.pkg>
${flowable.artifact}*,
${flowable.osgi.export.additional}
</flowable.osgi.export.pkg>
<flowable.osgi.private.pkg></flowable.osgi.private.pkg>
<flowable.osgi.version>version=${project.version}</flowable.osgi.version>
<flowable.osgi.split.pkg>-split-package:=first</flowable.osgi.split.pkg>
<flowable.osgi.import>${flowable.osgi.import.pkg}</flowable.osgi.import>
<flowable.osgi.dynamic />
<flowable.osgi.symbolic.name>${flowable.artifact}</flowable.osgi.symbolic.name>
<flowable.osgi.exclude.dependencies>false</flowable.osgi.exclude.dependencies>
<flowable.osgi.remove.headers>Ignore-Package,Include-Resource,Private-Package,Bundle-DocURL</flowable.osgi.remove.headers>
<flowable.osgi.include.resource>{maven-resources}</flowable.osgi.include.resource>
<flowable.osgi.embed></flowable.osgi.embed>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.4.200</version>
</dependency>
<!-- Logging -->
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>jcl-over-slf4j</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>commons-logging</groupId>
<artifactId>commons-logging</artifactId>
<version>1.2</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.10</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.7</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.14</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpclient</artifactId>
<version>4.5.12</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpcore</artifactId>
<version>4.4.13</version>
</dependency>
<dependency>
<groupId>org.apache.httpcomponents</groupId>
<artifactId>httpmime</artifactId>
<version>4.5.12</version>
</dependency>
<dependency>
<groupId>com.oracle.jdbc</groupId>
<artifactId>${oracle.jdbc.artifact}</artifactId>
<version>${oracle.jdbc.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>javax.xml.bind</groupId>
<artifactId>jaxb-api</artifactId>
<version>2.3.1</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-impl</artifactId>
<version>2.3.2</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-xjc</artifactId>
<version>2.3.2</version>
</dependency>
<dependency>
<groupId>javax.servlet</groupId>
<artifactId>javax.servlet-api</artifactId>
<version>3.1.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.sun.mail</groupId>
<artifactId>javax.mail</artifactId>
<version>1.6.2</version>
</dependency>
<dependency>
<groupId>javax.persistence</groupId>
<artifactId>javax.persistence-api</artifactId>
<version>2.2</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>javax.enterprise.concurrent</groupId>
<artifactId>javax.enterprise.concurrent-api</artifactId>
<version>1.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>io.swagger</groupId>
<artifactId>swagger-annotations</artifactId>
<version>1.5.24</version>
</dependency>
<dependency>
<groupId>io.swagger</groupId>
<artifactId>swagger-models</artifactId>
<version>1.5.24</version>
</dependency>
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>${junit.jupiter.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>${junit.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.zaxxer</groupId>
<artifactId>HikariCP</artifactId>
<version>${hikari.version}</version>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers-bom</artifactId>
<version>${testcontainers.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>8.0.19</version>
</dependency>
<dependency>
<groupId>com.ibm.db2</groupId>
<artifactId>jcc</artifactId>
<version>11.5.0.0</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-engine</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-spring</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-spring-security</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-cdi</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-camel-cdi</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-bpmn-model</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-bpmn-converter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-json-converter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-engine-configurator</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-spring-configurator</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-engine-common-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-engine-common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-spring-common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-cmmn-json-converter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-explorer</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-simple-workflow</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-common-rest</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-rest</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-idm-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-idm-engine</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-idm-engine-configurator</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-idm-spring</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-idm-spring-configurator</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-idm-rest</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-dmn-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-dmn-engine</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-dmn-model</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-dmn-xml-converter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-dmn-json-converter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-dmn-rest</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-dmn-engine-configurator</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-dmn-spring</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-dmn-spring-configurator</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-cmmn-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-cmmn-converter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-cmmn-engine</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-cmmn-spring</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-cmmn-engine-configurator</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-cmmn-spring-configurator</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-cmmn-model</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-cmmn-image-generator</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-cmmn-rest</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-external-job-rest</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-form-model</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-form-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-form-json-converter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-form-engine</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-form-engine-configurator</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-form-spring</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-form-spring-configurator</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-form-rest</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-content-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-content-engine</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-content-spring</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-content-engine-configurator</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-content-spring-configurator</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-content-rest</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-app-engine-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-app-engine</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-app-engine-spring</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-app-engine-rest</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-variable-service-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-variable-service</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-identitylink-service</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-identitylink-service-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-entitylink-service-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-entitylink-service</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-event-registry</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-event-registry-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-event-registry-model</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-event-registry-json-converter</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-event-registry-spring</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-event-registry-configurator</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-event-registry-spring-configurator</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-event-registry-rest</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-eventsubscription-service</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-eventsubscription-service-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-task-service-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-task-service</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-job-service-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-job-service</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-job-spring-service</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-batch-service-api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-batch-service</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-camel</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-mule</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-http</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-http-common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-crystalball</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-app-rest</artifactId>
<type>war</type>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-cxf</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-ldap</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-bpmn-layout</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-process-validation</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-image-generator</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable5-engine</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable5-spring</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable5-compatibility</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable5-spring-compatibility</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-jmx</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.flowable</groupId>
<artifactId>flowable-groovy-script-static-engine</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.hibernate</groupId>
<artifactId>hibernate-core</artifactId>
<version>5.3.5.Final</version>
</dependency>
<dependency>
<groupId>org.codehaus.groovy</groupId>
<artifactId>groovy-jsr223</artifactId>
<version>2.5.12</version>
</dependency>
<dependency>
<groupId>org.drools</groupId>
<artifactId>drools-core</artifactId>
<version>7.6.0.Final</version>
</dependency>
<dependency>
<groupId>org.drools</groupId>
<artifactId>drools-compiler</artifactId>
<version>7.6.0.Final</version>
</dependency>
<dependency>
<groupId>org.mule.modules</groupId>
<artifactId>mule-module-cxf</artifactId>
<version>${mule.version}</version>
</dependency>
<dependency>
<groupId>org.mule.tests</groupId>
<artifactId>mule-tests-functional</artifactId>
<version>${mule.version}</version>
</dependency>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis</artifactId>
<version>3.5.5</version>
</dependency>
<dependency>
<groupId>org.mybatis</groupId>
<artifactId>mybatis-spring</artifactId>
<version>2.0.5</version>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-core</artifactId>
<version>${mockito.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-junit-jupiter</artifactId>
<version>${mockito.version}</version>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.core</artifactId>
<version>6.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.osgi</groupId>
<artifactId>org.osgi.compendium</artifactId>
<version>5.0.0</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.felix</groupId>
<artifactId>org.apache.felix.fileinstall</artifactId>
<version>3.6.4</version>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-jdk14</artifactId>
<version>${slf4j.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-beans</artifactId>
<version>${spring.framework.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-core</artifactId>
<version>${spring.framework.version}</version>
<exclusions>
<exclusion>
<artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${spring.framework.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-aop</artifactId>
<version>${spring.framework.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jdbc</artifactId>
<version>${spring.framework.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-jms</artifactId>
<version>${spring.framework.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-orm</artifactId>
<version>${spring.framework.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-tx</artifactId>
<version>${spring.framework.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-expression</artifactId>
<version>${spring.framework.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context-support</artifactId>
<version>${spring.framework.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-web</artifactId>
<version>${spring.framework.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webmvc</artifactId>
<version>${spring.framework.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-webflux</artifactId>
<version>${spring.framework.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-test</artifactId>
<version>${spring.framework.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.amqp</groupId>
<artifactId>spring-rabbit</artifactId>
<version>${spring.amqp.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.kafka</groupId>
<artifactId>spring-kafka</artifactId>
<version>${spring.kafka.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-core</artifactId>
<version>${spring.security.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-config</artifactId>
<version>${spring.security.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-crypto</artifactId>
<version>${spring.security.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-web</artifactId>
<version>${spring.security.version}</version>
</dependency>
<dependency>
<groupId>org.springframework.security</groupId>
<artifactId>spring-security-ldap</artifactId>
<version>${spring.security.version}</version>
</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>org.liquibase</groupId>
<artifactId>liquibase-core</artifactId>
<version>3.8.0</version>
<exclusions>
<exclusion>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.hsqldb</groupId>
<artifactId>hsqldb</artifactId>
<version>2.3.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>42.2.6</version>
</dependency>
<dependency>
<groupId>xerces</groupId>
<artifactId>xercesImpl</artifactId>
<version>2.12.0</version>
</dependency>
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>2.10.6</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>29.0-jre</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-core</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-annotations</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.core</groupId>
<artifactId>jackson-databind</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-json-org</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-joda</artifactId>
<version>${jackson.version}</version>
</dependency>
<dependency>
<groupId>io.projectreactor.netty</groupId>
<artifactId>reactor-netty</artifactId>
<version>${reactor-netty.version}</version>
</dependency>
<dependency>
<groupId>jakarta.jms</groupId>
<artifactId>jakarta.jms-api</artifactId>
<version>${jakarta-jms.version}</version>
</dependency>
<!-- Camel integration -->
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-spring</artifactId>
<version>${camel.version}</version>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-mvel</artifactId>
<version>${camel.version}</version>
</dependency>
<dependency>
<groupId>org.apache.camel</groupId>
<artifactId>camel-cdi</artifactId>
<version>${camel.version}</version>
</dependency>
<dependency>
<groupId>com.fasterxml.uuid</groupId>
<artifactId>java-uuid-generator</artifactId>
<version>3.3.0</version>
</dependency>
<dependency>
<groupId>net.sourceforge.jtds</groupId>
<artifactId>jtds</artifactId>
<version>1.3.0</version>
</dependency>
<dependency>
<groupId>com.microsoft.sqlserver</groupId>
<artifactId>mssql-jdbc</artifactId>
<version>7.4.1.jre8</version>
</dependency>
<dependency>
<groupId>org.assertj</groupId>
<artifactId>assertj-core</artifactId>
<version>3.16.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.javacrumbs.json-unit</groupId>
<artifactId>json-unit-assertj</artifactId>
<version>2.17.0</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<modules>
<module>modules/flowable-bpmn-model</module>
<module>modules/flowable-process-validation</module>
<module>modules/flowable-bpmn-layout</module>
<module>modules/flowable-image-generator</module>
<module>modules/flowable-bpmn-converter</module>
<module>modules/flowable-engine-common-api</module>
<module>modules/flowable-engine-common</module>
<module>modules/flowable-entitylink-service-api</module>
<module>modules/flowable-entitylink-service</module>
<module>modules/flowable-variable-service-api</module>
<module>modules/flowable-variable-service</module>
<module>modules/flowable-identitylink-service-api</module>
<module>modules/flowable-identitylink-service</module>
<module>modules/flowable-event-registry-api</module>
<module>modules/flowable-event-registry-model</module>
<module>modules/flowable-event-registry-json-converter</module>
<module>modules/flowable-event-registry</module>
<module>modules/flowable-event-registry-configurator</module>
<module>modules/flowable-eventsubscription-service-api</module>
<module>modules/flowable-eventsubscription-service</module>
<module>modules/flowable-task-service-api</module>
<module>modules/flowable-task-service</module>
<module>modules/flowable-job-service-api</module>
<module>modules/flowable-job-service</module>
<module>modules/flowable-job-spring-service</module>
<module>modules/flowable-batch-service-api</module>
<module>modules/flowable-batch-service</module>
<module>modules/flowable-idm-api</module>
<module>modules/flowable-idm-engine</module>
<module>modules/flowable-idm-engine-configurator</module>
<module>modules/flowable-form-model</module>
<module>modules/flowable-form-api</module>
<module>modules/flowable-form-json-converter</module>
<module>modules/flowable-form-engine</module>
<module>modules/flowable-form-engine-configurator</module>
<module>modules/flowable-dmn-model</module>
<module>modules/flowable-dmn-api</module>
<module>modules/flowable-content-api</module>
<module>modules/flowable-cmmn-api</module>
<module>modules/flowable-cmmn-model</module>
<module>modules/flowable-cmmn-converter</module>
<module>modules/flowable-cmmn-image-generator</module>
<module>modules/flowable-cmmn-engine</module>
<module>modules/flowable-cmmn-engine-configurator</module>
<module>modules/flowable-engine</module>
<module>modules/flowable-app-engine-api</module>
<module>modules/flowable-app-engine</module>
<module>modules/flowable-spring-security</module>
<module>modules/flowable-http-common</module>
</modules>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.8.1</version>
<configuration>
<source>${jdk.version}</source>
<target>${jdk.version}</target>
<showDeprecation>true</showDeprecation>
<showWarnings>true</showWarnings>
</configuration>
</plugin>
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.0.0-M4</version>
<configuration>
<failIfNoTests>false</failIfNoTests>
<trimStackTrace>false</trimStackTrace>
<redirectTestOutputToFile>true</redirectTestOutputToFile>
<excludes>
<exclude>**/*TestCase.java</exclude>
</excludes>
<runOrder>alphabetical</runOrder>
<rerunFailingTestsCount>2</rerunFailingTestsCount>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<version>3.5.0</version>
<extensions>true</extensions>
<configuration>
<excludeDependencies>${flowable.osgi.exclude.dependencies}</excludeDependencies>
<instructions>
<Bundle-Name>${project.name}</Bundle-Name>
<Bundle-SymbolicName>${flowable.osgi.symbolic.name}</Bundle-SymbolicName>
<Bundle-Activator>${flowable.osgi.activator}</Bundle-Activator>
<Export-Package>${flowable.osgi.export}</Export-Package>
<Import-Package>org.flowable.osgi;resolution:=optional,
${flowable.osgi.import}</Import-Package>
<DynamicImport-Package>${flowable.osgi.dynamic}</DynamicImport-Package>
<Private-Package>${flowable.osgi.private.pkg}</Private-Package>
<Implementation-Title>Flowable</Implementation-Title>
<Implementation-Version>${project.version}</Implementation-Version>
<Include-Resource>${flowable.osgi.include.resource}</Include-Resource>
<_versionpolicy>${flowable.osgi.import.default.version}</_versionpolicy>
<_removeheaders>${flowable.osgi.remove.headers}</_removeheaders>
<_failok>${flowable.osgi.failok}</_failok>
<Export-Service>${flowable.osgi.export.service}</Export-Service>
<Import-Service>${flowable.osgi.import.service}</Import-Service>
<Embed-Dependency>${flowable.osgi.embed}</Embed-Dependency>
</instructions>
<versions>
<flowable.osgi.version.clean>${project.version}</flowable.osgi.version.clean>
</versions>
</configuration>
</plugin>
</plugins>
<pluginManagement>
<plugins>
<plugin>
<groupId>com.spotify</groupId>
<artifactId>dockerfile-maven-plugin</artifactId>
<version>${spotify.docker.plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-deploy-plugin</artifactId>
<version>${maven.deploy.plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-jar-plugin</artifactId>
<version>3.1.2</version>
<configuration>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest>
</archive>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.1.1</version>
<configuration>
<source>${jdk.version}</source>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-gpg-plugin</artifactId>
<version>1.6</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-resources-plugin</artifactId>
<version>${maven.resources.plugin.version}</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<version>3.1.0</version>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-war-plugin</artifactId>
<version>3.2.3</version>
<configuration>
<failOnMissingWebXml>false</failOnMissingWebXml>
<archive>
<manifest>
<addDefaultImplementationEntries>true</addDefaultImplementationEntries>
</manifest>
</archive>
</configuration>
</plugin>
<!--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.apache.felix</groupId>
<artifactId>maven-bundle-plugin</artifactId>
<versionRange>[2.1.0,)</versionRange>
<goals>
<goal>manifest</goal>
</goals>
</pluginExecutionFilter>
<action>
<ignore></ignore>
</action>
</pluginExecution>
</pluginExecutions>
</lifecycleMappingMetadata>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>2.5.3</version>
<configuration>
<mavenExecutorId>forked-path</mavenExecutorId>
<useReleaseProfile>false</useReleaseProfile>
<arguments>${arguments}</arguments>
<releaseProfiles>deploy</releaseProfiles>
</configuration>
</plugin>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
<version>${spring.boot.version}</version>
<executions>
<execution>
<goals>
<goal>build-info</goal>
<goal>repackage</goal>
</goals>
<configuration>
<mainClass>${start-class}</mainClass>
<!-- The generated Spring Boot jar / war should not be made executable be prepending a launch script to the jar / war
Such jars cause issues when being unpacked by maven dependency:unpack, it can also cause issues when deploying in a servlet container.
NB: The jar / war is still self contained and can be run with java -jar
-->
<executable>false</executable>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>exec-maven-plugin</artifactId>
<version>1.6.0</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/flowable-bpmn-model</module>
<module>modules/flowable-process-validation</module>
<module>modules/flowable-image-generator</module>
<module>modules/flowable-bpmn-converter</module>
<module>modules/flowable-engine</module>
<module>modules/flowable-secure-javascript</module>
<module>modules/flowable-groovy-script-static-engine</module>
<module>modules/flowable-bpmn-layout</module>
<module>modules/flowable-json-converter</module>
<module>modules/flowable-spring-common</module>
<module>modules/flowable-engine-configurator</module>
<module>modules/flowable-spring-configurator</module>
<module>modules/flowable-event-registry-spring</module>
<module>modules/flowable-event-registry-spring-configurator</module>
<module>modules/flowable-event-registry-rest</module>
<module>modules/flowable-app-engine-spring</module>
<module>modules/flowable-app-engine-rest</module>
<module>modules/flowable-dmn-model</module>
<module>modules/flowable-dmn-json-converter</module>
<module>modules/flowable-dmn-xml-converter</module>
<module>modules/flowable-dmn-engine</module>
<module>modules/flowable-dmn-engine-configurator</module>
<module>modules/flowable-dmn-spring</module>
<module>modules/flowable-dmn-spring-configurator</module>
<module>modules/flowable-dmn-rest</module>
<module>modules/flowable-cmmn-api</module>
<module>modules/flowable-cmmn-model</module>
<module>modules/flowable-cmmn-converter</module>
<module>modules/flowable-cmmn-json-converter</module>
<module>modules/flowable-cmmn-engine</module>
<module>modules/flowable-cmmn-engine-configurator</module>
<module>modules/flowable-cmmn-spring</module>
<module>modules/flowable-cmmn-spring-configurator</module>
<module>modules/flowable-cmmn-rest</module>
<module>modules/flowable-external-job-rest</module>
<module>modules/flowable-form-model</module>
<module>modules/flowable-form-json-converter</module>
<module>modules/flowable-form-engine</module>
<module>modules/flowable-form-engine-configurator</module>
<module>modules/flowable-form-spring</module>
<module>modules/flowable-form-spring-configurator</module>
<module>modules/flowable-form-rest</module>
<module>modules/flowable-content-engine</module>
<module>modules/flowable-content-engine-configurator</module>
<module>modules/flowable-content-spring</module>
<module>modules/flowable-content-spring-configurator</module>
<module>modules/flowable-content-rest</module>
<module>modules/flowable-common-rest</module>
<module>modules/flowable-rest</module>
<module>modules/flowable-app-rest</module>
<module>modules/flowable-idm-engine-configurator</module>
<module>modules/flowable-idm-spring</module>
<module>modules/flowable-idm-spring-configurator</module>
<module>modules/flowable-idm-rest</module>
<module>modules/flowable-spring</module>
<module>modules/flowable5-engine</module>
<module>modules/flowable5-compatibility</module>
<module>modules/flowable5-spring</module>
<module>modules/flowable5-spring-compatibility</module>
<module>modules/flowable-spring-boot</module>
<module>modules/flowable-cxf</module>
<module>modules/flowable-mule</module>
<module>modules/flowable-http</module>
<module>modules/flowable-http-common</module>
<module>modules/flowable-camel</module>
<module>modules/flowable-camel-cdi</module>
<module>modules/flowable-cdi</module>
<module>modules/flowable-osgi</module>
<module>modules/flowable-ldap</module>
<module>modules/flowable-ldap-configurator</module>
<module>modules/flowable-jmx</module>
<module>modules/flowable-jms-spring-executor</module>
<module>modules/flowable-ui</module>
<module>tooling/archetypes/flowable-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>
<configuration>
<doclint>none</doclint>
</configuration>
<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/flowable-bpmn-model</module>
<module>modules/flowable-process-validation</module>
<module>modules/flowable-image-generator</module>
<module>modules/flowable-bpmn-converter</module>
<module>modules/flowable-bpmn-layout</module>
<module>modules/flowable-json-converter</module>
<module>modules/flowable-spring-common</module>
<module>modules/flowable-idm-engine-configurator</module>
<module>modules/flowable-idm-spring</module>
<module>modules/flowable-idm-spring-configurator</module>
<module>modules/flowable-idm-rest</module>
<module>modules/flowable-event-registry-spring</module>
<module>modules/flowable-event-registry-spring-configurator</module>
<module>modules/flowable-event-registry-rest</module>
<module>modules/flowable-ldap</module>
<module>modules/flowable-spring</module>
<module>modules/flowable-groovy-script-static-engine</module>
<module>modules/flowable-common-rest</module>
<module>modules/flowable-rest</module>
<module>modules/flowable-cxf</module>
<module>modules/flowable-secure-javascript</module>
<module>modules/flowable-form-json-converter</module>
<module>modules/flowable-engine-configurator</module>
<module>modules/flowable-spring-configurator</module>
<module>modules/flowable-app-engine-spring</module>
<module>modules/flowable-app-engine-rest</module>
<module>modules/flowable-form-engine</module>
<module>modules/flowable-form-engine-configurator</module>
<module>modules/flowable-form-spring</module>
<module>modules/flowable-form-spring-configurator</module>
<module>modules/flowable-form-rest</module>
<module>modules/flowable-dmn-engine</module>
<module>modules/flowable-dmn-model</module>
<module>modules/flowable-dmn-json-converter</module>
<module>modules/flowable-dmn-xml-converter</module>
<module>modules/flowable-dmn-engine-configurator</module>
<module>modules/flowable-dmn-spring</module>
<module>modules/flowable-dmn-spring-configurator</module>
<module>modules/flowable-dmn-rest</module>
<module>modules/flowable-cmmn-api</module>
<module>modules/flowable-cmmn-model</module>
<module>modules/flowable-cmmn-converter</module>
<module>modules/flowable-cmmn-json-converter</module>
<module>modules/flowable-cmmn-engine</module>
<module>modules/flowable-cmmn-engine-configurator</module>
<module>modules/flowable-cmmn-spring</module>
<module>modules/flowable-cmmn-spring-configurator</module>
<module>modules/flowable-cmmn-rest</module>
<module>modules/flowable-external-job-rest</module>
<module>modules/flowable-content-engine</module>
<module>modules/flowable-content-engine-configurator</module>
<module>modules/flowable-content-spring</module>
<module>modules/flowable-content-spring-configurator</module>
<module>modules/flowable-content-rest</module>
<module>modules/flowable-http</module>
<module>modules/flowable-http-common</module>
<module>modules/flowable-spring-boot</module>
<module>modules/flowable-jms-spring-executor</module>
</modules>
</profile>
<profile>
<id>checkmule</id>
<modules>
<module>modules/flowable-cxf</module>
<module>modules/flowable-mule</module>
</modules>
</profile>
<profile>
<id>checkspring</id> <!-- [Joram] Is this still used?? -->
<modules>
<module>modules/flowable-spring-common</module>
<module>modules/flowable-idm-spring</module>
<module>modules/flowable-spring</module>
</modules>
</profile>
<profile>
<id>checkcdi</id>
<modules>
<module>modules/flowable-cdi</module>
</modules>
</profile>
<profile>
<id>checkosgi</id>
<modules>
<module>modules/flowable-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>coverage</id>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.4</version>
<executions>
<execution>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>report</id>
<phase>prepare-package</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>distro</id>
<modules>
<module>modules/flowable-bpmn-model</module>
<module>modules/flowable-process-validation</module>
<module>modules/flowable-image-generator</module>
<module>modules/flowable-bpmn-converter</module>
<module>modules/flowable-bpmn-layout</module>
<module>modules/flowable-json-converter</module>
<module>modules/flowable-spring-common</module>
<module>modules/flowable-engine-configurator</module>
<module>modules/flowable-spring-configurator</module>
<module>modules/flowable-secure-javascript</module>
<module>modules/flowable-groovy-script-static-engine</module>
<module>modules/flowable-form-model</module>
<module>modules/flowable-form-json-converter</module>
<module>modules/flowable-form-engine</module>
<module>modules/flowable-form-engine-configurator</module>
<module>modules/flowable-form-spring</module>
<module>modules/flowable-form-spring-configurator</module>
<module>modules/flowable-form-rest</module>
<module>modules/flowable-idm-engine-configurator</module>
<module>modules/flowable-idm-spring</module>
<module>modules/flowable-idm-spring-configurator</module>
<module>modules/flowable-idm-rest</module>
<module>modules/flowable-event-registry-spring</module>
<module>modules/flowable-event-registry-spring-configurator</module>
<module>modules/flowable-event-registry-rest</module>
<module>modules/flowable-content-engine</module>
<module>modules/flowable-content-engine-configurator</module>
<module>modules/flowable-content-spring</module>
<module>modules/flowable-content-spring-configurator</module>
<module>modules/flowable-content-rest</module>
<module>modules/flowable-spring</module>
<module>modules/flowable-app-engine-spring</module>
<module>modules/flowable-app-engine-rest</module>
<module>modules/flowable-dmn-model</module>
<module>modules/flowable-dmn-json-converter</module>
<module>modules/flowable-dmn-xml-converter</module>
<module>modules/flowable-dmn-engine</module>
<module>modules/flowable-dmn-engine-configurator</module>
<module>modules/flowable-dmn-spring</module>
<module>modules/flowable-dmn-spring-configurator</module>
<module>modules/flowable-dmn-rest</module>
<module>modules/flowable-cmmn-api</module>
<module>modules/flowable-cmmn-model</module>
<module>modules/flowable-cmmn-converter</module>
<module>modules/flowable-cmmn-json-converter</module>
<module>modules/flowable-cmmn-engine</module>
<module>modules/flowable-cmmn-engine-configurator</module>
<module>modules/flowable-cmmn-spring</module>
<module>modules/flowable-cmmn-spring-configurator</module>
<module>modules/flowable-cmmn-rest</module>
<module>modules/flowable-external-job-rest</module>
<module>modules/flowable5-engine</module>
<module>modules/flowable5-compatibility</module>
<module>modules/flowable5-spring</module>
<module>modules/flowable5-spring-compatibility</module>
<module>modules/flowable-spring-boot</module>
<module>modules/flowable-common-rest</module>
<module>modules/flowable-rest</module>
<module>modules/flowable-app-rest</module>
<module>modules/flowable-cxf</module>
<module>modules/flowable-osgi</module>
<module>modules/flowable-camel</module>
<module>modules/flowable-mule</module>
<module>modules/flowable-http</module>
<module>modules/flowable-http-common</module>
<module>modules/flowable-cdi</module>
<module>modules/flowable-camel-cdi</module>
<module>modules/flowable-ldap</module>
<module>modules/flowable-ldap-configurator</module>
<module>modules/flowable-jmx</module>
<module>modules/flowable-jms-spring-executor</module>
<module>modules/flowable-crystalball</module>
<module>tooling/archetypes/flowable-archetype-unittest</module>
</modules>
<build>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-source-plugin</artifactId>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar-no-fork</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>database</id>
<activation>
<property>
<name>database</name>
</property>
</activation>
<modules>
<module>modules/flowable-engine</module>
</modules>
</profile>
<profile>
<id>databaseform</id>
<activation>
<property>
<name>databaseform</name>
</property>
</activation>
<modules>
<module>modules/flowable-form-model</module>
<module>modules/flowable-form-api</module>
<module>modules/flowable-form-engine</module>
</modules>
</profile>
<profile>
<id>databasedmn</id>
<activation>
<property>
<name>databasedmn</name>
</property>
</activation>
<modules>
<module>modules/flowable-dmn-model</module>
<module>modules/flowable-dmn-api</module>
<module>modules/flowable-dmn-engine</module>
<module>modules/flowable-dmn-xml-converter</module>
</modules>
</profile>
<profile>
<id>dmn</id>
<modules>
<module>modules/flowable-dmn-model</module>
<module>modules/flowable-dmn-api</module>
<module>modules/flowable-dmn-engine</module>
<module>modules/flowable-dmn-xml-converter</module>
</modules>
</profile>
<profile>
<id>databasecontent</id>
<activation>
<property>
<name>databasecontent</name>
</property>
</activation>
<modules>
<module>modules/flowable-content-api</module>
<module>modules/flowable-content-engine</module>
</modules>
</profile>
<profile>
<id>content</id>
<modules>
<module>modules/flowable-content-api</module>
<module>modules/flowable-content-engine</module>
</modules>
</profile>
<profile>
<id>databaseidm</id>
<activation>
<property>
<name>databaseidm</name>
</property>
</activation>
<modules>
<module>modules/flowable-idm-api</module>
<module>modules/flowable-idm-engine</module>
</modules>
</profile>
<profile>
<id>databasewithschemaform</id>
<activation>
<property>
<name>databasewithschemaform</name>
</property>
</activation>
<modules>
<module>modules/flowable-form-model</module>
<module>modules/flowable-form-api</module>
<module>modules/flowable-form-engine</module>
</modules>
</profile>
<profile>
<id>databasewithschemadmn</id>
<activation>
<property>
<name>databasewithschemadmn</name>
</property>
</activation>
<modules>
<module>modules/flowable-dmn-model</module>
<module>modules/flowable-dmn-api</module>
<module>modules/flowable-dmn-engine</module>
</modules>
</profile>
<profile>
<id>databasewithschemacontent</id>
<activation>
<property>
<name>databasewithschemacontent</name>
</property>
</activation>
<modules>
<module>modules/flowable-content-api</module>
<module>modules/flowable-content-engine</module>
</modules>
</profile>
<profile>
<id>databasewithschemaidm</id>
<activation>
<property>
<name>databasewithschemaidm</name>
</property>
</activation>
<modules>
<module>modules/flowable-idm-api</module>
<module>modules/flowable-idm-engine</module>
</modules>
</profile>
<profile>
<id>buildRestappDependencies</id>
<modules>
<module>modules/flowable-bpmn-model</module>
<module>modules/flowable-process-validation</module>
<module>modules/flowable-image-generator</module>
<module>modules/flowable-json-converter</module>
<module>modules/flowable-spring-common</module>
<module>modules/flowable-secure-javascript</module>
<module>modules/flowable-bpmn-converter</module>
<module>modules/flowable-engine</module>
<module>modules/flowable-idm-engine-configurator</module>
<module>modules/flowable-idm-spring</module>
<module>modules/flowable-idm-spring-configurator</module>
<module>modules/flowable-event-registry-configurator</module>
<module>modules/flowable-event-registry-spring</module>
<module>modules/flowable-event-registry-spring-configurator</module>
<module>modules/flowable-event-registry-rest</module>
<module>modules/flowable-spring</module>
<module>modules/flowable-common-rest</module>
<module>modules/flowable-rest</module>
<module>modules/flowable-idm-rest</module>
<module>modules/flowable-cmmn-api</module>
<module>modules/flowable-cmmn-model</module>
<module>modules/flowable-cmmn-converter</module>
<module>modules/flowable-cmmn-json-converter</module>
<module>modules/flowable-cmmn-engine</module>
<module>modules/flowable-cmmn-engine-configurator</module>
<module>modules/flowable-cmmn-spring</module>
<module>modules/flowable-cmmn-spring-configurator</module>
<module>modules/flowable-cmmn-rest</module>
<module>modules/flowable-external-job-rest</module>
<module>modules/flowable-dmn-model</module>
<module>modules/flowable-dmn-api</module>
<module>modules/flowable-dmn-engine</module>
<module>modules/flowable-dmn-engine-configurator</module>
<module>modules/flowable-dmn-spring</module>
<module>modules/flowable-dmn-spring-configurator</module>
<module>modules/flowable-dmn-json-converter</module>
<module>modules/flowable-dmn-xml-converter</module>
<module>modules/flowable-dmn-rest</module>
<module>modules/flowable-form-model</module>
<module>modules/flowable-form-api</module>
<module>modules/flowable-form-engine</module>
<module>modules/flowable-form-engine-configurator</module>
<module>modules/flowable-form-spring</module>
<module>modules/flowable-form-spring-configurator</module>
<module>modules/flowable-form-json-converter</module>
<module>modules/flowable-form-rest</module>
<module>modules/flowable-content-api</module>
<module>modules/flowable-content-engine</module>
<module>modules/flowable-content-engine-configurator</module>
<module>modules/flowable-content-spring</module>
<module>modules/flowable-content-spring-configurator</module>
<module>modules/flowable-content-rest</module>
<module>modules/flowable-groovy-script-static-engine</module>
</modules>
<properties>
<skipTests>true</skipTests>
</properties>
<build>
<plugins>
<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>
<configuration>
<additionalparam>-Xdoclint:none</additionalparam>
</configuration>
</plugin>
</plugins>
</build>
</profile>
<profile>
<id>postgresql</id>
<dependencies>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
</dependency>
</dependencies>
</profile>
<profile>
<id>mssql</id>
<dependencies>
<dependency>
<groupId>com.microsoft.sqlserver</groupId>
<artifactId>mssql-jdbc</artifactId>
</dependency>
</dependencies>
</profile>
<profile>
<id>mysql</id>
<dependencies>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
</dependency>
</dependencies>
</profile>
<profile>
<id>db2</id>
<dependencies>
<dependency>
<groupId>com.ibm.db2</groupId>
<artifactId>jcc</artifactId>
</dependency>
</dependencies>
</profile>
<profile>
<id>oracle</id>
<dependencies>
<dependency>
<groupId>com.oracle.jdbc</groupId>
<artifactId>${oracle.jdbc.artifact}</artifactId>
</dependency>
</dependencies>
</profile>
</profiles>
<reporting>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>2.17</version>
</plugin>
</plugins>
</reporting>
<!-- Various information, not used by the build -->
<url>http://www.flowable.org</url>
<licenses>
<license>
<name>Apache v2</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.html</url>
</license>
</licenses>
<organization>
<name>Flowable</name>
<url>http://www.flowable.org</url>
</organization>
<developers>
<developer>
<name>Tijs Rademakers</name>
<organization>Flowable</organization>
<url>http://www.flowable.org</url>
</developer>
<developer>
<name>Joram Barrez</name>
<organization>Flowable</organization>
<url>http://www.flowable.org</url>
</developer>
<developer>
<name>Yvo Swillens</name>
<organization>Flowable</organization>
<url>http://www.flowable.org</url>
</developer>
<developer>
<name>Josh Long</name>
<organization>Pivotal</organization>
<url>http://www.pivotal.com</url>
</developer>
<developer>
<name>Martin Grofcik</name>
<organization>Edorasware</organization>
<url>http://www.edorasware.com</url>
</developer>
<developer>
<name>Christian Muelder</name>
<organization>Next Level Integration</organization>
<url>http://next-level-integration.com/</url>
</developer>
<developer>
<name>Christian Stettler</name>
</developer>
</developers>
<issueManagement>
<system>Github issues</system>
<url>https://github.com/flowable/flowable-engine/issues</url>
</issueManagement>
<ciManagement>
<system>Jenkins</system>
<url>http://qa.flowable.org</url>
</ciManagement>
<scm>
<url>git@github.com:flowable/flowable-engine.git</url>
<connection>scm:git:git@github.com:flowable/flowable-engine.git</connection>
<developerConnection>scm:git:git@github.com:flowable/flowable-engine.git</developerConnection>
</scm>
<distributionManagement>
<snapshotRepository>
<id>sonatype-nexus-snapshots</id>
<name>Sonatype Nexus Snapshots</name>
<url>${distributionManagementSnapshotsUrl}</url>
</snapshotRepository>
<repository>
<id>sonatype-nexus-staging</id>
<name>Nexus Release Repository</name>
<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>
</project>
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。