71 lines
2.0 KiB
XML
71 lines
2.0 KiB
XML
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.inteligr8.alfresco</groupId>
|
|
<artifactId>asie-api</artifactId>
|
|
<version>1.0-SNAPSHOT-asie2</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>ASIE JAX-RS API</name>
|
|
<description>Alfresco Search & Insight Engine JAX-RS API</description>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.inteligr8</groupId>
|
|
<artifactId>solr-api</artifactId>
|
|
<version>1.0-SNAPSHOT-solr6</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.alfresco</groupId>
|
|
<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>
|
|
</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>
|
|
<pluginManagement>
|
|
<plugins>
|
|
<!-- avoids log4j dependency -->
|
|
<plugin>
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
<version>3.13.0</version>
|
|
</plugin>
|
|
<!-- avoids struts dependency -->
|
|
<plugin>
|
|
<artifactId>maven-site-plugin</artifactId>
|
|
<version>3.12.1</version>
|
|
</plugin>
|
|
<!-- Force use of a new maven-dependency-plugin that doesn't download struts dependency -->
|
|
<plugin>
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
<version>3.7.1</version>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
</build>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>alfresco-public</id>
|
|
<url>https://artifacts.alfresco.com/nexus/repository/public/</url>
|
|
</repository>
|
|
</repositories>
|
|
</project>
|