xxl-job-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>cn.klaw</groupId> <artifactId>xxl-job-core</artifactId> <version>5.2.1-RELEASE</version> </dependency>
<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> <artifactId>klaw-scheduletask-starter</artifactId> <groupId>cn.klaw</groupId> <version>5.2.1-RELEASE</version> </parent> <groupId>cn.klaw</groupId> <artifactId>xxl-job-core</artifactId> <packaging>jar</packaging> <version>5.2.1-RELEASE</version> <properties> <netty.version>4.1.115.Final</netty.version> <gson.version>2.11.0</gson.version> <groovy.version>4.0.24</groovy.version> <slf4j-api.version>2.0.16</slf4j-api.version> </properties> <dependencies> <!-- ********************** embed server: netty + gson ********************** --> <dependency> <groupId>io.netty</groupId> <artifactId>netty-codec-http</artifactId> <version>${netty.version}</version> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>${gson.version}</version> </dependency> <!-- ********************** plugin ********************** --> <!-- groovy-all --> <dependency> <groupId>org.apache.groovy</groupId> <artifactId>groovy</artifactId> <version>${groovy.version}</version> </dependency> <!-- spring-context --> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-context</artifactId> <scope>provided</scope> <version>6.1.13</version> </dependency> <!-- ********************** base ********************** --> <!-- slf4j --> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>2.0.16</version> </dependency> </dependencies> <profiles> <profile> <id>boot3</id> <activation> <jdk>[17,)</jdk> </activation> <properties> <servlet.annotation-api.version>2.1.1</servlet.annotation-api.version> </properties> <dependencies> <!-- jakarta.annotation-api --> <dependency> <groupId>jakarta.annotation</groupId> <artifactId>jakarta.annotation-api</artifactId> <version>${servlet.annotation-api.version}</version> <scope>provided</scope> </dependency> </dependencies> </profile> <profile> <id>boot2</id> <activation> <jdk>(,17)</jdk> </activation> <properties> <servlet.annotation-api.version>1.3.2</servlet.annotation-api.version> </properties> <dependencies> <!-- javax.annotation-api --> <dependency> <groupId>javax.annotation</groupId> <artifactId>javax.annotation-api</artifactId> <version>${servlet.annotation-api.version}</version> <scope>provided</scope> </dependency> </dependencies> </profile> </profiles> <!--用于发布:开源协议...--> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <!-- 项目描述 --> <name>xxl-job源码</name> <description>xxl-job源码</description> <url>https://gitee.com/klaw2023/klaw-scheduletask.git</url> <!--用于发布:项目链接--> <scm> <url>https://gitee.com/klaw2023/klaw-scheduletask.git</url> <connection>https://gitee.com/klaw2023/klaw-scheduletask.git</connection> </scm> <!--用于发布:开发者信息--> <developers> <developer> <id>klaw</id> <name>klaw</name> <email>klawmaven@outlook.com</email> <roles> <role>Project Manager</role> <role>Architect</role> </roles> </developer> </developers> </project>