mirror of
https://gitee.com/dromara/dax-pay.git
synced 2025-09-06 04:27:55 +00:00
36 lines
1.2 KiB
XML
36 lines
1.2 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>
|
|
<groupId>org.dromara.daxpay</groupId>
|
|
<artifactId>daxpay-single</artifactId>
|
|
<version>3.0.0.beta1</version>
|
|
</parent>
|
|
|
|
<artifactId>daxpay-single-core</artifactId>
|
|
|
|
|
|
<dependencies>
|
|
<!-- platform核心包 -->
|
|
<dependency>
|
|
<groupId>cn.bootx.platform</groupId>
|
|
<artifactId>bootx-platform-core</artifactId>
|
|
<version>${bootx-platform.version}</version>
|
|
</dependency>
|
|
<!-- javaEE web相关 -->
|
|
<dependency>
|
|
<groupId>jakarta.servlet</groupId>
|
|
<artifactId>jakarta.servlet-api</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.coobird</groupId>
|
|
<artifactId>thumbnailator</artifactId>
|
|
<version>0.4.20</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|