69 lines
2.5 KiB
XML
69 lines
2.5 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>ocr-service-v1</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>ocr-service-api-v1</artifactId>
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
<properties>
|
|
<persistence-service.version>1.269.0</persistence-service.version>
|
|
<redaction-service.version>3.155.0</redaction-service.version>
|
|
<dsljson.version>1.9.9</dsljson.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
|
|
<!-- https://mvnrepository.com/artifact/com.dslplatform/dsl-json-java8 -->
|
|
<dependency>
|
|
<groupId>com.dslplatform</groupId>
|
|
<artifactId>dsl-json-java8</artifactId>
|
|
<version>${dsljson.version}</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<!-- This dependency contains annotations that are used in specifying REST endpoints. -->
|
|
<!-- It is optional since not all users of this API might use Feign. -->
|
|
<groupId>io.github.openfeign</groupId>
|
|
<artifactId>feign-core</artifactId>
|
|
<optional>true</optional>
|
|
</dependency>
|
|
<!-- spring -->
|
|
<dependency>
|
|
<groupId>org.springframework</groupId>
|
|
<artifactId>spring-web</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>com.iqser.red.service</groupId>
|
|
<artifactId>persistence-service-api-v1</artifactId>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>com.iqser.red.service</groupId>
|
|
<artifactId>redaction-service-api-v1</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
<version>${persistence-service.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.iqser.red.service</groupId>
|
|
<artifactId>redaction-service-api-v1</artifactId>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>com.iqser.red.service</groupId>
|
|
<artifactId>persistence-service-api-v1</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
<version>${redaction-service.version}</version>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
</project>
|