eap-spring-boot-starter-job
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.eaopen</groupId> <artifactId>eap-spring-boot-starter-job</artifactId> <version>2.7.3</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.github.eaopen</groupId> <artifactId>eap-boot-framework</artifactId> <version>2.7.3</version> </parent> <groupId>io.github.eaopen</groupId> <artifactId>eap-spring-boot-starter-job</artifactId> <version>2.7.3</version> <name>${project.artifactId}</name> <description>任务拓展,基于 XXL-Job 实现</description> <url>https://github.com/eaopen/openea-eap</url> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <distribution>repo</distribution> </license> </licenses> <dependencies> <dependency> <groupId>io.github.eaopen</groupId> <artifactId>eap-common</artifactId> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-configuration-processor</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-quartz</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>org.quartz-scheduler</groupId> <artifactId>quartz</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>com.xuxueli</groupId> <artifactId>xxl-job-core</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>tech.powerjob</groupId> <artifactId>powerjob-worker</artifactId> <optional>true</optional> </dependency> <dependency> <groupId>tech.powerjob</groupId> <artifactId>powerjob-official-processors</artifactId> </dependency> <dependency> <groupId>jakarta.validation</groupId> <artifactId>jakarta.validation-api</artifactId> </dependency> </dependencies> </project>