Compare commits
17 Commits
develop-ac
...
v1.2.0-acs
Author | SHA1 | Date | |
---|---|---|---|
f6d395e5ae | |||
5a04b98679 | |||
13ee8c0d8f | |||
8dd0f9a8a1 | |||
c266c470f2 | |||
5a2b9e4b05 | |||
d7861ef90b | |||
cbda8a71b3 | |||
cdd2640e04 | |||
746543a3d3 | |||
860ddc2185 | |||
5954c6f379 | |||
7212777cae | |||
72c45ca0b0 | |||
4d4220ff09 | |||
3216ba5f09 | |||
1d72832218 |
102
pom.xml
102
pom.xml
@@ -4,13 +4,20 @@
|
||||
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>org.alfresco</groupId>
|
||||
<artifactId>acs-community-packaging</artifactId>
|
||||
<version>23.2.1</version>
|
||||
<relativePath></relativePath>
|
||||
</parent>
|
||||
|
||||
<groupId>com.inteligr8.alfresco</groupId>
|
||||
<artifactId>cxf-jaxrs-platform-module</artifactId>
|
||||
<version>1.1-SNAPSHOT-acs72</version>
|
||||
<version>1.2.0-acs-v${acs.version.major}.${acs.version.minor}</version>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<name>CXF-based JAX-RS enablement for ACS Platform Module</name>
|
||||
<description>An Alfresco Content Service v7.2.x module providing the missing components for JAX-RS-based client libraries.</description>
|
||||
<description>An Alfresco Content Service Platform module providing the missing components for JAX-RS-based client libraries in ACS v${acs.version.major}.${acs.version.minor}.</description>
|
||||
<url>https://bitbucket.org/inteligr8/cxf-jaxrs-platform-module</url>
|
||||
|
||||
<licenses>
|
||||
@@ -45,11 +52,7 @@
|
||||
<maven.compiler.release>11</maven.compiler.release>
|
||||
|
||||
<alfresco.sdk.version>5.2.0</alfresco.sdk.version>
|
||||
<alfresco.platform.version>7.2.0</alfresco.platform.version>
|
||||
<cxf.version>3.5.0</cxf.version>
|
||||
<jackson.version>2.13.1</jackson.version>
|
||||
<unimportant.version>[1.0.0,)</unimportant.version>
|
||||
|
||||
</properties>
|
||||
|
||||
<dependencyManagement>
|
||||
@@ -57,43 +60,16 @@
|
||||
<dependency>
|
||||
<groupId>org.alfresco</groupId>
|
||||
<artifactId>acs-community-packaging</artifactId>
|
||||
<version>${alfresco.platform.version}</version>
|
||||
<version>${acs.version.major}.${acs.version.minor}.${acs.version.revision}</version>
|
||||
<type>pom</type>
|
||||
<scope>import</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
||||
<dependencies>
|
||||
<!--
|
||||
All 'provided' dependencies are already provided by ACS OOTB
|
||||
They are declared here for one of two reasons:
|
||||
(1) Prevent dependencies of other non-provided depenencies from being included
|
||||
(2) Prevent projects depending on this project from including these dupilcate libraries
|
||||
-->
|
||||
|
||||
<dependency>
|
||||
<groupId>org.alfresco</groupId>
|
||||
<artifactId>alfresco-repository</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.jaxrs</groupId>
|
||||
<artifactId>jackson-jaxrs-json-provider</artifactId>
|
||||
<version>${jackson.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- Version managed by acs-community-packaging, yet not included by ACS -->
|
||||
<dependency>
|
||||
<groupId>org.apache.cxf</groupId>
|
||||
<artifactId>cxf-rt-frontend-jaxrs</artifactId>
|
||||
</dependency>
|
||||
|
||||
<!-- Provided by ACS -->
|
||||
<dependency>
|
||||
<groupId>org.apache.cxf</groupId>
|
||||
<artifactId>cxf-core</artifactId>
|
||||
<version>${cxf.version}</version> <!-- version is unused/unimportant, but we already have it defined -->
|
||||
<version>${dependency.cxf.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
@@ -101,6 +77,11 @@
|
||||
<artifactId>cxf-rt-transports-http</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.module</groupId>
|
||||
<artifactId>jackson-module-jaxb-annotations</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.sun.xml.messaging.saaj</groupId>
|
||||
<artifactId>saaj-impl</artifactId>
|
||||
@@ -113,27 +94,6 @@
|
||||
<version>${unimportant.version}</version>
|
||||
<scope>provided</scope>
|
||||
</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.module</groupId>
|
||||
<artifactId>jackson-module-jaxb-annotations</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>jakarta.jws</groupId>
|
||||
<artifactId>jakarta.jws-api</artifactId>
|
||||
@@ -150,6 +110,34 @@
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
</dependencyManagement>
|
||||
|
||||
<dependencies>
|
||||
<!--
|
||||
All 'provided' dependencies are already provided by ACS OOTB
|
||||
They are declared here for one of two reasons:
|
||||
(1) Prevent dependencies of other non-provided depenencies from being included
|
||||
(2) Prevent projects depending on this project from including these duplicate libraries
|
||||
-->
|
||||
|
||||
<dependency>
|
||||
<groupId>org.alfresco</groupId>
|
||||
<artifactId>alfresco-repository</artifactId>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.jaxrs</groupId>
|
||||
<artifactId>jackson-jaxrs-json-provider</artifactId>
|
||||
<version>${dependency.jackson.version}</version>
|
||||
</dependency>
|
||||
|
||||
<!-- Version managed by acs-community-packaging, yet not included by ACS -->
|
||||
<dependency>
|
||||
<groupId>org.apache.cxf</groupId>
|
||||
<artifactId>cxf-rt-rs-client</artifactId>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
<plugins>
|
||||
|
Reference in New Issue
Block a user