|
|
|
@@ -11,7 +11,7 @@
|
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<artifactId>mq-activiti-ext</artifactId>
|
|
|
|
|
<version>1.0.9</version>
|
|
|
|
|
<version>1.0.11</version>
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
|
|
<name>MQ Activiti Extension</name>
|
|
|
|
@@ -23,18 +23,18 @@
|
|
|
|
|
<maven.compiler.release>11</maven.compiler.release>
|
|
|
|
|
|
|
|
|
|
<aps.docker-tag>docker.inteligr8.com/inteligr8/alfresco-process-services</aps.docker-tag>
|
|
|
|
|
<aps.version>2.4.6</aps.version>
|
|
|
|
|
<spring.version>5.3.31</spring.version>
|
|
|
|
|
<activiti.version>7.11.1</activiti.version>
|
|
|
|
|
<tomcat-rad.version>9-2.2</tomcat-rad.version>
|
|
|
|
|
<aps.version>25.1.1</aps.version>
|
|
|
|
|
<spring.version>6.2.5</spring.version>
|
|
|
|
|
<activiti.version>8.1.3</activiti.version>
|
|
|
|
|
<tomcat-rad.version>10-2.2</tomcat-rad.version>
|
|
|
|
|
<aps.tomcat.opts>-Dinteligr8.mq.connectors.docker-mq.url=failover:\(tcp://${project.artifactId}-mq:61616\)?timeout=3000 -Dinteligr8.mq.connectors.docker-mq.username=admin -Dinteligr8.mq.connectors.docker-mq.password=admin -Dvalidator.editor.dmn.espression=false -Dvalidator.editor.bpmn.disable.scripttask=false -Djavascript.secure-scripting.enabled=false -Djavascript.secure-scripting.enable-class-whitelisting=false -Dbeans.whitelisting.enabled=false -Del.whitelisting.enabled=false -Dshell.whitelisting.enabled=false</aps.tomcat.opts>
|
|
|
|
|
|
|
|
|
|
<!-- reloads in APS are slower than a restart -->
|
|
|
|
|
<aps.hotswap.enabled>false</aps.hotswap.enabled>
|
|
|
|
|
|
|
|
|
|
<rabbitmq.version>5.18.0</rabbitmq.version>
|
|
|
|
|
<activemq.version>5.18.6</activemq.version>
|
|
|
|
|
<activemq.jms.version>2.31.2</activemq.jms.version>
|
|
|
|
|
<activemq.version>5.18.7</activemq.version>
|
|
|
|
|
<activemq.jms.version>2.42.0</activemq.jms.version>
|
|
|
|
|
<activemq.httpPort>8161</activemq.httpPort>
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
@@ -140,6 +140,7 @@
|
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
|
|
|
|
<version>5.10.5</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
@@ -189,16 +190,6 @@
|
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
|
<version>3.7.1</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>assemble-jar</id>
|
|
|
|
|
<phase>package</phase>
|
|
|
|
|
<goals><goal>single</goal></goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<descriptorRefs>
|
|
|
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
|
|
|
</descriptorRefs>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>package-stencil</id>
|
|
|
|
|
<phase>package</phase>
|
|
|
|
@@ -223,6 +214,34 @@
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
|
<version>3.6.0</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>shade-deps</id>
|
|
|
|
|
<phase>package</phase>
|
|
|
|
|
<goals><goal>shade</goal></goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<shadedArtifactAttached>true</shadedArtifactAttached>
|
|
|
|
|
<relocations>
|
|
|
|
|
<relocation>
|
|
|
|
|
<shadedPattern>shaded.mq.</shadedPattern>
|
|
|
|
|
<excludes>
|
|
|
|
|
<!-- anything in the root directory of a JAR -->
|
|
|
|
|
<exclude>*</exclude>
|
|
|
|
|
<!-- anything in the META-INF directory of a JAR -->
|
|
|
|
|
<exclude>META-INF/**</exclude>
|
|
|
|
|
<!-- anything developed in this extension -->
|
|
|
|
|
<exclude>com.activiti.extension.**</exclude>
|
|
|
|
|
<exclude>com.inteligr8.activiti.mq.**</exclude>
|
|
|
|
|
</excludes>
|
|
|
|
|
</relocation>
|
|
|
|
|
</relocations>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-failsafe-plugin</artifactId>
|
|
|
|
|
<configuration>
|
|
|
|
|