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.
55 lines
1.7 KiB
55 lines
1.7 KiB
<?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">
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<parent>
|
|
<artifactId>easy-vben</artifactId>
|
|
<groupId>com.easy.admin</groupId>
|
|
<version>1.1.0</version>
|
|
</parent>
|
|
|
|
<artifactId>easy-scheduler</artifactId>
|
|
<packaging>jar</packaging>
|
|
|
|
<description>定时任务</description>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>com.easy.admin</groupId>
|
|
<artifactId>easy-sys</artifactId>
|
|
</dependency>
|
|
<!-- 定时任务 Quartz -->
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-quartz</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>asm</artifactId>
|
|
<groupId>org.ow2.asm</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<resources>
|
|
<resource>
|
|
<directory>src/main/resources</directory>
|
|
<filtering>true</filtering>
|
|
</resource>
|
|
<resource>
|
|
<directory>src/main/java</directory>
|
|
<includes>
|
|
<include>**/*.xml</include>
|
|
</includes>
|
|
</resource>
|
|
</resources>
|
|
</build>
|
|
|
|
</project>
|