171 lines
5.0 KiB
XML
171 lines
5.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>annotations-platform-module</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<name>Annotations ACS Platform Module</name>
|
|
<description>A module to support annotation-based development for Alfresco Content Services modules.</description>
|
|
<url>https://bitbucket.org/inteligr8/annotations-platform-module</url>
|
|
|
|
<licenses>
|
|
<license>
|
|
<name>GNU GENERAL PUBLIC LICENSE, Version 3, 29 June 2007</name>
|
|
<url>https://www.gnu.org/licenses/lgpl-3.0.txt</url>
|
|
</license>
|
|
</licenses>
|
|
|
|
<scm>
|
|
<connection>scm:git:https://bitbucket.org/inteligr8/annotations-platform-module.git</connection>
|
|
<developerConnection>scm:git:git@bitbucket.org:inteligr8/annotations-platform-module.git</developerConnection>
|
|
<url>https://bitbucket.org/inteligr8/annotations-platform-module</url>
|
|
</scm>
|
|
<organization>
|
|
<name>Inteligr8</name>
|
|
<url>https://www.inteligr8.com</url>
|
|
</organization>
|
|
<developers>
|
|
<developer>
|
|
<id>brian.long</id>
|
|
<name>Brian Long</name>
|
|
<email>brian@inteligr8.com</email>
|
|
<url>https://twitter.com/brianmlong</url>
|
|
</developer>
|
|
</developers>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<maven.compiler.source>8</maven.compiler.source>
|
|
<maven.compiler.target>8</maven.compiler.target>
|
|
|
|
<alfresco.sdk.version>4.8.0</alfresco.sdk.version>
|
|
<alfresco.platform.version>7.4.1</alfresco.platform.version>
|
|
<alfresco.platform.war.version>22.22</alfresco.platform.war.version>
|
|
<aspectj.version>1.9.19</aspectj.version>
|
|
<acs-platform.tomcat.opts>-javaagent:/var/lib/tomcat/dev/lib/aspectjweaver-${aspectj.version}.jar</acs-platform.tomcat.opts>
|
|
</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>
|
|
<!-- Very popular, but not required, dependency -->
|
|
<!-- Provided as an example -->
|
|
<dependency>
|
|
<groupId>org.alfresco</groupId>
|
|
<artifactId>alfresco-repository</artifactId>
|
|
<scope>provided</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.inteligr8.alfresco</groupId>
|
|
<artifactId>aspectj-platform-module</artifactId>
|
|
<version>1.0.1</version>
|
|
<type>amp</type>
|
|
</dependency>
|
|
|
|
<!-- AMP resources are included in the WAR, not the extension directory; this makes aspectjweaver available to javaagent -->
|
|
<dependency>
|
|
<groupId>org.aspectj</groupId>
|
|
<artifactId>aspectjweaver</artifactId>
|
|
<version>${aspectj.version}</version>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<modules>
|
|
<module>core</module>
|
|
<module>javax</module>
|
|
<module>jakarta</module>
|
|
</modules>
|
|
|
|
<profiles>
|
|
<profile>
|
|
<id>debug</id>
|
|
<properties>
|
|
<docker.showLogs>true</docker.showLogs>
|
|
</properties>
|
|
</profile>
|
|
<profile>
|
|
<id>ossrh-release</id>
|
|
<properties>
|
|
<maven.deploy.skip>true</maven.deploy.skip>
|
|
</properties>
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-source-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>source</id>
|
|
<phase>package</phase>
|
|
<goals><goal>jar-no-fork</goal></goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<version>3.3.2</version>
|
|
<executions>
|
|
<execution>
|
|
<id>javadoc</id>
|
|
<phase>package</phase>
|
|
<goals><goal>jar</goal></goals>
|
|
<configuration>
|
|
<show>public</show>
|
|
<additionalJOption>-Xdoclint:none</additionalJOption>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-gpg-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>sign</id>
|
|
<phase>verify</phase>
|
|
<goals><goal>sign</goal></goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.sonatype.plugins</groupId>
|
|
<artifactId>nexus-staging-maven-plugin</artifactId>
|
|
<version>1.6.13</version>
|
|
<configuration>
|
|
<serverId>ossrh</serverId>
|
|
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
|
|
<autoReleaseAfterClose>true</autoReleaseAfterClose>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>ossrh-deploy</id>
|
|
<phase>deploy</phase>
|
|
<goals><goal>deploy</goal></goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</profile>
|
|
</profiles>
|
|
|
|
<repositories>
|
|
<repository>
|
|
<id>alfresco-public</id>
|
|
<url>https://artifacts.alfresco.com/nexus/content/groups/public</url>
|
|
</repository>
|
|
</repositories>
|
|
</project> |