pom.xml 1.4 KB
Newer Older
1 2 3 4 5 6
<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">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>com.zlt</groupId>
        <artifactId>sso-demo</artifactId>
Z
zhult13 已提交
7
        <version>5.3.0</version>
8 9 10 11 12 13
    </parent>
    <artifactId>web-sso</artifactId>
    <description>前后端分离单点登录demo</description>
    
    <dependencies>
        <dependency>
zlt2000's avatar
zlt2000 已提交
14 15
            <groupId>cn.hutool</groupId>
            <artifactId>hutool-all</artifactId>
16 17 18 19 20
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
zlt2000's avatar
zlt2000 已提交
21 22 23 24
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-context</artifactId>
        </dependency>
25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <executions>
                    <execution>
                        <goals>
                            <goal>repackage</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
    </build>
</project>