32 lines
980 B
XML
32 lines
980 B
XML
<?xml version="1.0"?>
|
|
<project
|
|
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<groupId>com.chinaunicom.ebtp</groupId>
|
|
<artifactId>mall-ebtp-cloud-parent</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<relativePath>../mall-ebtp-cloud-parent</relativePath>
|
|
</parent>
|
|
|
|
<groupId>com.chinaunicom.ebtp</groupId>
|
|
<artifactId>mall-ebtp-cloud-eureka-starter</artifactId>
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
<name>mall-ebtp-cloud-eureka-starter</name>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.cloud</groupId>
|
|
<artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.chinaunicom.ebtp</groupId>
|
|
<artifactId>mall-ebtp-cloud-mvc-starter</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|