mirror of https://github.com/elunez/eladmin
49 lines
1.6 KiB
XML
49 lines
1.6 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>
|
|
<artifactId>eladmin</artifactId>
|
|
<groupId>me.zhengjie</groupId>
|
|
<version>2.7</version>
|
|
</parent>
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<artifactId>eladmin-tools</artifactId>
|
|
<name>Tools Module</name>
|
|
|
|
<properties>
|
|
<mail.version>1.4.7</mail.version>
|
|
<qiniu.version>7.9.3</qiniu.version>
|
|
<alipay.version>4.22.57.ALL</alipay.version>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<!-- If you need both the common module and the logging module at the same time, just import the logging module. -->
|
|
<dependency>
|
|
<groupId>me.zhengjie</groupId>
|
|
<artifactId>eladmin-logging</artifactId>
|
|
<version>2.7</version>
|
|
</dependency>
|
|
|
|
<!-- Email dependency -->
|
|
<dependency>
|
|
<groupId>javax.mail</groupId>
|
|
<artifactId>mail</artifactId>
|
|
<version>${mail.version}</version>
|
|
</dependency>
|
|
|
|
<!-- Qiniu Cloud Storage -->
|
|
<dependency>
|
|
<groupId>com.qiniu</groupId>
|
|
<artifactId>qiniu-java-sdk</artifactId>
|
|
<version>${qiniu.version}</version>
|
|
</dependency>
|
|
|
|
<!-- Alipay dependency -->
|
|
<dependency>
|
|
<groupId>com.alipay.sdk</groupId>
|
|
<artifactId>alipay-sdk-java</artifactId>
|
|
<version>${alipay.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|