pom.xml 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <groupId>cn.stylefeng</groupId>
  8. <artifactId>guns-base-support</artifactId>
  9. <version>1.1.0</version>
  10. <relativePath>../pom.xml</relativePath>
  11. </parent>
  12. <artifactId>guns-system</artifactId>
  13. <packaging>jar</packaging>
  14. <dependencies>
  15. <!-- guns核心包 -->
  16. <dependency>
  17. <groupId>cn.stylefeng</groupId>
  18. <artifactId>guns-core</artifactId>
  19. <version>1.1.0</version>
  20. </dependency>
  21. <!-- test -->
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-test</artifactId>
  25. <scope>test</scope>
  26. </dependency>
  27. <!-- processor -->
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-configuration-processor</artifactId>
  31. <optional>true</optional>
  32. </dependency>
  33. <!-- redis,使用jedis客户端排除lettuce -->
  34. <dependency>
  35. <groupId>org.springframework.boot</groupId>
  36. <artifactId>spring-boot-starter-data-redis</artifactId>
  37. <optional>true</optional>
  38. <exclusions>
  39. <exclusion>
  40. <groupId>io.lettuce</groupId>
  41. <artifactId>lettuce-core</artifactId>
  42. </exclusion>
  43. </exclusions>
  44. </dependency>
  45. <dependency>
  46. <groupId>redis.clients</groupId>
  47. <artifactId>jedis</artifactId>
  48. <optional>true</optional>
  49. </dependency>
  50. <!-- jwt token -->
  51. <dependency>
  52. <groupId>io.jsonwebtoken</groupId>
  53. <artifactId>jjwt</artifactId>
  54. </dependency>
  55. <!--swagger接口文档-->
  56. <dependency>
  57. <groupId>io.springfox</groupId>
  58. <artifactId>springfox-swagger2</artifactId>
  59. </dependency>
  60. <dependency>
  61. <groupId>io.springfox</groupId>
  62. <artifactId>springfox-swagger-ui</artifactId>
  63. </dependency>
  64. <dependency>
  65. <groupId>com.github.xiaoymin</groupId>
  66. <artifactId>swagger-bootstrap-ui</artifactId>
  67. <version>1.9.6</version>
  68. </dependency>
  69. <!--阿里云和腾讯云oss-->
  70. <dependency>
  71. <groupId>cn.stylefeng.roses</groupId>
  72. <artifactId>kernel-file</artifactId>
  73. </dependency>
  74. <!--默认去掉第三方依赖,减少打包的体积,需要的话自行放开-->
  75. <!-- <dependency>-->
  76. <!-- <groupId>com.aliyun.oss</groupId>-->
  77. <!-- <artifactId>aliyun-sdk-oss</artifactId>-->
  78. <!-- <version>3.8.0</version>-->
  79. <!-- </dependency>-->
  80. <!-- <dependency>-->
  81. <!-- <groupId>com.qcloud</groupId>-->
  82. <!-- <artifactId>cos_api</artifactId>-->
  83. <!-- <version>5.6.23</version>-->
  84. <!-- </dependency>-->
  85. <!--阿里云和腾讯云短信服务-->
  86. <dependency>
  87. <groupId>cn.stylefeng.roses</groupId>
  88. <artifactId>kernel-sms</artifactId>
  89. </dependency>
  90. <!--默认配置了阿里云的短信-->
  91. <dependency>
  92. <groupId>com.aliyun</groupId>
  93. <artifactId>aliyun-java-sdk-core</artifactId>
  94. <version>4.4.6</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>com.aliyun</groupId>
  98. <artifactId>aliyun-java-sdk-ecs</artifactId>
  99. <version>4.17.6</version>
  100. </dependency>
  101. <!--默认去掉第三方依赖,减少打包的体积,需要的话自行放开-->
  102. <!-- <dependency>-->
  103. <!-- <groupId>com.tencentcloudapi</groupId>-->
  104. <!-- <artifactId>tencentcloud-sdk-java</artifactId>-->
  105. <!-- <version>3.1.57</version>-->
  106. <!-- </dependency>-->
  107. <!--邮件发送服务-->
  108. <dependency>
  109. <groupId>cn.stylefeng.roses</groupId>
  110. <artifactId>kernel-email</artifactId>
  111. </dependency>
  112. </dependencies>
  113. <build>
  114. <finalName>${project.artifactId}</finalName>
  115. </build>
  116. </project>