Compare commits
29 Commits
v1.2.0-acs
...
stable
Author | SHA1 | Date | |
---|---|---|---|
f3d0a81fc4 | |||
23b3fa4203 | |||
f9b570b23a | |||
a562b7882f | |||
73d1fabc41 | |||
bee0a4d17f | |||
426a39043b | |||
3e189b31d5 | |||
7b762e6c78 | |||
7ada19b8b5 | |||
6215ebe293 | |||
a5aa27f9e9 | |||
a346feb9b4 | |||
af409830ba | |||
5ee9c00456 | |||
35ac812899 | |||
771ba441f9 | |||
975eef5609 | |||
dece3300ce | |||
986427ddf2 | |||
49e3867bec | |||
9edea7fbac | |||
f6d395e5ae | |||
5a04b98679 | |||
13ee8c0d8f | |||
8dd0f9a8a1 | |||
c266c470f2 | |||
5a2b9e4b05 | |||
d7861ef90b |
61
pom.xml
61
pom.xml
@@ -7,17 +7,17 @@
|
||||
<parent>
|
||||
<groupId>org.alfresco</groupId>
|
||||
<artifactId>acs-community-packaging</artifactId>
|
||||
<version>7.2.1</version>
|
||||
<version>25.2.0</version>
|
||||
<relativePath></relativePath>
|
||||
</parent>
|
||||
|
||||
<groupId>com.inteligr8.alfresco</groupId>
|
||||
<artifactId>cxf-jaxrs-platform-module</artifactId>
|
||||
<version>1.2.0-acs-v${acs.version.major}.${acs.version.minor}.${acs.version.revision}</version>
|
||||
<version>1.4.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 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>
|
||||
<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>
|
||||
@@ -52,6 +52,7 @@
|
||||
<maven.compiler.release>11</maven.compiler.release>
|
||||
|
||||
<alfresco.sdk.version>5.2.0</alfresco.sdk.version>
|
||||
<common-rest-client.version>3.0.3-cxf</common-rest-client.version>
|
||||
<unimportant.version>[1.0.0,)</unimportant.version>
|
||||
</properties>
|
||||
|
||||
@@ -66,6 +67,7 @@
|
||||
</dependency>
|
||||
|
||||
<!-- Provided by ACS -->
|
||||
<!-- versions need to be explicit for central-publishing-maven-plugin -->
|
||||
<dependency>
|
||||
<groupId>org.apache.cxf</groupId>
|
||||
<artifactId>cxf-core</artifactId>
|
||||
@@ -75,11 +77,13 @@
|
||||
<dependency>
|
||||
<groupId>org.apache.cxf</groupId>
|
||||
<artifactId>cxf-rt-transports-http</artifactId>
|
||||
<version>${dependency.cxf.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.module</groupId>
|
||||
<artifactId>jackson-module-jaxb-annotations</artifactId>
|
||||
<version>${dependency.jackson.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
@@ -97,16 +101,26 @@
|
||||
<dependency>
|
||||
<groupId>jakarta.jws</groupId>
|
||||
<artifactId>jakarta.jws-api</artifactId>
|
||||
<version>${dependency.jakarta-jws-api.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>jakarta.ws.rs</groupId>
|
||||
<artifactId>jakarta.ws.rs-api</artifactId>
|
||||
<!-- unimportant.version tries to download a milestone release that doesn't exist -->
|
||||
<version>4.0.0</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.sun.activation</groupId>
|
||||
<artifactId>jakarta.activation</artifactId>
|
||||
<version>${dependency.jakarta-ee-activation.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>jakarta.annotation</groupId>
|
||||
<artifactId>jakarta.annotation-api</artifactId>
|
||||
<version>${dependency.jakarta-annotation-api.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
@@ -126,17 +140,25 @@
|
||||
<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>
|
||||
|
||||
<!-- Included in ACS v25.x+ -->
|
||||
<dependency>
|
||||
<groupId>com.fasterxml.jackson.jakarta.rs</groupId>
|
||||
<artifactId>jackson-jakarta-rs-json-provider</artifactId>
|
||||
<version>${dependency.jackson.version}</version>
|
||||
<scope>provided</scope>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.inteligr8</groupId>
|
||||
<artifactId>common-rest-client</artifactId>
|
||||
<version>${common-rest-client.version}</version>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
||||
<build>
|
||||
@@ -144,7 +166,7 @@
|
||||
<plugin>
|
||||
<groupId>io.repaint.maven</groupId>
|
||||
<artifactId>tiles-maven-plugin</artifactId>
|
||||
<version>2.20</version>
|
||||
<version>2.40</version>
|
||||
<extensions>true</extensions>
|
||||
<configuration>
|
||||
<tiles>
|
||||
@@ -173,7 +195,7 @@
|
||||
</properties>
|
||||
</profile>
|
||||
<profile>
|
||||
<id>ossrh-release</id>
|
||||
<id>central-publish</id>
|
||||
<properties>
|
||||
<maven.deploy.skip>true</maven.deploy.skip>
|
||||
</properties>
|
||||
@@ -190,19 +212,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>
|
||||
|
Reference in New Issue
Block a user