Merge branch 'develop' into stable

This commit is contained in:
Brian Long 2024-08-15 12:35:46 -04:00
commit 28b3c5d10f

19
pom.xml
View File

@ -5,8 +5,8 @@
<groupId>com.inteligr8.alfresco</groupId> <groupId>com.inteligr8.alfresco</groupId>
<artifactId>aps-public-rest-client</artifactId> <artifactId>aps-public-rest-client</artifactId>
<version>2.0.5</version> <version>3.0.0</version>
<name>Alfresco Process Services ReST API Client for Java</name> <name>Alfresco Process Services ReST API Client for Java</name>
<description>An APS Client library for building REST API clients that support either the CXF and Jersey frameworks</description> <description>An APS Client library for building REST API clients that support either the CXF and Jersey frameworks</description>
<url>https://bitbucket.org/inteligr8/aps-public-rest-client</url> <url>https://bitbucket.org/inteligr8/aps-public-rest-client</url>
@ -38,24 +38,25 @@
<properties> <properties>
<project.build.sourceEncoding>utf-8</project.build.sourceEncoding> <project.build.sourceEncoding>utf-8</project.build.sourceEncoding>
<maven.compiler.source>8</maven.compiler.source> <maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>8</maven.compiler.target> <maven.compiler.target>11</maven.compiler.target>
<maven.compiler.release>11</maven.compiler.release>
<maven.compiler.debuglevel>lines,vars,source</maven.compiler.debuglevel> <maven.compiler.debuglevel>lines,vars,source</maven.compiler.debuglevel>
<junit.version>5.7.2</junit.version> <junit.version>5.10.0</junit.version>
<spring.version>5.3.6</spring.version> <spring.version>6.0.19</spring.version>
</properties> </properties>
<dependencies> <dependencies>
<dependency> <dependency>
<groupId>com.inteligr8</groupId> <groupId>com.inteligr8</groupId>
<artifactId>common-rest-client</artifactId> <artifactId>common-rest-client</artifactId>
<version>2.0.8</version> <version>3.0.0</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.inteligr8.alfresco</groupId> <groupId>com.inteligr8.alfresco</groupId>
<artifactId>aps-public-rest-api</artifactId> <artifactId>aps-public-rest-api</artifactId>
<version>2.0.8</version> <version>3.0.0</version>
<scope>provided</scope> <!-- explicitly, bring your own version --> <scope>provided</scope> <!-- explicitly, bring your own version -->
</dependency> </dependency>
<dependency> <dependency>
@ -79,7 +80,7 @@
<dependency> <dependency>
<groupId>org.apache.logging.log4j</groupId> <groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-slf4j-impl</artifactId> <artifactId>log4j-slf4j-impl</artifactId>
<version>2.19.0</version> <version>2.20.0</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>