Blame view

cloud/server1/pom.xml 2.27 KB
a94761b5   陶汉栋   no message
1
2
<?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"
7d998aa6   陶汉栋   Merge branch 'mas...
3
         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
a94761b5   陶汉栋   no message
4
5
    <modelVersion>4.0.0</modelVersion>
    <parent>
f07769a9   陈杰   代码整理
6
7
8
        <groupId>org.springframework.boot</groupId>
        <artifactId>spring-boot-starter-parent</artifactId>
        <version>2.1.6.RELEASE</version>
a94761b5   陶汉栋   no message
9
        <relativePath/> <!-- lookup parent from repository -->
7d998aa6   陶汉栋   Merge branch 'mas...
10
    </parent>
a94761b5   陶汉栋   no message
11
    <groupId>com.example</groupId>
7d998aa6   陶汉栋   Merge branch 'mas...
12
    <artifactId>server1</artifactId>
a94761b5   陶汉栋   no message
13
14
15
    <version>1.0.0</version>
    <name>server1</name>
    <description>Demo project for Spring Boot</description>
6f262f5b   陶汉栋   网关服务优化
16

6f262f5b   陶汉栋   网关服务优化
17
18
19
20
21
22
23
    <properties>
        <java.version>1.8</java.version>
        <spring-cloud.version>Greenwich.SR1</spring-cloud.version>
    </properties>

    <dependencies>
        <dependency>
a94761b5   陶汉栋   no message
24
25
26
27
28
29
30
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
        </dependency>
300963ec   陶汉栋   打包build添加
31

a94761b5   陶汉栋   no message
32
33
34
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-configuration-processor</artifactId>