pom.xml 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  3. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.cn</groupId>
  6. <artifactId>data_acquisition</artifactId>
  7. <version>0.0.1</version>
  8. <packaging>jar</packaging>
  9. <name>data_acquisition</name>
  10. <description>海油数据采集项目</description>
  11. <parent>
  12. <groupId>org.springframework.boot</groupId>
  13. <artifactId>spring-boot-starter-parent</artifactId>
  14. <version>2.0.4.RELEASE</version>
  15. <relativePath/> <!-- lookup parent from repository -->
  16. </parent>
  17. <properties>
  18. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  19. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  20. <java.version>1.8</java.version>
  21. </properties>
  22. <dependencies>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-web</artifactId>
  26. </dependency>
  27. <dependency>
  28. <groupId>org.mybatis.spring.boot</groupId>
  29. <artifactId>mybatis-spring-boot-starter</artifactId>
  30. <version>1.3.2</version>
  31. </dependency>
  32. <dependency>
  33. <groupId>org.springframework.boot</groupId>
  34. <artifactId>spring-boot-starter-actuator</artifactId>
  35. </dependency>
  36. <dependency>
  37. <groupId>org.springframework.session</groupId>
  38. <artifactId>spring-session-core</artifactId>
  39. </dependency>
  40. <dependency>
  41. <groupId>org.springframework.boot</groupId>
  42. <artifactId>spring-boot-devtools</artifactId>
  43. <scope>runtime</scope>
  44. </dependency>
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-test</artifactId>
  48. <scope>test</scope>
  49. </dependency>
  50. <dependency>
  51. <groupId>org.springframework.boot</groupId>
  52. <artifactId>spring-boot-configuration-processor</artifactId>
  53. <optional>true</optional>
  54. </dependency>
  55. <dependency>
  56. <groupId>org.springframework.restdocs</groupId>
  57. <artifactId>spring-restdocs-mockmvc</artifactId>
  58. <scope>test</scope>
  59. </dependency>
  60. <dependency>
  61. <groupId>org.apache.shiro</groupId>
  62. <artifactId>shiro-spring</artifactId>
  63. <version>1.3.2</version>
  64. </dependency>
  65. <dependency>
  66. <groupId>org.ehcache</groupId>
  67. <artifactId>ehcache</artifactId>
  68. <version>3.6.0</version>
  69. </dependency>
  70. <!-- mybatis-plus begin -->
  71. <dependency>
  72. <groupId>com.baomidou</groupId>
  73. <artifactId>mybatis-plus-boot-starter</artifactId>
  74. <version>3.0.1</version>
  75. </dependency>
  76. <!-- mybatis-plus end -->
  77. <dependency>
  78. <groupId>io.netty</groupId>
  79. <artifactId>netty-all</artifactId>
  80. <version>4.1.84.Final</version>
  81. <!-- 默认为:2.0.5boot默认:4.1.29.Final,也可以手动引入4.1.43.Final-->
  82. </dependency>
  83. <dependency>
  84. <groupId>org.apache.commons</groupId>
  85. <artifactId>commons-pool2</artifactId>
  86. </dependency>
  87. <dependency>
  88. <groupId>org.projectlombok</groupId>
  89. <artifactId>lombok</artifactId>
  90. <scope>provided</scope>
  91. </dependency>
  92. <dependency>
  93. <groupId>org.apache.logging.log4j</groupId>
  94. <artifactId>log4j-api</artifactId>
  95. <version>2.17.1</version>
  96. </dependency>
  97. <dependency>
  98. <groupId>org.apache.logging.log4j</groupId>
  99. <artifactId>log4j-core</artifactId>
  100. <version>2.17.1</version>
  101. </dependency>
  102. <!-- 阿里JSON解析器 -->
  103. <dependency>
  104. <groupId>com.alibaba.fastjson2</groupId>
  105. <artifactId>fastjson2</artifactId>
  106. <version>2.0.43</version>
  107. </dependency>
  108. <!-- https://mvnrepository.com/artifact/org.yaml/snakeyaml -->
  109. <dependency>
  110. <groupId>org.yaml</groupId>
  111. <artifactId>snakeyaml</artifactId>
  112. <version>1.19</version>
  113. </dependency>
  114. <!--常用工具类 -->
  115. <dependency>
  116. <groupId>org.apache.commons</groupId>
  117. <artifactId>commons-lang3</artifactId>
  118. <version>3.12.0</version>
  119. </dependency>
  120. <dependency>
  121. <groupId>com.auth0</groupId>
  122. <artifactId>java-jwt</artifactId>
  123. <version>3.4.0</version>
  124. </dependency>
  125. <dependency>
  126. <groupId>org.projectlombok</groupId>
  127. <artifactId>lombok</artifactId>
  128. <version>1.18.2</version>
  129. <scope>provided</scope>
  130. <!-- Only needed at compile time -->
  131. <optional>true</optional>
  132. </dependency>
  133. <dependency>
  134. <groupId>com.sun.mail</groupId>
  135. <artifactId>javax.mail</artifactId>
  136. <version>1.5.6</version>
  137. </dependency>
  138. <!--Redis -->
  139. <dependency>
  140. <groupId>org.springframework.boot</groupId>
  141. <artifactId>spring-boot-starter-data-redis</artifactId>
  142. <version>2.0.4.RELEASE</version>
  143. </dependency>
  144. <!--fastjson-->
  145. <dependency>
  146. <groupId>com.alibaba</groupId>
  147. <artifactId>fastjson</artifactId>
  148. <version>1.2.83</version>
  149. </dependency>
  150. <!--加入jedis-->
  151. <dependency>
  152. <groupId>redis.clients</groupId>
  153. <artifactId>jedis</artifactId>
  154. </dependency>
  155. <dependency>
  156. <groupId>org.dom4j</groupId>
  157. <artifactId>dom4j</artifactId>
  158. <version>2.1.3</version>
  159. </dependency>
  160. <dependency>
  161. <groupId>mysql</groupId>
  162. <artifactId>mysql-connector-java</artifactId>
  163. <version>8.0.18</version>
  164. </dependency>
  165. <dependency>
  166. <groupId>com.baomidou</groupId>
  167. <artifactId>dynamic-datasource-spring-boot-starter</artifactId>
  168. <version>3.1.0</version>
  169. </dependency>
  170. <dependency>
  171. <groupId>org.testng</groupId>
  172. <artifactId>testng</artifactId>
  173. <version>RELEASE</version>
  174. <scope>compile</scope>
  175. </dependency>
  176. </dependencies>
  177. <dependencyManagement>
  178. <dependencies>
  179. <dependency>
  180. <groupId>org.apache.logging.log4j</groupId>
  181. <artifactId>log4j-to-slf4j</artifactId>
  182. <version>2.17.0</version>
  183. </dependency>
  184. <dependency>
  185. <groupId>org.apache.logging.log4j</groupId>
  186. <artifactId>log4j-api</artifactId>
  187. <version>2.17.0</version>
  188. </dependency>
  189. <dependency>
  190. <groupId>org.springframework.cloud</groupId>
  191. <artifactId>spring-cloud-consul-dependencies</artifactId>
  192. <version>2.0.1.RELEASE</version>
  193. <type>pom</type>
  194. <scope>import</scope>
  195. </dependency>
  196. <dependency>
  197. <groupId>org.springframework.cloud</groupId>
  198. <artifactId>spring-cloud-openfeign</artifactId>
  199. <version>2.0.1.RELEASE</version>
  200. <type>pom</type>
  201. <scope>import</scope>
  202. </dependency>
  203. </dependencies>
  204. </dependencyManagement>
  205. <build>
  206. <plugins>
  207. <plugin>
  208. <groupId>org.springframework.boot</groupId>
  209. <artifactId>spring-boot-maven-plugin</artifactId>
  210. </plugin>
  211. </plugins>
  212. </build>
  213. </project>