41 lines
1.3 KiB
XML
41 lines
1.3 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-module</artifactId>
|
||
|
<packaging>pom</packaging>
|
||
|
<name>auth-module</name>
|
||
|
<description>常用的模块</description>
|
||
|
|
||
|
<modules>
|
||
|
<module>module-security</module>
|
||
|
<module>module-generator-code</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>auth-common</artifactId>
|
||
|
<version>0.0.1</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.springframework.boot</groupId>
|
||
|
<artifactId>spring-boot-starter-test</artifactId>
|
||
|
<scope>test</scope>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
</project>
|