pom.xml 908 字节
Newer Older
武汉红喜's avatar
rename  
武汉红喜 已提交
1 2 3 4 5
<?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>
武汉红喜's avatar
武汉红喜 已提交
6
        <groupId>org.hongxi</groupId>
武汉红喜's avatar
武汉红喜 已提交
7 8
        <artifactId>whatsmars-spring-cloud</artifactId>
        <version>1.0-SNAPSHOT</version>
武汉红喜's avatar
rename  
武汉红喜 已提交
9 10 11 12 13 14 15
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>whatsmars-cloud-eureka</artifactId>
    <name>${project.artifactId}</name>

    <properties>
武汉红喜's avatar
武汉红喜 已提交
16
        <start-class>org.hongxi.whatsmars.cloud.eureka.EurekaApplication</start-class>
武汉红喜's avatar
rename  
武汉红喜 已提交
17 18 19 20 21
    </properties>

    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
武汉红喜's avatar
武汉红喜 已提交
22
            <artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
武汉红喜's avatar
rename  
武汉红喜 已提交
23 24 25 26
        </dependency>
    </dependencies>

</project>