2021-07-26 06:41:04 +00:00
|
|
|
<?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>
|
2022-01-14 11:42:12 +00:00
|
|
|
<groupId>dev.vality</groupId>
|
2021-07-26 06:41:04 +00:00
|
|
|
<artifactId>library-parent-pom</artifactId>
|
2023-11-27 15:21:22 +00:00
|
|
|
<version>2.0.1</version>
|
2021-07-26 06:41:04 +00:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<artifactId>testcontainers-annotations</artifactId>
|
2024-07-05 13:38:42 +00:00
|
|
|
<version>2.0.4</version>
|
2022-02-01 10:39:55 +00:00
|
|
|
|
|
|
|
<name>testcontainers-annotations</name>
|
|
|
|
<description>testcontainers-annotations</description>
|
2022-01-14 11:42:12 +00:00
|
|
|
<url>https://github.com/valitydev/testcontainers-annotations</url>
|
2021-07-26 06:41:04 +00:00
|
|
|
|
|
|
|
<licenses>
|
|
|
|
<license>
|
|
|
|
<name>The Apache Software License, Version 2.0</name>
|
|
|
|
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
|
|
|
|
</license>
|
|
|
|
</licenses>
|
|
|
|
|
|
|
|
<developers>
|
|
|
|
<developer>
|
2022-01-14 11:42:12 +00:00
|
|
|
<organization>Vality.Dev</organization>
|
|
|
|
<organizationUrl>https://vality.dev/</organizationUrl>
|
2021-07-26 06:41:04 +00:00
|
|
|
</developer>
|
|
|
|
</developers>
|
|
|
|
|
|
|
|
<scm>
|
2022-02-02 13:57:21 +00:00
|
|
|
<connection>scm:git:git://github.com/valitydev/testcontainers-annotations.git</connection>
|
|
|
|
<developerConnection>scm:git:ssh://github.com/valitydev/testcontainers-annotations.git</developerConnection>
|
|
|
|
<url>https://github.com/valitydev/testcontainers-annotations/tree/master</url>
|
2021-07-26 06:41:04 +00:00
|
|
|
</scm>
|
|
|
|
|
|
|
|
<properties>
|
2023-01-20 14:00:47 +00:00
|
|
|
<spring-boot.version>3.0.2</spring-boot.version>
|
|
|
|
<woody.version>1.0.5</woody.version>
|
|
|
|
<kafka-common-lib.version>0.0.3</kafka-common-lib.version>
|
|
|
|
<geck.version>0.0.1</geck.version>
|
2023-01-23 09:25:18 +00:00
|
|
|
<lombok.version>1.18.24</lombok.version>
|
2023-01-20 14:00:47 +00:00
|
|
|
<testcontainers.version>1.17.6</testcontainers.version>
|
2023-01-23 09:25:18 +00:00
|
|
|
<junit-jupiter.version>5.9.2</junit-jupiter.version>
|
2021-07-26 06:41:04 +00:00
|
|
|
<checkstyle.config.suppressions.path>./src/main/resources/checkstyle/checkstyle-suppressions.xml
|
|
|
|
</checkstyle.config.suppressions.path>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<dependencies>
|
2023-01-20 14:00:47 +00:00
|
|
|
<!--spring-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>net.minidev</groupId>
|
|
|
|
<artifactId>json-smart</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.kafka</groupId>
|
|
|
|
<artifactId>spring-kafka</artifactId>
|
|
|
|
<version>${spring-boot.version}</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- vality -->
|
2021-07-26 06:41:04 +00:00
|
|
|
<dependency>
|
2022-02-01 10:39:55 +00:00
|
|
|
<groupId>dev.vality</groupId>
|
2021-07-26 06:41:04 +00:00
|
|
|
<artifactId>kafka-common-lib</artifactId>
|
|
|
|
<version>${kafka-common-lib.version}</version>
|
2023-01-20 14:00:47 +00:00
|
|
|
<scope>provided</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.springframework.kafka</groupId>
|
|
|
|
<artifactId>spring-kafka</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2021-07-26 06:41:04 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2022-01-25 17:53:13 +00:00
|
|
|
<groupId>dev.vality</groupId>
|
2021-07-29 14:02:59 +00:00
|
|
|
<artifactId>clickhouse-test</artifactId>
|
2022-02-01 12:57:09 +00:00
|
|
|
<version>1.0.1</version>
|
2023-01-20 14:00:47 +00:00
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>dev.vality.woody</groupId>
|
|
|
|
<artifactId>woody-thrift</artifactId>
|
|
|
|
<version>${woody.version}</version>
|
|
|
|
<scope>provided</scope>
|
2021-07-29 14:02:59 +00:00
|
|
|
</dependency>
|
2021-08-02 13:25:05 +00:00
|
|
|
<dependency>
|
2022-02-01 12:57:09 +00:00
|
|
|
<groupId>dev.vality.geck</groupId>
|
2021-08-02 13:25:05 +00:00
|
|
|
<artifactId>common</artifactId>
|
2023-01-20 14:00:47 +00:00
|
|
|
<version>${geck.version}</version>
|
|
|
|
<scope>provided</scope>
|
2021-08-02 13:25:05 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2022-02-01 12:57:09 +00:00
|
|
|
<groupId>dev.vality.geck</groupId>
|
2021-08-02 13:25:05 +00:00
|
|
|
<artifactId>serializer</artifactId>
|
2023-01-20 14:00:47 +00:00
|
|
|
<version>${geck.version}</version>
|
|
|
|
<scope>provided</scope>
|
2021-07-26 06:41:04 +00:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!--third party-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<version>${lombok.version}</version>
|
2023-01-20 14:00:47 +00:00
|
|
|
<scope>provided</scope>
|
2021-07-26 06:41:04 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.testcontainers</groupId>
|
|
|
|
<artifactId>testcontainers</artifactId>
|
|
|
|
<version>${testcontainers.version}</version>
|
2021-07-26 07:10:25 +00:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
</exclusion>
|
2021-07-28 07:50:21 +00:00
|
|
|
<exclusion>
|
2021-10-18 07:23:19 +00:00
|
|
|
<groupId>org.apache.commons</groupId>
|
2021-07-28 07:50:21 +00:00
|
|
|
<artifactId>commons-compress</artifactId>
|
|
|
|
</exclusion>
|
2021-07-26 07:10:25 +00:00
|
|
|
</exclusions>
|
2021-07-26 06:41:04 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.testcontainers</groupId>
|
|
|
|
<artifactId>postgresql</artifactId>
|
|
|
|
<version>${testcontainers.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.testcontainers</groupId>
|
|
|
|
<artifactId>kafka</artifactId>
|
|
|
|
<version>${testcontainers.version}</version>
|
2021-07-29 14:02:59 +00:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.testcontainers</groupId>
|
|
|
|
<artifactId>clickhouse</artifactId>
|
|
|
|
<version>${testcontainers.version}</version>
|
2021-07-26 06:41:04 +00:00
|
|
|
</dependency>
|
2021-07-26 07:10:25 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.testcontainers</groupId>
|
|
|
|
<artifactId>junit-jupiter</artifactId>
|
|
|
|
<version>${testcontainers.version}</version>
|
|
|
|
</dependency>
|
2021-07-26 06:41:04 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.vintage</groupId>
|
|
|
|
<artifactId>junit-vintage-engine</artifactId>
|
|
|
|
<version>${junit-jupiter.version}</version>
|
|
|
|
</dependency>
|
2021-07-26 07:10:25 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>net.minidev</groupId>
|
|
|
|
<artifactId>json-smart</artifactId>
|
2023-01-23 09:28:51 +00:00
|
|
|
<version>2.4.8</version>
|
2021-07-26 07:10:25 +00:00
|
|
|
</dependency>
|
2021-07-28 07:50:21 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-compress</artifactId>
|
2023-01-23 09:25:18 +00:00
|
|
|
<version>1.22</version>
|
2021-07-28 07:50:21 +00:00
|
|
|
</dependency>
|
2021-08-01 09:25:57 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
2023-01-20 14:00:47 +00:00
|
|
|
<version>2.14.1</version>
|
2021-08-01 09:25:57 +00:00
|
|
|
</dependency>
|
2021-07-31 19:17:38 +00:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.github.benas</groupId>
|
|
|
|
<artifactId>random-beans</artifactId>
|
|
|
|
<version>3.9.0</version>
|
|
|
|
</dependency>
|
2021-07-26 06:41:04 +00:00
|
|
|
</dependencies>
|
|
|
|
</project>
|