171 lines
6.1 KiB
XML
171 lines
6.1 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
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>
|
|
<artifactId>redaction-service-v1</artifactId>
|
|
<groupId>com.iqser.red.service</groupId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>redaction-service-server-v1</artifactId>
|
|
|
|
<properties>
|
|
<drools.version>7.59.0.Final</drools.version>
|
|
<kie.version>7.59.0.Final</kie.version>
|
|
<locationtech.version>1.16.1</locationtech.version>
|
|
<pdfbox.jbig2-imageio.version>3.0.3</pdfbox.jbig2-imageio.version>
|
|
<jai-imageio.version>1.4.0</jai-imageio.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.iqser.red.commons</groupId>
|
|
<artifactId>storage-commons</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.iqser.red.service</groupId>
|
|
<artifactId>redaction-service-api-v1</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.drools</groupId>
|
|
<artifactId>drools-core</artifactId>
|
|
<version>${drools.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.kie</groupId>
|
|
<artifactId>kie-spring</artifactId>
|
|
<version>${kie.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.locationtech.jts</groupId>
|
|
<artifactId>jts-core</artifactId>
|
|
<version>${locationtech.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.guava</groupId>
|
|
<artifactId>guava</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.pdfbox</groupId>
|
|
<artifactId>jbig2-imageio</artifactId>
|
|
<version>${pdfbox.jbig2-imageio.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.jai-imageio</groupId>
|
|
<artifactId>jai-imageio-core</artifactId>
|
|
<version>${jai-imageio.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.github.jai-imageio</groupId>
|
|
<artifactId>jai-imageio-jpeg2000</artifactId>
|
|
<version>${jai-imageio.version}</version>
|
|
</dependency>
|
|
|
|
<!-- commons -->
|
|
<dependency>
|
|
<groupId>com.iqser.red.commons</groupId>
|
|
<artifactId>spring-commons</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.iqser.red.commons</groupId>
|
|
<artifactId>logging-commons</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.iqser.red.commons</groupId>
|
|
<artifactId>metric-commons</artifactId>
|
|
</dependency>
|
|
<!-- other external -->
|
|
<dependency>
|
|
<groupId>org.apache.pdfbox</groupId>
|
|
<artifactId>pdfbox</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.pdfbox</groupId>
|
|
<artifactId>pdfbox-tools</artifactId>
|
|
</dependency>
|
|
<!-- spring -->
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-openfeign</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-amqp</artifactId>
|
|
</dependency>
|
|
|
|
<!-- test dependencies -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.iqser.red.commons</groupId>
|
|
<artifactId>test-commons</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<plugins>
|
|
<plugin>
|
|
<!-- generate git.properties for exposure in /info -->
|
|
<groupId>pl.project13.maven</groupId>
|
|
<artifactId>git-commit-id-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>revision</goal>
|
|
</goals>
|
|
<configuration>
|
|
<generateGitPropertiesFile>true</generateGitPropertiesFile>
|
|
<gitDescribe>
|
|
<tags>true</tags>
|
|
</gitDescribe>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<id>original-jar</id>
|
|
<goals>
|
|
<goal>jar</goal>
|
|
</goals>
|
|
<configuration>
|
|
<classifier>original</classifier>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
|
|
<plugin>
|
|
<!-- repackages the generated jar into a runnable fat-jar and makes it
|
|
executable -->
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>repackage</goal>
|
|
</goals>
|
|
<configuration>
|
|
<executable>true</executable>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
|
|
</project>
|