1 Star 0 Fork 0

雪影枫 / flowable-engine

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pom.xml 72.09 KB
一键复制 编辑 原始数据 按行查看 历史
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010
<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.1-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.5.RELEASE</spring.boot.version>
<spring.framework.version>5.2.10.RELEASE</spring.framework.version>
<spring.security.version>5.3.5.RELEASE</spring.security.version>
<spring.amqp.version>2.2.11.RELEASE</spring.amqp.version>
<spring.kafka.version>2.5.6.RELEASE</spring.kafka.version>
<reactor-netty.version>0.9.12.RELEASE</reactor-netty.version>
<jackson.version>2.11.2</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.4.0</cxf.version>
<slf4j.version>1.7.30</slf4j.version>
<jib-maven-plugin.version>2.6.0</jib-maven-plugin.version>
<junit.version>4.13</junit.version>
<junit.jupiter.version>5.7.0</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.5.13</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>
<!-- 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.11</version>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<version>2.8.0</version>
</dependency>
<dependency>
<groupId>commons-codec</groupId>
<artifactId>commons-codec</artifactId>
<version>1.15</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.3</version>
</dependency>
<dependency>
<groupId>com.sun.xml.bind</groupId>
<artifactId>jaxb-xjc</artifactId>
<version>2.3.3</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.6.2</version>
</dependency>
<dependency>
<groupId>io.swagger</groupId>
<artifactId>swagger-models</artifactId>
<version>1.6.2</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-image-generator</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>3.0.6</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.17.2</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.javacrumbs.json-unit</groupId>
<artifactId>json-unit-assertj</artifactId>
<version>2.19.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-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-image-generator</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>5</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>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>
<plugin>
<groupId>com.google.cloud.tools</groupId>
<artifactId>jib-maven-plugin</artifactId>
<version>${jib-maven-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/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>
<!-- 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>
<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>
1
https://gitee.com/lewis_2010/flowable-engine.git
git@gitee.com:lewis_2010/flowable-engine.git
lewis_2010
flowable-engine
flowable-engine
master

搜索帮助