echarts应用
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

266 lines
8.0 KiB

7 months ago
  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. <parent>
  6. <groupId>org.springframework.boot</groupId>
  7. <artifactId>spring-boot-starter-parent</artifactId>
  8. <version>2.2.4.RELEASE</version>
  9. </parent>
  10. <groupId>com.bfd</groupId>
  11. <artifactId>echarts</artifactId>
  12. <version>0.0.1-SNAPSHOT</version>
  13. <name>echarts</name>
  14. <!-- FIXME change it to the project's website -->
  15. <url>http://www.example.com</url>
  16. <properties>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. <maven.compiler.source>1.8</maven.compiler.source>
  19. <maven.compiler.target>1.8</maven.compiler.target>
  20. </properties>
  21. <dependencies>
  22. <dependency>
  23. <groupId>junit</groupId>
  24. <artifactId>junit</artifactId>
  25. <version>4.11</version>
  26. <scope>test</scope>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-starter-web</artifactId>
  31. </dependency>
  32. <dependency>
  33. <groupId>com.google.code.gson</groupId>
  34. <artifactId>gson</artifactId>
  35. <version>2.8.8</version>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-test</artifactId>
  40. </dependency>
  41. <!-- https://mvnrepository.com/artifact/org.springframework/spring-test -->
  42. <dependency>
  43. <groupId>org.springframework</groupId>
  44. <artifactId>spring-test</artifactId>
  45. <version>5.0.10.RELEASE</version>
  46. <scope>test</scope>
  47. </dependency>
  48. <dependency>
  49. <groupId>commons-io</groupId>
  50. <artifactId>commons-io</artifactId>
  51. <version>1.4</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>com.alibaba</groupId>
  55. <artifactId>fastjson</artifactId>
  56. <version>2.0.17</version>
  57. </dependency>
  58. <!-- https://mvnrepository.com/artifact/com.mchange/c3p0 -->
  59. <dependency>
  60. <groupId>com.mchange</groupId>
  61. <artifactId>c3p0</artifactId>
  62. <version>0.9.5.5</version>
  63. </dependency>
  64. <dependency>
  65. <groupId>mysql</groupId>
  66. <artifactId>mysql-connector-java</artifactId>
  67. <version>8.0.29</version>
  68. </dependency>
  69. <!-- https://mvnrepository.com/artifact/com.squareup.okhttp3/okhttp -->
  70. <dependency>
  71. <groupId>com.squareup.okhttp3</groupId>
  72. <artifactId>okhttp</artifactId>
  73. <version>4.9.3</version>
  74. </dependency>
  75. <dependency>
  76. <groupId>org.apache.httpcomponents</groupId>
  77. <artifactId>httpclient</artifactId>
  78. <version>4.5.3</version>
  79. </dependency>
  80. <dependency>
  81. <groupId>commons-lang</groupId>
  82. <artifactId>commons-lang</artifactId>
  83. <version>2.6</version>
  84. </dependency>
  85. <!-- https://mvnrepository.com/artifact/org.jetbrains.kotlin/kotlin-reflect -->
  86. <dependency>
  87. <groupId>org.jetbrains.kotlin</groupId>
  88. <artifactId>kotlin-reflect</artifactId>
  89. <version>1.6.21</version>
  90. <scope>runtime</scope>
  91. </dependency>
  92. <!-- https://mvnrepository.com/artifact/org.jsoup/jsoup -->
  93. <dependency>
  94. <groupId>org.jsoup</groupId>
  95. <artifactId>jsoup</artifactId>
  96. <version>1.8.1</version>
  97. </dependency>
  98. <!-- https://mvnrepository.com/artifact/de.codecentric/spring-boot-admin-starter-client -->
  99. <dependency>
  100. <groupId>de.codecentric</groupId>
  101. <artifactId>spring-boot-admin-starter-client</artifactId>
  102. <version>2.2.4</version>
  103. </dependency>
  104. <dependency>
  105. <groupId>org.projectlombok</groupId>
  106. <artifactId>lombok</artifactId>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.springframework.kafka</groupId>
  110. <artifactId>spring-kafka</artifactId>
  111. </dependency>
  112. <!-- <dependency> <groupId>org.springframework.kafka</groupId> <artifactId>spring-kafka</artifactId>
  113. </dependency> -->
  114. <dependency>
  115. <groupId>cn.hutool</groupId>
  116. <artifactId>hutool-all</artifactId>
  117. <version>5.8.5</version>
  118. </dependency>
  119. <dependency>
  120. <groupId>junit</groupId>
  121. <artifactId>junit</artifactId>
  122. </dependency>
  123. <!-- https://mvnrepository.com/artifact/p6spy/p6spy -->
  124. <dependency>
  125. <groupId>p6spy</groupId>
  126. <artifactId>p6spy</artifactId>
  127. <version>3.9.0</version>
  128. </dependency>
  129. <dependency>
  130. <groupId>commons-collections</groupId>
  131. <artifactId>commons-collections</artifactId>
  132. <version>3.2.2</version>
  133. </dependency>
  134. <dependency>
  135. <groupId>org.elasticsearch.client</groupId>
  136. <artifactId>transport</artifactId>
  137. <version>6.0.0</version>
  138. </dependency>
  139. <dependency>
  140. <groupId>org.elasticsearch</groupId>
  141. <artifactId>elasticsearch</artifactId>
  142. <version>6.0.0</version>
  143. </dependency>
  144. <dependency>
  145. <groupId>org.elasticsearch.plugin</groupId>
  146. <artifactId>transport-netty4-client</artifactId>
  147. <version>6.0.0</version>
  148. </dependency>
  149. <!--redis-->
  150. <dependency>
  151. <groupId>org.redisson</groupId>
  152. <artifactId>redisson-spring-boot-starter</artifactId>
  153. <version>3.13.6</version>
  154. </dependency>
  155. <dependency>
  156. <groupId>org.springframework.boot</groupId>
  157. <artifactId>spring-boot-starter-data-redis</artifactId>
  158. </dependency>
  159. <dependency>
  160. <groupId>org.apache.curator</groupId>
  161. <artifactId>curator-framework</artifactId>
  162. <version>5.2.0</version>
  163. </dependency>
  164. <dependency>
  165. <groupId>org.apache.curator</groupId>
  166. <artifactId>curator-recipes</artifactId>
  167. <version>5.2.0</version>
  168. </dependency>
  169. </dependencies>
  170. <build>
  171. <!-- <pluginManagement> --><!-- lock down plugins versions to avoid using Maven defaults (may be moved
  172. to parent pom) -->
  173. <plugins>
  174. <!-- clean lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#clean_Lifecycle -->
  175. <plugin>
  176. <artifactId>maven-clean-plugin</artifactId>
  177. <version>3.1.0</version>
  178. </plugin>
  179. <!-- default lifecycle, jar packaging: see https://maven.apache.org/ref/current/maven-core/default-bindings.html#Plugin_bindings_for_jar_packaging -->
  180. <plugin>
  181. <artifactId>maven-resources-plugin</artifactId>
  182. <version>3.0.2</version>
  183. </plugin>
  184. <plugin>
  185. <artifactId>maven-compiler-plugin</artifactId>
  186. <version>3.8.0</version>
  187. </plugin>
  188. <plugin>
  189. <artifactId>maven-surefire-plugin</artifactId>
  190. <version>2.22.1</version>
  191. </plugin>
  192. <plugin>
  193. <artifactId>maven-jar-plugin</artifactId>
  194. <version>3.0.2</version>
  195. </plugin>
  196. <plugin>
  197. <artifactId>maven-install-plugin</artifactId>
  198. <version>2.5.2</version>
  199. </plugin>
  200. <plugin>
  201. <artifactId>maven-deploy-plugin</artifactId>
  202. <version>2.8.2</version>
  203. </plugin>
  204. <!-- site lifecycle, see https://maven.apache.org/ref/current/maven-core/lifecycles.html#site_Lifecycle -->
  205. <plugin>
  206. <artifactId>maven-site-plugin</artifactId>
  207. <version>3.7.1</version>
  208. </plugin>
  209. <plugin>
  210. <artifactId>maven-project-info-reports-plugin</artifactId>
  211. <version>3.0.0</version>
  212. </plugin>
  213. <!-- spring-boot-maven-plugin插件就是打包spring boot应用的 -->
  214. <plugin>
  215. <groupId>org.springframework.boot</groupId>
  216. <artifactId>spring-boot-maven-plugin</artifactId>
  217. <configuration>
  218. <mainClass>com.bfd.dataagg.Application</mainClass>
  219. <layout>ZIP</layout>
  220. <includes>
  221. <include>
  222. <groupId>${project.groupId}</groupId>
  223. <artifactId>${project.artifactId}</artifactId>
  224. </include>
  225. </includes>
  226. </configuration>
  227. <executions>
  228. <execution>
  229. <goals>
  230. <goal>repackage</goal>
  231. </goals>
  232. </execution>
  233. </executions>
  234. </plugin>
  235. <plugin>
  236. <groupId>org.apache.maven.plugins</groupId>
  237. <artifactId>maven-dependency-plugin</artifactId>
  238. <version>3.1.1</version>
  239. <executions>
  240. <execution>
  241. <id>copy</id>
  242. <phase>package</phase>
  243. <goals>
  244. <goal>copy-dependencies</goal>
  245. </goals>
  246. <configuration>
  247. <type>jar</type>
  248. <includeTypes>jar</includeTypes>
  249. <includeScope>runtime</includeScope>
  250. <outputDirectory>${project.build.directory}/libs</outputDirectory>
  251. </configuration>
  252. </execution>
  253. </executions>
  254. </plugin>
  255. </plugins>
  256. <!-- </pluginManagement> -->
  257. </build>
  258. </project>