| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051 |
- <?xml version="1.0" encoding="UTF-8" standalone="no"?>
- <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>
- <artifactId>aivfo-model-parent</artifactId>
- <groupId>com.aivfo</groupId>
- <version>${revision}</version>
- <relativePath>../../ability/aivfo-framework-build/aivfo-project-build/aivfo-model-parent/pom.xml</relativePath>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <packaging>pom</packaging>
- <artifactId>aivfo-xxljob-spring-boot</artifactId>
- <dependencyManagement>
- <dependencies>
- <dependency>
- <groupId>com.aivfo</groupId>
- <artifactId>aivfo-xxljob-spring-boot-starter</artifactId>
- <version>${revision}</version>
- </dependency>
- <dependency>
- <groupId>com.aivfo</groupId>
- <artifactId>aivfo-xxljob-spring-boot-autoconfigure</artifactId>
- <version>${revision}</version>
- </dependency>
- <dependency>
- <groupId>com.aivfo</groupId>
- <artifactId>aivfo-xxljob-spring-boot-core</artifactId>
- <version>${revision}</version>
- </dependency>
- <dependency>
- <groupId>com.xuxueli</groupId>
- <artifactId>xxl-job-core</artifactId>
- <version>2.4.0</version>
- </dependency>
- <!-- https://mvnrepository.com/artifact/com.cronutils/cron-utils -->
- <dependency>
- <groupId>com.cronutils</groupId>
- <artifactId>cron-utils</artifactId>
- <version>9.2.1</version>
- </dependency>
- </dependencies>
- </dependencyManagement>
- <modules>
- <module>aivfo-xxljob-spring-boot-core</module>
- <module>aivfo-xxljob-spring-boot-autoconfigure</module>
- <module>aivfo-xxljob-spring-boot-starter</module>
- </modules>
- </project>
|