Compare commits

..

1 Commits

Author SHA1 Message Date
e33ae887bd Merge branch 'develop-aps22' into stable-aps22 2022-10-03 11:28:48 -04:00

50
pom.xml
View File

@@ -3,19 +3,13 @@
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> 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> <modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.activiti</groupId>
<artifactId>activiti-app-root</artifactId>
<version>2.4.6</version>
</parent>
<groupId>com.inteligr8.activiti</groupId> <groupId>com.inteligr8.activiti</groupId>
<artifactId>cxf-activiti-ext</artifactId> <artifactId>cxf-activiti-ext</artifactId>
<version>1.2.0-aps-v2.4.6</version> <version>1.1.0-aps22</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<name>CXF-based JAX-RS &amp; JAX-WS enablement for APS App</name> <name>CXF-based JAX-RS &amp; 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> <description>An Alfresco Process Service App v2.2.x extension providing the missing components for JAX-RS-based client libraries.</description>
<url>https://bitbucket.org/inteligr8/cxf-activiti-ext</url> <url>https://bitbucket.org/inteligr8/cxf-activiti-ext</url>
<licenses> <licenses>
@@ -48,7 +42,9 @@
<maven.compiler.source>11</maven.compiler.source> <maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target> <maven.compiler.target>11</maven.compiler.target>
<license.skip>true</license.skip> <aps.cxf.version>3.5.0</aps.cxf.version>
<aps.spring.version>5.3.15</aps.spring.version>
<aps.jackson.version>2.13.1</aps.jackson.version>
</properties> </properties>
<dependencyManagement> <dependencyManagement>
@@ -138,7 +134,6 @@
<artifactId>jackson-dataformat-yaml</artifactId> <artifactId>jackson-dataformat-yaml</artifactId>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>
<dependency> <dependency>
<groupId>joda-time</groupId> <groupId>joda-time</groupId>
<artifactId>joda-time</artifactId> <artifactId>joda-time</artifactId>
@@ -163,7 +158,7 @@
<!-- ******************** --> <!-- ******************** -->
<!-- APS v2.x specific --> <!-- APS v2.x specific -->
<!-- APS/Chemistry provided libraries --> <!-- APS provided libraries -->
<dependency> <dependency>
<groupId>org.apache.cxf</groupId> <groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId> <artifactId>cxf-rt-transports-http</artifactId>
@@ -215,36 +210,30 @@
</dependencyManagement> </dependencyManagement>
<dependencies> <dependencies>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${spring.version}</version>
</dependency>
<!-- Package CXF JAX-RS support -->
<dependency> <dependency>
<groupId>org.apache.cxf</groupId> <groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-rs-client</artifactId> <artifactId>cxf-rt-rs-client</artifactId>
<version>${cxf.version}</version> <version>${aps.cxf.version}</version>
<scope>runtime</scope>
</dependency> </dependency>
<!-- Package JackSON JAX-RS support -->
<dependency> <dependency>
<groupId>com.fasterxml.jackson.jaxrs</groupId> <groupId>com.fasterxml.jackson.jaxrs</groupId>
<artifactId>jackson-jaxrs-json-provider</artifactId> <artifactId>jackson-jaxrs-json-provider</artifactId>
<scope>runtime</scope> <version>${aps.jackson.version}</version>
</dependency> </dependency>
<!-- Package JackSON XML support -->
<dependency> <dependency>
<groupId>com.fasterxml.jackson.dataformat</groupId> <groupId>com.fasterxml.jackson.dataformat</groupId>
<artifactId>jackson-dataformat-xml</artifactId> <artifactId>jackson-dataformat-xml</artifactId>
<scope>runtime</scope> <version>${aps.jackson.version}</version>
</dependency> </dependency>
<!-- Package JackSON joda-time support -->
<dependency> <dependency>
<groupId>com.fasterxml.jackson.datatype</groupId> <groupId>com.fasterxml.jackson.datatype</groupId>
<artifactId>jackson-datatype-joda</artifactId> <artifactId>jackson-datatype-joda</artifactId>
<scope>runtime</scope> <version>${aps.jackson.version}</version>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-context</artifactId>
<version>${aps.spring.version}</version>
</dependency> </dependency>
</dependencies> </dependencies>
@@ -263,7 +252,6 @@
<phase>prepare-package</phase> <phase>prepare-package</phase>
<goals><goal>unpack-dependencies</goal></goals> <goals><goal>unpack-dependencies</goal></goals>
<configuration> <configuration>
<includeTypes>jar</includeTypes>
<includeScope>runtime</includeScope> <includeScope>runtime</includeScope>
<includes>META-INF/cxf/bus-extensions.txt</includes> <includes>META-INF/cxf/bus-extensions.txt</includes>
<useSubDirectoryPerArtifact>true</useSubDirectoryPerArtifact> <useSubDirectoryPerArtifact>true</useSubDirectoryPerArtifact>
@@ -301,6 +289,7 @@
</plugin> </plugin>
<plugin> <plugin>
<artifactId>maven-assembly-plugin</artifactId> <artifactId>maven-assembly-plugin</artifactId>
<version>3.3.0</version>
<executions> <executions>
<execution> <execution>
<id>assemble-jar</id> <id>assemble-jar</id>
@@ -423,11 +412,4 @@
</build> </build>
</profile> </profile>
</profiles> </profiles>
<repositories>
<repository>
<id>activiti-releases</id>
<url>https://artifacts.alfresco.com/nexus/content/repositories/activiti-enterprise-releases/</url>
</repository>
</repositories>
</project> </project>