pom.xml 25 KB

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