Compare commits
24 Commits
stable-aps
...
v1.2.0-aps
Author | SHA1 | Date | |
---|---|---|---|
6bb0e73484 | |||
cfa4a4305e | |||
c9ffc904fc | |||
81397bc424 | |||
5ddd45e87e | |||
5d6f5462a3 | |||
bb4aa1e61e | |||
fe9d3b2216 | |||
6b6f6e587f | |||
655bb31c7a | |||
b8995ea5ed | |||
aaf65b36af | |||
1c58257908 | |||
fa2573b91d | |||
d1159157e3 | |||
63cc84651e | |||
1bc21bd57c | |||
732f802e30 | |||
267c413907 | |||
bb4a199c28 | |||
c2cbcc330a | |||
6775ef724b | |||
1a0236bf9c | |||
60c89853de |
50
pom.xml
50
pom.xml
@@ -3,13 +3,19 @@
|
||||
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.3</version>
|
||||
</parent>
|
||||
|
||||
<groupId>com.inteligr8.activiti</groupId>
|
||||
<artifactId>cxf-activiti-ext</artifactId>
|
||||
<version>1.1.0-aps20</version>
|
||||
<version>1.2.0-aps-v2.4.3</version>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<name>CXF-based JAX-RS & JAX-WS enablement for APS App</name>
|
||||
<description>An Alfresco Process Service App v2.0.x extension providing the missing components for JAX-RS-based client libraries.</description>
|
||||
<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>
|
||||
|
||||
<licenses>
|
||||
@@ -42,9 +48,7 @@
|
||||
<maven.compiler.source>11</maven.compiler.source>
|
||||
<maven.compiler.target>11</maven.compiler.target>
|
||||
|
||||
<aps.cxf.version>3.4.4</aps.cxf.version>
|
||||
<aps.spring.version>5.3.9</aps.spring.version>
|
||||
<aps.jackson.version>2.12.4</aps.jackson.version>
|
||||
<license.skip>true</license.skip>
|
||||
</properties>
|
||||
|
||||
<dependencyManagement>
|
||||
@@ -134,6 +138,7 @@
|
||||
<artifactId>jackson-dataformat-yaml</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>joda-time</groupId>
|
||||
<artifactId>joda-time</artifactId>
|
||||
@@ -158,7 +163,7 @@
|
||||
<!-- ******************** -->
|
||||
<!-- APS v2.x specific -->
|
||||
|
||||
<!-- APS provided libraries -->
|
||||
<!-- APS/Chemistry provided libraries -->
|
||||
<dependency>
|
||||
<groupId>org.apache.cxf</groupId>
|
||||
<artifactId>cxf-rt-transports-http</artifactId>
|
||||
@@ -210,30 +215,36 @@
|
||||
</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>${aps.cxf.version}</version>
|
||||
<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>
|
||||
<version>${aps.jackson.version}</version>
|
||||
<scope>runtime</scope>
|
||||
</dependency>
|
||||
<!-- Package JackSON XML support -->
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
||||
<artifactId>jackson-dataformat-xml</artifactId>
|
||||
<version>${aps.jackson.version}</version>
|
||||
<scope>runtime</scope>
|
||||
</dependency>
|
||||
<!-- Package JackSON joda-time support -->
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.datatype</groupId>
|
||||
<artifactId>jackson-datatype-joda</artifactId>
|
||||
<version>${aps.jackson.version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.springframework</groupId>
|
||||
<artifactId>spring-context</artifactId>
|
||||
<version>${aps.spring.version}</version>
|
||||
<scope>runtime</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
@@ -252,6 +263,7 @@
|
||||
<phase>prepare-package</phase>
|
||||
<goals><goal>unpack-dependencies</goal></goals>
|
||||
<configuration>
|
||||
<includeTypes>jar</includeTypes>
|
||||
<includeScope>runtime</includeScope>
|
||||
<includes>META-INF/cxf/bus-extensions.txt</includes>
|
||||
<useSubDirectoryPerArtifact>true</useSubDirectoryPerArtifact>
|
||||
@@ -289,7 +301,6 @@
|
||||
</plugin>
|
||||
<plugin>
|
||||
<artifactId>maven-assembly-plugin</artifactId>
|
||||
<version>3.3.0</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>assemble-jar</id>
|
||||
@@ -412,4 +423,11 @@
|
||||
</build>
|
||||
</profile>
|
||||
</profiles>
|
||||
|
||||
<repositories>
|
||||
<repository>
|
||||
<id>activiti-releases</id>
|
||||
<url>https://artifacts.alfresco.com/nexus/content/repositories/activiti-enterprise-releases/</url>
|
||||
</repository>
|
||||
</repositories>
|
||||
</project>
|
||||
|
Reference in New Issue
Block a user