34 lines
1.1 KiB
XML
34 lines
1.1 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>3.0-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<artifactId>ocr-service-api-v1</artifactId>
|
|
|
|
|
|
<dependencies>
|
|
|
|
<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>
|
|
|
|
|
|
</dependencies>
|
|
</project>
|