|
|
|
@@ -3,20 +3,14 @@
|
|
|
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>com.activiti</groupId>
|
|
|
|
|
<artifactId>activiti-app-root</artifactId>
|
|
|
|
|
<version>2.4.1</version>
|
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<groupId>com.inteligr8.activiti</groupId>
|
|
|
|
|
<artifactId>cxf-activiti-ext</artifactId>
|
|
|
|
|
<version>1.2.0-aps-v2.4.1</version>
|
|
|
|
|
<artifactId>cxf-activiti-app-ext</artifactId>
|
|
|
|
|
<version>1.4.SNAPSHOT-aps-v24.1</version>
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
|
|
<name>CXF-based JAX-RS & JAX-WS enablement for APS App</name>
|
|
|
|
|
<description>An Alfresco Process Service App extension providing the missing components for JAX-RS-based client libraries.</description>
|
|
|
|
|
<url>https://bitbucket.org/inteligr8/cxf-activiti-ext</url>
|
|
|
|
|
<url>https://git.inteligr8.com/inteligr8/cxf-activiti-app-ext</url>
|
|
|
|
|
|
|
|
|
|
<licenses>
|
|
|
|
|
<license>
|
|
|
|
@@ -26,9 +20,9 @@
|
|
|
|
|
</licenses>
|
|
|
|
|
|
|
|
|
|
<scm>
|
|
|
|
|
<connection>scm:git:https://bitbucket.org/inteligr8/cxf-activiti-ext.git</connection>
|
|
|
|
|
<developerConnection>scm:git:git@bitbucket.org:inteligr8/cxf-activiti-ext.git</developerConnection>
|
|
|
|
|
<url>https://bitbucket.org/inteligr8/cxf-activiti-ext</url>
|
|
|
|
|
<connection>scm:git:https://git.inteligr8.com/inteligr8/cxf-activiti-app-ext.git</connection>
|
|
|
|
|
<developerConnection>scm:git:git@git.inteligr8.com:inteligr8/cxf-activiti-app-ext.git</developerConnection>
|
|
|
|
|
<url>https://git.inteligr8.com/inteligr8/cxf-activiti-app-ext</url>
|
|
|
|
|
</scm>
|
|
|
|
|
<organization>
|
|
|
|
|
<name>Inteligr8</name>
|
|
|
|
@@ -48,191 +42,47 @@
|
|
|
|
|
<maven.compiler.source>11</maven.compiler.source>
|
|
|
|
|
<maven.compiler.target>11</maven.compiler.target>
|
|
|
|
|
|
|
|
|
|
<license.skip>true</license.skip>
|
|
|
|
|
<aps.version>24.1.0</aps.version>
|
|
|
|
|
<!-- APS v24.1.0 uses CXF v3.5.5 -->
|
|
|
|
|
<cxf.version>3.5.5</cxf.version>
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
|
<!-- versions need to be explicit for central-publishing-maven-plugin -->
|
|
|
|
|
<dependencies>
|
|
|
|
|
<!-- APS provided libraries -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-context</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.sun.xml.bind</groupId>
|
|
|
|
|
<artifactId>jaxb-impl</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- All APS versions v1.11.0 and later have some incarnation of the jaxws-api library; exclude all -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.xml.ws</groupId>
|
|
|
|
|
<artifactId>jaxws-api</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>jakarta.xml.ws</groupId>
|
|
|
|
|
<artifactId>jakarta.xml.ws-api</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- All APS versions v1.11.0 and later have some incarnation of the activation library; exclude all -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.annotation</groupId>
|
|
|
|
|
<artifactId>javax.annotation-api</artifactId>
|
|
|
|
|
<scope>provided</scope> <!-- v1.11.3 and earlier; exclude in v1.11.4 and later for conflict with jakarta-annotation-api -->
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>jakarta.annotation</groupId>
|
|
|
|
|
<artifactId>jakarta.annotation-api</artifactId>
|
|
|
|
|
<scope>provided</scope> <!-- v1.11.4 and later; exclude in v1.11.3 and earlier for conflict with annotation-api -->
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- All APS versions v1.11.0 and later have some incarnation of the activation library; exclude all -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.activation</groupId>
|
|
|
|
|
<artifactId>activation</artifactId>
|
|
|
|
|
<scope>provided</scope> <!-- v1.11.0 and earlier; exclude in v1.11.1 and later for conflict with jakarta-activation-api -->
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.sun.activation</groupId>
|
|
|
|
|
<artifactId>javax.activation</artifactId>
|
|
|
|
|
<scope>provided</scope> <!-- v1.11.3 and later; exclude in v1.11.2 and earlier for conflict with activation -->
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>jakarta.activation</groupId>
|
|
|
|
|
<artifactId>jakarta.activation-api</artifactId>
|
|
|
|
|
<scope>provided</scope> <!-- v1.11.1 and later; exclude in v1.11.2 and earlier for conflict with activation -->
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- All APS versions v1.11.0 and later have some incarnation of the jaxb-api library; exclude all -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>javax.xml.bind</groupId>
|
|
|
|
|
<artifactId>jaxb-api</artifactId>
|
|
|
|
|
<scope>provided</scope> <!-- v1.11.0 and earlier; exclude in v1.11.1 and alter for conflict with jakarta.xml.bind-api -->
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>jakarta.xml.bind</groupId>
|
|
|
|
|
<artifactId>jakarta.xml.bind-api</artifactId>
|
|
|
|
|
<scope>provided</scope> <!-- v1.11.3 and later; exclude in v1.11.2 and earlier for conflict with jaxb-api -->
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
<artifactId>jackson-core</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
|
<artifactId>jackson-annotations</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
|
|
|
|
<artifactId>jackson-dataformat-yaml</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>joda-time</groupId>
|
|
|
|
|
<artifactId>joda-time</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.codehaus.woodstox</groupId>
|
|
|
|
|
<artifactId>stax2-api</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.codehaus.woodstox</groupId>
|
|
|
|
|
<artifactId>woodstox-core-asl</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.ws.xmlschema</groupId>
|
|
|
|
|
<artifactId>xmlschema-core</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- ******************** -->
|
|
|
|
|
<!-- APS v2.x specific -->
|
|
|
|
|
|
|
|
|
|
<!-- APS/Chemistry provided libraries -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.cxf</groupId>
|
|
|
|
|
<artifactId>cxf-rt-transports-http</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
<groupId>com.activiti</groupId>
|
|
|
|
|
<artifactId>activiti-app-root</artifactId>
|
|
|
|
|
<version>${aps.version}</version>
|
|
|
|
|
<type>pom</type>
|
|
|
|
|
<scope>import</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.cxf</groupId>
|
|
|
|
|
<artifactId>cxf-core</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- APS v1.11.3 and later provided libraries -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.jboss.spec.javax.rmi</groupId>
|
|
|
|
|
<artifactId>jboss-rmi-api_1.0_spec</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
<artifactId>cxf-bom</artifactId>
|
|
|
|
|
<version>${cxf.version}</version>
|
|
|
|
|
<type>pom</type>
|
|
|
|
|
<scope>import</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.woodstox</groupId>
|
|
|
|
|
<artifactId>woodstox-core</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.geronimo.specs</groupId>
|
|
|
|
|
<artifactId>geronimo-jta_1.1_spec</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.sun.xml.messaging.saaj</groupId>
|
|
|
|
|
<artifactId>saaj-impl</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>jakarta.jws</groupId>
|
|
|
|
|
<artifactId>jakarta.jws-api</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>jakarta.xml.soap</groupId>
|
|
|
|
|
<artifactId>jakarta.xml.soap-api</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.sun.activation</groupId>
|
|
|
|
|
<artifactId>jakarta.activation</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
<groupId>com.activiti</groupId>
|
|
|
|
|
<artifactId>activiti-app</artifactId>
|
|
|
|
|
<version>${aps.version}</version>
|
|
|
|
|
<classifier>classes</classifier>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
</dependencyManagement>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-context</artifactId>
|
|
|
|
|
<version>${spring.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- Package CXF JAX-RS support -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.cxf</groupId>
|
|
|
|
|
<artifactId>cxf-rt-rs-client</artifactId>
|
|
|
|
|
<version>${cxf.version}</version>
|
|
|
|
|
<scope>runtime</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- Package JackSON JAX-RS support -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.fasterxml.jackson.jaxrs</groupId>
|
|
|
|
|
<artifactId>jackson-jaxrs-json-provider</artifactId>
|
|
|
|
|
<scope>runtime</scope>
|
|
|
|
|
<groupId>com.fasterxml.jackson.jakarta.rs</groupId>
|
|
|
|
|
<artifactId>jackson-jakarta-rs-json-provider</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<!-- Package JackSON XML support -->
|
|
|
|
|
<dependency>
|
|
|
|
@@ -246,6 +96,25 @@
|
|
|
|
|
<artifactId>jackson-datatype-joda</artifactId>
|
|
|
|
|
<scope>runtime</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- Provided by APS -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.activiti</groupId>
|
|
|
|
|
<artifactId>activiti-app</artifactId>
|
|
|
|
|
<classifier>classes</classifier>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<!-- not needed here and requires a separate repository in APS v24.1.0 -->
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-email2-core</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-email2-jakarta</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
@@ -258,6 +127,14 @@
|
|
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>copy-deps</id>
|
|
|
|
|
<phase>prepare-package</phase>
|
|
|
|
|
<goals><goal>copy-dependencies</goal></goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<includeScope>runtime</includeScope>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>unpack-bus-extensions</id>
|
|
|
|
|
<phase>prepare-package</phase>
|
|
|
|
@@ -276,7 +153,7 @@
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>com.inteligr8</groupId>
|
|
|
|
|
<artifactId>merge-maven-plugin</artifactId>
|
|
|
|
|
<version>1.0.0</version>
|
|
|
|
|
<version>1.0.1</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>merge-bus-extensions</id>
|
|
|
|
@@ -300,16 +177,29 @@
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-assembly-plugin</artifactId>
|
|
|
|
|
<artifactId>maven-shade-plugin</artifactId>
|
|
|
|
|
<version>3.6.2</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>assemble-jar</id>
|
|
|
|
|
<id>shade-jar</id>
|
|
|
|
|
<phase>package</phase>
|
|
|
|
|
<goals><goal>single</goal></goals>
|
|
|
|
|
<goals><goal>shade</goal></goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<descriptorRefs>
|
|
|
|
|
<descriptorRef>jar-with-dependencies</descriptorRef>
|
|
|
|
|
</descriptorRefs>
|
|
|
|
|
<shadedArtifactAttached>true</shadedArtifactAttached>
|
|
|
|
|
<transformers>
|
|
|
|
|
<transformer implementation="org.apache.maven.plugins.shade.resource.ApacheLicenseResourceTransformer" />
|
|
|
|
|
<transformer implementation="org.apache.maven.plugins.shade.resource.ApacheNoticeResourceTransformer">
|
|
|
|
|
<addHeader>false</addHeader>
|
|
|
|
|
</transformer>
|
|
|
|
|
<transformer implementation="org.apache.maven.plugins.shade.resource.ServicesResourceTransformer" />
|
|
|
|
|
<transformer implementation="org.apache.maven.plugins.shade.resource.DontIncludeResourceTransformer">
|
|
|
|
|
<resources>
|
|
|
|
|
<resource>.handlers</resource>
|
|
|
|
|
<resource>.schemas</resource>
|
|
|
|
|
<resource>DEPENDENCIES</resource>
|
|
|
|
|
</resources>
|
|
|
|
|
</transformer>
|
|
|
|
|
</transformers>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
@@ -329,7 +219,7 @@
|
|
|
|
|
<includes>
|
|
|
|
|
<include>META-INF/cxf/bus-extensions.txt</include>
|
|
|
|
|
</includes>
|
|
|
|
|
<outputDirectory>${project.build.directory}/${project.build.finalName}-jar-with-dependencies.jar</outputDirectory>
|
|
|
|
|
<outputDirectory>${project.build.directory}/${project.build.finalName}-shaded.jar</outputDirectory>
|
|
|
|
|
</fileset>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
@@ -338,12 +228,12 @@
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>io.repaint.maven</groupId>
|
|
|
|
|
<artifactId>tiles-maven-plugin</artifactId>
|
|
|
|
|
<version>2.21</version>
|
|
|
|
|
<version>2.44</version>
|
|
|
|
|
<extensions>true</extensions>
|
|
|
|
|
<configuration>
|
|
|
|
|
<tiles>
|
|
|
|
|
<!-- Documentation: https://bitbucket.org/inteligr8/ootbee-beedk/src/stable/beedk-aps-ext-rad-tile -->
|
|
|
|
|
<tile>com.inteligr8.ootbee:beedk-aps-ext-rad-tile:[1.0.3,2.0.0)</tile>
|
|
|
|
|
<tile>com.inteligr8.ootbee:beedk-aps-ext-rad-tile:[1.1.18,2.0.0)</tile>
|
|
|
|
|
</tiles>
|
|
|
|
|
</configuration>
|
|
|
|
|
</plugin>
|
|
|
|
@@ -363,35 +253,12 @@
|
|
|
|
|
</properties>
|
|
|
|
|
</profile>
|
|
|
|
|
<profile>
|
|
|
|
|
<id>ossrh-release</id>
|
|
|
|
|
<id>central-publish</id>
|
|
|
|
|
<properties>
|
|
|
|
|
<maven.deploy.skip>true</maven.deploy.skip>
|
|
|
|
|
</properties>
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>source</id>
|
|
|
|
|
<phase>package</phase>
|
|
|
|
|
<goals><goal>jar-no-fork</goal></goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>javadoc</id>
|
|
|
|
|
<phase>package</phase>
|
|
|
|
|
<goals><goal>jar</goal></goals>
|
|
|
|
|
<configuration>
|
|
|
|
|
<show>public</show>
|
|
|
|
|
</configuration>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
|
|
|
<executions>
|
|
|
|
@@ -403,19 +270,20 @@
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<groupId>org.sonatype.plugins</groupId>
|
|
|
|
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
|
|
|
|
<version>1.6.13</version>
|
|
|
|
|
<groupId>org.sonatype.central</groupId>
|
|
|
|
|
<artifactId>central-publishing-maven-plugin</artifactId>
|
|
|
|
|
<version>0.8.0</version>
|
|
|
|
|
<extensions>true</extensions>
|
|
|
|
|
<configuration>
|
|
|
|
|
<serverId>ossrh</serverId>
|
|
|
|
|
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
|
|
|
|
|
<autoReleaseAfterClose>true</autoReleaseAfterClose>
|
|
|
|
|
<publishingServerId>central</publishingServerId>
|
|
|
|
|
<autoPublish>true</autoPublish>
|
|
|
|
|
</configuration>
|
|
|
|
|
<!-- for some reason this is required... -->
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>ossrh-deploy</id>
|
|
|
|
|
<id>deploy</id>
|
|
|
|
|
<phase>deploy</phase>
|
|
|
|
|
<goals><goal>deploy</goal></goals>
|
|
|
|
|
<goals><goal>publish</goal></goals>
|
|
|
|
|
</execution>
|
|
|
|
|
</executions>
|
|
|
|
|
</plugin>
|
|
|
|
@@ -426,7 +294,7 @@
|
|
|
|
|
|
|
|
|
|
<repositories>
|
|
|
|
|
<repository>
|
|
|
|
|
<id>activiti-releases</id>
|
|
|
|
|
<id>activiti-enterprise-releases</id>
|
|
|
|
|
<url>https://artifacts.alfresco.com/nexus/content/repositories/activiti-enterprise-releases/</url>
|
|
|
|
|
</repository>
|
|
|
|
|
</repositories>
|
|
|
|
|