91 lines
No EOL
3 KiB
XML
91 lines
No EOL
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>
|
|
|
|
<artifactId>snapshot-maker</artifactId>
|
|
<name>snapshot-maker</name>
|
|
<description>Database snapshot maker</description>
|
|
<version>SPCEX-3.12.5</version>
|
|
|
|
<parent>
|
|
<groupId>ru.spcex.clearing</groupId>
|
|
<artifactId>clearing-parent</artifactId>
|
|
<version>SPCEX-3.12.5</version>
|
|
</parent>
|
|
|
|
<properties>
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
|
|
<hikaricp.version>5.1.0</hikaricp.version>
|
|
<springdoc-openapi.version>2.5.0</springdoc-openapi.version>
|
|
<commons-io.version>2.16.1</commons-io.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<!-- Spring dependencies -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Kafka dependencies -->
|
|
<dependency>
|
|
<groupId>ru.spcex.platform</groupId>
|
|
<artifactId>platform-messaging</artifactId>
|
|
</dependency>
|
|
|
|
<!-- Misc dependencies -->
|
|
<dependency>
|
|
<groupId>commons-io</groupId>
|
|
<artifactId>commons-io</artifactId>
|
|
<version>${commons-io.version}</version>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ru.spcex.clearing</groupId>
|
|
<artifactId>classes</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ru.spcex.platform</groupId>
|
|
<artifactId>platform-enum</artifactId>
|
|
</dependency>
|
|
|
|
|
|
<!-- Test dependencies -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<excludes>
|
|
<exclude>application.properties</exclude>
|
|
</excludes>
|
|
<filtering>false</filtering>
|
|
</resource>
|
|
</resources>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-maven-plugin</artifactId>
|
|
<executions>
|
|
<execution>
|
|
<goals>
|
|
<goal>repackage</goal>
|
|
</goals>
|
|
</execution>
|
|
</executions>
|
|
<configuration>
|
|
<finalName>${project.artifactId}</finalName>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project> |