| 1234567891011121314151617181920212223 |
- <?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>cn.tz.cloud</groupId>
- <artifactId>tz</artifactId>
- <version>${revision}</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>tz-module-quartz</artifactId>
- <packaging>pom</packaging>
- <name>${project.artifactId}</name>
- <description>
- quartz 定时任务模块,提供统一的定时任务调度服务,避免多节点重复执行
- </description>
- <modules>
- <module>tz-module-quartz-biz</module>
- </modules>
- </project>
|