2025-07-17 22:30:03 +08:00
|
|
|
<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-services</artifactId>
|
|
|
|
<version>0.0.1</version>
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>service-base</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<name>service-base</name>
|
|
|
|
<description>基础服务模块</description>
|
|
|
|
|
|
|
|
<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>
|
2025-07-18 00:20:37 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.auth</groupId>
|
|
|
|
<artifactId>dao-base</artifactId>
|
|
|
|
<version>0.0.1</version>
|
|
|
|
</dependency>
|
|
|
|
|
2025-07-17 22:30:03 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-devtools</artifactId>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</project>
|