You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
1.2 KiB
36 lines
1.2 KiB
7 years ago
|
<?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>xxl-job-executor-samples</artifactId>
|
||
|
<groupId>com.xuxueli</groupId>
|
||
|
<version>1.8.2-SNAPSHOT</version>
|
||
|
</parent>
|
||
|
<modelVersion>4.0.0</modelVersion>
|
||
|
<artifactId>xxl-job-executor-sample-jfinal</artifactId>
|
||
|
<packaging>war</packaging>
|
||
|
|
||
|
<dependencies>
|
||
|
<!-- jfinal -->
|
||
|
<dependency>
|
||
|
<groupId>com.jfinal</groupId>
|
||
|
<artifactId>jfinal</artifactId>
|
||
|
<version>2.0</version>
|
||
|
</dependency>
|
||
|
|
||
|
<!-- xxl-job -->
|
||
|
<dependency>
|
||
|
<groupId>com.xuxueli</groupId>
|
||
|
<artifactId>xxl-job-core</artifactId>
|
||
|
<version>${project.parent.version}</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>org.slf4j</groupId>
|
||
|
<artifactId>slf4j-log4j12</artifactId>
|
||
|
<version>${slf4j-api.version}</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
|
||
|
</project>
|