123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134 |
- <?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.stylefeng</groupId>
- <artifactId>guns-base-support</artifactId>
- <version>1.1.0</version>
- <relativePath>../pom.xml</relativePath>
- </parent>
- <artifactId>guns-system</artifactId>
- <packaging>jar</packaging>
- <dependencies>
- <!-- guns核心包 -->
- <dependency>
- <groupId>cn.stylefeng</groupId>
- <artifactId>guns-core</artifactId>
- <version>1.1.0</version>
- </dependency>
- <!-- test -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-test</artifactId>
- <scope>test</scope>
- </dependency>
- <!-- processor -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-configuration-processor</artifactId>
- <optional>true</optional>
- </dependency>
- <!-- redis,使用jedis客户端排除lettuce -->
- <dependency>
- <groupId>org.springframework.boot</groupId>
- <artifactId>spring-boot-starter-data-redis</artifactId>
- <optional>true</optional>
- <exclusions>
- <exclusion>
- <groupId>io.lettuce</groupId>
- <artifactId>lettuce-core</artifactId>
- </exclusion>
- </exclusions>
- </dependency>
- <dependency>
- <groupId>redis.clients</groupId>
- <artifactId>jedis</artifactId>
- <optional>true</optional>
- </dependency>
- <!-- jwt token -->
- <dependency>
- <groupId>io.jsonwebtoken</groupId>
- <artifactId>jjwt</artifactId>
- </dependency>
- <!--swagger接口文档-->
- <dependency>
- <groupId>io.springfox</groupId>
- <artifactId>springfox-swagger2</artifactId>
- </dependency>
- <dependency>
- <groupId>io.springfox</groupId>
- <artifactId>springfox-swagger-ui</artifactId>
- </dependency>
- <dependency>
- <groupId>com.github.xiaoymin</groupId>
- <artifactId>swagger-bootstrap-ui</artifactId>
- <version>1.9.6</version>
- </dependency>
- <!--阿里云和腾讯云oss-->
- <dependency>
- <groupId>cn.stylefeng.roses</groupId>
- <artifactId>kernel-file</artifactId>
- </dependency>
- <!--默认去掉第三方依赖,减少打包的体积,需要的话自行放开-->
- <!-- <dependency>-->
- <!-- <groupId>com.aliyun.oss</groupId>-->
- <!-- <artifactId>aliyun-sdk-oss</artifactId>-->
- <!-- <version>3.8.0</version>-->
- <!-- </dependency>-->
- <!-- <dependency>-->
- <!-- <groupId>com.qcloud</groupId>-->
- <!-- <artifactId>cos_api</artifactId>-->
- <!-- <version>5.6.23</version>-->
- <!-- </dependency>-->
- <!--阿里云和腾讯云短信服务-->
- <dependency>
- <groupId>cn.stylefeng.roses</groupId>
- <artifactId>kernel-sms</artifactId>
- </dependency>
- <!--默认配置了阿里云的短信-->
- <dependency>
- <groupId>com.aliyun</groupId>
- <artifactId>aliyun-java-sdk-core</artifactId>
- <version>4.4.6</version>
- </dependency>
- <dependency>
- <groupId>com.aliyun</groupId>
- <artifactId>aliyun-java-sdk-ecs</artifactId>
- <version>4.17.6</version>
- </dependency>
- <!--默认去掉第三方依赖,减少打包的体积,需要的话自行放开-->
- <!-- <dependency>-->
- <!-- <groupId>com.tencentcloudapi</groupId>-->
- <!-- <artifactId>tencentcloud-sdk-java</artifactId>-->
- <!-- <version>3.1.57</version>-->
- <!-- </dependency>-->
- <!--邮件发送服务-->
- <dependency>
- <groupId>cn.stylefeng.roses</groupId>
- <artifactId>kernel-email</artifactId>
- </dependency>
- </dependencies>
- <build>
- <finalName>${project.artifactId}</finalName>
- </build>
- </project>
|