2025-12-02 13:21:18 +08:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
|
|
|
|
<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>org.xyzh</groupId>
|
|
|
|
|
<artifactId>urban-lifeline</artifactId>
|
|
|
|
|
<version>1.0.0</version>
|
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<groupId>org.xyzh</groupId>
|
|
|
|
|
<artifactId>common</artifactId>
|
|
|
|
|
<version>1.0.0</version>
|
|
|
|
|
<packaging>pom</packaging>
|
|
|
|
|
<modules>
|
|
|
|
|
<module>common-dto</module>
|
|
|
|
|
<module>common-core</module>
|
|
|
|
|
<module>common-auth</module>
|
|
|
|
|
<module>common-redis</module>
|
|
|
|
|
<module>common-utils</module>
|
2025-12-19 11:11:51 +08:00
|
|
|
<module>common-jdbc</module>
|
2025-12-02 13:21:18 +08:00
|
|
|
<module>common-all</module>
|
2025-12-18 16:48:45 +08:00
|
|
|
<module>common-exception</module>
|
2025-12-19 14:37:29 +08:00
|
|
|
<module>common-wechat</module>
|
2025-12-02 13:21:18 +08:00
|
|
|
</modules>
|
|
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
|
<maven.compiler.source>21</maven.compiler.source>
|
|
|
|
|
<maven.compiler.target>21</maven.compiler.target>
|
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<dependencyManagement>
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.xyzh.common</groupId>
|
|
|
|
|
<artifactId>common-all</artifactId>
|
|
|
|
|
<version>${urban-lifeline.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.xyzh.common</groupId>
|
|
|
|
|
<artifactId>common-auth</artifactId>
|
|
|
|
|
<version>${urban-lifeline.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.xyzh.common</groupId>
|
|
|
|
|
<artifactId>common-core</artifactId>
|
|
|
|
|
<version>${urban-lifeline.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.xyzh.common</groupId>
|
|
|
|
|
<artifactId>common-dto</artifactId>
|
|
|
|
|
<version>${urban-lifeline.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.xyzh.common</groupId>
|
|
|
|
|
<artifactId>common-redis</artifactId>
|
|
|
|
|
<version>${urban-lifeline.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.xyzh.common</groupId>
|
|
|
|
|
<artifactId>common-utils</artifactId>
|
|
|
|
|
<version>${urban-lifeline.version}</version>
|
|
|
|
|
</dependency>
|
2025-12-18 16:48:45 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.xyzh.common</groupId>
|
|
|
|
|
<artifactId>common-exception</artifactId>
|
|
|
|
|
<version>${urban-lifeline.version}</version>
|
|
|
|
|
</dependency>
|
2025-12-19 11:11:51 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.xyzh.common</groupId>
|
|
|
|
|
<artifactId>common-jdbc</artifactId>
|
|
|
|
|
<version>${urban-lifeline.version}</version>
|
|
|
|
|
</dependency>
|
2025-12-19 14:37:29 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.xyzh.common</groupId>
|
|
|
|
|
<artifactId>common-wechat</artifactId>
|
|
|
|
|
<version>${urban-lifeline.version}</version>
|
|
|
|
|
</dependency>
|
2025-12-02 13:21:18 +08:00
|
|
|
</dependencies>
|
|
|
|
|
</dependencyManagement>
|
2025-12-22 17:03:37 +08:00
|
|
|
<dependencies>
|
|
|
|
|
<!-- Jakarta Servlet API (用于 ServletUtils) -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>jakarta.servlet</groupId>
|
|
|
|
|
<artifactId>jakarta.servlet-api</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- Spring Web (用于 FastJsonConfiguration) -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-web</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
|
<artifactId>spring-webmvc</artifactId>
|
|
|
|
|
<scope>provided</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
</dependencies>
|
2025-12-02 13:21:18 +08:00
|
|
|
</project>
|