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.

229 lines
7.7 KiB

5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
  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. <modelVersion>4.0.0</modelVersion>
  6. <parent>
  7. <artifactId>cl_stream_3.1.2</artifactId>
  8. <groupId>com.bfd.mf</groupId>
  9. <version>3.1.2-SNAPSHOT</version>
  10. </parent>
  11. <artifactId>cl_query_data_job</artifactId>
  12. <properties>
  13. <start-class>com.bfd.mf.SearchApplication</start-class>
  14. <source>1.8</source>
  15. <es.version>6.0.0</es.version>
  16. </properties>
  17. <dependencies>
  18. <dependency>
  19. <groupId>org.springframework.boot</groupId>
  20. <artifactId>spring-boot-starter</artifactId>
  21. <version>2.0.0.RELEASE</version>
  22. </dependency>
  23. <dependency>
  24. <groupId>org.springframework.boot</groupId>
  25. <artifactId>spring-boot-starter-data-jpa</artifactId>
  26. <version>2.0.0.RELEASE</version>
  27. </dependency>
  28. <dependency>
  29. <groupId>org.springframework.boot</groupId>
  30. <artifactId>spring-boot-devtools</artifactId>
  31. <version>2.0.0.RELEASE</version>
  32. </dependency>
  33. <dependency>
  34. <groupId>org.springframework.boot</groupId>
  35. <artifactId>spring-boot-starter-test</artifactId>
  36. <version>2.0.0.RELEASE</version>
  37. </dependency>
  38. <dependency>
  39. <groupId>mysql</groupId>
  40. <artifactId>mysql-connector-java</artifactId>
  41. <version>5.1.45</version>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.apache.commons</groupId>
  45. <artifactId>commons-pool2</artifactId>
  46. <version>2.5.0</version>
  47. </dependency>
  48. <dependency>
  49. <groupId>org.apache.commons</groupId>
  50. <artifactId>commons-lang3</artifactId>
  51. <version>3.7</version>
  52. </dependency>
  53. <dependency>
  54. <groupId>commons-lang</groupId>
  55. <artifactId>commons-lang</artifactId>
  56. <version>2.6</version>
  57. </dependency>
  58. <dependency>
  59. <groupId>commons-io</groupId>
  60. <artifactId>commons-io</artifactId>
  61. <version>2.4</version>
  62. </dependency>
  63. <dependency>
  64. <groupId>com.google.guava</groupId>
  65. <artifactId>guava</artifactId>
  66. <version>19.0</version>
  67. </dependency>
  68. <!--<dependency>-->
  69. <!--<groupId>com.alibaba</groupId>-->
  70. <!--<artifactId>fastjson</artifactId>-->
  71. <!--<version>1.2.6</version>-->
  72. <!--</dependency>-->
  73. <dependency>
  74. <groupId>com.alibaba</groupId>
  75. <artifactId>fastjson</artifactId>
  76. <version>1.2.60</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.elasticsearch</groupId>
  80. <artifactId>elasticsearch</artifactId>
  81. <version>6.0.0</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.elasticsearch.client</groupId>
  85. <artifactId>transport</artifactId>
  86. <version>6.0.0</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.elasticsearch.plugin</groupId>
  90. <artifactId>transport-netty4-client</artifactId>
  91. <version>6.0.0</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>org.elasticsearch.client</groupId>
  95. <artifactId>elasticsearch-rest-high-level-client</artifactId>
  96. <version>6.0.0</version>
  97. </dependency>
  98. <dependency>
  99. <groupId>org.apache.kafka</groupId>
  100. <artifactId>kafka-clients</artifactId>
  101. <version>0.10.1.0</version>
  102. </dependency>
  103. <dependency>
  104. <groupId>com.wandoulabs.jodis</groupId>
  105. <artifactId>jodis</artifactId>
  106. <version>0.1.2</version>
  107. </dependency>
  108. <dependency>
  109. <groupId>org.jsoup</groupId>
  110. <artifactId>jsoup</artifactId>
  111. <version>1.8.3</version>
  112. </dependency>
  113. <dependency>
  114. <groupId>bfd</groupId>
  115. <artifactId>utils</artifactId>
  116. <version>3.0.0</version>
  117. </dependency>
  118. <dependency>
  119. <groupId>com.bfd</groupId>
  120. <artifactId>elastiUtils</artifactId>
  121. <version>0.0.1-SNAPSHOT</version>
  122. </dependency>
  123. <dependency>
  124. <groupId>kafka-utils</groupId>
  125. <artifactId>kafka</artifactId>
  126. <version>0.10</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>org.apache.poi</groupId>
  130. <artifactId>poi</artifactId>
  131. <version>4.1.0</version>
  132. </dependency>
  133. <dependency>
  134. <groupId>org.apache.poi</groupId>
  135. <artifactId>poi-ooxml</artifactId>
  136. <version>4.1.0</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>com.monitorjbl</groupId>
  140. <artifactId>xlsx-streamer</artifactId>
  141. <version>2.1.0</version>
  142. </dependency>
  143. <dependency>
  144. <groupId>com.squareup.okhttp3</groupId>
  145. <artifactId>okhttp</artifactId>
  146. <version>3.6.0</version>
  147. </dependency>
  148. <!-- https://mvnrepository.com/artifact/it.sauronsoftware/jave -->
  149. <dependency>
  150. <groupId>it.sauronsoftware</groupId>
  151. <artifactId>jave</artifactId>
  152. <version>1.0.2</version>
  153. </dependency>
  154. <dependency>
  155. <groupId>com.bfd.nlp</groupId>
  156. <artifactId>nlp_common_util</artifactId>
  157. <version>1.1</version>
  158. <exclusions>
  159. <exclusion>
  160. <artifactId>httpclient</artifactId>
  161. <groupId>org.apache.httpcomponents</groupId>
  162. </exclusion>
  163. <!--<exclusion>-->
  164. <!--<artifactId>slf4j-log4j12</artifactId>-->
  165. <!--<groupId>org.slf4j</groupId>-->
  166. <!--</exclusion>-->
  167. <exclusion>
  168. <artifactId>logback-classic</artifactId>
  169. <groupId>ch.qos.logback</groupId>
  170. </exclusion>
  171. </exclusions>
  172. </dependency>
  173. <!-- 有关邮件发送的包 -->
  174. <!-- https://mvnrepository.com/artifact/javax.mail/javax.mail-api -->
  175. <dependency>
  176. <groupId>javax.mail</groupId>
  177. <artifactId>javax.mail-api</artifactId>
  178. <version>1.6.2</version>
  179. </dependency>
  180. <!-- https://mvnrepository.com/artifact/com.sun.mail/javax.mail -->
  181. <dependency>
  182. <groupId>com.sun.mail</groupId>
  183. <artifactId>javax.mail</artifactId>
  184. <version>1.6.2</version>
  185. </dependency>
  186. </dependencies>
  187. <build>
  188. <plugins>
  189. <plugin>
  190. <groupId>org.apache.maven.plugins</groupId>
  191. <artifactId>maven-compiler-plugin</artifactId>
  192. <configuration>
  193. <source>1.8</source>
  194. <target>1.8</target>
  195. </configuration>
  196. </plugin>
  197. <plugin>
  198. <groupId>org.springframework.boot</groupId>
  199. <artifactId>spring-boot-maven-plugin</artifactId>
  200. <configuration>
  201. <mainClass>com.bfd.mf.job.Application</mainClass>
  202. </configuration>
  203. <executions>
  204. <execution>
  205. <goals>
  206. <goal>repackage</goal>
  207. </goals>
  208. </execution>
  209. </executions>
  210. </plugin>
  211. </plugins>
  212. </build>
  213. </project>