pom.xml 7.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224
  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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <groupId>com.example</groupId>
  6. <artifactId>repurchase</artifactId>
  7. <version>0.0.1-SNAPSHOT</version>
  8. <name>repurchase</name>
  9. <description>Demo project for Spring Boot</description>
  10. <parent>
  11. <groupId>org.springframework.boot</groupId>
  12. <artifactId>spring-boot-starter-parent</artifactId>
  13. <version>2.2.2.RELEASE</version>
  14. <relativePath/> <!-- lookup parent from repository -->
  15. </parent>
  16. <properties>
  17. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  18. <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
  19. <elasticsearch.version>7.0.1</elasticsearch.version>
  20. <fastjson>1.2.47</fastjson>
  21. <java.version>1.8</java.version>
  22. <junit>4.10</junit>
  23. <netty-all.version>4.1.13.Final</netty-all.version>
  24. <scala.version>2.11</scala.version>
  25. <spark.version>2.3.0</spark.version>
  26. <thymeleaf.version>3.0.9.RELEASE</thymeleaf.version>
  27. <thymeleaf-layout-dialect.version>2.2.2</thymeleaf-layout-dialect.version>
  28. <scala-library>2.11.8</scala-library>
  29. <spark-stream-kafka>2.1.0</spark-stream-kafka>
  30. <slf4j-api>1.7.10</slf4j-api>
  31. </properties>
  32. <dependencies>
  33. <!-- <dependency>-->
  34. <!-- <groupId>org.springframework.boot</groupId>-->
  35. <!-- <artifactId>spring-boot-starter-web</artifactId>-->
  36. <!-- </dependency>-->
  37. <dependency>
  38. <groupId>org.springframework.boot</groupId>
  39. <artifactId>spring-boot-starter-aop</artifactId>
  40. </dependency>
  41. <!-- <dependency>-->
  42. <!-- <groupId>org.springframework.boot</groupId>-->
  43. <!-- <artifactId>spring-boot-starter-thymeleaf</artifactId>-->
  44. <!-- </dependency>-->
  45. <dependency>
  46. <groupId>org.springframework.boot</groupId>
  47. <artifactId>spring-boot-starter-test</artifactId>
  48. <scope>test</scope>
  49. </dependency>
  50. <!--添加属性注入依赖 -->
  51. <dependency>
  52. <groupId>org.springframework.boot</groupId>
  53. <artifactId>spring-boot-configuration-processor</artifactId>
  54. <optional>true</optional>
  55. </dependency>
  56. <dependency>
  57. <groupId>org.springframework.boot</groupId>
  58. <artifactId>spring-boot-devtools</artifactId>
  59. </dependency>
  60. <!--引入插件lombok 自动的set/get/构造方法插件 -->
  61. <dependency>
  62. <groupId>org.projectlombok</groupId>
  63. <artifactId>lombok</artifactId>
  64. </dependency>
  65. <!-- <dependency>-->
  66. <!-- <groupId>org.elasticsearch.client</groupId>-->
  67. <!-- <artifactId>transport</artifactId>-->
  68. <!-- <version>${elasticsearch.version}</version>-->
  69. <!-- </dependency>-->
  70. <dependency>
  71. <groupId>org.elasticsearch.client</groupId>
  72. <artifactId>elasticsearch-rest-high-level-client</artifactId>
  73. <version>${elasticsearch.version}</version>
  74. </dependency>
  75. <!-- <dependency>-->
  76. <!-- <groupId>org.elasticsearch.client</groupId>-->
  77. <!-- <artifactId>elasticsearch-rest-high-level-client</artifactId>-->
  78. <!-- <version>${elasticsearch.version}</version>-->
  79. <!-- </dependency>-->
  80. <!-- add the x-pack jar as a dependency-->
  81. <dependency>
  82. <groupId>org.elasticsearch.client</groupId>
  83. <artifactId>x-pack-transport</artifactId>
  84. <version>${elasticsearch.version}</version>
  85. </dependency>
  86. <!-- <dependency>-->
  87. <!-- <groupId>org.elasticsearch.plugin</groupId>-->
  88. <!-- <artifactId>x-pack-sql-jdbc</artifactId>-->
  89. <!-- <version>${elasticsearch.version}</version>-->
  90. <!-- </dependency>-->
  91. <dependency>
  92. <groupId>com.alibaba</groupId>
  93. <artifactId>fastjson</artifactId>
  94. <version>1.2.60</version>
  95. </dependency>
  96. <dependency>
  97. <groupId>com.microsoft.sqlserver</groupId>
  98. <artifactId>sqljdbc4</artifactId>
  99. <version>4.0</version>
  100. </dependency>
  101. <dependency>
  102. <groupId>ru.yandex.clickhouse</groupId>
  103. <artifactId>clickhouse-jdbc</artifactId>
  104. <version>0.1.40</version>
  105. </dependency>
  106. <dependency>
  107. <groupId>com.alibaba</groupId>
  108. <artifactId>druid</artifactId>
  109. <version>1.1.12</version>
  110. </dependency>
  111. <dependency>
  112. <groupId>org.apache.commons</groupId>
  113. <artifactId>commons-pool2</artifactId>
  114. <version>2.8.0</version>
  115. </dependency>
  116. <dependency>
  117. <groupId>javax.xml.bind</groupId>
  118. <artifactId>jaxb-api</artifactId>
  119. <version>2.3.0</version>
  120. </dependency>
  121. <dependency>
  122. <groupId>com.sun.xml.bind</groupId>
  123. <artifactId>jaxb-impl</artifactId>
  124. <version>2.3.0</version>
  125. </dependency>
  126. <dependency>
  127. <groupId>com.sun.xml.bind</groupId>
  128. <artifactId>jaxb-core</artifactId>
  129. <version>2.3.0</version>
  130. </dependency>
  131. <dependency>
  132. <groupId>javax.activation</groupId>
  133. <artifactId>activation</artifactId>
  134. <version>1.1.1</version>
  135. </dependency>
  136. <dependency>
  137. <groupId>junit</groupId>
  138. <artifactId>junit</artifactId>
  139. <scope>test</scope>
  140. </dependency>
  141. </dependencies>
  142. <repositories>
  143. <repository>
  144. <id>aliyun-repos</id>
  145. <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
  146. <releases>
  147. <enabled>true</enabled>
  148. </releases>
  149. <snapshots>
  150. <enabled>false</enabled>
  151. </snapshots>
  152. </repository>
  153. <repository>
  154. <id>elastic-lucene-snapshots</id>
  155. <name>Elastic Lucene Snapshots</name>
  156. <url>http://s3.amazonaws.com/download.elasticsearch.org/lucenesnapshots/00142c9</url>
  157. <releases>
  158. <enabled>true</enabled>
  159. </releases>
  160. <snapshots>
  161. <enabled>false</enabled>
  162. </snapshots>
  163. </repository>
  164. <repository>
  165. <id>elastic.co</id>
  166. <url>https://artifacts.elastic.co/maven</url>
  167. </repository>
  168. </repositories>
  169. <build>
  170. <plugins>
  171. <plugin>
  172. <groupId>org.springframework.boot</groupId>
  173. <artifactId>spring-boot-maven-plugin</artifactId>
  174. <configuration>
  175. <fork>true</fork>
  176. </configuration>
  177. </plugin>
  178. <plugin>
  179. <groupId>org.apache.maven.plugins</groupId>
  180. <artifactId>maven-compiler-plugin</artifactId>
  181. <version>3.1</version>
  182. <configuration>
  183. <source>1.8</source>
  184. <target>1.8</target>
  185. </configuration>
  186. </plugin>
  187. </plugins>
  188. </build>
  189. </project>