|
|
|
@@ -6,7 +6,7 @@
|
|
|
|
|
|
|
|
|
|
<groupId>com.inteligr8.alfresco</groupId>
|
|
|
|
|
<artifactId>acs-public-rest-client</artifactId>
|
|
|
|
|
<version>2.0-SNAPSHOT</version>
|
|
|
|
|
<version>3.0-SNAPSHOT</version>
|
|
|
|
|
|
|
|
|
|
<name>Alfresco Content Services ReST API Client for Java</name>
|
|
|
|
|
<description>An ACS Client library for building REST API clients that support either the CXF and Jersey frameworks</description>
|
|
|
|
@@ -39,32 +39,34 @@
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
|
|
|
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
|
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
|
|
|
<maven.compiler.source>11</maven.compiler.source>
|
|
|
|
|
<maven.compiler.target>11</maven.compiler.target>
|
|
|
|
|
<maven.compiler.release>11</maven.compiler.release>
|
|
|
|
|
<maven.compiler.debuglevel>lines,vars,source</maven.compiler.debuglevel>
|
|
|
|
|
|
|
|
|
|
<acs.platform.tag>acs7</acs.platform.tag>
|
|
|
|
|
<acs.platform.tag>acs26</acs.platform.tag>
|
|
|
|
|
|
|
|
|
|
<junit.version>5.7.2</junit.version>
|
|
|
|
|
<spring.version>5.3.6</spring.version>
|
|
|
|
|
<!-- for testing only -->
|
|
|
|
|
<spring.version>6.2.18</spring.version>
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.inteligr8</groupId>
|
|
|
|
|
<artifactId>common-rest-client</artifactId>
|
|
|
|
|
<version>2.0.8</version>
|
|
|
|
|
<version>3.0.4</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.inteligr8.alfresco</groupId>
|
|
|
|
|
<artifactId>acs-public-rest-api</artifactId>
|
|
|
|
|
<version>2.1-SNAPSHOT-${acs.platform.tag}</version>
|
|
|
|
|
<version>3.0.2-${acs.platform.tag}</version>
|
|
|
|
|
<scope>provided</scope> <!-- explicitly, bring your own version -->
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
|
<artifactId>junit-jupiter-api</artifactId>
|
|
|
|
|
<version>${junit.version}</version>
|
|
|
|
|
<version>5.14.3</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
@@ -82,41 +84,29 @@
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
|
<artifactId>log4j-slf4j-impl</artifactId>
|
|
|
|
|
<version>2.19.0</version>
|
|
|
|
|
<version>2.25.4</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
<build>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
|
<version>3.1.0</version>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
|
|
|
|
<version>${junit.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-failsafe-plugin</artifactId>
|
|
|
|
|
<version>3.1.0</version>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.junit.jupiter</groupId>
|
|
|
|
|
<artifactId>junit-jupiter-engine</artifactId>
|
|
|
|
|
<version>${junit.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
<pluginManagement>
|
|
|
|
|
<plugins>
|
|
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
|
<version>3.5.5</version>
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-failsafe-plugin</artifactId>
|
|
|
|
|
<version>3.5.5</version>
|
|
|
|
|
</plugin>
|
|
|
|
|
</plugins>
|
|
|
|
|
</pluginManagement>
|
|
|
|
|
</build>
|
|
|
|
|
|
|
|
|
|
<profiles>
|
|
|
|
|
<profile>
|
|
|
|
|
<id>ossrh-release</id>
|
|
|
|
|
<id>central-publish</id>
|
|
|
|
|
<properties>
|
|
|
|
|
<maven.deploy.skip>true</maven.deploy.skip>
|
|
|
|
|
</properties>
|
|
|
|
@@ -134,7 +124,6 @@
|
|
|
|
|
</plugin>
|
|
|
|
|
<plugin>
|
|
|
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
|
|
|
<version>3.3.2</version>
|
|
|
|
|
<executions>
|
|
|
|
|
<execution>
|
|
|
|
|
<id>javadoc</id>
|
|
|
|
@@ -158,19 +147,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.10.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>
|
|
|
|
|