pom.xml 7.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210
  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>runeconmy-nx</artifactId>
  7. <groupId>org.example</groupId>
  8. <version>1.0-SNAPSHOT</version>
  9. </parent>
  10. <modelVersion>4.0.0</modelVersion>
  11. <artifactId>runeconomy-xk</artifactId>
  12. <dependencies>
  13. <!-- 工具类相关 -->
  14. <dependency>
  15. <groupId>com.alibaba</groupId>
  16. <artifactId>easyexcel</artifactId>
  17. <version>3.2.0</version>
  18. </dependency>
  19. <dependency>
  20. <groupId>com.github.pagehelper</groupId>
  21. <artifactId>pagehelper</artifactId>
  22. <version>5.1.4</version>
  23. </dependency>
  24. <dependency>
  25. <groupId>org.springframework.boot</groupId>
  26. <artifactId>spring-boot-starter-web</artifactId>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-actuator</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-configuration-processor</artifactId>
  35. <optional>true</optional>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-test</artifactId>
  40. <scope>test</scope>
  41. <version>2.3.7.RELEASE</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.springframework.boot</groupId>
  45. <artifactId>spring-boot-starter-websocket</artifactId>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.projectlombok</groupId>
  49. <artifactId>lombok</artifactId>
  50. <optional>true</optional>
  51. </dependency>
  52. <dependency>
  53. <groupId>org.example</groupId>
  54. <artifactId>common</artifactId>
  55. <version>1.0-SNAPSHOT</version>
  56. </dependency>
  57. <dependency>
  58. <groupId>com.alibaba</groupId>
  59. <artifactId>fastjson</artifactId>
  60. <version>1.2.7</version>
  61. <scope>compile</scope>
  62. </dependency>
  63. <!--nacos 依赖-->
  64. <!-- <dependency>-->
  65. <!-- <groupId>com.alibaba.cloud</groupId>-->
  66. <!-- <artifactId>spring-cloud-starter-alibaba-nacos-discovery</artifactId>-->
  67. <!-- </dependency>-->
  68. <dependency>
  69. <groupId>org.postgresql</groupId>
  70. <artifactId>postgresql</artifactId>
  71. </dependency>
  72. <!-- <dependency>-->
  73. <!-- <groupId>redis.clients</groupId>-->
  74. <!-- <artifactId>jedis</artifactId>-->
  75. <!-- <version>3.2.0</version>-->
  76. <!-- </dependency>-->
  77. <dependency>
  78. <groupId>com.fasterxml.jackson.core</groupId>
  79. <artifactId>jackson-databind</artifactId>
  80. </dependency>
  81. <!-- <dependency>-->
  82. <!-- <groupId>org.springframework.data</groupId>-->
  83. <!-- <artifactId>spring-data-redis</artifactId>-->
  84. <!-- </dependency>-->
  85. <dependency>
  86. <groupId>org.springframework.boot</groupId>
  87. <artifactId>spring-boot-starter-data-redis</artifactId>
  88. </dependency>
  89. <dependency>
  90. <groupId>org.springframework.data</groupId>
  91. <artifactId>spring-data-redis</artifactId>
  92. </dependency>
  93. <!-- 添加swagger2 -->
  94. <dependency>
  95. <groupId>io.springfox</groupId>
  96. <artifactId>springfox-swagger2</artifactId>
  97. <version>2.9.2</version>
  98. <exclusions>
  99. <exclusion>
  100. <groupId>io.swagger</groupId>
  101. <artifactId>swagger-annotations</artifactId>
  102. </exclusion>
  103. <exclusion>
  104. <groupId>io.swagger</groupId>
  105. <artifactId>swagger-models</artifactId>
  106. </exclusion>
  107. </exclusions>
  108. </dependency>
  109. <dependency>
  110. <groupId>io.springfox</groupId>
  111. <artifactId>springfox-swagger-ui</artifactId>
  112. <version>2.9.2</version>
  113. </dependency>
  114. <dependency>
  115. <groupId>io.swagger</groupId>
  116. <artifactId>swagger-annotations</artifactId>
  117. <version>1.5.21</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>io.swagger</groupId>
  121. <artifactId>swagger-models</artifactId>
  122. <version>1.5.21</version>
  123. </dependency>
  124. <!-- https://mvnrepository.com/artifact/org.springframework.boot/spring-boot-starter-data-jpa -->
  125. <dependency>
  126. <groupId>org.springframework.boot</groupId>
  127. <artifactId>spring-boot-starter-data-jpa</artifactId>
  128. <version>2.7.15</version>
  129. </dependency>
  130. <!-- https://mvnrepository.com/artifact/org.apache.activemq/activemq-core -->
  131. <dependency>
  132. <groupId>org.apache.activemq</groupId>
  133. <artifactId>activemq-core</artifactId>
  134. <version>5.7.0</version>
  135. </dependency>
  136. <!-- https://mvnrepository.com/artifact/io.github.openfeign/feign-core -->
  137. <dependency>
  138. <groupId>io.github.openfeign</groupId>
  139. <artifactId>feign-core</artifactId>
  140. <version>11.8</version>
  141. </dependency>
  142. <!-- https://mvnrepository.com/artifact/io.github.openfeign/feign-jackson -->
  143. <dependency>
  144. <groupId>io.github.openfeign</groupId>
  145. <artifactId>feign-jackson</artifactId>
  146. <version>11.8</version>
  147. </dependency>
  148. <dependency>
  149. <groupId>junit</groupId>
  150. <artifactId>junit</artifactId>
  151. </dependency>
  152. <dependency>
  153. <groupId>org.springframework</groupId>
  154. <artifactId>spring-test</artifactId>
  155. </dependency>
  156. <dependency>
  157. <groupId>org.springframework.boot</groupId>
  158. <artifactId>spring-boot-test</artifactId>
  159. </dependency>
  160. <dependency>
  161. <groupId>com.influxdb</groupId>
  162. <artifactId>influxdb-client-java</artifactId>
  163. <version>6.9.0</version>
  164. </dependency>
  165. <dependency>
  166. <groupId>com.baomidou</groupId>
  167. <artifactId>mybatis-plus-boot-starter</artifactId>
  168. <version>3.4.2</version>
  169. </dependency>
  170. <dependency>
  171. <groupId>com.baomidou</groupId>
  172. <artifactId>mybatis-plus-extension</artifactId>
  173. <version>3.5.3.1</version>
  174. </dependency>
  175. <dependency>
  176. <groupId>com.baomidou</groupId>
  177. <artifactId>mybatis-plus-generator</artifactId>
  178. <version>3.3.2</version>
  179. </dependency>
  180. <dependency>
  181. <groupId>org.apache.velocity</groupId>
  182. <artifactId>velocity-engine-core</artifactId>
  183. <version>2.2</version>
  184. </dependency>
  185. </dependencies>
  186. <build>
  187. <plugins>
  188. <plugin>
  189. <groupId>org.springframework.boot</groupId>
  190. <artifactId>spring-boot-maven-plugin</artifactId>
  191. <version>2.7.1</version>
  192. <executions>
  193. <execution>
  194. <goals>
  195. <goal>repackage</goal>
  196. </goals>
  197. </execution>
  198. </executions>
  199. </plugin>
  200. </plugins>
  201. </build>
  202. </project>