123456789101112131415161718192021222324252627282930313233343536373839 |
- <?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>gihon.component</groupId>
- <artifactId>component-parent</artifactId>
- <version>0.0.1-SNAPSHOT</version>
- <relativePath>../</relativePath>
- </parent>
- <artifactId>component-sso</artifactId>
- <name>component-sso</name>
- <description>单点登录模块,可以单独部署,也可以集成</description>
- <properties>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- </properties>
- <dependencies>
- <dependency>
- <groupId>gihon.component</groupId>
- <artifactId>component-common</artifactId>
- </dependency>
- <dependency>
- <groupId>gihon.component</groupId>
- <artifactId>component-websecurity</artifactId>
- </dependency>
- </dependencies>
- <build>
- <!-- <plugins>
- <plugin>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-maven-plugin</artifactId>
- </plugin>
- </plugins> -->
- </build>
- </project>
|