135 lines
4.6 KiB
XML
135 lines
4.6 KiB
XML
<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/maven-v4_0_0.xsd">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<parent>
|
|
<groupId>ru.spcex.clearing</groupId>
|
|
<artifactId>clearing-parent</artifactId>
|
|
<version>SPCEX-1.0.0.0</version>
|
|
</parent>
|
|
<artifactId>test-api-clearing</artifactId>
|
|
<name>Test-api-clearing</name>
|
|
<version>SPCEX-1.0.0.0</version>
|
|
<description>Тестовые контроллеры для отладки клиринговой системы. Только для разработчиков.</description>
|
|
|
|
|
|
<properties>
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>ru.spcex.platform</groupId>
|
|
<artifactId>platform-messaging</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ru.spcex.platform</groupId>
|
|
<artifactId>platform-enum</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ru.spcex.platform</groupId>
|
|
<artifactId>platform-enum</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ru.spcex.clearing</groupId>
|
|
<artifactId>classes</artifactId>
|
|
<version>SPCEX-1.0.0.0</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ru.spcex.clearing</groupId>
|
|
<artifactId>dictionary</artifactId>
|
|
<version>SPCEX-1.0.0.0</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>ru.spcex.platform</groupId>
|
|
<artifactId>platform-imdg-api</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ru.spcex.platform</groupId>
|
|
<artifactId>platform-imdg-api-hazelcast-impl</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ru.spcex.clearing</groupId>
|
|
<artifactId>classes</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
<artifactId>jackson-databind</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>ru.spcex.clearing</groupId>
|
|
<artifactId>test-clearing</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
<version>3.7</version>
|
|
</dependency>
|
|
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.springfox</groupId>
|
|
<artifactId>springfox-swagger2</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.springfox</groupId>
|
|
<artifactId>springfox-swagger-ui</artifactId>
|
|
</dependency>
|
|
|
|
<!--<dependency>
|
|
<groupId>org.keycloak</groupId>
|
|
<artifactId>keycloak-spring-boot-starter</artifactId>
|
|
<version>${keycloak-spring-boot-starter.version}</version>
|
|
</dependency>-->
|
|
|
|
<!-- TEST -->
|
|
<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>
|