2021-05-13 10:41:46 +08:00
|
|
|
<?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>cn.lili</groupId>
|
|
|
|
<artifactId>lili-shop-parent</artifactId>
|
2021-07-12 16:33:32 +08:00
|
|
|
<version>${revision}</version>
|
|
|
|
<relativePath>../pom.xml</relativePath>
|
2021-05-13 10:41:46 +08:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<artifactId>framework</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<dependencies>
|
2025-02-21 11:11:05 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.belerweb</groupId>
|
|
|
|
<artifactId>pinyin4j</artifactId>
|
|
|
|
<version>2.5.1</version>
|
|
|
|
</dependency>
|
2022-02-11 19:30:50 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.qiniu</groupId>
|
|
|
|
<artifactId>qiniu-java-sdk</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.qiniu</groupId>
|
|
|
|
<artifactId>qiniu-java-sdk</artifactId>
|
|
|
|
<version>7.4.0</version>
|
|
|
|
</dependency>
|
2022-01-19 10:16:15 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-properties-migrator</artifactId>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
2021-09-01 19:03:36 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.junit.vintage</groupId>
|
|
|
|
<artifactId>junit-vintage-engine</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>org.hamcrest</groupId>
|
|
|
|
<artifactId>hamcrest-core</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
2021-11-23 16:56:03 +08:00
|
|
|
<!--定时任务-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-quartz</artifactId>
|
2022-02-09 16:50:37 +08:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2021-11-23 16:56:03 +08:00
|
|
|
</dependency>
|
2021-05-13 10:41:46 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-web</artifactId>
|
2021-12-10 20:15:03 +08:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>log4j-to-slf4j</artifactId>
|
|
|
|
<groupId>org.apache.logging.log4j</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2021-05-13 10:41:46 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-security</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-validation</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-configuration-processor</artifactId>
|
|
|
|
<optional>true</optional>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-aop</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-data-elasticsearch</artifactId>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>HdrHistogram</artifactId>
|
|
|
|
<groupId>org.hdrhistogram</groupId>
|
|
|
|
</exclusion>
|
2022-02-09 16:50:37 +08:00
|
|
|
<exclusion>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
</exclusion>
|
2021-05-13 10:41:46 +08:00
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework</groupId>
|
|
|
|
<artifactId>spring-context-support</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.integration</groupId>
|
|
|
|
<artifactId>spring-integration-redis</artifactId>
|
2022-02-09 16:50:37 +08:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2021-05-13 10:41:46 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-pool2</artifactId>
|
|
|
|
</dependency>
|
2021-11-23 16:56:03 +08:00
|
|
|
<!-- <!– Websocket –>-->
|
2025-03-04 09:54:15 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-websocket</artifactId>
|
|
|
|
</dependency>
|
2021-05-13 10:41:46 +08:00
|
|
|
<!-- MybatisPlus -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.baomidou</groupId>
|
|
|
|
<artifactId>mybatis-plus-boot-starter</artifactId>
|
|
|
|
<version>${mybatis-plus-version}</version>
|
2022-02-09 16:50:37 +08:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2021-05-13 10:41:46 +08:00
|
|
|
</dependency>
|
|
|
|
<!-- Mysql Connector -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
2022-05-10 14:38:57 +08:00
|
|
|
<version>8.0.29</version>
|
2021-05-13 10:41:46 +08:00
|
|
|
</dependency>
|
|
|
|
<!-- Redis-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-data-redis</artifactId>
|
|
|
|
</dependency>
|
2022-02-10 11:26:10 +08:00
|
|
|
<!-- https://mvnrepository.com/artifact/org.redisson/redisson-spring-boot-starter -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.redisson</groupId>
|
|
|
|
<artifactId>redisson</artifactId>
|
|
|
|
<version>${redisson}</version>
|
2022-05-10 14:38:57 +08:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2022-02-10 11:26:10 +08:00
|
|
|
</dependency>
|
2021-05-13 10:41:46 +08:00
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.xiaoymin</groupId>
|
|
|
|
<artifactId>knife4j-spring-boot-starter</artifactId>
|
|
|
|
<version>${knife4j.version}</version>
|
2022-02-09 16:50:37 +08:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2021-05-13 10:41:46 +08:00
|
|
|
</dependency>
|
|
|
|
<!-- Hutool工具包 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>cn.hutool</groupId>
|
|
|
|
<artifactId>hutool-all</artifactId>
|
|
|
|
<version>${Hutool-version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.github.biezhi</groupId>
|
|
|
|
<artifactId>TinyPinyin</artifactId>
|
|
|
|
<version>${TinyPinyin-verions}</version>
|
|
|
|
</dependency>
|
|
|
|
<!-- Lombok -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<version>${lombok-version}</version>
|
|
|
|
</dependency>
|
|
|
|
<!-- Jasypt加密 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.ulisesbocchio</groupId>
|
|
|
|
<artifactId>jasypt-spring-boot-starter</artifactId>
|
|
|
|
<version>${jasypt-version}</version>
|
|
|
|
</dependency>
|
|
|
|
<!-- 阿里云核心包-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.aliyun</groupId>
|
|
|
|
<artifactId>aliyun-java-sdk-core</artifactId>
|
|
|
|
<version>${aliyun-version}</version>
|
2022-02-09 16:50:37 +08:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2021-05-13 10:41:46 +08:00
|
|
|
</dependency>
|
|
|
|
<!-- 阿里云OSS -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.aliyun.oss</groupId>
|
|
|
|
<artifactId>aliyun-sdk-oss</artifactId>
|
|
|
|
<version>${aliyun-sdk-oss-version}</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>aliyun-java-sdk-core</artifactId>
|
|
|
|
<groupId>com.aliyun</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.aliyun</groupId>
|
|
|
|
<artifactId>dysmsapi20170525</artifactId>
|
|
|
|
<version>${aliyun-sdk-dysms-version}</version>
|
2022-01-19 10:16:15 +08:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>org.jacoco.agent</artifactId>
|
|
|
|
<groupId>org.jacoco</groupId>
|
|
|
|
</exclusion>
|
2022-02-09 16:50:37 +08:00
|
|
|
<exclusion>
|
|
|
|
<artifactId>bcprov-jdk15on</artifactId>
|
|
|
|
<groupId>org.bouncycastle</groupId>
|
|
|
|
</exclusion>
|
2022-01-19 10:16:15 +08:00
|
|
|
</exclusions>
|
2021-05-13 10:41:46 +08:00
|
|
|
</dependency>
|
|
|
|
<!--脚本编程-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.codehaus.groovy</groupId>
|
|
|
|
<artifactId>groovy</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<!-- rocketmq-spring-boot-starter -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.rocketmq</groupId>
|
|
|
|
<artifactId>rocketmq-spring-boot-starter</artifactId>
|
|
|
|
<version>${rocketmq-version}</version>
|
2022-01-19 10:16:15 +08:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>fastjson</artifactId>
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
</exclusion>
|
2022-02-09 16:50:37 +08:00
|
|
|
<exclusion>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
</exclusion>
|
2022-01-19 10:16:15 +08:00
|
|
|
</exclusions>
|
2021-05-13 10:41:46 +08:00
|
|
|
</dependency>
|
|
|
|
<!-- token加密 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
|
|
<artifactId>jjwt-api</artifactId>
|
|
|
|
<version>${jwt-version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
|
|
<artifactId>jjwt-impl</artifactId>
|
|
|
|
<version>${jwt-version}</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.jsonwebtoken</groupId>
|
|
|
|
<artifactId>jjwt-jackson</artifactId>
|
|
|
|
<version>${jwt-version}</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
</dependency>
|
|
|
|
<!--test-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.springframework.boot</groupId>
|
|
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
2022-02-09 16:50:37 +08:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2021-05-13 10:41:46 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- 解决版本提示问题 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.antlr</groupId>
|
|
|
|
<artifactId>antlr4</artifactId>
|
|
|
|
<version>${antlr4-version}</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-lang3</artifactId>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
|
|
<!--sharding jdbc springboot-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.shardingsphere</groupId>
|
|
|
|
<artifactId>sharding-jdbc-spring-boot-starter</artifactId>
|
|
|
|
<version>${sharding-jdbc-version}</version>
|
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>groovy</artifactId>
|
|
|
|
<groupId>org.codehaus.groovy</groupId>
|
|
|
|
</exclusion>
|
2022-01-19 10:16:15 +08:00
|
|
|
<exclusion>
|
|
|
|
<artifactId>commons-collections4</artifactId>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
</exclusion>
|
2022-02-09 16:50:37 +08:00
|
|
|
<exclusion>
|
|
|
|
<artifactId>antlr4-runtime</artifactId>
|
|
|
|
<groupId>org.antlr</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
</exclusion>
|
2021-05-13 10:41:46 +08:00
|
|
|
</exclusions>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.shardingsphere</groupId>
|
|
|
|
<artifactId>sharding-jdbc-spring-namespace</artifactId>
|
|
|
|
<version>${sharding-jdbc-version}</version>
|
2022-02-09 16:50:37 +08:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2021-05-13 10:41:46 +08:00
|
|
|
</dependency>
|
|
|
|
<!--druid-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
<artifactId>druid</artifactId>
|
|
|
|
<version>${druid-version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.xkcoding.http</groupId>
|
|
|
|
<artifactId>simple-http</artifactId>
|
|
|
|
<version>${simple-http-version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.antlr</groupId>
|
|
|
|
<artifactId>antlr4-runtime</artifactId>
|
|
|
|
<version>${antlr4-runtime-version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.alipay.sdk</groupId>
|
|
|
|
<artifactId>alipay-sdk-java</artifactId>
|
|
|
|
<version>${alipay-sdk-version}</version>
|
2022-01-19 10:16:15 +08:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>bcprov-jdk15on</artifactId>
|
|
|
|
<groupId>org.bouncycastle</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>xml-apis</artifactId>
|
|
|
|
<groupId>xml-apis</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2021-05-13 10:41:46 +08:00
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!--用户端类型处理-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>eu.bitwalker</groupId>
|
|
|
|
<artifactId>UserAgentUtils</artifactId>
|
|
|
|
<version>${userAgentUtils}</version>
|
|
|
|
</dependency>
|
2021-05-26 17:09:55 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
<artifactId>poi</artifactId>
|
|
|
|
<version>${poi-version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.poi</groupId>
|
|
|
|
<artifactId>poi-ooxml</artifactId>
|
|
|
|
<version>${poi-ooxml-version}</version>
|
|
|
|
</dependency>
|
2021-05-31 11:34:43 +08:00
|
|
|
<!--集成logstash-->
|
|
|
|
<dependency>
|
|
|
|
<groupId>net.logstash.logback</groupId>
|
|
|
|
<artifactId>logstash-logback-encoder</artifactId>
|
|
|
|
<version>${logstash-logback-encoder}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>de.codecentric</groupId>
|
|
|
|
<artifactId>spring-boot-admin-starter-client</artifactId>
|
|
|
|
<version>${de.codecentric}</version>
|
|
|
|
</dependency>
|
|
|
|
<!-- 开源多维码生成工具 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.zxing</groupId>
|
|
|
|
<artifactId>core</artifactId>
|
|
|
|
<version>${zxing}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.zxing</groupId>
|
|
|
|
<artifactId>javase</artifactId>
|
|
|
|
<version>${zxing}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
<version>${slf4j-api}</version>
|
|
|
|
</dependency>
|
|
|
|
<!-- 开源多维码生成工具 -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.xkzhangsan</groupId>
|
|
|
|
<artifactId>xk-time</artifactId>
|
|
|
|
<version>${xk-time}</version>
|
2021-06-07 15:08:12 +08:00
|
|
|
</dependency>
|
2021-06-04 10:55:35 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-text</artifactId>
|
|
|
|
<version>${commons-text}</version>
|
2021-05-31 11:34:43 +08:00
|
|
|
</dependency>
|
2021-11-11 18:15:21 +08:00
|
|
|
<!-- https://mvnrepository.com/artifact/com.googlecode.owasp-java-html-sanitizer/owasp-java-html-sanitizer -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.googlecode.owasp-java-html-sanitizer</groupId>
|
|
|
|
<artifactId>owasp-java-html-sanitizer</artifactId>
|
|
|
|
<version>${owasp-java-html-sanitizer}</version>
|
2022-01-19 10:16:15 +08:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2021-11-11 18:15:21 +08:00
|
|
|
</dependency>
|
|
|
|
|
2022-06-07 09:35:58 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>io.minio</groupId>
|
|
|
|
<artifactId>minio</artifactId>
|
|
|
|
<version>${minio.version}</version>
|
|
|
|
</dependency>
|
2023-02-16 18:16:37 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.huaweicloud</groupId>
|
|
|
|
<artifactId>esdk-obs-java</artifactId>
|
2023-03-20 08:43:13 +08:00
|
|
|
<version>${huaweicloud-obs.version}</version>
|
2023-02-16 18:16:37 +08:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.qcloud</groupId>
|
|
|
|
<artifactId>cos_api</artifactId>
|
|
|
|
<version>${cos.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.tencentcloudapi</groupId>
|
|
|
|
<artifactId>tencentcloud-sdk-java</artifactId>
|
|
|
|
<version>${tencentcloud.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.kuaidi100-api</groupId>
|
|
|
|
<artifactId>sdk</artifactId>
|
|
|
|
<version>${kuaidi100-api.version}</version>
|
|
|
|
</dependency>
|
2023-03-08 10:32:47 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.qiyuesuo.sdk</groupId>
|
|
|
|
<artifactId>SDK</artifactId>
|
|
|
|
<version>2.1.7</version>
|
|
|
|
<scope>system</scope>
|
|
|
|
<systemPath>${project.basedir}/src/main/resources/maven-repository/SF-CSIM-EXPRESS-SDK-V2.1.7.jar</systemPath>
|
|
|
|
</dependency>
|
2023-03-31 16:48:43 +08:00
|
|
|
<!-- netty-resolver-dns-native-macos -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.netty</groupId>
|
|
|
|
<artifactId>netty-resolver-dns-native-macos</artifactId>
|
|
|
|
<version>4.1.90.Final</version>
|
|
|
|
<scope>runtime</scope>
|
|
|
|
<classifier>osx-aarch_64</classifier>
|
|
|
|
</dependency>
|
2025-01-08 16:13:39 +08:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.wechatpay-apiv3</groupId>
|
|
|
|
<artifactId>wechatpay-java</artifactId>
|
|
|
|
<version>0.2.15</version>
|
|
|
|
</dependency>
|
2021-05-13 10:41:46 +08:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
|
|
|
|
</project>
|