pom.xml 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. ~ Licensed to the Apache Software Foundation (ASF) under one or more
  4. ~ contributor license agreements. See the NOTICE file distributed with
  5. ~ this work for additional information regarding copyright ownership.
  6. ~ The ASF licenses this file to You under the Apache License, Version 2.0
  7. ~ (the "License"); you may not use this file except in compliance with
  8. ~ the License. You may obtain a copy of the License at
  9. ~
  10. ~ http://www.apache.org/licenses/LICENSE-2.0
  11. ~
  12. ~ Unless required by applicable law or agreed to in writing, software
  13. ~ distributed under the License is distributed on an "AS IS" BASIS,
  14. ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  15. ~ See the License for the specific language governing permissions and
  16. ~ limitations under the License.
  17. -->
  18. <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">
  19. <modelVersion>4.0.0</modelVersion>
  20. <parent>
  21. <groupId>org.apache.dolphinscheduler</groupId>
  22. <artifactId>dolphinscheduler</artifactId>
  23. <version>2.0.0-SNAPSHOT</version>
  24. </parent>
  25. <artifactId>dolphinscheduler-common</artifactId>
  26. <name>dolphinscheduler-common</name>
  27. <packaging>jar</packaging>
  28. <properties>
  29. <codehaus.janino.version>3.1.0</codehaus.janino.version>
  30. </properties>
  31. <dependencies>
  32. <!-- dolphinscheduler -->
  33. <dependency>
  34. <groupId>org.apache.dolphinscheduler</groupId>
  35. <artifactId>dolphinscheduler-spi</artifactId>
  36. </dependency>
  37. <dependency>
  38. <groupId>org.apache.httpcomponents</groupId>
  39. <artifactId>httpclient</artifactId>
  40. </dependency>
  41. <dependency>
  42. <groupId>org.ow2.asm</groupId>
  43. <artifactId>asm</artifactId>
  44. </dependency>
  45. <dependency>
  46. <groupId>com.google.guava</groupId>
  47. <artifactId>guava</artifactId>
  48. <scope>provided</scope>
  49. <exclusions>
  50. <exclusion>
  51. <artifactId>jsr305</artifactId>
  52. <groupId>com.google.code.findbugs</groupId>
  53. </exclusion>
  54. </exclusions>
  55. </dependency>
  56. <dependency>
  57. <groupId>junit</groupId>
  58. <artifactId>junit</artifactId>
  59. <scope>test</scope>
  60. </dependency>
  61. <dependency>
  62. <groupId>org.mockito</groupId>
  63. <artifactId>mockito-core</artifactId>
  64. <type>jar</type>
  65. <scope>test</scope>
  66. </dependency>
  67. <dependency>
  68. <groupId>org.powermock</groupId>
  69. <artifactId>powermock-module-junit4</artifactId>
  70. <scope>test</scope>
  71. </dependency>
  72. <dependency>
  73. <groupId>org.powermock</groupId>
  74. <artifactId>powermock-api-mockito2</artifactId>
  75. <scope>test</scope>
  76. <exclusions>
  77. <exclusion>
  78. <groupId>org.mockito</groupId>
  79. <artifactId>mockito-core</artifactId>
  80. </exclusion>
  81. </exclusions>
  82. </dependency>
  83. <dependency>
  84. <groupId>commons-configuration</groupId>
  85. <artifactId>commons-configuration</artifactId>
  86. </dependency>
  87. <dependency>
  88. <groupId>com.fasterxml.jackson.core</groupId>
  89. <artifactId>jackson-annotations</artifactId>
  90. </dependency>
  91. <dependency>
  92. <groupId>com.fasterxml.jackson.core</groupId>
  93. <artifactId>jackson-databind</artifactId>
  94. </dependency>
  95. <dependency>
  96. <groupId>org.apache.commons</groupId>
  97. <artifactId>commons-collections4</artifactId>
  98. </dependency>
  99. <dependency>
  100. <groupId>commons-beanutils</groupId>
  101. <artifactId>commons-beanutils</artifactId>
  102. </dependency>
  103. <dependency>
  104. <groupId>org.apache.hadoop</groupId>
  105. <artifactId>hadoop-common</artifactId>
  106. <exclusions>
  107. <exclusion>
  108. <groupId>org.slf4j</groupId>
  109. <artifactId>slf4j-log4j12</artifactId>
  110. </exclusion>
  111. <exclusion>
  112. <groupId>jdk.tools</groupId>
  113. <artifactId>jdk.tools</artifactId>
  114. </exclusion>
  115. <exclusion>
  116. <artifactId>servlet-api</artifactId>
  117. <groupId>javax.servlet</groupId>
  118. </exclusion>
  119. <exclusion>
  120. <groupId>javax.servlet</groupId>
  121. <artifactId>servlet-api</artifactId>
  122. </exclusion>
  123. <exclusion>
  124. <groupId>log4j</groupId>
  125. <artifactId>log4j</artifactId>
  126. </exclusion>
  127. <exclusion>
  128. <groupId>org.apache.curator</groupId>
  129. <artifactId>curator-client</artifactId>
  130. </exclusion>
  131. <exclusion>
  132. <groupId>commons-configuration</groupId>
  133. <artifactId>commons-configuration</artifactId>
  134. </exclusion>
  135. <exclusion>
  136. <groupId>io.grpc</groupId>
  137. <artifactId>grpc-protobuf</artifactId>
  138. </exclusion>
  139. <exclusion>
  140. <groupId>io.netty</groupId>
  141. <artifactId>netty</artifactId>
  142. </exclusion>
  143. <exclusion>
  144. <groupId>org.codehaus.jackson</groupId>
  145. <artifactId>jackson-core-asl</artifactId>
  146. </exclusion>
  147. <exclusion>
  148. <groupId>org.codehaus.jackson</groupId>
  149. <artifactId>jackson-mapper-asl</artifactId>
  150. </exclusion>
  151. <exclusion>
  152. <groupId>com.google.protobuf</groupId>
  153. <artifactId>jackson-mapper-asl</artifactId>
  154. </exclusion>
  155. <exclusion>
  156. <groupId>com.google.code.gson</groupId>
  157. <artifactId>gson</artifactId>
  158. </exclusion>
  159. <exclusion>
  160. <groupId>org.apache.commons</groupId>
  161. <artifactId>commons-math3</artifactId>
  162. </exclusion>
  163. <exclusion>
  164. <groupId>xmlenc</groupId>
  165. <artifactId>xmlenc</artifactId>
  166. </exclusion>
  167. <exclusion>
  168. <groupId>commons-net</groupId>
  169. <artifactId>commons-net</artifactId>
  170. </exclusion>
  171. <exclusion>
  172. <groupId>org.apache.avro</groupId>
  173. <artifactId>avro</artifactId>
  174. </exclusion>
  175. <exclusion>
  176. <groupId>org.apache.zookeeper</groupId>
  177. <artifactId>zookeeper</artifactId>
  178. </exclusion>
  179. <exclusion>
  180. <artifactId>jsr305</artifactId>
  181. <groupId>com.google.code.findbugs</groupId>
  182. </exclusion>
  183. <exclusion>
  184. <groupId>javax.servlet.jsp</groupId>
  185. <artifactId>jsp-api</artifactId>
  186. </exclusion>
  187. <exclusion>
  188. <artifactId>jersey-json</artifactId>
  189. <groupId>com.sun.jersey</groupId>
  190. </exclusion>
  191. <exclusion>
  192. <artifactId>jersey-server</artifactId>
  193. <groupId>com.sun.jersey</groupId>
  194. </exclusion>
  195. <exclusion>
  196. <artifactId>jersey-core</artifactId>
  197. <groupId>com.sun.jersey</groupId>
  198. </exclusion>
  199. <exclusion>
  200. <artifactId>xz</artifactId>
  201. <groupId>org.tukaani</groupId>
  202. </exclusion>
  203. </exclusions>
  204. </dependency>
  205. <dependency>
  206. <groupId>org.apache.hadoop</groupId>
  207. <artifactId>hadoop-client</artifactId>
  208. <exclusions>
  209. <exclusion>
  210. <groupId>org.slf4j</groupId>
  211. <artifactId>slf4j-log4j12</artifactId>
  212. </exclusion>
  213. <exclusion>
  214. <artifactId>servlet-api</artifactId>
  215. <groupId>javax.servlet</groupId>
  216. </exclusion>
  217. <exclusion>
  218. <groupId>org.codehaus.jackson</groupId>
  219. <artifactId>jackson-jaxrs</artifactId>
  220. </exclusion>
  221. <exclusion>
  222. <groupId>org.codehaus.jackson</groupId>
  223. <artifactId>jackson-xc</artifactId>
  224. </exclusion>
  225. <exclusion>
  226. <groupId>org.fusesource.leveldbjni</groupId>
  227. <artifactId>leveldbjni-all</artifactId>
  228. </exclusion>
  229. <exclusion>
  230. <groupId>org.apache.zookeeper</groupId>
  231. <artifactId>zookeeper</artifactId>
  232. </exclusion>
  233. <exclusion>
  234. <groupId>org.apache.hadoop</groupId>
  235. <artifactId>hadoop-mapreduce-client-shuffle</artifactId>
  236. </exclusion>
  237. <exclusion>
  238. <artifactId>jersey-client</artifactId>
  239. <groupId>com.sun.jersey</groupId>
  240. </exclusion>
  241. <exclusion>
  242. <artifactId>jersey-core</artifactId>
  243. <groupId>com.sun.jersey</groupId>
  244. </exclusion>
  245. <exclusion>
  246. <artifactId>jaxb-api</artifactId>
  247. <groupId>javax.xml.bind</groupId>
  248. </exclusion>
  249. <exclusion>
  250. <artifactId>log4j</artifactId>
  251. <groupId>log4j</groupId>
  252. </exclusion>
  253. </exclusions>
  254. </dependency>
  255. <dependency>
  256. <groupId>org.apache.hadoop</groupId>
  257. <artifactId>hadoop-hdfs</artifactId>
  258. <exclusions>
  259. <exclusion>
  260. <groupId>javax.servlet</groupId>
  261. <artifactId>servlet-api</artifactId>
  262. </exclusion>
  263. <exclusion>
  264. <groupId>io.netty</groupId>
  265. <artifactId>netty</artifactId>
  266. </exclusion>
  267. <exclusion>
  268. <groupId>com.google.protobuf</groupId>
  269. <artifactId>protobuf-java</artifactId>
  270. </exclusion>
  271. <exclusion>
  272. <groupId>xmlenc</groupId>
  273. <artifactId>xmlenc</artifactId>
  274. </exclusion>
  275. <exclusion>
  276. <groupId>io.netty</groupId>
  277. <artifactId>netty-all</artifactId>
  278. </exclusion>
  279. <exclusion>
  280. <groupId>org.fusesource.leveldbjni</groupId>
  281. <artifactId>leveldbjni-all</artifactId>
  282. </exclusion>
  283. <exclusion>
  284. <artifactId>jersey-core</artifactId>
  285. <groupId>com.sun.jersey</groupId>
  286. </exclusion>
  287. <exclusion>
  288. <artifactId>jersey-server</artifactId>
  289. <groupId>com.sun.jersey</groupId>
  290. </exclusion>
  291. <exclusion>
  292. <artifactId>log4j</artifactId>
  293. <groupId>log4j</groupId>
  294. </exclusion>
  295. </exclusions>
  296. </dependency>
  297. <dependency>
  298. <groupId>org.apache.hadoop</groupId>
  299. <artifactId>hadoop-aws</artifactId>
  300. <exclusions>
  301. <exclusion>
  302. <groupId>org.apache.hadoop</groupId>
  303. <artifactId>hadoop-common</artifactId>
  304. </exclusion>
  305. <exclusion>
  306. <groupId>com.fasterxml.jackson.core</groupId>
  307. <artifactId>jackson-core</artifactId>
  308. </exclusion>
  309. <exclusion>
  310. <groupId>com.fasterxml.jackson.core</groupId>
  311. <artifactId>jackson-databind</artifactId>
  312. </exclusion>
  313. <exclusion>
  314. <groupId>com.fasterxml.jackson.core</groupId>
  315. <artifactId>jackson-annotations</artifactId>
  316. </exclusion>
  317. </exclusions>
  318. </dependency>
  319. <dependency>
  320. <groupId>org.postgresql</groupId>
  321. <artifactId>postgresql</artifactId>
  322. </dependency>
  323. <dependency>
  324. <groupId>org.apache.hive</groupId>
  325. <artifactId>hive-jdbc</artifactId>
  326. <exclusions>
  327. <exclusion>
  328. <artifactId>slf4j-log4j12</artifactId>
  329. <groupId>org.slf4j</groupId>
  330. </exclusion>
  331. <exclusion>
  332. <groupId>org.eclipse.jetty.aggregate</groupId>
  333. <artifactId>jetty-all</artifactId>
  334. </exclusion>
  335. <exclusion>
  336. <groupId>org.apache.ant</groupId>
  337. <artifactId>ant</artifactId>
  338. </exclusion>
  339. <exclusion>
  340. <groupId>io.dropwizard.metrics</groupId>
  341. <artifactId>metrics-json</artifactId>
  342. </exclusion>
  343. <exclusion>
  344. <groupId>io.dropwizard.metrics</groupId>
  345. <artifactId>metrics-jvm</artifactId>
  346. </exclusion>
  347. <exclusion>
  348. <groupId>com.github.joshelser</groupId>
  349. <artifactId>dropwizard-metrics-hadoop-metrics2-reporter</artifactId>
  350. </exclusion>
  351. <exclusion>
  352. <groupId>io.netty</groupId>
  353. <artifactId>netty-all</artifactId>
  354. </exclusion>
  355. <exclusion>
  356. <groupId>com.google.code.gson</groupId>
  357. <artifactId>gson</artifactId>
  358. </exclusion>
  359. <exclusion>
  360. <groupId>com.google.code.findbugs</groupId>
  361. <artifactId>jsr305</artifactId>
  362. </exclusion>
  363. <exclusion>
  364. <groupId>io.dropwizard.metrics</groupId>
  365. <artifactId>metrics-core</artifactId>
  366. </exclusion>
  367. <exclusion>
  368. <groupId>javax.servlet</groupId>
  369. <artifactId>servlet-api</artifactId>
  370. </exclusion>
  371. <exclusion>
  372. <groupId>org.apache.avro</groupId>
  373. <artifactId>avro</artifactId>
  374. </exclusion>
  375. <exclusion>
  376. <groupId>org.apache.commons</groupId>
  377. <artifactId>commons-compress</artifactId>
  378. </exclusion>
  379. <exclusion>
  380. <groupId>org.apache.curator</groupId>
  381. <artifactId>curator-client</artifactId>
  382. </exclusion>
  383. <exclusion>
  384. <groupId>org.apache.hadoop</groupId>
  385. <artifactId>hadoop-auth</artifactId>
  386. </exclusion>
  387. <exclusion>
  388. <groupId>org.apache.hadoop</groupId>
  389. <artifactId>hadoop-mapreduce-client-core</artifactId>
  390. </exclusion>
  391. <exclusion>
  392. <groupId>org.apache.hadoop</groupId>
  393. <artifactId>hadoop-yarn-api</artifactId>
  394. </exclusion>
  395. <exclusion>
  396. <groupId>org.apache.zookeeper</groupId>
  397. <artifactId>zookeeper</artifactId>
  398. </exclusion>
  399. <exclusion>
  400. <groupId>org.codehaus.jackson</groupId>
  401. <artifactId>jackson-jaxrs</artifactId>
  402. </exclusion>
  403. <exclusion>
  404. <groupId>org.codehaus.jackson</groupId>
  405. <artifactId>jackson-xc</artifactId>
  406. </exclusion>
  407. <exclusion>
  408. <groupId>com.google.protobuf</groupId>
  409. <artifactId>protobuf-java</artifactId>
  410. </exclusion>
  411. <exclusion>
  412. <groupId>org.json</groupId>
  413. <artifactId>json</artifactId>
  414. </exclusion>
  415. <exclusion>
  416. <artifactId>log4j-slf4j-impl</artifactId>
  417. <groupId>org.apache.logging.log4j</groupId>
  418. </exclusion>
  419. <exclusion>
  420. <artifactId>javax.servlet</artifactId>
  421. <groupId>org.eclipse.jetty.orbit</groupId>
  422. </exclusion>
  423. <exclusion>
  424. <artifactId>servlet-api-2.5</artifactId>
  425. <groupId>org.mortbay.jetty</groupId>
  426. </exclusion>
  427. <exclusion>
  428. <artifactId>jasper-runtime</artifactId>
  429. <groupId>tomcat</groupId>
  430. </exclusion>
  431. <exclusion>
  432. <artifactId>slider-core</artifactId>
  433. <groupId>org.apache.slider</groupId>
  434. </exclusion>
  435. <exclusion>
  436. <artifactId>hbase-server</artifactId>
  437. <groupId>org.apache.hbase</groupId>
  438. </exclusion>
  439. <exclusion>
  440. <artifactId>jersey-client</artifactId>
  441. <groupId>com.sun.jersey</groupId>
  442. </exclusion>
  443. <exclusion>
  444. <artifactId>jersey-core</artifactId>
  445. <groupId>com.sun.jersey</groupId>
  446. </exclusion>
  447. <exclusion>
  448. <artifactId>jersey-json</artifactId>
  449. <groupId>com.sun.jersey</groupId>
  450. </exclusion>
  451. <exclusion>
  452. <artifactId>jersey-server</artifactId>
  453. <groupId>com.sun.jersey</groupId>
  454. </exclusion>
  455. <exclusion>
  456. <artifactId>jersey-guice</artifactId>
  457. <groupId>com.sun.jersey.contribs</groupId>
  458. </exclusion>
  459. <exclusion>
  460. <artifactId>hbase-common</artifactId>
  461. <groupId>org.apache.hbase</groupId>
  462. </exclusion>
  463. <exclusion>
  464. <artifactId>hbase-hadoop2-compat</artifactId>
  465. <groupId>org.apache.hbase</groupId>
  466. </exclusion>
  467. <exclusion>
  468. <artifactId>hbase-client</artifactId>
  469. <groupId>org.apache.hbase</groupId>
  470. </exclusion>
  471. <exclusion>
  472. <artifactId>hbase-hadoop-compat</artifactId>
  473. <groupId>org.apache.hbase</groupId>
  474. </exclusion>
  475. <exclusion>
  476. <artifactId>tephra-hbase-compat-1.0</artifactId>
  477. <groupId>co.cask.tephra</groupId>
  478. </exclusion>
  479. <exclusion>
  480. <artifactId>jaxb-api</artifactId>
  481. <groupId>javax.xml.bind</groupId>
  482. </exclusion>
  483. <exclusion>
  484. <artifactId>hive-llap-client</artifactId>
  485. <groupId>org.apache.hive</groupId>
  486. </exclusion>
  487. <exclusion>
  488. <artifactId>hive-llap-common</artifactId>
  489. <groupId>org.apache.hive</groupId>
  490. </exclusion>
  491. <exclusion>
  492. <artifactId>hive-llap-server</artifactId>
  493. <groupId>org.apache.hive</groupId>
  494. </exclusion>
  495. <exclusion>
  496. <artifactId>tephra-core</artifactId>
  497. <groupId>co.cask.tephra</groupId>
  498. </exclusion>
  499. <exclusion>
  500. <artifactId>ant</artifactId>
  501. <groupId>ant</groupId>
  502. </exclusion>
  503. <exclusion>
  504. <artifactId>stringtemplate</artifactId>
  505. <groupId>org.antlr</groupId>
  506. </exclusion>
  507. <exclusion>
  508. <artifactId>antlr-runtime</artifactId>
  509. <groupId>org.antlr</groupId>
  510. </exclusion>
  511. <exclusion>
  512. <artifactId>hive-shims</artifactId>
  513. <groupId>org.apache.hive</groupId>
  514. </exclusion>
  515. <exclusion>
  516. <artifactId>jsp-api</artifactId>
  517. <groupId>javax.servlet</groupId>
  518. </exclusion>
  519. <exclusion>
  520. <artifactId>log4j-api</artifactId>
  521. <groupId>org.apache.logging.log4j</groupId>
  522. </exclusion>
  523. <exclusion>
  524. <artifactId>log4j-core</artifactId>
  525. <groupId>org.apache.logging.log4j</groupId>
  526. </exclusion>
  527. <exclusion>
  528. <artifactId>log4j-web</artifactId>
  529. <groupId>org.apache.logging.log4j</groupId>
  530. </exclusion>
  531. <exclusion>
  532. <artifactId>jasper-compiler</artifactId>
  533. <groupId>tomcat</groupId>
  534. </exclusion>
  535. </exclusions>
  536. </dependency>
  537. <dependency>
  538. <groupId>ch.qos.logback</groupId>
  539. <artifactId>logback-classic</artifactId>
  540. </dependency>
  541. <dependency>
  542. <groupId>ch.qos.logback</groupId>
  543. <artifactId>logback-core</artifactId>
  544. </dependency>
  545. <dependency>
  546. <groupId>com.github.oshi</groupId>
  547. <artifactId>oshi-core</artifactId>
  548. </dependency>
  549. <dependency>
  550. <groupId>ru.yandex.clickhouse</groupId>
  551. <artifactId>clickhouse-jdbc</artifactId>
  552. <exclusions>
  553. <exclusion>
  554. <artifactId>com.fasterxml.jackson.core</artifactId>
  555. <groupId>jackson-core</groupId>
  556. </exclusion>
  557. <exclusion>
  558. <artifactId>com.fasterxml.jackson.core</artifactId>
  559. <groupId>jackson-databind</groupId>
  560. </exclusion>
  561. <exclusion>
  562. <artifactId>jaxb-api</artifactId>
  563. <groupId>javax.xml.bind</groupId>
  564. </exclusion>
  565. </exclusions>
  566. </dependency>
  567. <dependency>
  568. <groupId>com.microsoft.sqlserver</groupId>
  569. <artifactId>mssql-jdbc</artifactId>
  570. <exclusions>
  571. <exclusion>
  572. <artifactId>azure-keyvault</artifactId>
  573. <groupId>com.microsoft.azure</groupId>
  574. </exclusion>
  575. </exclusions>
  576. </dependency>
  577. <dependency>
  578. <groupId>com.facebook.presto</groupId>
  579. <artifactId>presto-jdbc</artifactId>
  580. </dependency>
  581. <dependency>
  582. <groupId>com.baomidou</groupId>
  583. <artifactId>mybatis-plus-annotation</artifactId>
  584. <version>${mybatis-plus.version}</version>
  585. <scope>compile</scope>
  586. </dependency>
  587. <dependency>
  588. <groupId>org.codehaus.janino</groupId>
  589. <artifactId>janino</artifactId>
  590. <version>${codehaus.janino.version}</version>
  591. </dependency>
  592. <dependency>
  593. <groupId>com.github.rholder</groupId>
  594. <artifactId>guava-retrying</artifactId>
  595. <exclusions>
  596. <exclusion>
  597. <groupId>com.google.guava</groupId>
  598. <artifactId>guava</artifactId>
  599. </exclusion>
  600. <exclusion>
  601. <groupId>com.google.code.findbugs</groupId>
  602. <artifactId>jsr305</artifactId>
  603. </exclusion>
  604. </exclusions>
  605. </dependency>
  606. <dependency>
  607. <groupId>io.netty</groupId>
  608. <artifactId>netty-all</artifactId>
  609. <scope>compile</scope>
  610. </dependency>
  611. </dependencies>
  612. </project>