You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
67 lines
2.2 KiB
67 lines
2.2 KiB
3 years ago
|
<?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">
|
||
|
<parent>
|
||
|
<artifactId>spring-cloud-tencent-starters</artifactId>
|
||
|
<groupId>com.tencent.cloud</groupId>
|
||
|
<version>${revision}</version>
|
||
|
<relativePath>../pom.xml</relativePath>
|
||
|
</parent>
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
||
|
<artifactId>spring-cloud-tencent-commons</artifactId>
|
||
|
<name>Spring Cloud Tencent Commons</name>
|
||
|
|
||
|
<properties>
|
||
|
<commons.collections.version>3.2.2</commons.collections.version>
|
||
|
<commons.lang.version>2.5</commons.lang.version>
|
||
|
<commons.io.version>2.6</commons.io.version>
|
||
|
</properties>
|
||
|
|
||
|
<dependencies>
|
||
|
<!-- Polaris dependencies start -->
|
||
|
<dependency>
|
||
|
<groupId>com.tencent.nameservice</groupId>
|
||
|
<artifactId>polaris-model</artifactId>
|
||
|
</dependency>
|
||
|
<!-- Polaris dependencies end -->
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot</artifactId>
|
||
|
<optional>true</optional>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.cloud</groupId>
|
||
|
<artifactId>spring-cloud-starter-netflix-ribbon</artifactId>
|
||
|
<optional>true</optional>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>commons-collections</groupId>
|
||
|
<artifactId>commons-collections</artifactId>
|
||
|
<version>${commons.collections.version}</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>commons-lang</groupId>
|
||
|
<artifactId>commons-lang</artifactId>
|
||
|
<version>${commons.lang.version}</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>commons-io</groupId>
|
||
|
<artifactId>commons-io</artifactId>
|
||
|
<version>${commons.io.version}</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>com.google.guava</groupId>
|
||
|
<artifactId>guava</artifactId>
|
||
|
<version>28.0-jre</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
</project>
|