有知数据流调度
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.

269 lines
8.2 KiB

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