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.

171 lines
5.5 KiB

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.0</artifactId>
  8. <groupId>com.bfd.mf</groupId>
  9. <version>3.0-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>org.elasticsearch</groupId>
  75. <artifactId>elasticsearch</artifactId>
  76. <version>6.0.0</version>
  77. </dependency>
  78. <dependency>
  79. <groupId>org.elasticsearch.client</groupId>
  80. <artifactId>transport</artifactId>
  81. <version>6.0.0</version>
  82. </dependency>
  83. <dependency>
  84. <groupId>org.elasticsearch.plugin</groupId>
  85. <artifactId>transport-netty4-client</artifactId>
  86. <version>6.0.0</version>
  87. </dependency>
  88. <dependency>
  89. <groupId>org.elasticsearch.client</groupId>
  90. <artifactId>elasticsearch-rest-high-level-client</artifactId>
  91. <version>6.0.0</version>
  92. </dependency>
  93. <dependency>
  94. <groupId>com.squareup.okhttp3</groupId>
  95. <artifactId>okhttp</artifactId>
  96. <version>3.9.1</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. </dependencies>
  129. <build>
  130. <plugins>
  131. <plugin>
  132. <groupId>org.apache.maven.plugins</groupId>
  133. <artifactId>maven-compiler-plugin</artifactId>
  134. <configuration>
  135. <source>1.8</source>
  136. <target>1.8</target>
  137. </configuration>
  138. </plugin>
  139. <plugin>
  140. <groupId>org.springframework.boot</groupId>
  141. <artifactId>spring-boot-maven-plugin</artifactId>
  142. <configuration>
  143. <mainClass>com.bfd.mf.job.Application</mainClass>
  144. </configuration>
  145. <executions>
  146. <execution>
  147. <goals>
  148. <goal>repackage</goal>
  149. </goals>
  150. </execution>
  151. </executions>
  152. </plugin>
  153. </plugins>
  154. </build>
  155. </project>