199 lines
7.4 KiB
XML
199 lines
7.4 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>
|
||
<groupId>ru.rell</groupId>
|
||
<artifactId>ocr-rell-service</artifactId>
|
||
<version>3.0.0.rc</version>
|
||
|
||
<parent>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-parent</artifactId>
|
||
<version>3.2.2</version>
|
||
</parent>
|
||
|
||
<properties>
|
||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
||
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
|
||
<java.version>21</java.version>
|
||
<version.lombok>1.18.30</version.lombok>
|
||
<version.mapstruct>1.4.2.Final</version.mapstruct>
|
||
<version.mapstruct-lombok>0.2.0</version.mapstruct-lombok>
|
||
<maven.compiler.source>21</maven.compiler.source>
|
||
<maven.compiler.target>21</maven.compiler.target>
|
||
<openapi.version>1.6.9</openapi.version>
|
||
<spring.boot.version>3.2.2</spring.boot.version>
|
||
<jacoco.version>0.8.11</jacoco.version>
|
||
<junit.version>5.10.1</junit.version>
|
||
<swagger-annotations.version>2.2.2</swagger-annotations.version>
|
||
<jackson-databind-nullable.version>0.2.2</jackson-databind-nullable.version>
|
||
<validation-api.version>2.0.1.Final</validation-api.version>
|
||
<javax-annotation-api.version>1.3.2</javax-annotation-api.version>
|
||
<springfox-swagger2.version>3.0.0</springfox-swagger2.version>
|
||
</properties>
|
||
|
||
<developers>
|
||
<developer>
|
||
<id>PopovAA</id>
|
||
<name>Popov Alexander</name>
|
||
<email>h0c0kutaiiok@gmail.com</email>
|
||
</developer>
|
||
</developers>
|
||
|
||
<name>ocr-rell-service</name>
|
||
<description>Cервис по распознаванию текста</description>
|
||
|
||
<packaging>jar</packaging>
|
||
|
||
<dependencies>
|
||
<!-- Spring -->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-web</artifactId>
|
||
<version>${spring.boot.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-actuator</artifactId>
|
||
<version>${spring.boot.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-hateoas</artifactId>
|
||
<version>${spring.boot.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.springdoc</groupId>
|
||
<artifactId>springdoc-openapi-ui</artifactId>
|
||
<version>${openapi.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>org.springdoc</groupId>
|
||
<artifactId>springdoc-openapi-hateoas</artifactId>
|
||
<version>${openapi.version}</version>
|
||
</dependency>
|
||
|
||
<!-- lombok -->
|
||
<dependency>
|
||
<groupId>org.projectlombok</groupId>
|
||
<artifactId>lombok</artifactId>
|
||
<version>${version.lombok}</version>
|
||
<optional>true</optional>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.projectlombok</groupId>
|
||
<artifactId>lombok-mapstruct-binding</artifactId>
|
||
<version>${version.mapstruct-lombok}</version>
|
||
</dependency>
|
||
|
||
<!-- mapstruct -->
|
||
<dependency>
|
||
<groupId>org.mapstruct</groupId>
|
||
<artifactId>mapstruct</artifactId>
|
||
<version>${version.mapstruct}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>io.swagger.core.v3</groupId>
|
||
<artifactId>swagger-annotations</artifactId>
|
||
<version>${swagger-annotations.version}</version>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.openapitools</groupId>
|
||
<artifactId>jackson-databind-nullable</artifactId>
|
||
<version>${jackson-databind-nullable.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>javax.validation</groupId>
|
||
<artifactId>validation-api</artifactId>
|
||
<version>${validation-api.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>javax.annotation</groupId>
|
||
<artifactId>javax.annotation-api</artifactId>
|
||
<version>${javax-annotation-api.version}</version>
|
||
</dependency>
|
||
<dependency>
|
||
<groupId>io.springfox</groupId>
|
||
<artifactId>springfox-swagger2</artifactId>
|
||
<version>${springfox-swagger2.version}</version>
|
||
</dependency>
|
||
|
||
<!-- test -->
|
||
<dependency>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-starter-test</artifactId>
|
||
<version>${spring.boot.version}</version>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
|
||
<dependency>
|
||
<groupId>org.junit.jupiter</groupId>
|
||
<artifactId>junit-jupiter-api</artifactId>
|
||
<version>${junit.version}</version>
|
||
<scope>test</scope>
|
||
</dependency>
|
||
</dependencies>
|
||
|
||
<build>
|
||
<plugins>
|
||
|
||
<plugin>
|
||
<groupId>org.springframework.boot</groupId>
|
||
<artifactId>spring-boot-maven-plugin</artifactId>
|
||
</plugin>
|
||
|
||
<plugin>
|
||
<groupId>org.apache.maven.plugins</groupId>
|
||
<artifactId>maven-compiler-plugin</artifactId>
|
||
<version>3.12.1</version>
|
||
<configuration>
|
||
<source>${maven.compiler.source}</source>
|
||
<target>${maven.compiler.target}</target>
|
||
<annotationProcessorPaths>
|
||
<path>
|
||
<groupId>org.mapstruct</groupId>
|
||
<artifactId>mapstruct-processor</artifactId>
|
||
<version>${version.mapstruct}</version>
|
||
</path>
|
||
<path>
|
||
<groupId>org.projectlombok</groupId>
|
||
<artifactId>lombok</artifactId>
|
||
<version>${version.lombok}</version>
|
||
</path>
|
||
<path>
|
||
<groupId>org.projectlombok</groupId>
|
||
<artifactId>lombok-mapstruct-binding</artifactId>
|
||
<version>${version.mapstruct-lombok}</version>
|
||
</path>
|
||
</annotationProcessorPaths>
|
||
</configuration>
|
||
</plugin>
|
||
|
||
<plugin>
|
||
<groupId>org.jacoco</groupId>
|
||
<artifactId>jacoco-maven-plugin</artifactId>
|
||
<version>${jacoco.version}</version>
|
||
<executions>
|
||
<execution>
|
||
<goals>
|
||
<goal>prepare-agent</goal>
|
||
</goals>
|
||
</execution>
|
||
<execution>
|
||
<id>report</id>
|
||
<phase>test</phase>
|
||
<goals>
|
||
<goal>report</goal>
|
||
</goals>
|
||
</execution>
|
||
</executions>
|
||
</plugin>
|
||
</plugins>
|
||
</build>
|
||
</project> |