You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

113 lines
3.6 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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>org.alis.rpc</groupId>
<artifactId>alis-rpc</artifactId>
<version>peak-1.0</version>
</parent>
<artifactId>alis-rpc-test</artifactId>
<version>peak-1.0</version>
<name>alis-rpc-test</name>
<description>alis-rpc-test 单元测试</description>
<repositories>
<repository>
<id>maven-ali</id>
<url>http://maven.aliyun.com/nexus/content/groups/public/</url>
</repository>
</repositories>
<properties>
<java.version>11</java.version>
<testcontainers.version>1.14.3</testcontainers.version>
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-devtools</artifactId>
<scope>runtime</scope>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.projectlombok</groupId>
<artifactId>lombok</artifactId>
<optional>true</optional>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
<exclusions>
<exclusion>
<groupId>org.junit.vintage</groupId>
<artifactId>junit-vintage-engine</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>junit-jupiter</artifactId>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.alis.rpc</groupId>
<artifactId>alis-rpc-server</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.alis.rpc</groupId>
<artifactId>ap-rpc-common</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.alis.rpc</groupId>
<artifactId>alis-rpc-client</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.alis.rpc</groupId>
<artifactId>ap-rpc-client</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>org.alis.rpc</groupId>
<artifactId>ap-rpc-server</artifactId>
<version>${project.version}</version>
</dependency>
</dependencies>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.testcontainers</groupId>
<artifactId>testcontainers-bom</artifactId>
<version>${testcontainers.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
<build>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
</plugin>
</plugins>
</build>
</project>