152 lines
5.3 KiB
XML
152 lines
5.3 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>com.iqser.red.service</groupId>
|
|
<artifactId>redaction-report-service-v1</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>redaction-report-service-server-v1</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.iqser.red.service</groupId>
|
|
<artifactId>redaction-report-service-api-v1</artifactId>
|
|
<version>${project.version}</version>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>com.iqser.red.service</groupId>
|
|
<artifactId>redaction-service-api-v1</artifactId>
|
|
<version>2.5.4</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>com.iqser.red.service</groupId>
|
|
<artifactId>file-management-service-api-v1</artifactId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<groupId>com.iqser.red.service</groupId>
|
|
<artifactId>file-management-service-api-v1</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.iqser.red.service</groupId>
|
|
<artifactId>configuration-service-api-v1</artifactId>
|
|
<version>2.5.3</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>com.iqser.red.service</groupId>
|
|
<artifactId>file-management-service-api-v1</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>com.iqser.red.service</groupId>
|
|
<artifactId>file-management-service-api-v1</artifactId>
|
|
<version>2.8.3.1</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>poi</artifactId>
|
|
<version>4.1.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>poi-ooxml</artifactId>
|
|
<version>4.1.2</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.poi</groupId>
|
|
<artifactId>poi-scratchpad</artifactId>
|
|
<version>4.1.2</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-amqp</artifactId>
|
|
<version>2.3.1.RELEASE</version>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>com.iqser.red.commons</groupId>
|
|
<artifactId>storage-commons</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.iqser.red.commons</groupId>
|
|
<artifactId>spring-commons</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-openfeign</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.iqser.red.commons</groupId>
|
|
<artifactId>metric-commons</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Test -->
|
|
<dependency>
|
|
<groupId>com.iqser.red.commons</groupId>
|
|
<artifactId>test-commons</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.amqp</groupId>
|
|
<artifactId>spring-rabbit-test</artifactId>
|
|
<version>2.3.1</version>
|
|
<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>
|
|
<!-- 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>
|