mirror of
https://github.com/Alfresco/alfresco-transform-core.git
synced 2025-05-12 17:04:48 +00:00
325 lines
14 KiB
XML
325 lines
14 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<version>2.1.8.RELEASE</version>
|
|
<relativePath />
|
|
</parent>
|
|
|
|
<groupId>org.alfresco</groupId>
|
|
<artifactId>alfresco-transform-core</artifactId>
|
|
<version>2.1.0-RC3-SNAPSHOT</version>
|
|
<packaging>pom</packaging>
|
|
|
|
<properties>
|
|
<java.version>1.8</java.version>
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
|
|
<image.tag>latest</image.tag>
|
|
<dependency.pdfbox.version>2.0.16</dependency.pdfbox.version>
|
|
<dependency.alfresco-jodconverter-core.version>3.0.1.1</dependency.alfresco-jodconverter-core.version>
|
|
<env.project_version>${project.version}</env.project_version>
|
|
<dependency.alfresco-transform-model.version>1.0.2.7</dependency.alfresco-transform-model.version>
|
|
<dependency.activemq.version>5.15.9</dependency.activemq.version>
|
|
<dependency.jackson.version>2.9.9</dependency.jackson.version>
|
|
<dependency.jackson-databind.version>2.9.9.3</dependency.jackson-databind.version>
|
|
<dependency.cxf.version>3.3.3</dependency.cxf.version>
|
|
<dependency.poi.version>4.0.1</dependency.poi.version>
|
|
</properties>
|
|
|
|
<modules>
|
|
<module>alfresco-transformer-base</module>
|
|
<module>alfresco-docker-tika</module>
|
|
<module>alfresco-docker-alfresco-pdf-renderer</module>
|
|
<module>alfresco-docker-imagemagick</module>
|
|
<module>alfresco-docker-libreoffice</module>
|
|
<module>alfresco-docker-transform-misc</module>
|
|
</modules>
|
|
|
|
<scm>
|
|
<connection>scm:git:https://github.com/Alfresco/alfresco-transform-core.git</connection>
|
|
<developerConnection>scm:git:https://github.com/Alfresco/alfresco-transform-core.git</developerConnection>
|
|
<url>https://github.com/Alfresco/alfresco-transform-core</url>
|
|
<tag>HEAD</tag>
|
|
</scm>
|
|
|
|
<dependencyManagement>
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.dom4j</groupId>
|
|
<artifactId>dom4j</artifactId>
|
|
<version>2.1.1</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.alfresco</groupId>
|
|
<artifactId>alfresco-jodconverter-core</artifactId>
|
|
<version>${dependency.alfresco-jodconverter-core.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.pdfbox</groupId>
|
|
<artifactId>pdfbox</artifactId>
|
|
<version>${dependency.pdfbox.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.pdfbox</groupId>
|
|
<artifactId>pdfbox-tools</artifactId>
|
|
<version>${dependency.pdfbox.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.alfresco</groupId>
|
|
<artifactId>alfresco-transform-model</artifactId>
|
|
<version>${dependency.alfresco-transform-model.version}</version>
|
|
</dependency>
|
|
<!-- via Data Model / OpenCMIS Client -->
|
|
<dependency>
|
|
<groupId>org.apache.cxf</groupId>
|
|
<artifactId>cxf-core</artifactId>
|
|
<version>${dependency.cxf.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.cxf</groupId>
|
|
<artifactId>cxf-rt-rs-client</artifactId>
|
|
<version>${dependency.cxf.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.cxf</groupId>
|
|
<artifactId>cxf-rt-frontend-jaxws</artifactId>
|
|
<version>${dependency.cxf.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.cxf</groupId>
|
|
<artifactId>cxf-rt-transports-http</artifactId>
|
|
<version>${dependency.cxf.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.cxf</groupId>
|
|
<artifactId>cxf-rt-ws-policy</artifactId>
|
|
<version>${dependency.cxf.version}</version>
|
|
</dependency>
|
|
<!-- Jackson -->
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-annotations</artifactId>
|
|
<version>${dependency.jackson.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-databind</artifactId>
|
|
<version>${dependency.jackson-databind.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-core</artifactId>
|
|
<version>${dependency.jackson.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
|
<artifactId>jackson-datatype-jdk8</artifactId>
|
|
<version>${dependency.jackson.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
|
<artifactId>jackson-datatype-jsr310</artifactId>
|
|
<version>${dependency.jackson.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.module</groupId>
|
|
<artifactId>jackson-module-parameter-names</artifactId>
|
|
<version>${dependency.jackson.version}</version>
|
|
</dependency>
|
|
<!-- Active MQ client -->
|
|
<dependency>
|
|
<groupId>org.apache.activemq</groupId>
|
|
<artifactId>activemq-client</artifactId>
|
|
<version>${dependency.activemq.version}</version>
|
|
</dependency>
|
|
<!-- Google Guava -->
|
|
<dependency>
|
|
<groupId>com.google.guava</groupId>
|
|
<artifactId>guava</artifactId>
|
|
<version>28.1-jre</version>
|
|
</dependency>
|
|
<!-- Junrar & compression -->
|
|
<dependency>
|
|
<groupId>com.github.junrar</groupId>
|
|
<artifactId>junrar</artifactId>
|
|
<version>4.0.0</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-compress</artifactId>
|
|
<version>1.19</version>
|
|
</dependency>
|
|
<!-- Jsoup -->
|
|
<dependency>
|
|
<groupId>org.jsoup</groupId>
|
|
<artifactId>jsoup</artifactId>
|
|
<version>1.12.1</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>commons-codec</groupId>
|
|
<artifactId>commons-codec</artifactId>
|
|
<version>1.13</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</dependencyManagement>
|
|
|
|
<distributionManagement>
|
|
<snapshotRepository>
|
|
<id>alfresco-public-snapshots</id>
|
|
<url>https://artifacts.alfresco.com/nexus/content/repositories/snapshots</url>
|
|
</snapshotRepository>
|
|
<repository>
|
|
<id>alfresco-public</id>
|
|
<url>https://artifacts.alfresco.com/nexus/content/repositories/releases</url>
|
|
</repository>
|
|
</distributionManagement>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-javadoc-plugin</artifactId>
|
|
<version>3.1.1</version>
|
|
<configuration>
|
|
<doclint>none</doclint>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>attach-javadocs</id>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
|
|
<pluginManagement>
|
|
<plugins>
|
|
<plugin>
|
|
<artifactId>maven-release-plugin</artifactId>
|
|
<version>2.5.3</version>
|
|
<configuration>
|
|
<tagNameFormat>@{project.version}</tagNameFormat>
|
|
</configuration>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
<artifactId>license-maven-plugin</artifactId>
|
|
<version>2.0.0</version>
|
|
<configuration>
|
|
<inceptionYear>2005</inceptionYear>
|
|
<organizationName>Alfresco Software Limited</organizationName>
|
|
<projectName>Alfresco Transform Core</projectName>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>third-party-licenses</id>
|
|
<goals>
|
|
<goal>add-third-party</goal>
|
|
<goal>download-licenses</goal>
|
|
</goals>
|
|
<configuration>
|
|
<useMissingFile>true</useMissingFile>
|
|
<excludedScopes>provided,test</excludedScopes>
|
|
<excludedGroups>org.alfresco</excludedGroups>
|
|
</configuration>
|
|
</execution>
|
|
<execution>
|
|
<id>project-license</id>
|
|
<goals>
|
|
<goal>check-file-header</goal>
|
|
</goals>
|
|
<phase>process-sources</phase>
|
|
<configuration>
|
|
<addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
|
|
<canUpdateCopyright>true</canUpdateCopyright>
|
|
<canUpdateDescription>true</canUpdateDescription>
|
|
<excludes>
|
|
<exclude>**/package-info.java</exclude>
|
|
<exclude>**/*.properties</exclude>
|
|
<exclude>**/*.css</exclude>
|
|
<exclude>**/*.xml</exclude>
|
|
<exclude>**/*.json</exclude>
|
|
<exclude>**/*.txt</exclude>
|
|
<exclude>**/*.html</exclude>
|
|
</excludes>
|
|
<failOnMissingHeader>true</failOnMissingHeader>
|
|
<licenseName>community</licenseName>
|
|
<licenseResolver>file:${project.parent.basedir}/license</licenseResolver>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
<configuration>
|
|
<forkCount>1</forkCount>
|
|
<reuseForks>true</reuseForks>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<id>default-test</id>
|
|
<goals>
|
|
<goal>test</goal>
|
|
</goals>
|
|
<phase>test</phase>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-failsafe-plugin</artifactId>
|
|
<configuration>
|
|
<forkCount>1</forkCount>
|
|
<reuseForks>true</reuseForks>
|
|
</configuration>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>integration-test</goal>
|
|
<goal>verify</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>io.fabric8</groupId>
|
|
<artifactId>fabric8-maven-plugin</artifactId>
|
|
<version>4.2.0</version>
|
|
</plugin>
|
|
<plugin>
|
|
<groupId>io.fabric8</groupId>
|
|
<artifactId>docker-maven-plugin</artifactId>
|
|
<version>0.31.0</version>
|
|
<extensions>true</extensions>
|
|
<executions>
|
|
<execution>
|
|
<id>before-integration-tests</id>
|
|
<phase>pre-integration-test</phase>
|
|
<goals>
|
|
<!--<goal>stop</goal>-->
|
|
<goal>start</goal>
|
|
</goals>
|
|
</execution>
|
|
<execution>
|
|
<id>after-integration-tests</id>
|
|
<phase>post-integration-test</phase>
|
|
<goals>
|
|
<goal>stop</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</pluginManagement>
|
|
</build>
|
|
</project>
|