pom.xml 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176
  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. <!-- 外部jar包 -->
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-data-redis</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>redis.clients</groupId>
  42. <artifactId>jedis</artifactId>
  43. <version>2.9.3</version>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.cloud</groupId>
  47. <artifactId>spring-cloud-starter-openfeign</artifactId>
  48. </dependency>
  49. <dependency>
  50. <groupId>org.projectlombok</groupId>
  51. <artifactId>lombok</artifactId>
  52. <optional>true</optional>
  53. </dependency>
  54. <dependency>
  55. <groupId>org.springframework.boot</groupId>
  56. <artifactId>spring-boot-starter-web</artifactId>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-starter-validation</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.springframework.boot</groupId>
  64. <artifactId>spring-boot-starter-actuator</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>org.springframework.boot</groupId>
  68. <artifactId>spring-boot-starter-jdbc</artifactId>
  69. </dependency>
  70. <dependency>
  71. <groupId>org.springframework.boot</groupId>
  72. <artifactId>spring-boot-starter-test</artifactId>
  73. <scope>test</scope>
  74. <exclusions>
  75. <exclusion>
  76. <groupId>org.junit.vintage</groupId>
  77. <artifactId>junit-vintage-engine</artifactId>
  78. </exclusion>
  79. </exclusions>
  80. </dependency>
  81. <dependency>
  82. <groupId>io.springfox</groupId>
  83. <artifactId>springfox-boot-starter</artifactId>
  84. </dependency>
  85. <dependency>
  86. <groupId>org.springframework.cloud</groupId>
  87. <artifactId>spring-cloud-starter-kubernetes-all</artifactId>
  88. </dependency>
  89. <dependency>
  90. <groupId>com.baomidou</groupId>
  91. <artifactId>mybatis-plus-boot-starter</artifactId>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.mariadb.jdbc</groupId>
  95. <artifactId>mariadb-java-client</artifactId>
  96. </dependency>
  97. <!--huTool工具-->
  98. <dependency>
  99. <groupId>cn.hutool</groupId>
  100. <artifactId>hutool-all</artifactId>
  101. </dependency>
  102. <!--huTool Excel 依赖-->
  103. <dependency>
  104. <groupId>org.apache.poi</groupId>
  105. <artifactId>poi-ooxml</artifactId>
  106. </dependency>
  107. <dependency>
  108. <groupId>org.apache.poi</groupId>
  109. <artifactId>poi-ooxml-schemas</artifactId>
  110. </dependency>
  111. <dependency>
  112. <groupId>commons-lang</groupId>
  113. <artifactId>commons-lang</artifactId>
  114. </dependency>
  115. <dependency>
  116. <groupId>com.xuxueli</groupId>
  117. <artifactId>xxl-job-core</artifactId>
  118. </dependency>
  119. <!-- rabbitmq(amqp) -->
  120. <dependency>
  121. <groupId>org.springframework.boot</groupId>
  122. <artifactId>spring-boot-starter-amqp</artifactId>
  123. </dependency>
  124. <!-- redisson -->
  125. <dependency>
  126. <groupId>org.redisson</groupId>
  127. <artifactId>redisson-spring-boot-starter</artifactId>
  128. <version> 3.15.4</version>
  129. </dependency>
  130. </dependencies>
  131. <build>
  132. <plugins>
  133. <plugin>
  134. <groupId>org.codehaus.gmaven</groupId>
  135. <artifactId>groovy-maven-plugin</artifactId>
  136. <version>2.0</version>
  137. <executions>
  138. <execution>
  139. <phase>package</phase>
  140. <goals>
  141. <goal>execute</goal>
  142. </goals>
  143. <configuration>
  144. <source>
  145. ${project.basedir}/src/main/groovy/test.groovy
  146. </source>
  147. </configuration>
  148. </execution>
  149. </executions>
  150. </plugin>
  151. <plugin>
  152. <groupId>org.springframework.boot</groupId>
  153. <artifactId>spring-boot-maven-plugin</artifactId>
  154. <configuration>
  155. <excludes>
  156. <exclude>
  157. <groupId>org.projectlombok</groupId>
  158. <artifactId>lombok</artifactId>
  159. </exclude>
  160. </excludes>
  161. </configuration>
  162. </plugin>
  163. </plugins>
  164. </build>
  165. </project>