This commit is contained in:
2024-10-28 16:13:24 -04:00
parent 38895141a0
commit 55379db6e4
3 changed files with 22 additions and 32 deletions

View File

@@ -10,6 +10,25 @@
<name>ASIE JAX-RS API</name> <name>ASIE JAX-RS API</name>
<description>Alfresco Search &amp; Insight Engine JAX-RS API</description> <description>Alfresco Search &amp; Insight Engine JAX-RS API</description>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.release>11</maven.compiler.release>
</properties>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.alfresco</groupId>
<artifactId>acs-community-packaging</artifactId>
<version>${alfresco.platform.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<dependencies> <dependencies>
<dependency> <dependency>
@@ -20,24 +39,8 @@
<dependency> <dependency>
<groupId>org.alfresco</groupId> <groupId>org.alfresco</groupId>
<artifactId>alfresco-repository</artifactId> <artifactId>alfresco-repository</artifactId>
<version>14.153</version>
</dependency>
<!-- Including for testing purposes only -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.11.2</version>
<scope>test</scope>
</dependency> </dependency>
</dependencies> </dependencies>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>11</maven.compiler.source>
<maven.compiler.target>11</maven.compiler.target>
<maven.compiler.release>11</maven.compiler.release>
</properties>
<build> <build>
<pluginManagement> <pluginManagement>
@@ -55,7 +58,7 @@
<!-- Force use of a new maven-dependency-plugin that doesn't download struts dependency --> <!-- Force use of a new maven-dependency-plugin that doesn't download struts dependency -->
<plugin> <plugin>
<artifactId>maven-dependency-plugin</artifactId> <artifactId>maven-dependency-plugin</artifactId>
<version>3.7.1</version> <version>3.8.0</version>
</plugin> </plugin>
</plugins> </plugins>
</pluginManagement> </pluginManagement>

View File

@@ -85,11 +85,6 @@
<artifactId>asie-api</artifactId> <artifactId>asie-api</artifactId>
<version>1.0-SNAPSHOT-asie2</version> <version>1.0-SNAPSHOT-asie2</version>
</dependency> </dependency>
<dependency>
<groupId>com.inteligr8</groupId>
<artifactId>common-rest-client</artifactId>
<version>3.0.1-cxf</version>
</dependency>
<!-- Needed by this module, but provided by ACS --> <!-- Needed by this module, but provided by ACS -->
<dependency> <dependency>
@@ -120,7 +115,7 @@
<dependency> <dependency>
<groupId>com.inteligr8.alfresco</groupId> <groupId>com.inteligr8.alfresco</groupId>
<artifactId>cxf-jaxrs-platform-module</artifactId> <artifactId>cxf-jaxrs-platform-module</artifactId>
<version>1.2.0-acs-v23.2</version> <version>1.3.1-acs-v23.3</version>
<scope>provided</scope> <scope>provided</scope>
</dependency> </dependency>

View File

@@ -45,14 +45,6 @@
<artifactId>jackson-jakarta-rs-json-provider</artifactId> <artifactId>jackson-jakarta-rs-json-provider</artifactId>
<version>${jackson.version}</version> <version>${jackson.version}</version>
</dependency> </dependency>
<!-- Including for testing purposes only -->
<dependency>
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter-api</artifactId>
<version>5.11.2</version>
<scope>test</scope>
</dependency>
</dependencies> </dependencies>
<build> <build>
@@ -71,7 +63,7 @@
<!-- Force use of a new maven-dependency-plugin that doesn't download struts dependency --> <!-- Force use of a new maven-dependency-plugin that doesn't download struts dependency -->
<plugin> <plugin>
<artifactId>maven-dependency-plugin</artifactId> <artifactId>maven-dependency-plugin</artifactId>
<version>3.7.1</version> <version>3.8.0</version>
</plugin> </plugin>
</plugins> </plugins>
</pluginManagement> </pluginManagement>