67 lines
2.0 KiB
XML
67 lines
2.0 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">
|
||
|
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
<parent>
|
||
|
|
<artifactId>uling</artifactId>
|
||
|
|
<groupId>cc.uling</groupId>
|
||
|
|
<version>1.0</version>
|
||
|
|
</parent>
|
||
|
|
<artifactId>uling-merchant</artifactId>
|
||
|
|
<packaging>jar</packaging>
|
||
|
|
|
||
|
|
<dependencies>
|
||
|
|
<dependency>
|
||
|
|
<groupId>cc.uling</groupId>
|
||
|
|
<artifactId>uling-yc-service</artifactId>
|
||
|
|
<version>1.0</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- hutool (jwt) -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>cn.hutool</groupId>
|
||
|
|
<artifactId>hutool-jwt</artifactId>
|
||
|
|
<version>5.8.27</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.commons</groupId>
|
||
|
|
<artifactId>commons-text</artifactId>
|
||
|
|
<version>1.10.0</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- 定时任务 -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.quartz-scheduler</groupId>
|
||
|
|
<artifactId>quartz</artifactId>
|
||
|
|
<version>2.3.2</version>
|
||
|
|
<exclusions>
|
||
|
|
<exclusion>
|
||
|
|
<groupId>com.mchange</groupId>
|
||
|
|
<artifactId>c3p0</artifactId>
|
||
|
|
</exclusion>
|
||
|
|
</exclusions>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>cloud.tianai.captcha</groupId>
|
||
|
|
<artifactId>tianai-captcha</artifactId>
|
||
|
|
<version>1.5.1</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>io.swagger</groupId>
|
||
|
|
<artifactId>swagger-core</artifactId>
|
||
|
|
<version>1.5.21</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
</dependencies>
|
||
|
|
|
||
|
|
<properties>
|
||
|
|
<maven.compiler.source>8</maven.compiler.source>
|
||
|
|
<maven.compiler.target>8</maven.compiler.target>
|
||
|
|
</properties>
|
||
|
|
|
||
|
|
</project>
|