pom.xml 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  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>abi-cloud-qr-platform</artifactId>
  7. <groupId>com.abi.qr.platform</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>abi-cloud-qr-platform-server</artifactId>
  12. <properties>
  13. <maven.compiler.source>8</maven.compiler.source>
  14. <maven.compiler.target>8</maven.compiler.target>
  15. </properties>
  16. <dependencies>
  17. <!-- 内部模块 -->
  18. <dependency>
  19. <groupId>com.abi.qr.platform</groupId>
  20. <artifactId>abi-cloud-qr-platform-api</artifactId>
  21. <version>1.0-SNAPSHOT</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>com.abi.qr.platform</groupId>
  25. <artifactId>abi-cloud-qr-platform-common</artifactId>
  26. <version>1.0-SNAPSHOT</version>
  27. </dependency>
  28. <!-- ali json -->
  29. <dependency>
  30. <groupId>com.alibaba</groupId>
  31. <artifactId>fastjson</artifactId>
  32. <version>1.2.28</version>
  33. </dependency>
  34. <!-- 其他微服务api -->
  35. <!-- <dependency>-->
  36. <!-- <groupId>com.abi.bees.user</groupId>-->
  37. <!-- <artifactId>user-context-starter</artifactId>-->
  38. <!-- </dependency>-->
  39. <!-- <dependency>-->
  40. <!-- <groupId>com.abi.bees</groupId>-->
  41. <!-- <artifactId>business-entity-api</artifactId>-->
  42. <!-- </dependency>-->
  43. <!-- 外部jar包 -->
  44. <dependency>
  45. <groupId>org.springframework.boot</groupId>
  46. <artifactId>spring-boot-starter-data-redis</artifactId>
  47. </dependency>
  48. <dependency>
  49. <groupId>redis.clients</groupId>
  50. <artifactId>jedis</artifactId>
  51. <version>2.9.3</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>org.springframework.cloud</groupId>
  55. <artifactId>spring-cloud-starter-openfeign</artifactId>
  56. </dependency>
  57. <dependency>
  58. <groupId>org.projectlombok</groupId>
  59. <artifactId>lombok</artifactId>
  60. <optional>true</optional>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-starter-web</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-starter-validation</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.springframework.boot</groupId>
  72. <artifactId>spring-boot-starter-actuator</artifactId>
  73. </dependency>
  74. <dependency>
  75. <groupId>org.springframework.boot</groupId>
  76. <artifactId>spring-boot-starter-jdbc</artifactId>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.springframework.boot</groupId>
  80. <artifactId>spring-boot-starter-test</artifactId>
  81. <scope>test</scope>
  82. <exclusions>
  83. <exclusion>
  84. <groupId>org.junit.vintage</groupId>
  85. <artifactId>junit-vintage-engine</artifactId>
  86. </exclusion>
  87. </exclusions>
  88. </dependency>
  89. <dependency>
  90. <groupId>io.springfox</groupId>
  91. <artifactId>springfox-boot-starter</artifactId>
  92. </dependency>
  93. <!-- 给鼎昌开发,暂时不使用k8s做注册中心 -->
  94. <!-- <dependency>-->
  95. <!-- <groupId>org.springframework.cloud</groupId>-->
  96. <!-- <artifactId>spring-cloud-starter-kubernetes-all</artifactId>-->
  97. <!-- </dependency>-->
  98. <dependency>
  99. <groupId>com.baomidou</groupId>
  100. <artifactId>mybatis-plus-boot-starter</artifactId>
  101. </dependency>
  102. <dependency>
  103. <groupId>org.mariadb.jdbc</groupId>
  104. <artifactId>mariadb-java-client</artifactId>
  105. </dependency>
  106. <!--huTool工具-->
  107. <dependency>
  108. <groupId>cn.hutool</groupId>
  109. <artifactId>hutool-all</artifactId>
  110. </dependency>
  111. <!--huTool Excel 依赖-->
  112. <dependency>
  113. <groupId>org.apache.poi</groupId>
  114. <artifactId>poi-ooxml</artifactId>
  115. </dependency>
  116. <dependency>
  117. <groupId>org.apache.poi</groupId>
  118. <artifactId>poi-ooxml-schemas</artifactId>
  119. </dependency>
  120. <dependency>
  121. <groupId>commons-lang</groupId>
  122. <artifactId>commons-lang</artifactId>
  123. </dependency>
  124. <dependency>
  125. <groupId>com.xuxueli</groupId>
  126. <artifactId>xxl-job-core</artifactId>
  127. </dependency>
  128. <!-- rabbitmq(amqp) -->
  129. <dependency>
  130. <groupId>org.springframework.boot</groupId>
  131. <artifactId>spring-boot-starter-amqp</artifactId>
  132. </dependency>
  133. <!-- mongodb -->
  134. <dependency>
  135. <groupId>org.springframework.boot</groupId>
  136. <artifactId>spring-boot-starter-data-mongodb</artifactId>
  137. </dependency>
  138. <!-- redisson -->
  139. <dependency>
  140. <groupId>org.redisson</groupId>
  141. <artifactId>redisson-spring-boot-starter</artifactId>
  142. <version> 3.15.4</version>
  143. </dependency>
  144. </dependencies>
  145. <build>
  146. <plugins>
  147. <plugin>
  148. <groupId>org.codehaus.gmaven</groupId>
  149. <artifactId>groovy-maven-plugin</artifactId>
  150. <version>2.0</version>
  151. <executions>
  152. <execution>
  153. <phase>package</phase>
  154. <goals>
  155. <goal>execute</goal>
  156. </goals>
  157. <configuration>
  158. <source>
  159. ${project.basedir}/src/main/groovy/test.groovy
  160. </source>
  161. </configuration>
  162. </execution>
  163. </executions>
  164. </plugin>
  165. <plugin>
  166. <groupId>org.springframework.boot</groupId>
  167. <artifactId>spring-boot-maven-plugin</artifactId>
  168. <configuration>
  169. <excludes>
  170. <exclude>
  171. <groupId>org.projectlombok</groupId>
  172. <artifactId>lombok</artifactId>
  173. </exclude>
  174. </excludes>
  175. </configuration>
  176. </plugin>
  177. </plugins>
  178. </build>
  179. </project>