Files
schoolNews/schoolNewsServ/api/pom.xml

61 lines
2.0 KiB
XML
Raw Normal View History

2025-09-28 14:20:09 +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>school-news</artifactId>
<version>${school-news.version}</version>
</parent>
<groupId>org.xyzh</groupId>
<artifactId>api</artifactId>
<version>${school-news.version}</version>
<packaging>pom</packaging>
<modules>
2025-09-28 15:50:46 +08:00
<module>api-all</module>
2025-09-28 14:20:09 +08:00
<module>api-auth</module>
2025-09-28 15:50:46 +08:00
<module>api-system</module>
2025-09-28 14:20:09 +08:00
</modules>
<properties>
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
</properties>
2025-09-28 15:50:46 +08:00
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.xyzh</groupId>
<artifactId>api-all</artifactId>
<version>${school-news.version}</version>
</dependency>
<dependency>
<groupId>org.xyzh</groupId>
<artifactId>api-auth</artifactId>
<version>${school-news.version}</version>
</dependency>
<dependency>
<groupId>org.xyzh</groupId>
<artifactId>api-system</artifactId>
<version>${school-news.version}</version>
</dependency>
</dependencies>
</dependencyManagement>
2025-09-28 14:20:09 +08:00
<dependencies>
<dependency>
<groupId>org.xyzh</groupId>
2025-09-28 15:50:46 +08:00
<artifactId>common-core</artifactId>
<version>${school-news.version}</version>
2025-09-28 14:20:09 +08:00
</dependency>
<dependency>
<groupId>org.xyzh</groupId>
2025-09-28 15:50:46 +08:00
<artifactId>common-dto</artifactId>
<version>${school-news.version}</version>
2025-09-28 14:20:09 +08:00
</dependency>
</dependencies>
2025-09-28 15:50:46 +08:00
2025-09-28 14:20:09 +08:00
</project>