2018-09-26 20:05:17 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
<!--
|
2020-06-12 15:44:51 +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"
|
2020-06-18 17:05:15 +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">
|
|
|
|
|
2018-10-01 10:58:27 +08:00
|
|
|
<parent>
|
|
|
|
<groupId>com.alibaba.nacos</groupId>
|
|
|
|
<artifactId>nacos-all</artifactId>
|
2020-11-05 19:38:15 +08:00
|
|
|
<version>2.0.0-ALPHA</version>
|
2018-10-01 10:58:27 +08:00
|
|
|
<relativePath>../pom.xml</relativePath>
|
|
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2020-06-18 17:05:15 +08:00
|
|
|
|
2018-10-01 10:58:27 +08:00
|
|
|
<artifactId>nacos-common</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
2020-06-18 17:05:15 +08:00
|
|
|
|
2018-10-01 10:58:27 +08:00
|
|
|
<name>nacos-common ${project.version}</name>
|
2020-06-01 18:35:20 +08:00
|
|
|
<url>http://nacos.io</url>
|
2020-06-18 17:05:15 +08:00
|
|
|
|
2018-10-01 10:58:27 +08:00
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
</properties>
|
2020-06-18 17:05:15 +08:00
|
|
|
|
2018-10-01 10:58:27 +08:00
|
|
|
<dependencies>
|
2018-10-02 11:20:54 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
</dependency>
|
2020-06-18 17:05:15 +08:00
|
|
|
|
2018-10-01 10:58:27 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>commons-io</groupId>
|
|
|
|
<artifactId>commons-io</artifactId>
|
|
|
|
</dependency>
|
2020-08-10 09:11:53 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.rsocket</groupId>
|
|
|
|
<artifactId>rsocket-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.rsocket</groupId>
|
|
|
|
<artifactId>rsocket-transport-netty</artifactId>
|
|
|
|
</dependency>
|
2020-03-26 12:06:35 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
|
|
<artifactId>httpasyncclient</artifactId>
|
|
|
|
</dependency>
|
2020-06-18 17:05:15 +08:00
|
|
|
|
2019-11-07 16:02:01 +08:00
|
|
|
<dependency>
|
2020-06-06 17:24:37 +08:00
|
|
|
<groupId>${project.groupId}</groupId>
|
2019-11-07 16:02:01 +08:00
|
|
|
<artifactId>nacos-api</artifactId>
|
|
|
|
</dependency>
|
2020-06-18 17:05:15 +08:00
|
|
|
|
2020-04-16 23:50:08 +08:00
|
|
|
<dependency>
|
2020-04-23 15:22:16 +08:00
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-core</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
|
|
<artifactId>jackson-databind</artifactId>
|
2020-04-16 23:50:08 +08:00
|
|
|
</dependency>
|
2020-06-18 17:05:15 +08:00
|
|
|
|
2018-10-01 10:58:27 +08:00
|
|
|
<!-- Test -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2020-06-18 17:05:15 +08:00
|
|
|
|
2018-10-01 10:58:27 +08:00
|
|
|
</dependencies>
|
2019-02-28 17:52:06 +08:00
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
2020-09-08 15:30:11 +08:00
|
|
|
<source>6</source>
|
|
|
|
<target>6</target>
|
2019-02-28 17:52:06 +08:00
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
2019-07-11 01:48:11 +08:00
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<directory>src/main/resources</directory>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
<includes>
|
|
|
|
<include>nacos-version.txt</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
2019-02-28 17:52:06 +08:00
|
|
|
</build>
|
2018-07-21 00:27:23 +08:00
|
|
|
</project>
|