2026-02-02 15:36:13 +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">
|
|
|
|
|
<parent>
|
|
|
|
|
<groupId>org.dromara</groupId>
|
2026-02-03 20:47:45 +08:00
|
|
|
<artifactId>pangu-modules</artifactId>
|
2026-02-02 15:36:13 +08:00
|
|
|
<version>${revision}</version>
|
|
|
|
|
</parent>
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<packaging>jar</packaging>
|
2026-02-03 20:47:45 +08:00
|
|
|
<artifactId>pangu-job</artifactId>
|
2026-02-02 15:36:13 +08:00
|
|
|
|
|
|
|
|
<description>
|
|
|
|
|
任务调度
|
|
|
|
|
</description>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
|
|
|
|
|
<!-- 通用工具-->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.dromara</groupId>
|
2026-02-03 20:47:45 +08:00
|
|
|
<artifactId>pangu-common-json</artifactId>
|
2026-02-02 15:36:13 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.dromara</groupId>
|
2026-02-03 20:47:45 +08:00
|
|
|
<artifactId>pangu-common-job</artifactId>
|
2026-02-02 15:36:13 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
</project>
|
|
|
|
|
|