pom.xml 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843
  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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  4. <modelVersion>4.0.0</modelVersion>
  5. <parent>
  6. <groupId>com.wugui</groupId>
  7. <artifactId>datax-web</artifactId>
  8. <version>2.1.2</version>
  9. </parent>
  10. <artifactId>datax-admin</artifactId>
  11. <packaging>jar</packaging>
  12. <properties>
  13. <java.version>1.8</java.version>
  14. </properties>
  15. <dependencyManagement>
  16. <dependencies>
  17. <dependency>
  18. <groupId>org.springframework.boot</groupId>
  19. <artifactId>spring-boot-starter-parent</artifactId>
  20. <version>${spring-boot.version}</version>
  21. <type>pom</type>
  22. <scope>import</scope>
  23. </dependency>
  24. </dependencies>
  25. </dependencyManagement>
  26. <dependencies>
  27. <dependency>
  28. <groupId>org.springframework.boot</groupId>
  29. <artifactId>spring-boot-starter-web</artifactId>
  30. <exclusions>
  31. <exclusion>
  32. <artifactId>logback-classic</artifactId>
  33. <groupId>ch.qos.logback</groupId>
  34. </exclusion>
  35. <exclusion>
  36. <artifactId>slf4j-api</artifactId>
  37. <groupId>org.slf4j</groupId>
  38. </exclusion>
  39. </exclusions>
  40. </dependency>
  41. <!-- 引入该 spring-cloud-context.jar 使 bootstrap.properties 配置文件即可生效 -->
  42. <dependency>
  43. <groupId>org.springframework.cloud</groupId>
  44. <artifactId>spring-cloud-context</artifactId>
  45. <version>${spring-boot.version}</version>
  46. </dependency>
  47. <dependency>
  48. <groupId>org.springframework.boot</groupId>
  49. <artifactId>spring-boot-starter-test</artifactId>
  50. <scope>test</scope>
  51. <exclusions>
  52. <exclusion>
  53. <artifactId>slf4j-api</artifactId>
  54. <groupId>org.slf4j</groupId>
  55. </exclusion>
  56. </exclusions>
  57. </dependency>
  58. <dependency>
  59. <groupId>org.springframework.boot</groupId>
  60. <artifactId>spring-boot-starter-security</artifactId>
  61. </dependency>
  62. <!-- starter-actuator -->
  63. <dependency>
  64. <groupId>org.springframework.boot</groupId>
  65. <artifactId>spring-boot-starter-actuator</artifactId>
  66. </dependency>
  67. <!-- Mybatis Plus -->
  68. <dependency>
  69. <groupId>com.baomidou</groupId>
  70. <artifactId>mybatis-plus-boot-starter</artifactId>
  71. <version>${mybatisplus.version}</version>
  72. <exclusions>
  73. <exclusion>
  74. <groupId>com.baomidou</groupId>
  75. <artifactId>mybatis-plus-generator</artifactId>
  76. </exclusion>
  77. <exclusion>
  78. <artifactId>slf4j-api</artifactId>
  79. <groupId>org.slf4j</groupId>
  80. </exclusion>
  81. </exclusions>
  82. </dependency>
  83. <dependency>
  84. <groupId>com.baomidou</groupId>
  85. <artifactId>mybatis-plus</artifactId>
  86. <version>${mybatisplus.version}</version>
  87. </dependency>
  88. <!-- 接口管理 -->
  89. <dependency>
  90. <groupId>io.springfox</groupId>
  91. <artifactId>springfox-swagger2</artifactId>
  92. <version>${swagger.version}</version>
  93. <exclusions>
  94. <exclusion>
  95. <groupId>io.swagger</groupId>
  96. <artifactId>swagger-models</artifactId>
  97. </exclusion>
  98. <exclusion>
  99. <artifactId>guava</artifactId>
  100. <groupId>com.google.guava</groupId>
  101. </exclusion>
  102. <exclusion>
  103. <artifactId>slf4j-api</artifactId>
  104. <groupId>org.slf4j</groupId>
  105. </exclusion>
  106. </exclusions>
  107. </dependency>
  108. <dependency>
  109. <groupId>io.swagger</groupId>
  110. <artifactId>swagger-models</artifactId>
  111. <version>${swagger-models.version}</version>
  112. <exclusions>
  113. <exclusion>
  114. <artifactId>slf4j-api</artifactId>
  115. <groupId>org.slf4j</groupId>
  116. </exclusion>
  117. <exclusion>
  118. <artifactId>swagger-annotations</artifactId>
  119. <groupId>io.swagger</groupId>
  120. </exclusion>
  121. </exclusions>
  122. </dependency>
  123. <dependency>
  124. <groupId>com.github.xiaoymin</groupId>
  125. <artifactId>swagger-bootstrap-ui</artifactId>
  126. <version>${swagger-bootstrap-ui.version}</version>
  127. </dependency>
  128. <dependency>
  129. <groupId>org.projectlombok</groupId>
  130. <artifactId>lombok</artifactId>
  131. <optional>true</optional>
  132. </dependency>
  133. <dependency>
  134. <groupId>com.alibaba</groupId>
  135. <artifactId>fastjson</artifactId>
  136. <version>${fastjson.version}</version>
  137. </dependency>
  138. <dependency>
  139. <groupId>org.postgresql</groupId>
  140. <artifactId>postgresql</artifactId>
  141. <version>${postgresql.version}</version>
  142. </dependency>
  143. <dependency>
  144. <groupId>com.oracle</groupId>
  145. <artifactId>ojdbc6</artifactId>
  146. <version>11.2.0.3</version>
  147. <scope>system</scope>
  148. <systemPath>${basedir}/src/main/lib/ojdbc6-11.2.0.3.jar</systemPath>
  149. </dependency>
  150. <dependency>
  151. <groupId>com.microsoft.sqlserver</groupId>
  152. <artifactId>sqljdbc4</artifactId>
  153. <version>4.0</version>
  154. <scope>system</scope>
  155. <systemPath>${basedir}/src/main/lib/sqljdbc4-4.0.jar</systemPath>
  156. </dependency>
  157. <dependency>
  158. <groupId>org.slf4j</groupId>
  159. <artifactId>slf4j-api</artifactId>
  160. <version>${slf4j-api.version}</version>
  161. </dependency>
  162. <dependency>
  163. <groupId>ch.qos.logback</groupId>
  164. <artifactId>logback-classic</artifactId>
  165. <version>${logback-classic.version}</version>
  166. <exclusions>
  167. <exclusion>
  168. <artifactId>slf4j-api</artifactId>
  169. <groupId>org.slf4j</groupId>
  170. </exclusion>
  171. </exclusions>
  172. </dependency>
  173. <dependency>
  174. <groupId>mysql</groupId>
  175. <artifactId>mysql-connector-java</artifactId>
  176. <version>${mysql-connector.version}</version>
  177. </dependency>
  178. <!-- datax-core -->
  179. <dependency>
  180. <groupId>com.wugui</groupId>
  181. <artifactId>datax-core</artifactId>
  182. <version>${project.parent.version}</version>
  183. <exclusions>
  184. <exclusion>
  185. <artifactId>slf4j-api</artifactId>
  186. <groupId>org.slf4j</groupId>
  187. </exclusion>
  188. </exclusions>
  189. </dependency>
  190. <dependency>
  191. <groupId>junit</groupId>
  192. <artifactId>junit</artifactId>
  193. <version>${junit.version}</version>
  194. </dependency>
  195. <!-- mail-starter -->
  196. <dependency>
  197. <groupId>org.springframework.boot</groupId>
  198. <artifactId>spring-boot-starter-mail</artifactId>
  199. </dependency>
  200. <dependency>
  201. <groupId>io.jsonwebtoken</groupId>
  202. <artifactId>jjwt</artifactId>
  203. <version>${jjwt.version}</version>
  204. </dependency>
  205. <dependency>
  206. <groupId>com.google.guava</groupId>
  207. <artifactId>guava</artifactId>
  208. <version>29.0-jre</version>
  209. </dependency>
  210. <dependency>
  211. <groupId>org.apache.hadoop</groupId>
  212. <artifactId>hadoop-common</artifactId>
  213. <version>${hadoop.version}</version>
  214. <exclusions>
  215. <exclusion>
  216. <artifactId>slf4j-log4j12</artifactId>
  217. <groupId>org.slf4j</groupId>
  218. </exclusion>
  219. <exclusion>
  220. <artifactId>com.sun.jersey</artifactId>
  221. <groupId>jersey-json</groupId>
  222. </exclusion>
  223. <exclusion>
  224. <artifactId>jsr305</artifactId>
  225. <groupId>com.google.code.findbugs</groupId>
  226. </exclusion>
  227. <exclusion>
  228. <artifactId>guava</artifactId>
  229. <groupId>com.google.guava</groupId>
  230. </exclusion>
  231. <exclusion>
  232. <artifactId>jettison</artifactId>
  233. <groupId>org.codehaus.jettison</groupId>
  234. </exclusion>
  235. <exclusion>
  236. <artifactId>jackson-core-asl</artifactId>
  237. <groupId>org.codehaus.jackson</groupId>
  238. </exclusion>
  239. <exclusion>
  240. <artifactId>jackson-mapper-asl</artifactId>
  241. <groupId>org.codehaus.jackson</groupId>
  242. </exclusion>
  243. <exclusion>
  244. <artifactId>slf4j-api</artifactId>
  245. <groupId>org.slf4j</groupId>
  246. </exclusion>
  247. <exclusion>
  248. <artifactId>commons-cli</artifactId>
  249. <groupId>commons-cli</groupId>
  250. </exclusion>
  251. <exclusion>
  252. <artifactId>commons-logging</artifactId>
  253. <groupId>commons-logging</groupId>
  254. </exclusion>
  255. <exclusion>
  256. <artifactId>commons-collections</artifactId>
  257. <groupId>commons-collections</groupId>
  258. </exclusion>
  259. <exclusion>
  260. <artifactId>commons-lang</artifactId>
  261. <groupId>commons-lang</groupId>
  262. </exclusion>
  263. <exclusion>
  264. <artifactId>curator-framework</artifactId>
  265. <groupId>org.apache.curator</groupId>
  266. </exclusion>
  267. <exclusion>
  268. <artifactId>log4j</artifactId>
  269. <groupId>log4j</groupId>
  270. </exclusion>
  271. <exclusion>
  272. <artifactId>netty</artifactId>
  273. <groupId>io.netty</groupId>
  274. </exclusion>
  275. <exclusion>
  276. <artifactId>servlet-api</artifactId>
  277. <groupId>javax.servlet</groupId>
  278. </exclusion>
  279. <exclusion>
  280. <artifactId>jsp-api</artifactId>
  281. <groupId>javax.servlet.jsp</groupId>
  282. </exclusion>
  283. <exclusion>
  284. <artifactId>jetty-util</artifactId>
  285. <groupId>org.mortbay.jetty</groupId>
  286. </exclusion>
  287. <exclusion>
  288. <artifactId>jetty</artifactId>
  289. <groupId>org.mortbay.jetty</groupId>
  290. </exclusion>
  291. </exclusions>
  292. </dependency>
  293. <dependency>
  294. <groupId>org.apache.hive</groupId>
  295. <artifactId>hive-jdbc</artifactId>
  296. <version>${hive.jdbc.version}</version>
  297. <exclusions>
  298. <exclusion>
  299. <artifactId>jsr305</artifactId>
  300. <groupId>com.google.code.findbugs</groupId>
  301. </exclusion>
  302. <exclusion>
  303. <artifactId>guava</artifactId>
  304. <groupId>com.google.guava</groupId>
  305. </exclusion>
  306. <exclusion>
  307. <artifactId>jettison</artifactId>
  308. <groupId>org.codehaus.jettison</groupId>
  309. </exclusion>
  310. <exclusion>
  311. <artifactId>commons-cli</artifactId>
  312. <groupId>commons-cli</groupId>
  313. </exclusion>
  314. <exclusion>
  315. <artifactId>curator-client</artifactId>
  316. <groupId>org.apache.curator</groupId>
  317. </exclusion>
  318. <exclusion>
  319. <artifactId>commons-compress</artifactId>
  320. <groupId>org.apache.commons</groupId>
  321. </exclusion>
  322. <exclusion>
  323. <artifactId>hadoop-common</artifactId>
  324. <groupId>org.apache.hadoop</groupId>
  325. </exclusion>
  326. <exclusion>
  327. <artifactId>slf4j-api</artifactId>
  328. <groupId>org.slf4j</groupId>
  329. </exclusion>
  330. <exclusion>
  331. <artifactId>hadoop-hdfs</artifactId>
  332. <groupId>org.apache.hadoop</groupId>
  333. </exclusion>
  334. <exclusion>
  335. <artifactId>snappy</artifactId>
  336. <groupId>org.iq80.snappy</groupId>
  337. </exclusion>
  338. <exclusion>
  339. <artifactId>antlr-runtime</artifactId>
  340. <groupId>org.antlr</groupId>
  341. </exclusion>
  342. <exclusion>
  343. <artifactId>hbase-client</artifactId>
  344. <groupId>org.apache.hbase</groupId>
  345. </exclusion>
  346. <exclusion>
  347. <artifactId>libthrift</artifactId>
  348. <groupId>org.apache.thrift</groupId>
  349. </exclusion>
  350. <exclusion>
  351. <artifactId>twill-common</artifactId>
  352. <groupId>org.apache.twill</groupId>
  353. </exclusion>
  354. <exclusion>
  355. <artifactId>twill-core</artifactId>
  356. <groupId>org.apache.twill</groupId>
  357. </exclusion>
  358. <exclusion>
  359. <artifactId>twill-discovery-api</artifactId>
  360. <groupId>org.apache.twill</groupId>
  361. </exclusion>
  362. <exclusion>
  363. <artifactId>twill-discovery-core</artifactId>
  364. <groupId>org.apache.twill</groupId>
  365. </exclusion>
  366. <exclusion>
  367. <artifactId>twill-zookeeper</artifactId>
  368. <groupId>org.apache.twill</groupId>
  369. </exclusion>
  370. <exclusion>
  371. <artifactId>avro</artifactId>
  372. <groupId>org.apache.avro</groupId>
  373. </exclusion>
  374. <exclusion>
  375. <artifactId>curator-recipes</artifactId>
  376. <groupId>org.apache.curator</groupId>
  377. </exclusion>
  378. <exclusion>
  379. <artifactId>hbase-common</artifactId>
  380. <groupId>org.apache.hbase</groupId>
  381. </exclusion>
  382. <exclusion>
  383. <artifactId>hbase-hadoop-compat</artifactId>
  384. <groupId>org.apache.hbase</groupId>
  385. </exclusion>
  386. <exclusion>
  387. <artifactId>hbase-hadoop2-compat</artifactId>
  388. <groupId>org.apache.hbase</groupId>
  389. </exclusion>
  390. <exclusion>
  391. <artifactId>hbase-server</artifactId>
  392. <groupId>org.apache.hbase</groupId>
  393. </exclusion>
  394. <exclusion>
  395. <artifactId>curator-framework</artifactId>
  396. <groupId>org.apache.curator</groupId>
  397. </exclusion>
  398. <exclusion>
  399. <artifactId>guice-servlet</artifactId>
  400. <groupId>com.google.inject.extensions</groupId>
  401. </exclusion>
  402. <exclusion>
  403. <artifactId>hadoop-client</artifactId>
  404. <groupId>org.apache.hadoop</groupId>
  405. </exclusion>
  406. <exclusion>
  407. <artifactId>hadoop-yarn-api</artifactId>
  408. <groupId>org.apache.hadoop</groupId>
  409. </exclusion>
  410. <exclusion>
  411. <artifactId>hadoop-yarn-common</artifactId>
  412. <groupId>org.apache.hadoop</groupId>
  413. </exclusion>
  414. <exclusion>
  415. <artifactId>jackson-core-asl</artifactId>
  416. <groupId>org.codehaus.jackson</groupId>
  417. </exclusion>
  418. <exclusion>
  419. <artifactId>jackson-mapper-asl</artifactId>
  420. <groupId>org.codehaus.jackson</groupId>
  421. </exclusion>
  422. <exclusion>
  423. <artifactId>jackson-jaxrs</artifactId>
  424. <groupId>org.codehaus.jackson</groupId>
  425. </exclusion>
  426. <exclusion>
  427. <artifactId>jackson-xc</artifactId>
  428. <groupId>org.codehaus.jackson</groupId>
  429. </exclusion>
  430. <exclusion>
  431. <artifactId>jersey-client</artifactId>
  432. <groupId>com.sun.jersey</groupId>
  433. </exclusion>
  434. <exclusion>
  435. <artifactId>jamon-runtime</artifactId>
  436. <groupId>org.jamon</groupId>
  437. </exclusion>
  438. <exclusion>
  439. <artifactId>servlet-api</artifactId>
  440. <groupId>javax.servlet</groupId>
  441. </exclusion>
  442. <exclusion>
  443. <artifactId>commons-logging</artifactId>
  444. <groupId>commons-logging</groupId>
  445. </exclusion>
  446. <exclusion>
  447. <artifactId>hadoop-annotations</artifactId>
  448. <groupId>org.apache.hadoop</groupId>
  449. </exclusion>
  450. <exclusion>
  451. <artifactId>commons-collections</artifactId>
  452. <groupId>commons-collections</groupId>
  453. </exclusion>
  454. <exclusion>
  455. <artifactId>jersey-guice</artifactId>
  456. <groupId>com.sun.jersey.contribs</groupId>
  457. </exclusion>
  458. <exclusion>
  459. <artifactId>log4j-slf4j-impl</artifactId>
  460. <groupId>org.apache.logging.log4j</groupId>
  461. </exclusion>
  462. <exclusion>
  463. <artifactId>hive-shims-common</artifactId>
  464. <groupId>org.apache.hive.shims</groupId>
  465. </exclusion>
  466. <exclusion>
  467. <artifactId>javax.servlet</artifactId>
  468. <groupId>org.eclipse.jetty.orbit</groupId>
  469. </exclusion>
  470. <exclusion>
  471. <artifactId>jsp-api</artifactId>
  472. <groupId>javax.servlet.jsp</groupId>
  473. </exclusion>
  474. <exclusion>
  475. <artifactId>jasper-compiler</artifactId>
  476. <groupId>tomcat</groupId>
  477. </exclusion>
  478. <exclusion>
  479. <artifactId>jetty-all</artifactId>
  480. <groupId>org.eclipse.jetty.aggregate</groupId>
  481. </exclusion>
  482. <exclusion>
  483. <artifactId>jetty</artifactId>
  484. <groupId>org.mortbay.jetty</groupId>
  485. </exclusion>
  486. <exclusion>
  487. <artifactId>jetty-util</artifactId>
  488. <groupId>org.mortbay.jetty</groupId>
  489. </exclusion>
  490. </exclusions>
  491. </dependency>
  492. <dependency>
  493. <groupId>org.apache.hadoop</groupId>
  494. <artifactId>hadoop-hdfs</artifactId>
  495. <version>${hadoop.version}</version>
  496. <exclusions>
  497. <exclusion>
  498. <artifactId>guava</artifactId>
  499. <groupId>com.google.guava</groupId>
  500. </exclusion>
  501. <exclusion>
  502. <artifactId>commons-cli</artifactId>
  503. <groupId>commons-cli</groupId>
  504. </exclusion>
  505. <exclusion>
  506. <artifactId>jackson-core-asl</artifactId>
  507. <groupId>org.codehaus.jackson</groupId>
  508. </exclusion>
  509. <exclusion>
  510. <artifactId>jackson-mapper-asl</artifactId>
  511. <groupId>org.codehaus.jackson</groupId>
  512. </exclusion>
  513. <exclusion>
  514. <artifactId>servlet-api</artifactId>
  515. <groupId>javax.servlet</groupId>
  516. </exclusion>
  517. <exclusion>
  518. <artifactId>jetty</artifactId>
  519. <groupId>org.mortbay.jetty</groupId>
  520. </exclusion>
  521. <exclusion>
  522. <artifactId>jetty-util</artifactId>
  523. <groupId>org.mortbay.jetty</groupId>
  524. </exclusion>
  525. </exclusions>
  526. </dependency>
  527. <dependency>
  528. <groupId>org.apache.hbase</groupId>
  529. <artifactId>hbase-client</artifactId>
  530. <version>${hbase.version}</version>
  531. <exclusions>
  532. <exclusion>
  533. <artifactId>guava</artifactId>
  534. <groupId>com.google.guava</groupId>
  535. </exclusion>
  536. <exclusion>
  537. <artifactId>commons-logging</artifactId>
  538. <groupId>commons-logging</groupId>
  539. </exclusion>
  540. <exclusion>
  541. <artifactId>hadoop-auth</artifactId>
  542. <groupId>org.apache.hadoop</groupId>
  543. </exclusion>
  544. <exclusion>
  545. <artifactId>hadoop-common</artifactId>
  546. <groupId>org.apache.hadoop</groupId>
  547. </exclusion>
  548. <exclusion>
  549. <artifactId>hadoop-mapreduce-client-core</artifactId>
  550. <groupId>org.apache.hadoop</groupId>
  551. </exclusion>
  552. <exclusion>
  553. <artifactId>hbase-annotations</artifactId>
  554. <groupId>org.apache.hbase</groupId>
  555. </exclusion>
  556. <exclusion>
  557. <artifactId>hbase-protocol</artifactId>
  558. <groupId>org.apache.hbase</groupId>
  559. </exclusion>
  560. <exclusion>
  561. <artifactId>jackson-mapper-asl</artifactId>
  562. <groupId>org.codehaus.jackson</groupId>
  563. </exclusion>
  564. <exclusion>
  565. <artifactId>slf4j-api</artifactId>
  566. <groupId>org.slf4j</groupId>
  567. </exclusion>
  568. <exclusion>
  569. <artifactId>jetty-util</artifactId>
  570. <groupId>org.mortbay.jetty</groupId>
  571. </exclusion>
  572. </exclusions>
  573. </dependency>
  574. <dependency>
  575. <groupId>org.apache.phoenix</groupId>
  576. <artifactId>phoenix-core</artifactId>
  577. <version>${phoenix.version}</version>
  578. <exclusions>
  579. <exclusion>
  580. <artifactId>slf4j-log4j12</artifactId>
  581. <groupId>org.slf4j</groupId>
  582. </exclusion>
  583. <exclusion>
  584. <artifactId>guava</artifactId>
  585. <groupId>com.google.guava</groupId>
  586. </exclusion>
  587. <exclusion>
  588. <artifactId>commons-cli</artifactId>
  589. <groupId>commons-cli</groupId>
  590. </exclusion>
  591. <exclusion>
  592. <artifactId>hadoop-common</artifactId>
  593. <groupId>org.apache.hadoop</groupId>
  594. </exclusion>
  595. <exclusion>
  596. <artifactId>avro</artifactId>
  597. <groupId>org.apache.avro</groupId>
  598. </exclusion>
  599. <exclusion>
  600. <artifactId>guice</artifactId>
  601. <groupId>com.google.inject</groupId>
  602. </exclusion>
  603. <exclusion>
  604. <artifactId>hadoop-yarn-api</artifactId>
  605. <groupId>org.apache.hadoop</groupId>
  606. </exclusion>
  607. <exclusion>
  608. <artifactId>hadoop-auth</artifactId>
  609. <groupId>org.apache.hadoop</groupId>
  610. </exclusion>
  611. <exclusion>
  612. <artifactId>jersey-core</artifactId>
  613. <groupId>com.sun.jersey</groupId>
  614. </exclusion>
  615. <exclusion>
  616. <artifactId>guice-servlet</artifactId>
  617. <groupId>com.google.inject.extensions</groupId>
  618. </exclusion>
  619. <exclusion>
  620. <artifactId>jersey-server</artifactId>
  621. <groupId>com.sun.jersey</groupId>
  622. </exclusion>
  623. <exclusion>
  624. <artifactId>jersey-json</artifactId>
  625. <groupId>com.sun.jersey</groupId>
  626. </exclusion>
  627. <exclusion>
  628. <artifactId>slf4j-api</artifactId>
  629. <groupId>org.slf4j</groupId>
  630. </exclusion>
  631. <exclusion>
  632. <artifactId>netty</artifactId>
  633. <groupId>io.netty</groupId>
  634. </exclusion>
  635. <exclusion>
  636. <artifactId>hbase-client</artifactId>
  637. <groupId>org.apache.hbase</groupId>
  638. </exclusion>
  639. <exclusion>
  640. <artifactId>commons-io</artifactId>
  641. <groupId>commons-io</groupId>
  642. </exclusion>
  643. <exclusion>
  644. <artifactId>hadoop-mapreduce-client-core</artifactId>
  645. <groupId>org.apache.hadoop</groupId>
  646. </exclusion>
  647. <exclusion>
  648. <artifactId>zookeeper</artifactId>
  649. <groupId>org.apache.zookeeper</groupId>
  650. </exclusion>
  651. <exclusion>
  652. <artifactId>commons-math3</artifactId>
  653. <groupId>org.apache.commons</groupId>
  654. </exclusion>
  655. <exclusion>
  656. <artifactId>hadoop-annotations</artifactId>
  657. <groupId>org.apache.hadoop</groupId>
  658. </exclusion>
  659. <exclusion>
  660. <artifactId>hadoop-hdfs</artifactId>
  661. <groupId>org.apache.hadoop</groupId>
  662. </exclusion>
  663. <exclusion>
  664. <artifactId>hadoop-yarn-client</artifactId>
  665. <groupId>org.apache.hadoop</groupId>
  666. </exclusion>
  667. <exclusion>
  668. <artifactId>hadoop-yarn-common</artifactId>
  669. <groupId>org.apache.hadoop</groupId>
  670. </exclusion>
  671. <exclusion>
  672. <artifactId>hadoop-yarn-server-common</artifactId>
  673. <groupId>org.apache.hadoop</groupId>
  674. </exclusion>
  675. <exclusion>
  676. <artifactId>javax.ws.rs-api</artifactId>
  677. <groupId>javax.ws.rs</groupId>
  678. </exclusion>
  679. <exclusion>
  680. <artifactId>htrace-core</artifactId>
  681. <groupId>org.apache.htrace</groupId>
  682. </exclusion>
  683. <exclusion>
  684. <artifactId>jline</artifactId>
  685. <groupId>jline</groupId>
  686. </exclusion>
  687. <exclusion>
  688. <artifactId>fastutil</artifactId>
  689. <groupId>it.unimi.dsi</groupId>
  690. </exclusion>
  691. <exclusion>
  692. <artifactId>commons-lang</artifactId>
  693. <groupId>commons-lang</groupId>
  694. </exclusion>
  695. <exclusion>
  696. <artifactId>jsr305</artifactId>
  697. <groupId>com.google.code.findbugs</groupId>
  698. </exclusion>
  699. <exclusion>
  700. <artifactId>hbase-common</artifactId>
  701. <groupId>org.apache.hbase</groupId>
  702. </exclusion>
  703. <exclusion>
  704. <artifactId>javax.servlet.jsp-api</artifactId>
  705. <groupId>javax.servlet.jsp</groupId>
  706. </exclusion>
  707. <exclusion>
  708. <artifactId>hbase-server</artifactId>
  709. <groupId>org.apache.hbase</groupId>
  710. </exclusion>
  711. <exclusion>
  712. <artifactId>javax.servlet-api</artifactId>
  713. <groupId>javax.servlet</groupId>
  714. </exclusion>
  715. <exclusion>
  716. <artifactId>jetty-io</artifactId>
  717. <groupId>org.eclipse.jetty</groupId>
  718. </exclusion>
  719. <exclusion>
  720. <artifactId>jetty-http</artifactId>
  721. <groupId>org.eclipse.jetty</groupId>
  722. </exclusion>
  723. <exclusion>
  724. <artifactId>jetty-security</artifactId>
  725. <groupId>org.eclipse.jetty</groupId>
  726. </exclusion>
  727. <exclusion>
  728. <artifactId>jetty-server</artifactId>
  729. <groupId>org.eclipse.jetty</groupId>
  730. </exclusion>
  731. <exclusion>
  732. <artifactId>jetty-servlet</artifactId>
  733. <groupId>org.eclipse.jetty</groupId>
  734. </exclusion>
  735. <exclusion>
  736. <artifactId>jetty-webapp</artifactId>
  737. <groupId>org.eclipse.jetty</groupId>
  738. </exclusion>
  739. </exclusions>
  740. </dependency>
  741. <dependency>
  742. <groupId>org.mongodb</groupId>
  743. <artifactId>mongo-java-driver</artifactId>
  744. <version>${mongo-java-driver.version}</version>
  745. </dependency>
  746. <dependency>
  747. <groupId>ru.yandex.clickhouse</groupId>
  748. <artifactId>clickhouse-jdbc</artifactId>
  749. <version>0.2.4</version>
  750. <exclusions>
  751. <exclusion>
  752. <artifactId>guava</artifactId>
  753. <groupId>com.google.guava</groupId>
  754. </exclusion>
  755. <exclusion>
  756. <artifactId>slf4j-api</artifactId>
  757. <groupId>org.slf4j</groupId>
  758. </exclusion>
  759. </exclusions>
  760. </dependency>
  761. </dependencies>
  762. <build>
  763. <plugins>
  764. <plugin>
  765. <groupId>org.apache.maven.plugins</groupId>
  766. <artifactId>maven-jar-plugin</artifactId>
  767. <configuration>
  768. <excludes>
  769. <exclude>**/*.yml</exclude>
  770. <exclude>**/*.properties</exclude>
  771. <exclude>**/*.sh</exclude>
  772. <exclude>**/*.xml</exclude>
  773. </excludes>
  774. </configuration>
  775. </plugin>
  776. <plugin>
  777. <groupId>org.codehaus.mojo</groupId>
  778. <artifactId>exec-maven-plugin</artifactId>
  779. <version>1.4.0</version>
  780. <executions>
  781. </executions>
  782. </plugin>
  783. <plugin>
  784. <groupId>org.apache.maven.plugins</groupId>
  785. <artifactId>maven-assembly-plugin</artifactId>
  786. <version>2.2.1</version>
  787. <executions>
  788. <execution>
  789. <id>assemble</id>
  790. <goals>
  791. <goal>single</goal>
  792. </goals>
  793. <!-- install -->
  794. <phase>install</phase>
  795. </execution>
  796. </executions>
  797. <configuration>
  798. <appendAssemblyId>false</appendAssemblyId>
  799. <attach>false</attach>
  800. <descriptors>
  801. <descriptor>${basedir}/src/main/assembly/deploy.xml</descriptor>
  802. </descriptors>
  803. <finalName>${project.artifactId}_${project.version}_1</finalName>
  804. <outputDirectory>${project.parent.basedir}/packages</outputDirectory>
  805. </configuration>
  806. </plugin>
  807. </plugins>
  808. </build>
  809. </project>