Compare commits

...
4 Commits
Author SHA1 Message Date
brian.long b7279c4c2a ossrh-release to central-publish 2026-04-22 12:23:49 -04:00
brian.long 2ca3322e81 updated dependencies/plugins 2026-04-22 12:23:35 -04:00
brian.long 8b5c06b921 jdk v11 2024-08-15 12:10:36 -04:00
brian.long 5a4e9154ca v3.x; upgrade to jakarta 2024-08-15 12:06:21 -04:00
3 changed files with 39 additions and 49 deletions
+34 -44
View File
@@ -6,7 +6,7 @@
<groupId>com.inteligr8.alfresco</groupId> <groupId>com.inteligr8.alfresco</groupId>
<artifactId>acs-public-rest-client</artifactId> <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> <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> <description>An ACS Client library for building REST API clients that support either the CXF and Jersey frameworks</description>
@@ -39,32 +39,34 @@
<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>
<acs.platform.tag>acs7</acs.platform.tag> <acs.platform.tag>acs26</acs.platform.tag>
<junit.version>5.7.2</junit.version> <!-- for testing only -->
<spring.version>5.3.6</spring.version> <spring.version>6.2.18</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.4</version>
</dependency> </dependency>
<dependency> <dependency>
<groupId>com.inteligr8.alfresco</groupId> <groupId>com.inteligr8.alfresco</groupId>
<artifactId>acs-public-rest-api</artifactId> <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 --> <scope>provided</scope> <!-- explicitly, bring your own version -->
</dependency> </dependency>
<dependency> <dependency>
<groupId>org.junit.jupiter</groupId> <groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId> <artifactId>junit-jupiter-api</artifactId>
<version>${junit.version}</version> <version>5.14.3</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
<dependency> <dependency>
@@ -82,41 +84,29 @@
<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.25.4</version>
<scope>test</scope> <scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>
<build> <build>
<plugins> <pluginManagement>
<plugin> <plugins>
<artifactId>maven-surefire-plugin</artifactId> <plugin>
<version>3.1.0</version> <artifactId>maven-surefire-plugin</artifactId>
<dependencies> <version>3.5.5</version>
<dependency> </plugin>
<groupId>org.junit.jupiter</groupId> <plugin>
<artifactId>junit-jupiter-engine</artifactId> <artifactId>maven-failsafe-plugin</artifactId>
<version>${junit.version}</version> <version>3.5.5</version>
</dependency> </plugin>
</dependencies> </plugins>
</plugin> </pluginManagement>
<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>
</build> </build>
<profiles> <profiles>
<profile> <profile>
<id>ossrh-release</id> <id>central-publish</id>
<properties> <properties>
<maven.deploy.skip>true</maven.deploy.skip> <maven.deploy.skip>true</maven.deploy.skip>
</properties> </properties>
@@ -134,7 +124,6 @@
</plugin> </plugin>
<plugin> <plugin>
<artifactId>maven-javadoc-plugin</artifactId> <artifactId>maven-javadoc-plugin</artifactId>
<version>3.3.2</version>
<executions> <executions>
<execution> <execution>
<id>javadoc</id> <id>javadoc</id>
@@ -158,19 +147,20 @@
</executions> </executions>
</plugin> </plugin>
<plugin> <plugin>
<groupId>org.sonatype.plugins</groupId> <groupId>org.sonatype.central</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId> <artifactId>central-publishing-maven-plugin</artifactId>
<version>1.6.13</version> <version>0.10.0</version>
<extensions>true</extensions>
<configuration> <configuration>
<serverId>ossrh</serverId> <publishingServerId>central</publishingServerId>
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl> <autoPublish>true</autoPublish>
<autoReleaseAfterClose>true</autoReleaseAfterClose>
</configuration> </configuration>
<!-- for some reason this is required... -->
<executions> <executions>
<execution> <execution>
<id>ossrh-deploy</id> <id>deploy</id>
<phase>deploy</phase> <phase>deploy</phase>
<goals><goal>deploy</goal></goals> <goals><goal>publish</goal></goals>
</execution> </execution>
</executions> </executions>
</plugin> </plugin>
@@ -17,7 +17,7 @@ package com.inteligr8.alfresco.acs;
import java.util.List; import java.util.List;
import java.util.UUID; import java.util.UUID;
import javax.ws.rs.NotFoundException; import jakarta.ws.rs.NotFoundException;
import org.junit.jupiter.api.Assertions; import org.junit.jupiter.api.Assertions;
import org.junit.jupiter.api.Test; import org.junit.jupiter.api.Test;
+4 -4
View File
@@ -1,17 +1,17 @@
rootLogger.level=trace rootLogger.level=info
rootLogger.appenderRef.stdout.ref=STDOUT rootLogger.appenderRef.stdout.ref=STDOUT
logger.spring.name=org.springframework logger.spring.name=org.springframework
logger.spring.level=info logger.spring.level=info
logger.common-rest-api.name=com.inteligr8.rs logger.common-rest-api.name=com.inteligr8.rs
logger.common-rest-api.level=trace logger.common-rest-api.level=info
logger.this.name=com.inteligr8.alfresco.acs logger.this.name=com.inteligr8.alfresco.acs
logger.this.level=trace logger.this.level=info
logger.jaxrslog.name=jaxrs.request logger.jaxrslog.name=jaxrs.request
logger.jaxrslog.level=trace logger.jaxrslog.level=info
appender.stdout.type=Console appender.stdout.type=Console
appender.stdout.name=STDOUT appender.stdout.name=STDOUT