pom.xml 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412
  1. <?xml version="1.0"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  3. <modelVersion>4.0.0</modelVersion>
  4. <parent>
  5. <artifactId>escheduler</artifactId>
  6. <groupId>cn.analysys</groupId>
  7. <version>1.0.2-SNAPSHOT</version>
  8. </parent>
  9. <artifactId>escheduler-common</artifactId>
  10. <name>escheduler-common</name>
  11. <url>http://maven.apache.org</url>
  12. <packaging>jar</packaging>
  13. <properties>
  14. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  15. </properties>
  16. <dependencies>
  17. <dependency>
  18. <groupId>com.alibaba</groupId>
  19. <artifactId>fastjson</artifactId>
  20. <scope>compile</scope>
  21. </dependency>
  22. <dependency>
  23. <groupId>org.apache.httpcomponents</groupId>
  24. <artifactId>httpclient</artifactId>
  25. </dependency>
  26. <dependency>
  27. <groupId>junit</groupId>
  28. <artifactId>junit</artifactId>
  29. <scope>test</scope>
  30. </dependency>
  31. <dependency>
  32. <groupId>commons-configuration</groupId>
  33. <artifactId>commons-configuration</artifactId>
  34. </dependency>
  35. <dependency>
  36. <groupId>com.fasterxml.jackson.core</groupId>
  37. <artifactId>jackson-annotations</artifactId>
  38. </dependency>
  39. <dependency>
  40. <groupId>com.fasterxml.jackson.core</groupId>
  41. <artifactId>jackson-databind</artifactId>
  42. </dependency>
  43. <dependency>
  44. <groupId>org.apache.curator</groupId>
  45. <artifactId>curator-client</artifactId>
  46. <version>2.12.0</version>
  47. <exclusions>
  48. <exclusion>
  49. <groupId>log4j</groupId>
  50. <artifactId>log4j</artifactId>
  51. </exclusion>
  52. <exclusion>
  53. <groupId>io.netty</groupId>
  54. <artifactId>netty</artifactId>
  55. </exclusion>
  56. </exclusions>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.apache.commons</groupId>
  60. <artifactId>commons-collections4</artifactId>
  61. </dependency>
  62. <dependency>
  63. <groupId>org.apache.hadoop</groupId>
  64. <artifactId>hadoop-common</artifactId>
  65. <exclusions>
  66. <exclusion>
  67. <groupId>org.slf4j</groupId>
  68. <artifactId>slf4j-log4j12</artifactId>
  69. </exclusion>
  70. <exclusion>
  71. <groupId>jdk.tools</groupId>
  72. <artifactId>jdk.tools</artifactId>
  73. </exclusion>
  74. <exclusion>
  75. <artifactId>servlet-api</artifactId>
  76. <groupId>javax.servlet</groupId>
  77. </exclusion>
  78. <exclusion>
  79. <groupId>javax.servlet</groupId>
  80. <artifactId>servlet-api</artifactId>
  81. </exclusion>
  82. <exclusion>
  83. <groupId>log4j</groupId>
  84. <artifactId>log4j</artifactId>
  85. </exclusion>
  86. <exclusion>
  87. <groupId>org.apache.curator</groupId>
  88. <artifactId>curator-client</artifactId>
  89. </exclusion>
  90. <exclusion>
  91. <groupId>commons-configuration</groupId>
  92. <artifactId>commons-configuration</artifactId>
  93. </exclusion>
  94. <exclusion>
  95. <groupId>io.grpc</groupId>
  96. <artifactId>grpc-protobuf</artifactId>
  97. </exclusion>
  98. <exclusion>
  99. <groupId>io.netty</groupId>
  100. <artifactId>netty</artifactId>
  101. </exclusion>
  102. <exclusion>
  103. <groupId>org.codehaus.jackson</groupId>
  104. <artifactId>jackson-core-asl</artifactId>
  105. </exclusion>
  106. <exclusion>
  107. <groupId>org.codehaus.jackson</groupId>
  108. <artifactId>jackson-mapper-asl</artifactId>
  109. </exclusion>
  110. <exclusion>
  111. <groupId>com.google.protobuf</groupId>
  112. <artifactId>jackson-mapper-asl</artifactId>
  113. </exclusion>
  114. <exclusion>
  115. <groupId>com.google.code.gson</groupId>
  116. <artifactId>gson</artifactId>
  117. </exclusion>
  118. <exclusion>
  119. <groupId>org.apache.commons</groupId>
  120. <artifactId>commons-math3</artifactId>
  121. </exclusion>
  122. <exclusion>
  123. <groupId>xmlenc</groupId>
  124. <artifactId>xmlenc</artifactId>
  125. </exclusion>
  126. <exclusion>
  127. <groupId>commons-net</groupId>
  128. <artifactId>commons-net</artifactId>
  129. </exclusion>
  130. <exclusion>
  131. <groupId>org.apache.avro</groupId>
  132. <artifactId>avro</artifactId>
  133. </exclusion>
  134. <exclusion>
  135. <groupId>org.apache.zookeeper</groupId>
  136. <artifactId>zookeeper</artifactId>
  137. </exclusion>
  138. <exclusion>
  139. <artifactId>jsr305</artifactId>
  140. <groupId>com.google.code.findbugs</groupId>
  141. </exclusion>
  142. <exclusion>
  143. <groupId>javax.servlet.jsp</groupId>
  144. <artifactId>jsp-api</artifactId>
  145. </exclusion>
  146. <exclusion>
  147. <groupId>com.google.protobuf</groupId>
  148. <artifactId>protobuf-java</artifactId>
  149. </exclusion>
  150. </exclusions>
  151. </dependency>
  152. <dependency>
  153. <groupId>org.apache.hadoop</groupId>
  154. <artifactId>hadoop-client</artifactId>
  155. <exclusions>
  156. <exclusion>
  157. <groupId>org.slf4j</groupId>
  158. <artifactId>slf4j-log4j12</artifactId>
  159. </exclusion>
  160. <exclusion>
  161. <artifactId>servlet-api</artifactId>
  162. <groupId>javax.servlet</groupId>
  163. </exclusion>
  164. <exclusion>
  165. <groupId>org.codehaus.jackson</groupId>
  166. <artifactId>jackson-jaxrs</artifactId>
  167. </exclusion>
  168. <exclusion>
  169. <groupId>org.codehaus.jackson</groupId>
  170. <artifactId>jackson-xc</artifactId>
  171. </exclusion>
  172. <exclusion>
  173. <groupId>com.google.protobuf</groupId>
  174. <artifactId>protobuf-java</artifactId>
  175. </exclusion>
  176. <exclusion>
  177. <groupId>org.fusesource.leveldbjni</groupId>
  178. <artifactId>leveldbjni-all</artifactId>
  179. </exclusion>
  180. <exclusion>
  181. <groupId>org.apache.zookeeper</groupId>
  182. <artifactId>zookeeper</artifactId>
  183. </exclusion>
  184. <exclusion>
  185. <groupId>org.apache.hadoop</groupId>
  186. <artifactId>hadoop-mapreduce-client-shuffle</artifactId>
  187. </exclusion>
  188. </exclusions>
  189. </dependency>
  190. <dependency>
  191. <groupId>javax.servlet</groupId>
  192. <artifactId>javax.servlet-api</artifactId>
  193. </dependency>
  194. <dependency>
  195. <groupId>org.apache.hadoop</groupId>
  196. <artifactId>hadoop-hdfs</artifactId>
  197. <exclusions>
  198. <exclusion>
  199. <groupId>javax.servlet</groupId>
  200. <artifactId>servlet-api</artifactId>
  201. </exclusion>
  202. <exclusion>
  203. <groupId>io.netty</groupId>
  204. <artifactId>netty</artifactId>
  205. </exclusion>
  206. <exclusion>
  207. <groupId>com.google.protobuf</groupId>
  208. <artifactId>protobuf-java</artifactId>
  209. </exclusion>
  210. <exclusion>
  211. <groupId>xmlenc</groupId>
  212. <artifactId>xmlenc</artifactId>
  213. </exclusion>
  214. <exclusion>
  215. <groupId>io.netty</groupId>
  216. <artifactId>netty-all</artifactId>
  217. </exclusion>
  218. <exclusion>
  219. <groupId>org.fusesource.leveldbjni</groupId>
  220. <artifactId>leveldbjni-all</artifactId>
  221. </exclusion>
  222. </exclusions>
  223. </dependency>
  224. <dependency>
  225. <groupId>org.apache.commons</groupId>
  226. <artifactId>commons-lang3</artifactId>
  227. </dependency>
  228. <dependency>
  229. <groupId>org.postgresql</groupId>
  230. <artifactId>postgresql</artifactId>
  231. </dependency>
  232. <dependency>
  233. <groupId>org.apache.hive</groupId>
  234. <artifactId>hive-jdbc</artifactId>
  235. <exclusions>
  236. <exclusion>
  237. <artifactId>slf4j-log4j12</artifactId>
  238. <groupId>org.slf4j</groupId>
  239. </exclusion>
  240. <exclusion>
  241. <groupId>org.eclipse.jetty.aggregate</groupId>
  242. <artifactId>jetty-all</artifactId>
  243. </exclusion>
  244. <exclusion>
  245. <groupId>org.apache.ant</groupId>
  246. <artifactId>ant</artifactId>
  247. </exclusion>
  248. <exclusion>
  249. <groupId>io.dropwizard.metrics</groupId>
  250. <artifactId>metrics-json</artifactId>
  251. </exclusion>
  252. <exclusion>
  253. <groupId>io.dropwizard.metrics</groupId>
  254. <artifactId>metrics-jvm</artifactId>
  255. </exclusion>
  256. <exclusion>
  257. <groupId>com.github.joshelser</groupId>
  258. <artifactId>dropwizard-metrics-hadoop-metrics2-reporter</artifactId>
  259. </exclusion>
  260. <exclusion>
  261. <groupId>io.netty</groupId>
  262. <artifactId>netty-all</artifactId>
  263. </exclusion>
  264. <exclusion>
  265. <groupId>com.google.code.gson</groupId>
  266. <artifactId>gson</artifactId>
  267. </exclusion>
  268. <exclusion>
  269. <groupId>com.google.code.findbugs</groupId>
  270. <artifactId>jsr305</artifactId>
  271. </exclusion>
  272. <exclusion>
  273. <groupId>io.dropwizard.metrics</groupId>
  274. <artifactId>metrics-core</artifactId>
  275. </exclusion>
  276. <exclusion>
  277. <groupId>javax.servlet</groupId>
  278. <artifactId>servlet-api</artifactId>
  279. </exclusion>
  280. <exclusion>
  281. <groupId>org.apache.avro</groupId>
  282. <artifactId>avro</artifactId>
  283. </exclusion>
  284. <exclusion>
  285. <groupId>org.apache.commons</groupId>
  286. <artifactId>commons-compress</artifactId>
  287. </exclusion>
  288. <exclusion>
  289. <groupId>org.apache.curator</groupId>
  290. <artifactId>curator-client</artifactId>
  291. </exclusion>
  292. <exclusion>
  293. <groupId>org.apache.hadoop</groupId>
  294. <artifactId>hadoop-auth</artifactId>
  295. </exclusion>
  296. <exclusion>
  297. <groupId>org.apache.hadoop</groupId>
  298. <artifactId>hadoop-mapreduce-client-core</artifactId>
  299. </exclusion>
  300. <exclusion>
  301. <groupId>org.apache.hadoop</groupId>
  302. <artifactId>hadoop-yarn-api</artifactId>
  303. </exclusion>
  304. <exclusion>
  305. <groupId>org.apache.zookeeper</groupId>
  306. <artifactId>zookeeper</artifactId>
  307. </exclusion>
  308. <exclusion>
  309. <groupId>org.codehaus.jackson</groupId>
  310. <artifactId>jackson-jaxrs</artifactId>
  311. </exclusion>
  312. <exclusion>
  313. <groupId>org.codehaus.jackson</groupId>
  314. <artifactId>jackson-xc</artifactId>
  315. </exclusion>
  316. <exclusion>
  317. <groupId>com.google.protobuf</groupId>
  318. <artifactId>protobuf-java</artifactId>
  319. </exclusion>
  320. <exclusion>
  321. <groupId>org.json</groupId>
  322. <artifactId>json</artifactId>
  323. </exclusion>
  324. <exclusion>
  325. <artifactId>log4j-slf4j-impl</artifactId>
  326. <groupId>org.apache.logging.log4j</groupId>
  327. </exclusion>
  328. <exclusion>
  329. <artifactId>javax.servlet</artifactId>
  330. <groupId>org.eclipse.jetty.orbit</groupId>
  331. </exclusion>
  332. <exclusion>
  333. <artifactId>servlet-api-2.5</artifactId>
  334. <groupId>org.mortbay.jetty</groupId>
  335. </exclusion>
  336. </exclusions>
  337. </dependency>
  338. <dependency>
  339. <groupId>org.mybatis</groupId>
  340. <artifactId>mybatis</artifactId>
  341. </dependency>
  342. <dependency>
  343. <groupId>ch.qos.logback</groupId>
  344. <artifactId>logback-classic</artifactId>
  345. </dependency>
  346. <dependency>
  347. <groupId>ch.qos.logback</groupId>
  348. <artifactId>logback-core</artifactId>
  349. </dependency>
  350. <dependency>
  351. <groupId>com.github.oshi</groupId>
  352. <artifactId>oshi-core</artifactId>
  353. </dependency>
  354. <dependency>
  355. <groupId>ru.yandex.clickhouse</groupId>
  356. <artifactId>clickhouse-jdbc</artifactId>
  357. <exclusions>
  358. <exclusion>
  359. <artifactId>com.fasterxml.jackson.core</artifactId>
  360. <groupId>jackson-core</groupId>
  361. </exclusion>
  362. <exclusion>
  363. <artifactId>com.fasterxml.jackson.core</artifactId>
  364. <groupId>jackson-databind</groupId>
  365. </exclusion>
  366. </exclusions>
  367. </dependency>
  368. <dependency>
  369. <groupId>com.microsoft.sqlserver</groupId>
  370. <artifactId>mssql-jdbc</artifactId>
  371. <exclusions>
  372. <exclusion>
  373. <artifactId>com.microsoft.azure</artifactId>
  374. <groupId>azure-keyvault</groupId>
  375. </exclusion>
  376. </exclusions>
  377. </dependency>
  378. </dependencies>
  379. <build>
  380. <plugins>
  381. <plugin>
  382. <groupId>org.apache.maven.plugins</groupId>
  383. <artifactId>maven-compiler-plugin</artifactId>
  384. <configuration>
  385. <source>${java.version}</source>
  386. <target>${java.version}</target>
  387. <encoding>${project.build.sourceEncoding}</encoding>
  388. </configuration>
  389. </plugin>
  390. </plugins>
  391. </build>
  392. </project>