Compare commits

...

13 Commits

Author SHA1 Message Date
8dd0f9a8a1 ACS v7.4.1 pom 2023-08-17 18:08:40 -04:00
c266c470f2 ACS v7.4.0 pom 2023-06-13 12:45:18 -04:00
5a2b9e4b05 ACS v7.3.1 2023-06-13 12:38:33 -04:00
d7861ef90b ACS v7.3.0 2023-06-13 12:22:01 -04:00
cbda8a71b3 v1.2.0-acs-v7.2.1 pom 2023-06-13 12:14:06 -04:00
cdd2640e04 dynamic project desc 2023-06-13 12:13:00 -04:00
746543a3d3 removed specifics from develop branch 2023-06-13 12:07:29 -04:00
860ddc2185 refactored POM for better version matching 2023-06-13 12:06:35 -04:00
5954c6f379 Merge branch 'develop-acs72' into stable-acs72 2022-10-02 17:28:41 -04:00
7212777cae Merge branch 'stable-acs71' into stable-acs72 2022-10-02 17:28:36 -04:00
7a6ff7374b updated project desc 2022-10-02 17:26:19 -04:00
a8e997920d Merge branch 'develop-acs71' into develop-acs72 2022-10-02 17:25:48 -04:00
4c30132ac7 POM to acs72 2022-10-02 17:22:15 -04:00

136
pom.xml
View File

@@ -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>7.4.1</version>
<relativePath></relativePath>
</parent>
<groupId>com.inteligr8.alfresco</groupId>
<artifactId>cxf-jaxrs-platform-module</artifactId>
<version>1.1.0-acs71</version>
<version>1.2.0-acs-v${acs.version.major}.${acs.version.minor}.${acs.version.revision}</version>
<packaging>jar</packaging>
<name>CXF-based JAX-RS enablement for ACS Platform Module</name>
<description>An Alfresco Content Service v7.1.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}.${acs.version.revision}.</description>
<url>https://bitbucket.org/inteligr8/cxf-jaxrs-platform-module</url>
<licenses>
@@ -44,12 +51,8 @@
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.release>11</maven.compiler.release>
<alfresco.sdk.version>5.1.0</alfresco.sdk.version>
<alfresco.platform.version>7.1.0</alfresco.platform.version>
<cxf.version>3.4.4</cxf.version>
<jackson.version>2.12.3</jackson.version>
<alfresco.sdk.version>5.2.0</alfresco.sdk.version>
<unimportant.version>[1.0.0,)</unimportant.version>
</properties>
<dependencyManagement>
@@ -57,10 +60,55 @@
<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>
<!-- Provided by ACS -->
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-core</artifactId>
<version>${dependency.cxf.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<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>
<version>${unimportant.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-jta_1.1_spec</artifactId>
<version>${unimportant.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>jakarta.jws</groupId>
<artifactId>jakarta.jws-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.sun.activation</groupId>
<artifactId>jakarta.activation</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>jakarta.annotation</groupId>
<artifactId>jakarta.annotation-api</artifactId>
<scope>provided</scope>
</dependency>
</dependencies>
</dependencyManagement>
@@ -69,7 +117,7 @@
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
(2) Prevent projects depending on this project from including these duplicate libraries
-->
<dependency>
@@ -81,79 +129,13 @@
<dependency>
<groupId>com.fasterxml.jackson.jaxrs</groupId>
<artifactId>jackson-jaxrs-json-provider</artifactId>
<version>${jackson.version}</version>
<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-frontend-jaxrs</artifactId>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-core</artifactId>
<version>${cxf.version}</version> <!-- version is unused/unimportant, but we already have it defined -->
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.cxf</groupId>
<artifactId>cxf-rt-transports-http</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.sun.xml.messaging.saaj</groupId>
<artifactId>saaj-impl</artifactId>
<version>${unimportant.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.apache.geronimo.specs</groupId>
<artifactId>geronimo-jta_1.1_spec</artifactId>
<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>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.sun.activation</groupId>
<artifactId>jakarta.activation</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>jakarta.annotation</groupId>
<artifactId>jakarta.annotation-api</artifactId>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>org.jboss.spec.javax.rmi</groupId>
<artifactId>jboss-rmi-api_1.0_spec</artifactId>
<version>${unimportant.version}</version>
<scope>provided</scope>
<artifactId>cxf-rt-rs-client</artifactId>
</dependency>
</dependencies>