47 lines
1.5 KiB
XML
47 lines
1.5 KiB
XML
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://maven.apache.org/POM/4.0.0"
|
|
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.auth</groupId>
|
|
<artifactId>auth-server</artifactId>
|
|
<version>0.0.1</version>
|
|
</parent>
|
|
|
|
<artifactId>auth-services</artifactId>
|
|
<packaging>pom</packaging>
|
|
<version>0.0.1</version>
|
|
<name>auth-services</name>
|
|
<description>服务模块</description>
|
|
|
|
<modules>
|
|
<module>service-base</module>
|
|
</modules>
|
|
|
|
<properties>
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
<maven.compiler.source>17</maven.compiler.source>
|
|
<maven.compiler.target>17</maven.compiler.target>
|
|
<java.version>17</java.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.auth</groupId>
|
|
<artifactId>module-security</artifactId>
|
|
<version>0.0.1</version>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-thymeleaf</artifactId>
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
</project>
|