pom.xml 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443
  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.3</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.hadoop</groupId>
  226. <artifactId>hadoop-aws</artifactId>
  227. <exclusions>
  228. <exclusion>
  229. <groupId>org.apache.hadoop</groupId>
  230. <artifactId>hadoop-common</artifactId>
  231. </exclusion>
  232. <exclusion>
  233. <groupId>com.fasterxml.jackson.core</groupId>
  234. <artifactId>jackson-core</artifactId>
  235. </exclusion>
  236. <exclusion>
  237. <groupId>com.fasterxml.jackson.core</groupId>
  238. <artifactId>jackson-databind</artifactId>
  239. </exclusion>
  240. <exclusion>
  241. <groupId>com.fasterxml.jackson.core</groupId>
  242. <artifactId>jackson-annotations</artifactId>
  243. </exclusion>
  244. </exclusions>
  245. </dependency>
  246. <dependency>
  247. <groupId>org.apache.commons</groupId>
  248. <artifactId>commons-lang3</artifactId>
  249. </dependency>
  250. <dependency>
  251. <groupId>org.postgresql</groupId>
  252. <artifactId>postgresql</artifactId>
  253. </dependency>
  254. <dependency>
  255. <groupId>org.apache.httpcomponents</groupId>
  256. <artifactId>httpclient</artifactId>
  257. </dependency>
  258. <dependency>
  259. <groupId>org.apache.hive</groupId>
  260. <artifactId>hive-jdbc</artifactId>
  261. <exclusions>
  262. <exclusion>
  263. <artifactId>slf4j-log4j12</artifactId>
  264. <groupId>org.slf4j</groupId>
  265. </exclusion>
  266. <exclusion>
  267. <groupId>org.eclipse.jetty.aggregate</groupId>
  268. <artifactId>jetty-all</artifactId>
  269. </exclusion>
  270. <exclusion>
  271. <groupId>org.apache.ant</groupId>
  272. <artifactId>ant</artifactId>
  273. </exclusion>
  274. <exclusion>
  275. <groupId>io.dropwizard.metrics</groupId>
  276. <artifactId>metrics-json</artifactId>
  277. </exclusion>
  278. <exclusion>
  279. <groupId>io.dropwizard.metrics</groupId>
  280. <artifactId>metrics-jvm</artifactId>
  281. </exclusion>
  282. <exclusion>
  283. <groupId>com.github.joshelser</groupId>
  284. <artifactId>dropwizard-metrics-hadoop-metrics2-reporter</artifactId>
  285. </exclusion>
  286. <exclusion>
  287. <groupId>io.netty</groupId>
  288. <artifactId>netty-all</artifactId>
  289. </exclusion>
  290. <exclusion>
  291. <groupId>com.google.code.gson</groupId>
  292. <artifactId>gson</artifactId>
  293. </exclusion>
  294. <exclusion>
  295. <groupId>com.google.code.findbugs</groupId>
  296. <artifactId>jsr305</artifactId>
  297. </exclusion>
  298. <exclusion>
  299. <groupId>io.dropwizard.metrics</groupId>
  300. <artifactId>metrics-core</artifactId>
  301. </exclusion>
  302. <exclusion>
  303. <groupId>javax.servlet</groupId>
  304. <artifactId>servlet-api</artifactId>
  305. </exclusion>
  306. <exclusion>
  307. <groupId>org.apache.avro</groupId>
  308. <artifactId>avro</artifactId>
  309. </exclusion>
  310. <exclusion>
  311. <groupId>org.apache.commons</groupId>
  312. <artifactId>commons-compress</artifactId>
  313. </exclusion>
  314. <exclusion>
  315. <groupId>org.apache.curator</groupId>
  316. <artifactId>curator-client</artifactId>
  317. </exclusion>
  318. <exclusion>
  319. <groupId>org.apache.hadoop</groupId>
  320. <artifactId>hadoop-auth</artifactId>
  321. </exclusion>
  322. <exclusion>
  323. <groupId>org.apache.hadoop</groupId>
  324. <artifactId>hadoop-mapreduce-client-core</artifactId>
  325. </exclusion>
  326. <exclusion>
  327. <groupId>org.apache.hadoop</groupId>
  328. <artifactId>hadoop-yarn-api</artifactId>
  329. </exclusion>
  330. <exclusion>
  331. <groupId>org.apache.zookeeper</groupId>
  332. <artifactId>zookeeper</artifactId>
  333. </exclusion>
  334. <exclusion>
  335. <groupId>org.codehaus.jackson</groupId>
  336. <artifactId>jackson-jaxrs</artifactId>
  337. </exclusion>
  338. <exclusion>
  339. <groupId>org.codehaus.jackson</groupId>
  340. <artifactId>jackson-xc</artifactId>
  341. </exclusion>
  342. <exclusion>
  343. <groupId>com.google.protobuf</groupId>
  344. <artifactId>protobuf-java</artifactId>
  345. </exclusion>
  346. <exclusion>
  347. <groupId>org.json</groupId>
  348. <artifactId>json</artifactId>
  349. </exclusion>
  350. <exclusion>
  351. <artifactId>log4j-slf4j-impl</artifactId>
  352. <groupId>org.apache.logging.log4j</groupId>
  353. </exclusion>
  354. <exclusion>
  355. <artifactId>javax.servlet</artifactId>
  356. <groupId>org.eclipse.jetty.orbit</groupId>
  357. </exclusion>
  358. <exclusion>
  359. <artifactId>servlet-api-2.5</artifactId>
  360. <groupId>org.mortbay.jetty</groupId>
  361. </exclusion>
  362. <exclusion>
  363. <artifactId>jasper-runtime</artifactId>
  364. <groupId>tomcat</groupId>
  365. </exclusion>
  366. </exclusions>
  367. </dependency>
  368. <dependency>
  369. <groupId>org.mybatis</groupId>
  370. <artifactId>mybatis</artifactId>
  371. </dependency>
  372. <dependency>
  373. <groupId>ch.qos.logback</groupId>
  374. <artifactId>logback-classic</artifactId>
  375. </dependency>
  376. <dependency>
  377. <groupId>ch.qos.logback</groupId>
  378. <artifactId>logback-core</artifactId>
  379. </dependency>
  380. <dependency>
  381. <groupId>com.github.oshi</groupId>
  382. <artifactId>oshi-core</artifactId>
  383. </dependency>
  384. <dependency>
  385. <groupId>ru.yandex.clickhouse</groupId>
  386. <artifactId>clickhouse-jdbc</artifactId>
  387. <exclusions>
  388. <exclusion>
  389. <artifactId>com.fasterxml.jackson.core</artifactId>
  390. <groupId>jackson-core</groupId>
  391. </exclusion>
  392. <exclusion>
  393. <artifactId>com.fasterxml.jackson.core</artifactId>
  394. <groupId>jackson-databind</groupId>
  395. </exclusion>
  396. </exclusions>
  397. </dependency>
  398. <dependency>
  399. <groupId>com.microsoft.sqlserver</groupId>
  400. <artifactId>mssql-jdbc</artifactId>
  401. <exclusions>
  402. <exclusion>
  403. <artifactId>com.microsoft.azure</artifactId>
  404. <groupId>azure-keyvault</groupId>
  405. </exclusion>
  406. </exclusions>
  407. </dependency>
  408. </dependencies>
  409. <build>
  410. <plugins>
  411. <plugin>
  412. <groupId>org.apache.maven.plugins</groupId>
  413. <artifactId>maven-compiler-plugin</artifactId>
  414. <configuration>
  415. <source>${java.version}</source>
  416. <target>${java.version}</target>
  417. <encoding>${project.build.sourceEncoding}</encoding>
  418. </configuration>
  419. </plugin>
  420. </plugins>
  421. </build>
  422. </project>