pom.xml 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  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. <!-- validation -->
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-validation</artifactId>
  25. </dependency>
  26. <!-- test -->
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-test</artifactId>
  30. <scope>test</scope>
  31. </dependency>
  32. <!-- processor -->
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-configuration-processor</artifactId>
  36. <optional>true</optional>
  37. </dependency>
  38. <!-- redis,使用jedis客户端排除lettuce -->
  39. <dependency>
  40. <groupId>org.springframework.boot</groupId>
  41. <artifactId>spring-boot-starter-data-redis</artifactId>
  42. <optional>true</optional>
  43. <exclusions>
  44. <exclusion>
  45. <groupId>io.lettuce</groupId>
  46. <artifactId>lettuce-core</artifactId>
  47. </exclusion>
  48. </exclusions>
  49. </dependency>
  50. <dependency>
  51. <groupId>redis.clients</groupId>
  52. <artifactId>jedis</artifactId>
  53. <optional>true</optional>
  54. </dependency>
  55. <!-- jwt token -->
  56. <dependency>
  57. <groupId>io.jsonwebtoken</groupId>
  58. <artifactId>jjwt</artifactId>
  59. </dependency>
  60. <!--swagger接口文档-->
  61. <dependency>
  62. <groupId>io.springfox</groupId>
  63. <artifactId>springfox-swagger2</artifactId>
  64. </dependency>
  65. <dependency>
  66. <groupId>io.springfox</groupId>
  67. <artifactId>springfox-swagger-ui</artifactId>
  68. </dependency>
  69. <dependency>
  70. <groupId>com.github.xiaoymin</groupId>
  71. <artifactId>swagger-bootstrap-ui</artifactId>
  72. <version>1.9.6</version>
  73. </dependency>
  74. <!--阿里云和腾讯云oss-->
  75. <dependency>
  76. <groupId>cn.stylefeng.roses</groupId>
  77. <artifactId>kernel-file</artifactId>
  78. </dependency>
  79. <!--默认去掉第三方依赖,减少打包的体积,需要的话自行放开-->
  80. <!-- <dependency>-->
  81. <!-- <groupId>com.aliyun.oss</groupId>-->
  82. <!-- <artifactId>aliyun-sdk-oss</artifactId>-->
  83. <!-- <version>3.8.0</version>-->
  84. <!-- </dependency>-->
  85. <!-- <dependency>-->
  86. <!-- <groupId>com.qcloud</groupId>-->
  87. <!-- <artifactId>cos_api</artifactId>-->
  88. <!-- <version>5.6.23</version>-->
  89. <!-- </dependency>-->
  90. <!--阿里云和腾讯云短信服务-->
  91. <dependency>
  92. <groupId>cn.stylefeng.roses</groupId>
  93. <artifactId>kernel-sms</artifactId>
  94. </dependency>
  95. <!--默认配置了阿里云的短信-->
  96. <dependency>
  97. <groupId>com.aliyun</groupId>
  98. <artifactId>aliyun-java-sdk-core</artifactId>
  99. <version>4.4.6</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>com.aliyun</groupId>
  103. <artifactId>aliyun-java-sdk-ecs</artifactId>
  104. <version>4.17.6</version>
  105. </dependency>
  106. <!--默认去掉第三方依赖,减少打包的体积,需要的话自行放开-->
  107. <!-- <dependency>-->
  108. <!-- <groupId>com.tencentcloudapi</groupId>-->
  109. <!-- <artifactId>tencentcloud-sdk-java</artifactId>-->
  110. <!-- <version>3.1.57</version>-->
  111. <!-- </dependency>-->
  112. <!--邮件发送服务-->
  113. <dependency>
  114. <groupId>cn.stylefeng.roses</groupId>
  115. <artifactId>kernel-email</artifactId>
  116. </dependency>
  117. </dependencies>
  118. <build>
  119. <finalName>${project.artifactId}</finalName>
  120. </build>
  121. </project>