pom.xml 24 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609
  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"
  19. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  20. <modelVersion>4.0.0</modelVersion>
  21. <parent>
  22. <groupId>org.apache.dolphinscheduler</groupId>
  23. <artifactId>dolphinscheduler</artifactId>
  24. <version>dev-SNAPSHOT</version>
  25. </parent>
  26. <artifactId>dolphinscheduler-bom</artifactId>
  27. <name>${project.artifactId}</name>
  28. <packaging>pom</packaging>
  29. <properties>
  30. <netty.version>4.1.53.Final</netty.version>
  31. <spring-boot.version>2.5.6</spring-boot.version>
  32. <spring.version>5.3.19</spring.version>
  33. <java-websocket.version>1.5.1</java-websocket.version>
  34. <mybatis-plus.version>3.2.0</mybatis-plus.version>
  35. <quartz.version>2.3.2</quartz.version>
  36. <druid.version>1.2.4</druid.version>
  37. <zookeeper.version>3.4.14</zookeeper.version>
  38. <curator.version>4.3.0</curator.version>
  39. <curator-test.version>2.12.0</curator-test.version>
  40. <commons-codec.version>1.11</commons-codec.version>
  41. <commons-logging.version>1.1.1</commons-logging.version>
  42. <commons-lang3.version>3.12.0</commons-lang3.version>
  43. <commons-httpclient>3.0.1</commons-httpclient>
  44. <commons-beanutils.version>1.9.4</commons-beanutils.version>
  45. <commons-configuration.version>1.10</commons-configuration.version>
  46. <commons-email.version>1.5</commons-email.version>
  47. <commons-collections4.version>4.1</commons-collections4.version>
  48. <httpclient.version>4.5.13</httpclient.version>
  49. <httpcore.version>4.4.15</httpcore.version>
  50. <jackson.version>2.10.5</jackson.version>
  51. <protostuff.version>1.7.2</protostuff.version>
  52. <byte-buddy.version>1.9.16</byte-buddy.version>
  53. <logback.version>1.2.11</logback.version>
  54. <hadoop.version>2.7.3</hadoop.version>
  55. <cron-utils.version>9.1.3</cron-utils.version>
  56. <h2.version>1.4.200</h2.version>
  57. <mysql-connector.version>8.0.16</mysql-connector.version>
  58. <oracle-jdbc.version>21.5.0.0</oracle-jdbc.version>
  59. <slf4j-api.version>1.7.5</slf4j-api.version>
  60. <slf4j-log4j12.version>1.7.5</slf4j-log4j12.version>
  61. <poi.version>4.1.2</poi.version>
  62. <javax.servlet-api.version>3.1.0</javax.servlet-api.version>
  63. <activation.version>1.1</activation.version>
  64. <javax-mail>1.6.2</javax-mail>
  65. <guava.version>24.1-jre</guava.version>
  66. <postgresql.version>42.3.4</postgresql.version>
  67. <hive-jdbc.version>2.1.0</hive-jdbc.version>
  68. <commons-io.version>2.11.0</commons-io.version>
  69. <oshi-core.version>6.1.1</oshi-core.version>
  70. <clickhouse-jdbc.version>0.1.52</clickhouse-jdbc.version>
  71. <mssql-jdbc.version>6.1.0.jre8</mssql-jdbc.version>
  72. <presto-jdbc.version>0.238.1</presto-jdbc.version>
  73. <servlet-api.version>2.5</servlet-api.version>
  74. <swagger.version>1.9.3</swagger.version>
  75. <springfox.version>2.9.2</springfox.version>
  76. <swagger-models.version>1.5.24</swagger-models.version>
  77. <guava-retry.version>2.0.0</guava-retry.version>
  78. <reflections.version>0.9.12</reflections.version>
  79. <py4j.version>0.10.9</py4j.version>
  80. <jsr305.version>3.0.0</jsr305.version>
  81. <commons-compress.version>1.21</commons-compress.version>
  82. <commons-math3.version>3.1.1</commons-math3.version>
  83. <error_prone_annotations.version>2.5.1</error_prone_annotations.version>
  84. <kubernetes.version>5.8.0</kubernetes.version>
  85. <hibernate-validator.version>6.2.2.Final</hibernate-validator.version>
  86. <aws-sdk.version>1.12.160</aws-sdk.version>
  87. <joda-time.version>2.10.13</joda-time.version>
  88. </properties>
  89. <dependencyManagement>
  90. <dependencies>
  91. <!-- netty -->
  92. <dependency>
  93. <groupId>io.netty</groupId>
  94. <artifactId>netty-bom</artifactId>
  95. <version>${netty.version}</version>
  96. <scope>import</scope>
  97. <type>pom</type>
  98. </dependency>
  99. <dependency>
  100. <groupId>io.netty</groupId>
  101. <artifactId>netty-all</artifactId>
  102. <version>${netty.version}</version>
  103. </dependency>
  104. <!-- spring -->
  105. <dependency>
  106. <groupId>org.springframework.boot</groupId>
  107. <artifactId>spring-boot-starter-parent</artifactId>
  108. <version>${spring-boot.version}</version>
  109. <type>pom</type>
  110. <scope>import</scope>
  111. </dependency>
  112. <dependency>
  113. <groupId>org.springframework</groupId>
  114. <artifactId>spring-core</artifactId>
  115. <version>${spring.version}</version>
  116. </dependency>
  117. <dependency>
  118. <groupId>org.springframework</groupId>
  119. <artifactId>spring-context</artifactId>
  120. <version>${spring.version}</version>
  121. </dependency>
  122. <dependency>
  123. <groupId>org.springframework</groupId>
  124. <artifactId>spring-beans</artifactId>
  125. <version>${spring.version}</version>
  126. </dependency>
  127. <dependency>
  128. <groupId>org.springframework</groupId>
  129. <artifactId>spring-tx</artifactId>
  130. <version>${spring.version}</version>
  131. </dependency>
  132. <dependency>
  133. <groupId>org.springframework</groupId>
  134. <artifactId>spring-jdbc</artifactId>
  135. <version>${spring.version}</version>
  136. </dependency>
  137. <dependency>
  138. <groupId>org.springframework</groupId>
  139. <artifactId>spring-test</artifactId>
  140. <version>${spring.version}</version>
  141. <scope>test</scope>
  142. </dependency>
  143. <dependency>
  144. <groupId>org.java-websocket</groupId>
  145. <artifactId>Java-WebSocket</artifactId>
  146. <version>${java-websocket.version}</version>
  147. </dependency>
  148. <!-- mybatis -->
  149. <dependency>
  150. <groupId>com.baomidou</groupId>
  151. <artifactId>mybatis-plus-boot-starter</artifactId>
  152. <version>${mybatis-plus.version}</version>
  153. </dependency>
  154. <dependency>
  155. <groupId>com.baomidou</groupId>
  156. <artifactId>mybatis-plus</artifactId>
  157. <version>${mybatis-plus.version}</version>
  158. </dependency>
  159. <dependency>
  160. <groupId>com.baomidou</groupId>
  161. <artifactId>mybatis-plus-annotation</artifactId>
  162. <version>${mybatis-plus.version}</version>
  163. </dependency>
  164. <!-- quartz-->
  165. <dependency>
  166. <groupId>org.quartz-scheduler</groupId>
  167. <artifactId>quartz</artifactId>
  168. <version>${quartz.version}</version>
  169. </dependency>
  170. <dependency>
  171. <groupId>com.cronutils</groupId>
  172. <artifactId>cron-utils</artifactId>
  173. <version>${cron-utils.version}</version>
  174. </dependency>
  175. <dependency>
  176. <groupId>com.alibaba</groupId>
  177. <artifactId>druid</artifactId>
  178. <version>${druid.version}</version>
  179. </dependency>
  180. <!-- Zookeeper -->
  181. <dependency>
  182. <groupId>org.apache.zookeeper</groupId>
  183. <artifactId>zookeeper</artifactId>
  184. <version>${zookeeper.version}</version>
  185. <exclusions>
  186. <exclusion>
  187. <groupId>org.slf4j</groupId>
  188. <artifactId>slf4j-log4j12</artifactId>
  189. </exclusion>
  190. <exclusion>
  191. <artifactId>netty</artifactId>
  192. <groupId>io.netty</groupId>
  193. </exclusion>
  194. <exclusion>
  195. <groupId>com.github.spotbugs</groupId>
  196. <artifactId>spotbugs-annotations</artifactId>
  197. </exclusion>
  198. </exclusions>
  199. </dependency>
  200. <dependency>
  201. <groupId>org.apache.curator</groupId>
  202. <artifactId>curator-framework</artifactId>
  203. <version>${curator.version}</version>
  204. <exclusions>
  205. <exclusion>
  206. <groupId>org.slf4j</groupId>
  207. <artifactId>slf4j-log4j12</artifactId>
  208. </exclusion>
  209. </exclusions>
  210. </dependency>
  211. <dependency>
  212. <groupId>org.apache.curator</groupId>
  213. <artifactId>curator-client</artifactId>
  214. <version>${curator.version}</version>
  215. <exclusions>
  216. <exclusion>
  217. <groupId>log4j-1.2-api</groupId>
  218. <artifactId>org.apache.logging.log4j</artifactId>
  219. </exclusion>
  220. </exclusions>
  221. </dependency>
  222. <dependency>
  223. <groupId>org.apache.curator</groupId>
  224. <artifactId>curator-recipes</artifactId>
  225. <version>${curator.version}</version>
  226. <exclusions>
  227. <exclusion>
  228. <groupId>org.apache.zookeeper</groupId>
  229. <artifactId>zookeeper</artifactId>
  230. </exclusion>
  231. </exclusions>
  232. </dependency>
  233. <dependency>
  234. <groupId>org.apache.curator</groupId>
  235. <artifactId>curator-test</artifactId>
  236. <version>${curator-test.version}</version>
  237. </dependency>
  238. <dependency>
  239. <groupId>commons-codec</groupId>
  240. <artifactId>commons-codec</artifactId>
  241. <version>${commons-codec.version}</version>
  242. </dependency>
  243. <dependency>
  244. <groupId>commons-logging</groupId>
  245. <artifactId>commons-logging</artifactId>
  246. <version>${commons-logging.version}</version>
  247. </dependency>
  248. <dependency>
  249. <groupId>commons-httpclient</groupId>
  250. <artifactId>commons-httpclient</artifactId>
  251. <version>${commons-httpclient}</version>
  252. </dependency>
  253. <dependency>
  254. <groupId>commons-beanutils</groupId>
  255. <artifactId>commons-beanutils</artifactId>
  256. <version>${commons-beanutils.version}</version>
  257. </dependency>
  258. <dependency>
  259. <groupId>commons-configuration</groupId>
  260. <artifactId>commons-configuration</artifactId>
  261. <version>${commons-configuration.version}</version>
  262. </dependency>
  263. <dependency>
  264. <groupId>org.apache.commons</groupId>
  265. <artifactId>commons-lang3</artifactId>
  266. <version>${commons-lang3.version}</version>
  267. </dependency>
  268. <dependency>
  269. <groupId>org.apache.commons</groupId>
  270. <artifactId>commons-email</artifactId>
  271. <version>${commons-email.version}</version>
  272. </dependency>
  273. <dependency>
  274. <groupId>org.apache.httpcomponents</groupId>
  275. <artifactId>httpclient</artifactId>
  276. <version>${httpclient.version}</version>
  277. </dependency>
  278. <dependency>
  279. <groupId>org.apache.httpcomponents</groupId>
  280. <artifactId>httpcore</artifactId>
  281. <version>${httpcore.version}</version>
  282. </dependency>
  283. <!-- jackson -->
  284. <dependency>
  285. <groupId>com.fasterxml.jackson.core</groupId>
  286. <artifactId>jackson-annotations</artifactId>
  287. <version>${jackson.version}</version>
  288. </dependency>
  289. <dependency>
  290. <groupId>com.fasterxml.jackson.core</groupId>
  291. <artifactId>jackson-databind</artifactId>
  292. <version>${jackson.version}</version>
  293. </dependency>
  294. <dependency>
  295. <groupId>com.fasterxml.jackson.core</groupId>
  296. <artifactId>jackson-core</artifactId>
  297. <version>${jackson.version}</version>
  298. </dependency>
  299. <!--protostuff-->
  300. <dependency>
  301. <groupId>io.protostuff</groupId>
  302. <artifactId>protostuff-core</artifactId>
  303. <version>${protostuff.version}</version>
  304. </dependency>
  305. <dependency>
  306. <groupId>io.protostuff</groupId>
  307. <artifactId>protostuff-runtime</artifactId>
  308. <version>${protostuff.version}</version>
  309. </dependency>
  310. <dependency>
  311. <groupId>net.bytebuddy</groupId>
  312. <artifactId>byte-buddy</artifactId>
  313. <version>${byte-buddy.version}</version>
  314. </dependency>
  315. <dependency>
  316. <groupId>org.reflections</groupId>
  317. <artifactId>reflections</artifactId>
  318. <version>${reflections.version}</version>
  319. </dependency>
  320. <dependency>
  321. <groupId>mysql</groupId>
  322. <artifactId>mysql-connector-java</artifactId>
  323. <version>${mysql-connector.version}</version>
  324. <scope>test</scope>
  325. </dependency>
  326. <dependency>
  327. <groupId>com.oracle.database.jdbc</groupId>
  328. <artifactId>ojdbc8</artifactId>
  329. <version>${oracle-jdbc.version}</version>
  330. <scope>test</scope>
  331. </dependency>
  332. <dependency>
  333. <groupId>com.h2database</groupId>
  334. <artifactId>h2</artifactId>
  335. <version>${h2.version}</version>
  336. </dependency>
  337. <!-- sl4j -->
  338. <dependency>
  339. <groupId>org.slf4j</groupId>
  340. <artifactId>slf4j-api</artifactId>
  341. <version>${slf4j-api.version}</version>
  342. </dependency>
  343. <dependency>
  344. <groupId>org.slf4j</groupId>
  345. <artifactId>slf4j-log4j12</artifactId>
  346. <version>${slf4j-log4j12.version}</version>
  347. </dependency>
  348. <!-- logback -->
  349. <dependency>
  350. <groupId>ch.qos.logback</groupId>
  351. <artifactId>logback-classic</artifactId>
  352. <version>${logback.version}</version>
  353. </dependency>
  354. <dependency>
  355. <groupId>ch.qos.logback</groupId>
  356. <artifactId>logback-core</artifactId>
  357. <version>${logback.version}</version>
  358. </dependency>
  359. <!--excel poi-->
  360. <dependency>
  361. <groupId>org.apache.poi</groupId>
  362. <artifactId>poi</artifactId>
  363. <version>${poi.version}</version>
  364. </dependency>
  365. <dependency>
  366. <groupId>org.apache.poi</groupId>
  367. <artifactId>poi-ooxml</artifactId>
  368. <version>${poi.version}</version>
  369. </dependency>
  370. <!-- hadoop -->
  371. <dependency>
  372. <groupId>org.apache.hadoop</groupId>
  373. <artifactId>hadoop-common</artifactId>
  374. <version>${hadoop.version}</version>
  375. <exclusions>
  376. <exclusion>
  377. <artifactId>slf4j-log4j12</artifactId>
  378. <groupId>org.slf4j</groupId>
  379. </exclusion>
  380. <exclusion>
  381. <artifactId>com.sun.jersey</artifactId>
  382. <groupId>jersey-json</groupId>
  383. </exclusion>
  384. <exclusion>
  385. <groupId>junit</groupId>
  386. <artifactId>junit</artifactId>
  387. </exclusion>
  388. <exclusion>
  389. <groupId>javax.servlet</groupId>
  390. <artifactId>servlet-api</artifactId>
  391. </exclusion>
  392. </exclusions>
  393. </dependency>
  394. <dependency>
  395. <groupId>org.apache.hadoop</groupId>
  396. <artifactId>hadoop-client</artifactId>
  397. <version>${hadoop.version}</version>
  398. </dependency>
  399. <dependency>
  400. <groupId>org.apache.hadoop</groupId>
  401. <artifactId>hadoop-hdfs</artifactId>
  402. <version>${hadoop.version}</version>
  403. </dependency>
  404. <dependency>
  405. <groupId>org.apache.hadoop</groupId>
  406. <artifactId>hadoop-yarn-common</artifactId>
  407. <version>${hadoop.version}</version>
  408. </dependency>
  409. <dependency>
  410. <groupId>org.apache.commons</groupId>
  411. <artifactId>commons-collections4</artifactId>
  412. <version>${commons-collections4.version}</version>
  413. </dependency>
  414. <dependency>
  415. <groupId>com.google.guava</groupId>
  416. <artifactId>guava</artifactId>
  417. <version>${guava.version}</version>
  418. </dependency>
  419. <dependency>
  420. <groupId>org.postgresql</groupId>
  421. <artifactId>postgresql</artifactId>
  422. <version>${postgresql.version}</version>
  423. </dependency>
  424. <dependency>
  425. <groupId>org.apache.hive</groupId>
  426. <artifactId>hive-jdbc</artifactId>
  427. <version>${hive-jdbc.version}</version>
  428. </dependency>
  429. <dependency>
  430. <groupId>commons-io</groupId>
  431. <artifactId>commons-io</artifactId>
  432. <version>${commons-io.version}</version>
  433. </dependency>
  434. <dependency>
  435. <groupId>com.github.oshi</groupId>
  436. <artifactId>oshi-core</artifactId>
  437. <version>${oshi-core.version}</version>
  438. <exclusions>
  439. <exclusion>
  440. <groupId>org.slf4j</groupId>
  441. <artifactId>slf4j-simple</artifactId>
  442. </exclusion>
  443. <exclusion>
  444. <groupId>org.junit.jupiter</groupId>
  445. <artifactId>junit-jupiter-api</artifactId>
  446. </exclusion>
  447. <exclusion>
  448. <groupId>org.hamcrest</groupId>
  449. <artifactId>hamcrest</artifactId>
  450. </exclusion>
  451. </exclusions>
  452. </dependency>
  453. <dependency>
  454. <groupId>ru.yandex.clickhouse</groupId>
  455. <artifactId>clickhouse-jdbc</artifactId>
  456. <version>${clickhouse-jdbc.version}</version>
  457. </dependency>
  458. <dependency>
  459. <groupId>com.microsoft.sqlserver</groupId>
  460. <artifactId>mssql-jdbc</artifactId>
  461. <version>${mssql-jdbc.version}</version>
  462. </dependency>
  463. <dependency>
  464. <groupId>com.facebook.presto</groupId>
  465. <artifactId>presto-jdbc</artifactId>
  466. <version>${presto-jdbc.version}</version>
  467. </dependency>
  468. <dependency>
  469. <groupId>javax.servlet</groupId>
  470. <artifactId>servlet-api</artifactId>
  471. <version>${servlet-api.version}</version>
  472. </dependency>
  473. <dependency>
  474. <groupId>javax.servlet</groupId>
  475. <artifactId>javax.servlet-api</artifactId>
  476. <version>${javax.servlet-api.version}</version>
  477. </dependency>
  478. <dependency>
  479. <groupId>io.springfox</groupId>
  480. <artifactId>springfox-swagger2</artifactId>
  481. <version>${springfox.version}</version>
  482. </dependency>
  483. <dependency>
  484. <groupId>io.springfox</groupId>
  485. <artifactId>springfox-swagger-ui</artifactId>
  486. <version>${springfox.version}</version>
  487. </dependency>
  488. <dependency>
  489. <groupId>io.swagger</groupId>
  490. <artifactId>swagger-models</artifactId>
  491. <version>${swagger-models.version}</version>
  492. </dependency>
  493. <dependency>
  494. <groupId>com.github.xiaoymin</groupId>
  495. <artifactId>swagger-bootstrap-ui</artifactId>
  496. <version>${swagger.version}</version>
  497. </dependency>
  498. <dependency>
  499. <groupId>com.github.rholder</groupId>
  500. <artifactId>guava-retrying</artifactId>
  501. <version>${guava-retry.version}</version>
  502. </dependency>
  503. <dependency>
  504. <groupId>javax.activation</groupId>
  505. <artifactId>activation</artifactId>
  506. <version>${activation.version}</version>
  507. </dependency>
  508. <dependency>
  509. <groupId>com.sun.mail</groupId>
  510. <artifactId>javax.mail</artifactId>
  511. <version>${javax-mail}</version>
  512. </dependency>
  513. <dependency>
  514. <groupId>net.sf.py4j</groupId>
  515. <artifactId>py4j</artifactId>
  516. <version>${py4j.version}</version>
  517. </dependency>
  518. <dependency>
  519. <groupId>com.google.code.findbugs</groupId>
  520. <artifactId>jsr305</artifactId>
  521. <version>${jsr305.version}</version>
  522. </dependency>
  523. <dependency>
  524. <groupId>org.apache.commons</groupId>
  525. <artifactId>commons-compress</artifactId>
  526. <version>${commons-compress.version}</version>
  527. </dependency>
  528. <dependency>
  529. <groupId>org.apache.commons</groupId>
  530. <artifactId>commons-math3</artifactId>
  531. <version>${commons-math3.version}</version>
  532. </dependency>
  533. <dependency>
  534. <groupId>com.google.errorprone</groupId>
  535. <artifactId>error_prone_annotations</artifactId>
  536. <version>${error_prone_annotations.version}</version>
  537. </dependency>
  538. <dependency>
  539. <groupId>io.fabric8</groupId>
  540. <artifactId>kubernetes-client</artifactId>
  541. <version>${kubernetes.version}</version>
  542. </dependency>
  543. <!-- https://mvnrepository.com/artifact/org.hibernate.validator/hibernate-validator -->
  544. <dependency>
  545. <groupId>org.hibernate.validator</groupId>
  546. <artifactId>hibernate-validator</artifactId>
  547. <version>${hibernate-validator.version}</version>
  548. </dependency>
  549. <dependency>
  550. <groupId>com.amazonaws</groupId>
  551. <artifactId>aws-java-sdk-emr</artifactId>
  552. <version>${aws-sdk.version}</version>
  553. </dependency>
  554. <dependency>
  555. <groupId>joda-time</groupId>
  556. <artifactId>joda-time</artifactId>
  557. <version>${joda-time.version}</version>
  558. </dependency>
  559. <dependency>
  560. <groupId>com.amazonaws</groupId>
  561. <artifactId>aws-java-sdk-s3</artifactId>
  562. <version>${aws-sdk.version}</version>
  563. </dependency>
  564. </dependencies>
  565. </dependencyManagement>
  566. </project>