| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259 |
- <?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>raising</artifactId>
- <groupId>com.raising</groupId>
- <version>3.0.0</version>
- </parent>
- <modelVersion>4.0.0</modelVersion>
- <artifactId>raising-framework</artifactId>
- <description>
- framework框架核心
- </description>
- <dependencies>
- <!-- SpringBoot 拦截器 -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-aop</artifactId>
- </dependency>
- <!-- 阿里数据库连接池 -->
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>druid-spring-boot-starter</artifactId>
- </dependency>
- <!-- 获取系统信息 -->
- <dependency>
- <groupId>com.github.oshi</groupId>
- <artifactId>oshi-core</artifactId>
- </dependency>
- <dependency>
- <groupId>net.java.dev.jna</groupId>
- <artifactId>jna</artifactId>
- </dependency>
- <dependency>
- <groupId>net.java.dev.jna</groupId>
- <artifactId>jna-platform</artifactId>
- </dependency>
- <dependency>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-boot-starter</artifactId>
- <version>${mybatisplus.version}</version>
- <exclusions>
- <exclusion>
- <groupId>com.baomidou</groupId>
- <artifactId>mybatis-plus-generator</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <!--Linq表达式-->
- <dependency>
- <groupId>com.bestvike</groupId>
- <artifactId>linq</artifactId>
- <version>${bestvikelinq.version}</version>
- </dependency>
- <!--Hutool工具包-->
- <dependency>
- <groupId>cn.hutool</groupId>
- <artifactId>hutool-all</artifactId>
- <version>${hutool.version}</version>
- </dependency>
- <!-- 腾讯云 SMS -->
- <dependency>
- <groupId>com.github.qcloudsms</groupId>
- <artifactId>qcloudsms</artifactId>
- <version>${qcloudsms.version}</version>
- </dependency>
- <!-- 阿里云 SMS -->
- <dependency>
- <groupId>com.aliyun</groupId>
- <artifactId>aliyun-java-sdk-core</artifactId>
- <version>${aliyun.java.sdk.version}</version>
- </dependency>
- <dependency>
- <groupId>com.github.javen205</groupId>
- <artifactId>IJPay-All</artifactId>
- <version>${ijpay.version}</version>
- </dependency>
- <dependency>
- <groupId>com.alipay.sdk</groupId>
- <artifactId>alipay-sdk-java</artifactId>
- <version>${alipay.version}</version>
- <exclusions>
- <exclusion>
- <artifactId>fastjson</artifactId>
- <groupId>com.alibaba</groupId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>org.projectlombok</groupId>
- <artifactId>lombok</artifactId>
- <version>${projectlombok.version}</version>
- <optional>true</optional>
- </dependency>
- <!--weixin-java-common-->
- <dependency>
- <groupId>com.github.binarywang</groupId>
- <artifactId>weixin-java-common</artifactId>
- <version>${weixin-java.version}</version>
- </dependency>
- <!--weixin-java-admin-->
- <dependency>
- <groupId>com.github.binarywang</groupId>
- <artifactId>weixin-java-mp</artifactId>
- <version>${weixin-java.version}</version>
- </dependency>
- <!--weixin-java-open-->
- <dependency>
- <groupId>com.github.binarywang</groupId>
- <artifactId>weixin-java-open</artifactId>
- <version>${weixin-java.version}</version>
- </dependency>
- <!--weixin-java-miniapp-->
- <dependency>
- <groupId>com.github.binarywang</groupId>
- <artifactId>weixin-java-miniapp</artifactId>
- <version>${weixin-java.version}</version>
- </dependency>
- <!--weixin-java-pay-->
- <dependency>
- <groupId>com.github.binarywang</groupId>
- <artifactId>weixin-java-pay</artifactId>
- <version>${weixin-java.version}</version>
- </dependency>
- <!-- 框架通用工具包-->
- <dependency>
- <groupId>com.raising</groupId>
- <artifactId>raising-common</artifactId>
- <version>${project.version}</version>
- </dependency>
- <!-- 框架通用实体包-->
- <dependency>
- <groupId>com.raising</groupId>
- <artifactId>raising-core-data</artifactId>
- <version>${project.version}</version>
- </dependency>
- <!-- Sa-Token 权限认证, 在线文档:http://sa-token.dev33.cn/ -->
- <dependency>
- <groupId>cn.dev33</groupId>
- <artifactId>sa-token-spring-boot-starter</artifactId>
- <version>${sa-token-version}</version>
- </dependency>
- <!-- Sa-Token 整合 Redis (使用jackson序列化方式) -->
- <dependency>
- <groupId>cn.dev33</groupId>
- <artifactId>sa-token-dao-redis-jackson</artifactId>
- <version>${sa-token-version}</version>
- </dependency>
- <!--TTL-->
- <dependency>
- <groupId>com.alibaba</groupId>
- <artifactId>transmittable-thread-local</artifactId>
- <version>${ttl.version}</version>
- </dependency>
- <!-- BeetlSQL的目标是提供开发高效,维护高效,运行高效的数据库访问框架,
- Git仓库: https://gitee.com/xiandafu/beetlsql
- 在线文档:https://www.kancloud.cn/xiandafu/beetlsql3_guide/1960060
- -->
- <dependency>
- <groupId>com.ibeetl</groupId>
- <artifactId>sql-springboot-starter</artifactId>
- <version>${beetlsql.version}</version>
- </dependency>
- <!--必须使用0.9以上的版本-->
- <dependency>
- <groupId>com.github.jsqlparser</groupId>
- <artifactId>jsqlparser</artifactId>
- <version>${jsqlparser.version}</version>
- </dependency>
- <!--阿里oss-->
- <dependency>
- <groupId>com.aliyun.oss</groupId>
- <artifactId>aliyun-sdk-oss</artifactId>
- <version>${aliyun-sdk-oss.version}</version>
- </dependency>
- <!--七牛云-->
- <dependency>
- <groupId>com.qiniu</groupId>
- <artifactId>qiniu-java-sdk</artifactId>
- <version>${qiniu-java-sdk.version}</version>
- </dependency>
- <!--腾讯cos-->
- <dependency>
- <groupId>com.qcloud</groupId>
- <artifactId>cos_api</artifactId>
- <version>${qcloud-cos.version}</version>
- </dependency>
- <!--minio-->
- <dependency>
- <groupId>io.minio</groupId>
- <artifactId>minio</artifactId>
- <version>${minio.version}</version>
- </dependency>
- <!-- http://repo1.maven.org/maven2/com/xuxueli/xxl-job-core/ -->
- <dependency>
- <groupId>com.xuxueli</groupId>
- <artifactId>xxl-job-core</artifactId>
- <version>${xxljob.version}</version>
- </dependency>
- <!-- magic-api 接口平台工具 -->
- <!-- 文档: https://www.ssssssss.org/magic-api/pages/quick/start/ -->
- <dependency>
- <groupId>org.ssssssss</groupId>
- <artifactId>magic-api-spring-boot-starter</artifactId>
- <version>${magic.api.version}</version>
- </dependency>
- <!-- Magic-API Redis-插件 -->
- <dependency>
- <groupId>org.ssssssss</groupId>
- <artifactId>magic-api-plugin-redis</artifactId>
- <version>${magic.api.version}</version>
- </dependency>
- <!-- Magic-API Swagger-插件 -->
- <dependency>
- <groupId>org.ssssssss</groupId>
- <artifactId>magic-api-plugin-swagger</artifactId>
- <version>${magic.api.version}</version>
- </dependency>
- </dependencies>
- </project>
|