pom.xml 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165
  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. <parent>
  6. <artifactId>carbon-h5</artifactId>
  7. <groupId>com.hcloud.microserver</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>carbon-h5-service</artifactId>
  12. <groupId>com.hcloud.microserver</groupId>
  13. <version>0.0.1-SNAPSHOT</version>
  14. <name>carbon-h5-service</name>
  15. <properties>
  16. <binarywang.weixin.version>3.9.0</binarywang.weixin.version>
  17. </properties>
  18. <dependencies>
  19. <dependency>
  20. <groupId>com.hcloud.microserver</groupId>
  21. <artifactId>carbon-security</artifactId>
  22. <version>0.0.1-SNAPSHOT</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-web</artifactId>
  27. </dependency>
  28. <!-- nacos discovery-->
  29. <dependency>
  30. <groupId>com.alibaba.cloud</groupId>
  31. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  32. </dependency>
  33. <!-- nacos config -->
  34. <dependency>
  35. <groupId>com.alibaba.cloud</groupId>
  36. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  37. </dependency>
  38. <!--zipkin-->
  39. <dependency>
  40. <groupId>org.springframework.cloud</groupId>
  41. <artifactId>spring-cloud-starter-zipkin</artifactId>
  42. </dependency>
  43. <!-- spring boot admin client -->
  44. <dependency>
  45. <groupId>de.codecentric</groupId>
  46. <artifactId>spring-boot-admin-starter-client</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>net.logstash.logback</groupId>
  50. <artifactId>logstash-logback-encoder</artifactId>
  51. </dependency>
  52. <!-- xls格式excel依赖包 -->
  53. <dependency>
  54. <groupId>org.apache.poi</groupId>
  55. <artifactId>poi</artifactId>
  56. <version>3.17</version>
  57. </dependency>
  58. <!--xlsx格式excel依赖包-->
  59. <dependency>
  60. <groupId>org.apache.poi</groupId>
  61. <artifactId>poi-ooxml</artifactId>
  62. <version>3.17</version>
  63. </dependency>
  64. <!--easyexcel,推荐使用2.0 以上版本,功能更加完善-->
  65. <dependency>
  66. <groupId>com.alibaba</groupId>
  67. <artifactId>easyexcel</artifactId>
  68. <version>2.2.6</version>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.springframework</groupId>
  72. <artifactId>spring-test</artifactId>
  73. <version>5.1.7.RELEASE</version>
  74. <scope>compile</scope>
  75. </dependency>
  76. <dependency>
  77. <groupId>org.apache.commons</groupId>
  78. <artifactId>commons-io</artifactId>
  79. <version>1.3.2</version>
  80. </dependency>
  81. <dependency>
  82. <groupId>com.qiniu</groupId>
  83. <artifactId>qiniu-java-sdk</artifactId>
  84. <version>7.2.28</version>
  85. </dependency>
  86. <dependency>
  87. <groupId>com.github.xiaoymin</groupId>
  88. <artifactId>knife4j-micro-spring-boot-starter</artifactId>
  89. <version>2.0.4</version>
  90. </dependency>
  91. <dependency>
  92. <groupId>mysql</groupId>
  93. <artifactId>mysql-connector-java</artifactId>
  94. <scope>runtime</scope>
  95. </dependency>
  96. <!-- druid -->
  97. <dependency>
  98. <groupId>com.alibaba</groupId>
  99. <artifactId>druid</artifactId>
  100. <version>1.2.3</version>
  101. </dependency>
  102. <!-- weixin-java-mp -->
  103. <dependency>
  104. <groupId>com.github.binarywang</groupId>
  105. <artifactId>weixin-java-mp</artifactId>
  106. <version>${binarywang.weixin.version}</version>
  107. </dependency>
  108. <!-- weixin-java-pay -->
  109. <dependency>
  110. <groupId>com.github.binarywang</groupId>
  111. <artifactId>weixin-java-pay</artifactId>
  112. <version>${binarywang.weixin.version}</version>
  113. </dependency>
  114. <!-- weixin-java-miniapp -->
  115. <dependency>
  116. <groupId>com.github.binarywang</groupId>
  117. <artifactId>weixin-java-miniapp</artifactId>
  118. <version>${binarywang.weixin.version}</version>
  119. </dependency>
  120. <dependency>
  121. <artifactId>carbon-h5-common</artifactId>
  122. <groupId>com.hcloud.microserver</groupId>
  123. <version>0.0.1-SNAPSHOT</version>
  124. </dependency>
  125. <!--redisson-->
  126. <dependency>
  127. <groupId>org.redisson</groupId>
  128. <artifactId>redisson</artifactId>
  129. <version>3.5.0</version>
  130. </dependency>
  131. <!--消息中间件-->
  132. <dependency>
  133. <groupId>org.springframework.boot</groupId>
  134. <artifactId>spring-boot-starter-amqp</artifactId>
  135. </dependency>
  136. </dependencies>
  137. <build>
  138. <plugins>
  139. <plugin>
  140. <groupId>org.springframework.boot</groupId>
  141. <artifactId>spring-boot-maven-plugin</artifactId>
  142. <executions>
  143. <execution>
  144. <goals>
  145. <goal>repackage</goal>
  146. </goals>
  147. </execution>
  148. </executions>
  149. </plugin>
  150. </plugins>
  151. </build>
  152. </project>