| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- <?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>
- <artifactId>jeecg-boot-parent</artifactId>
- <groupId>org.jeecgframework.boot</groupId>
- <version>2.0.2</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>xxl-job-core</artifactId>
- <name>${project.artifactId}</name>
- <description>A distributed task scheduling framework.</description>
- <url>https://www.xuxueli.com/</url>
- <properties>
- <xxl-rpc.version>1.5.0</xxl-rpc.version>
- <spring.version>5.2.3.RELEASE</spring.version>
- <groovy.version>2.5.9</groovy.version>
- </properties>
- <dependencies>
- <!-- xxl-rpc-core -->
- <dependency>
- <groupId>com.xuxueli</groupId>
- <artifactId>xxl-rpc-core</artifactId>
- <version>${xxl-rpc.version}</version>
- </dependency>
- <!-- groovy-all -->
- <dependency>
- <groupId>org.codehaus.groovy</groupId>
- <artifactId>groovy</artifactId>
- <version>3.0.2</version>
- </dependency>
- <!-- spring-context -->
- <dependency>
- <groupId>org.springframework</groupId>
- <artifactId>spring-context</artifactId>
- <version>${spring.version}</version>
- <scope>provided</scope>
- </dependency>
- <!-- junit -->
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>4.11</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
- </project>
|