mirror of
https://gitee.com/dromara/dax-pay.git
synced 2025-09-09 13:59:05 +00:00
40 lines
1.4 KiB
XML
40 lines
1.4 KiB
XML
<?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>
|
|
<groupId>cn.bootx.platform</groupId>
|
|
<artifactId>bootx-common-starters</artifactId>
|
|
<version>1.3.6.2</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>common-starter-quartz</artifactId>
|
|
<description>定时任务</description>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<artifactId>spring-boot-starter-quartz</artifactId>
|
|
<exclusions>
|
|
<exclusion>
|
|
<artifactId>c3p0</artifactId>
|
|
<groupId>com.mchange</groupId>
|
|
</exclusion>
|
|
<exclusion>
|
|
<artifactId>HikariCP-java6</artifactId>
|
|
<groupId>com.zaxxer</groupId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>cn.bootx.platform</groupId>
|
|
<artifactId>common-mybatis-plus</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|