pom.xml 5.9 KB

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