2018-09-26 20:05:17 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
2020-06-12 16:05:25 +08:00
|
|
|
~ Copyright 1999-2018 Alibaba Group Holding Ltd.
|
|
|
|
~
|
|
|
|
~ Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
~ you may not use this file except in compliance with the License.
|
|
|
|
~ You may obtain a copy of the License at
|
|
|
|
~
|
|
|
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
~
|
|
|
|
~ Unless required by applicable law or agreed to in writing, software
|
|
|
|
~ distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
~ See the License for the specific language governing permissions and
|
|
|
|
~ limitations under the License.
|
|
|
|
-->
|
2018-07-21 00:27:23 +08:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2018-10-01 12:15:21 +08:00
|
|
|
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">
|
|
|
|
<parent>
|
|
|
|
<groupId>com.alibaba.nacos</groupId>
|
|
|
|
<artifactId>nacos-all</artifactId>
|
2021-01-15 14:37:47 +08:00
|
|
|
<version>${revision}</version>
|
2018-10-01 12:15:21 +08:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2018-07-21 00:27:23 +08:00
|
|
|
|
2018-10-01 12:15:21 +08:00
|
|
|
<artifactId>nacos-test</artifactId>
|
2021-04-23 18:36:02 +08:00
|
|
|
<packaging>pom</packaging>
|
2018-07-21 00:27:23 +08:00
|
|
|
|
2018-10-01 12:15:21 +08:00
|
|
|
<name>nacos-test ${project.version}</name>
|
2023-01-10 09:47:52 +08:00
|
|
|
<url>https://nacos.io</url>
|
2021-04-23 18:36:02 +08:00
|
|
|
<modules>
|
|
|
|
<module>config-test</module>
|
|
|
|
<module>naming-test</module>
|
|
|
|
<module>core-test</module>
|
|
|
|
</modules>
|
|
|
|
|
2018-10-01 12:15:21 +08:00
|
|
|
<dependencies>
|
2018-07-21 00:27:23 +08:00
|
|
|
|
2018-10-01 12:15:21 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-classic</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ch.qos.logback</groupId>
|
|
|
|
<artifactId>logback-core</artifactId>
|
|
|
|
</dependency>
|
2018-07-21 00:27:23 +08:00
|
|
|
|
2018-12-14 17:48:57 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>nacos-api</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2018-10-01 12:15:21 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>nacos-client</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>nacos-config</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>nacos-naming</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>nacos-core</artifactId>
|
|
|
|
</dependency>
|
2018-10-01 11:19:53 +08:00
|
|
|
|
2020-01-06 16:02:32 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>nacos-console</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2020-01-09 19:13:37 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
<artifactId>nacos-address</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
2018-10-01 12:15:21 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2018-10-01 11:19:53 +08:00
|
|
|
|
2018-10-01 12:15:21 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-test</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2022-05-23 15:03:40 +08:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpclient</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2019-05-24 15:19:02 +08:00
|
|
|
<dependency>
|
2022-05-23 15:03:40 +08:00
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpmime</artifactId>
|
2019-05-24 15:19:02 +08:00
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
|
2018-10-01 12:15:21 +08:00
|
|
|
</dependencies>
|
2018-07-21 00:27:23 +08:00
|
|
|
</project>
|