pom.xml 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177
  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>game-data</artifactId>
  7. <groupId>com.zanxiang.game</groupId>
  8. <version>0.0.1-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>game-data-serve</artifactId>
  12. <properties>
  13. <maven.compiler.source>8</maven.compiler.source>
  14. <maven.compiler.target>8</maven.compiler.target>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <artifactId>game-data-base</artifactId>
  19. <groupId>com.zanxiang.game</groupId>
  20. <version>${project.version}</version>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.springframework.boot</groupId>
  24. <artifactId>spring-boot-starter-actuator</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>org.springframework.cloud</groupId>
  28. <artifactId>spring-cloud-starter</artifactId>
  29. </dependency>
  30. <!-- spring boot默认不去扫描 bootstrap.yml文件了 -->
  31. <dependency>
  32. <groupId>org.springframework.cloud</groupId>
  33. <artifactId>spring-cloud-starter-bootstrap</artifactId>
  34. </dependency>
  35. <!-- SpringBoot start -->
  36. <dependency>
  37. <groupId>org.springframework.boot</groupId>
  38. <artifactId>spring-boot-starter-web</artifactId>
  39. </dependency>
  40. <!-- nacos配置中心 默认的 nacos-client 2.0.3有 bug -->
  41. <dependency>
  42. <groupId>com.alibaba.cloud</groupId>
  43. <artifactId>spring-cloud-starter-alibaba-nacos-config</artifactId>
  44. <exclusions>
  45. <exclusion>
  46. <groupId>com.alibaba.nacos</groupId>
  47. <artifactId>nacos-client</artifactId>
  48. </exclusion>
  49. </exclusions>
  50. </dependency>
  51. <!-- nacos注册中心 -->
  52. <dependency>
  53. <groupId>com.alibaba.cloud</groupId>
  54. <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>
  55. <exclusions>
  56. <exclusion>
  57. <groupId>com.alibaba.nacos</groupId>
  58. <artifactId>nacos-client</artifactId>
  59. </exclusion>
  60. </exclusions>
  61. </dependency>
  62. <dependency>
  63. <groupId>com.alibaba.nacos</groupId>
  64. <artifactId>nacos-client</artifactId>
  65. </dependency>
  66. <dependency>
  67. <groupId>com.zanxiang.erp</groupId>
  68. <artifactId>erp-security</artifactId>
  69. </dependency>
  70. <!--web工具类-->
  71. <dependency>
  72. <groupId>com.zanxiang.module</groupId>
  73. <artifactId>zx-web</artifactId>
  74. </dependency>
  75. <!--sms集成-->
  76. <dependency>
  77. <groupId>com.zanxiang.module</groupId>
  78. <artifactId>zx-sms</artifactId>
  79. </dependency>
  80. <!--redis集成-->
  81. <dependency>
  82. <groupId>com.zanxiang.module</groupId>
  83. <artifactId>zx-redis</artifactId>
  84. </dependency>
  85. <!-- 谷歌http工具类 -->
  86. <dependency>
  87. <groupId>cn.hutool</groupId>
  88. <artifactId>hutool-all</artifactId>
  89. <version>5.8.0.M1</version>
  90. </dependency>
  91. <!-- dubbo -->
  92. <dependency>
  93. <groupId>org.apache.dubbo</groupId>
  94. <artifactId>dubbo-spring-boot-starter</artifactId>
  95. </dependency>
  96. <dependency>
  97. <groupId>org.apache.dubbo</groupId>
  98. <artifactId>dubbo-metadata-definition-protobuf</artifactId>
  99. </dependency>
  100. <dependency>
  101. <groupId>io.springfox</groupId>
  102. <artifactId>springfox-swagger2</artifactId>
  103. <version>2.9.2</version>
  104. </dependency>
  105. <dependency>
  106. <groupId>io.springfox</groupId>
  107. <artifactId>springfox-swagger-ui</artifactId>
  108. <version>2.9.2</version>
  109. <exclusions>
  110. <exclusion>
  111. <groupId>io.swagger</groupId>
  112. <artifactId>swagger-models</artifactId>
  113. </exclusion>
  114. </exclusions>
  115. </dependency>
  116. <dependency>
  117. <groupId>io.swagger</groupId>
  118. <artifactId>swagger-models</artifactId>
  119. <version>1.5.21</version>
  120. </dependency>
  121. <!-- Mybatis Plus -->
  122. <dependency>
  123. <groupId>com.baomidou</groupId>
  124. <artifactId>mybatis-plus-boot-starter</artifactId>
  125. </dependency>
  126. <!--clickhouse-->
  127. <dependency>
  128. <groupId>ru.yandex.clickhouse</groupId>
  129. <artifactId>clickhouse-jdbc</artifactId>
  130. <version>0.3.1</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>com.github.jsqlparser</groupId>
  134. <artifactId>jsqlparser</artifactId>
  135. <version>4.2</version>
  136. </dependency>
  137. <!-- https://mvnrepository.com/artifact/com.alibaba/druid -->
  138. <dependency>
  139. <groupId>com.alibaba</groupId>
  140. <artifactId>druid</artifactId>
  141. <version>1.2.6</version>
  142. </dependency>
  143. </dependencies>
  144. <build>
  145. <plugins>
  146. <plugin>
  147. <groupId>org.apache.maven.plugins</groupId>
  148. <artifactId>maven-compiler-plugin</artifactId>
  149. <version>3.1</version>
  150. <configuration>
  151. <source>8</source>
  152. <target>8</target>
  153. <encoding>${project.build.sourceEncoding}</encoding>
  154. </configuration>
  155. </plugin>
  156. <plugin>
  157. <groupId>org.springframework.boot</groupId>
  158. <artifactId>spring-boot-maven-plugin</artifactId>
  159. <version>2.5.14</version>
  160. <configuration>
  161. <includeSystemScope>true</includeSystemScope>
  162. </configuration>
  163. <executions>
  164. <execution>
  165. <goals>
  166. <goal>repackage</goal>
  167. </goals>
  168. </execution>
  169. </executions>
  170. </plugin>
  171. </plugins>
  172. </build>
  173. </project>