Blame view

cloud/server2/pom.xml 1.24 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 https://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>com.sincere</groupId>
        <artifactId>cloud</artifactId>
        <version>1.0.0</version>
a94761b5   陶汉栋   no message
9
    </parent>
7d998aa6   陶汉栋   Merge branch 'mas...
10
    <groupId>com.sincere</groupId>
a94761b5   陶汉栋   no message
11
    <artifactId>server2</artifactId>
7d998aa6   陶汉栋   Merge branch 'mas...
12
    <version>0.0.1-SNAPSHOT</version>
a94761b5   陶汉栋   no message
13
14
15
    <name>server2</name>
    <description>Demo project for Spring Boot</description>

6f262f5b   陶汉栋   网关服务优化
16
17
18
19
20
21
22
    <dependencies>
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-netflix-eureka-server</artifactId>
        </dependency>
    </dependencies>

a94761b5   陶汉栋   no message
23
24
25
26
27
    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
b290142e   陶汉栋   no message
28
29
30
                <configuration>
                    <includeSystemScope>true</includeSystemScope>
                </configuration>
a94761b5   陶汉栋   no message
31
32
            </plugin>
        </plugins>
300963ec   陶汉栋   打包build添加
33
        <finalName>${project.artifactId}</finalName>
a94761b5   陶汉栋   no message
34
35
36
    </build>

</project>