Maven 介绍 现存问题 Maven 优势 Maven可以帮助咱们更好的去管理jar包,只需要指定好jar的一些基本的标识,就可以让jar包支持咱们的项目。
而且Maven可以帮助咱们导入一个jar包后,自动将和他绑定好的其他jar包引入。
Maven可以提供一个统一的项目结构。
Maven也对整体项目的声明周期有响应的管理,从开始的编译、测试、打包、部署等操作,都提供了响应的支持。
而且还提供了分模块开发的功能。
Maven是apache组织的一个顶级开源项目。http://maven.apache.org
Maven 安装 & 环境变量配置 仓库 & settings.xml 仓库 settings.xml 默认情况下,本地仓库不要存在C盘(系统盘),因为从私服或者中央仓库下载的jar包会很大。
默认地址 ${user.home}/.m2/repository
配置本地仓库地址 1 <localRepository > /User/Document/JoshuaBrooks/.m2/repo</localRepository >
配置远程仓库 1 2 3 4 5 6 7 8 <mirror > <id > aliyun</id > <mirrorOf > </mirrorOf > <name > 阿里云公共仓库</name〉 <url>https://maven.aliyun.com/repository/public</url> </mirror >
配置JDK编译版本 默认使用JDK1.5编译
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 <profiles > <profile > <id > jdk-1.8</id > <activation > <activeByDefault > true</activeByDefault > <jdk > 1.8</jdk > </activation > <properties > <maven.compiler.source > 1.8</maven.compiler.source > <maven.compiler.target > 1.8</maven.compiler.target > <maven.compiler.compilerVersion > 1.8</maven.compiler.compilerVersion > </properties > </profile > </profiles > <activeProfiles > <activeProfile > jdk-1.8</activeProfile > </activeProfiles >
IDEA 配置Maven Note: Idea 版本可能会和Maven版本不匹配,所以尽量使用自带的maven版本, 但是settings文件配置要用自己指定的。

1 2 3 4 <groupId > com.elolee</groupId > <artifactId > maven</artifactId > <version > 1.0-SNAPSHOT</version >
可以通过引入依赖时idea页面下方的下载提示看出是从阿里云在下载,说明之前设置的远程仓库生效了。
maven视图可以看见profiles里有两个profile,一个jdk-1.8 一个JDK-17; 说明当时在settings配置的profile生效了,而且现在在项目pom文件配置的也生效了。可以根据需要勾选。
Idea 构建Maven项目 基础Maven项目
Web项目 这里是先构建Maven基础项目,然后将基础项目修改为Web项目。 第一步和构建基础项目一样:
正常构建基础maven项目的打包方式是Jar文件, 而web项目打包方式是war。第二步:修改打包方式
第三步,打开project structure配置页面添加web.xml
1 2 3 # 上图解释 1. 点击Facet后发现中间有个Web(Maven-web) 说明前一步在pom修改打包方式为war成功了。如果此处没有这个Web说明修改war打包方式没成功。2. 中间Web Resource Directories 有个默认的值:/Users/JoshuaBrooks/IdeaProjects/Joshs/MaShiBings/MavenLearning/Maven/Maven-Web/src/main/webapp 意思是所有web 资源都会放在这个路径下,即使目录暂时不存在
第四步:点击Deployment Descriptor下的加号➕ 添加web.xml
第五步:点击上图的web.xml 后在弹框中修改 Descriptor Location。 注意: 一定要追加 src/main/webapp 路径
1 2 默认地址 =/Users/JoshuaBrooks/IdeaProjects/Joshs/MaShiBings/MavenLearning/Maven/Maven-Web/WEB-INF/web.xml 人工指定 =/Users/JoshuaBrooks/IdeaProjects/Joshs/MaShiBings/MavenLearning/Maven/Maven-Web/src/main/webapp/WEB-INF/web.xml
然后点击两次ok按钮 保存配置修改。
第六步:验证项目结构
src目录下已经有了webapp目录和里面的内容, 以及webapp目录图标上有个蓝色小圆圈 说明这就是项目所识别的web资源路径。
导入依赖 Jar 创建好Maven项目之后,需要导入具体的jar包时,要通过坐标导入
• 每个jar都需要三个内容形成一个唯一的坐标,需要groupld + artifactld + version导入一个具体的jar
•在maven项目中,只需要导入配置的坐标,Maven便会自动的去网上下载jar文件,并且添加到项目中。
maven repository 官网地址 可以查找所有需要的依赖. 找到需要导入的dependency, 比如 commons-io
项目中尽量使用没有vulnerability的版本,如果当前已经在使用的版本报vulnerability则需要更新为其他版本以求安全。
复制好依赖坐标之后copy-paste到项目的pom文件中,并点击idea pom编辑页面右上角M图标(Sync Maven Changes) 就能将依赖坐标对应的Jar包下载到本地仓库。

可以看见指定版本的jar包已经在本地仓库地址:

注意:
如果本地仓库中有之前因为网络原因下载不完全的jar文件时 .lastUpdate 后缀,不会再重新下载jar,此时需要手动将其从本地仓库删除才可以重新下载。
如果下载完maven试图的Dependencies下爆红,需要先关闭project再打开以让其生效。(某些idea版本问题)
依赖的作用域 所谓作用域就是当前这个jar在什么情况下项目会使用到。
这个所谓的情况可以分为三点: 编译 - 测试 - 运行 。
但是作用域分为5️⃣种
Complie - 默认的作用域,在编译、测试、运行 阶段都会提供依赖的功能。不指定作用域 等同于Compile. 也就是说pom文件里 没有标签的依赖,其实都是compile 的。
Test - 只针对测试 ,仅在测试阶段可以用。
Provided - 编译,测试 会提供的依赖,一旦项目启动就不会用了。 一般类似 Servlet、JSP会涉及。比如tomcat自带了Servlet依赖,但是你又单独引入了一个Servlet,那么就会有不同版本两个Servlet依赖,tomcat的运行时会用到,如果单独的这个运行时也有就会报错冲突,所以只能是provided作用域让项目运行时用不到。
Runtime - 测试、运行 ,只有当项目运行时才会用到的依赖。一般类似MySQL会用到。
System - 这个比较特殊,唯一合理的场景 是当项目强依赖某个 无法从任何公开或内部 Maven 仓库获取的私有 JAR 包 时。
如果是system scope,其必须配合使用 , 否则会报错。
1 2 3 4 5 6 7 8 <dependency > <groupId > com.example.local</groupId > <artifactId > special-lib</artifactId > <version > 1.0</version > <scope > system</scope > <systemPath > ${project.basedir}/lib/special-lib-1.0.jar</systemPath > </dependency >
关于Servlet例子, 如果不写provided ,项目运行时是会报错的。
关于MySQL的例子:
当项目中引入了MySQL依赖:
1 2 3 4 5 6 <dependency > <groupId > mysql</groupId > <artifactId > mysql-connector-java</artifactId > <version > 8.0.33</version > </dependency >
如果作用域指定: runtime
原则: 当不知道用什么作用域时,就用compile,报错再具体定位后做相应调整到其他。
使用 system 范围相当于放弃了 Maven 的依赖管理能力,会带来三个致命问题:
问题
具体表现
不可移植
路径是绝对路径 或相对于项目的路径。换一台电脑、换一个操作系统目录结构、甚至 Jenkins 构建服务器路径不同,项目直接编译报错。
传递性丢失
Maven 不会 把这个 Jar 包打入最终的 WAR 或 JAR 包里。运行时如果类加载器找不到该 Jar,直接抛出 ClassNotFoundException。
破坏一致性
团队成员需要手动复制 Jar 到指定目录,容易发生版本不一致或漏传的情况。
由于这些问题,最好不要使用system作用域,如果无法从公开途径获取又必须要用该jar包,可以用替代方案:
要么安装到本地仓库 mvn
1 2 3 4 5 6 mvn install:install-file \ -Dfile=你的jar包路径.jar \ -DgroupId=自定义组名 \ -DartifactId=自定义项目名 \ -Dversion=自定义版本号 \ -Dpackaging=jar
假设我们是想用一个历史版本,但是这个版本在maven中央仓库已经不维护找不到了,而由于历史原因在本地有其jar包。为了演示这种情况,从maven下载jar包:
1 mvn install:install-file -Dfile=/Users/JoshuaBrooks/Downloads/ojdbc8-23.26.1.0.0.jar -DgroupId=elolee.ojdbc -DartifactId=eloOJ -Dversion=8.8.8 -Dpackaging=jar
把刚刚install到本地仓库的jar包依赖添加到项目pom文件
1 2 3 4 5 <dependency > <groupId > elolee.ojdbc</groupId > <artifactId > eloOJ</artifactId > <version > 8.8.8</version > </dependency >
此时auto-prompt会提示Oracle driver相关的类,说明通过这种方式引入jar包成功。
要么上传到私服Nexus
依赖冲突 依赖传递 了解依赖冲突前我们先来看一个场景,假设你现在要处理一个文件上传的任务,很容易就会想到要引入commons-fileupload依赖,所以你去maven中央仓库找坐标引入到项目pom文件:
但是此时你就会发现:它会自动下载commons-io的jar包,而且指定是2.21.0版本。
这种现象就是依赖的传递性,即 当我们导入一个jar后,如果这个jar为了完成一些功能还需要其他的jar的功能。比如有A,有B,其中A依赖了B。
咱们只需要导入A包,B会自动被依赖过来。优点大大的:
不需要刻意的去记导入A之后,还需要导入什么其他的依赖。
关于某个版本的A需要哪个版本的B也不需要关注。
但是这种做法也会存在一些问题:
当前项目->A-> B(1.0.0)
当前项目->C->B(2.0.0)
此时,当前项目会出现相同的依赖,有两个,但是版本不一样,此时就会产生依赖冲突问题。
一般依赖冲突会在启动或者测试项目时,直接给你甩异常。而且这个异常不太好处理。需要解决这种依赖冲突。
就近原则
可以发现上面例子中,maven会根据依赖的就近原则自动exclude掉2.21.0的版本.
优先声明原则
当某两个Jar (A、C) 都依赖于另一个jar (B) 时候,谁在pom文件中先声明,就会用其对英的B的版本。i.e. 如果pom文件里:
1 2 3 4 5 6 7 8 9 10 11 <dependency > <groupId > elolee.ojdbc</groupId > <artifactId > A</artifactId > <version > 1.0</version > </dependency > <dependency > <groupId > elolee.ojdbc</groupId > <artifactId > C</artifactId > <version > 3.0</version > </dependency >
那么,因为A 先于 C 声明,那么B会使用 1.0.0版本,C依赖的2.0.0版本的B会被排除掉。
主动引入 反 优先声明原则1 2 3 4 5 6 7 8 9 10 11 <dependency > <groupId > elolee.ojdbc</groupId > <artifactId > B</artifactId > <version > 0.0.1</version > </dependency > <dependency > <groupId > elolee.ojdbc</groupId > <artifactId > B</artifactId > <version > 0.0.1</version > </dependency >
主动引入优先于依赖传递 依赖传递和主动引入混合的场景下的规律,其实这种情况也属于就近原则 。
也就是说此时有三个版本的B,分别是: A依赖的1.0.0 , C依赖的2.0.0 以及 主动引入的0.0.1.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 <dependency > <groupId > elolee.ojdbc</groupId > <artifactId > A</artifactId > </dependency > <dependency > <groupId > elolee.ojdbc</groupId > <artifactId > B</artifactId > </dependency > <dependency > <groupId > elolee.ojdbc</groupId > <artifactId > B</artifactId > <version > 0.0.1</version > </dependency >
那么此时,1.0 和 2.0版本的B都会被排除,只有0.0.1才会被真正使用。
一个例子说明上面的三种情况:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 <dependencies > <dependency > <groupId > org.springframework</groupId > <artifactId > spring-context</artifactId > <version > 5.3.12</version > </dependency > <dependency > <groupId > org.springframework</groupId > <artifactId > spring-aop</artifactId > <version > 5.3.20</version > </dependency > <dependency > <groupId > org.springframework</groupId > <artifactId > spring-aop</artifactId > <version > 5.2.12.RELEASE</version > </dependency > </dependencies >
三个spring-aop版本, 最后选了5.2.12.RELEASE 出于 : 主动引入的反优先声明原则
上面三个dependency都依赖于 spring-bean,但是最终使用的是5.3.12版本, 因为先按照就近原则,发现路径一样,然后按优先声明原则 ,所以spring-context依赖的bean对应的版本胜出。
但是 真实情况下千万不要主动引入不同版本的同一依赖 i.e.上面的spring-aop.
手动解决冲突 用手动的形式指定使用某个依赖的版本。
下面这种情况,如果不手动介入,按照前面介绍的就近原则和优先声明原则, B会使用1.0.0版本,但是如果我就是想用2.0.0 版本,那就必须断开A –> B 之间的依赖关系,此时exclusions就闪亮登场
声明依赖版本 可以通过一个标签 提前声明的版本,注意:这个标签只负责声明依赖版本,不会导入依赖。强制管理版本。
声明好下面内容后,再导入spring-beans、spring-core无论什么方式,都使用dependencyManagement中声明的版本
如果前面已经声明好了依赖版本,但是你在pom文件中直接引入了一个具体的依赖版本,和dependencyManagement不一致,会使用你指定好的版本。
这种依赖传递的版本会严格遵循dependencyManagement。
pom文件里只有下面的配置时:
1 2 3 4 5 6 7 <dependencies > <dependency > <groupId > org.springframework</groupId > <artifactId > spring-context</artifactId > <version > 5.3.12</version > </dependency > </dependencies >
会根据依赖传递也引入: spring-aop、spring-bean 、spring-core 等,而且版本都是5.3.12
但是当pom文件里引入dependencyManagement、并且指定的版本不一样时, dependencyManagement依赖传递的spring-beans版本(5.1.8.RELEASE)被主动引入的5.3.20版本取代(就近原则):
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 <dependencyManagement > <dependencies > <dependency > <groupId > org.springframework</groupId > <artifactId > spring-beans</artifactId > <version > 5.1.8.RELEASE</version > </dependency > <dependency > <groupId > org.springframework</groupId > <artifactId > spring-core</artifactId > <version > 5.3.9</version > </dependency > </dependencies > </dependencyManagement > <dependencies > <dependency > <groupId > org.springframework</groupId > <artifactId > spring-beans</artifactId > <version > 5.3.20</version > </dependency > </dependencies >
另外, 你可能见过这种写法:
1 2 3 4 5 6 7 8 9 <dependencyManagement > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-dependencies</artifactId > <version > 2.7.18</version > <type > pom</type > <scope > import</scope > </dependency > </dependencyManagement >
Breakdown:
org.springframework.boot Identifies the organization/group that publishes this artifact (Spring Boot team)
spring-boot-dependencies This is Spring Boot’s official BOM (Bill of Materials) POM file It contains predefined, compatible versions for all Spring Boot related dependencies and many common third-party libraries
2.7.18 Specifies Spring Boot version 2.7.18 This determines which versions of all managed dependencies will be used
pom Indicates this dependency is a POM file, not a JAR It’s metadata only, not actual code
import Special scope used only in sections Imports all the dependency version definitions from the Spring Boot BOM into your project’s dependency management This makes those versions available for use throughout your project
1 2 3 4 5 6 7 8 9 [父 POM - dependencyManagement] (版本字典/价格表) | | 提供默认版本号 v [子 POM - dependencies] (实际点菜) | | 实际拉取 Jar v [本地 .m2 仓库 / 编译产物] (吃到嘴里的菜)
按住command键、点进去2.7.18可以看到
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 <?xml version="1.0" encoding="UTF-8"?> <project xmlns ="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation ="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi ="http://www.w3.org/2001/XMLSchema-instance" > <modelVersion > 4.0.0</modelVersion > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-dependencies</artifactId > <version > 2.7.18</version > <packaging > pom</packaging > <name > spring-boot-dependencies</name > <description > Spring Boot Dependencies</description > <url > https://spring.io/projects/spring-boot</url > <licenses > <license > <name > Apache License, Version 2.0</name > <url > https://www.apache.org/licenses/LICENSE-2.0</url > </license > </licenses > <developers > <developer > <name > Spring</name > <email > ask@spring.io</email > <organization > VMware, Inc.</organization > <organizationUrl > https://www.spring.io</organizationUrl > </developer > </developers > <scm > <url > https://github.com/spring-projects/spring-boot</url > </scm > <properties > <activemq.version > 5.16.7</activemq.version > <antlr2.version > 2.7.7</antlr2.version > <appengine-sdk.version > 1.9.98</appengine-sdk.version > <artemis.version > 2.19.1</artemis.version > <aspectj.version > 1.9.7</aspectj.version > <assertj.version > 3.22.0</assertj.version > <atomikos.version > 4.0.6</atomikos.version > <awaitility.version > 4.2.0</awaitility.version > <build-helper-maven-plugin.version > 3.3.0</build-helper-maven-plugin.version > <byte-buddy.version > 1.12.23</byte-buddy.version > <cache2k.version > 2.6.1.Final</cache2k.version > <caffeine.version > 2.9.3</caffeine.version > <cassandra-driver.version > 4.14.1</cassandra-driver.version > <classmate.version > 1.5.1</classmate.version > <commons-codec.version > 1.15</commons-codec.version > <commons-dbcp2.version > 2.9.0</commons-dbcp2.version > <commons-lang3.version > 3.12.0</commons-lang3.version > <commons-pool.version > 1.6</commons-pool.version > <commons-pool2.version > 2.11.1</commons-pool2.version > <couchbase-client.version > 3.3.4</couchbase-client.version > <db2-jdbc.version > 11.5.9.0</db2-jdbc.version > <dependency-management-plugin.version > 1.0.15.RELEASE</dependency-management-plugin.version > <derby.version > 10.14.2.0</derby.version > <dropwizard-metrics.version > 4.2.22</dropwizard-metrics.version > <ehcache.version > 2.10.9.2</ehcache.version > <ehcache3.version > 3.10.8</ehcache3.version > <elasticsearch.version > 7.17.15</elasticsearch.version > <embedded-mongo.version > 3.4.11</embedded-mongo.version > <flyway.version > 8.5.13</flyway.version > <freemarker.version > 2.3.32</freemarker.version > <git-commit-id-plugin.version > 4.9.10</git-commit-id-plugin.version > <glassfish-el.version > 3.0.4</glassfish-el.version > <glassfish-jaxb.version > 2.3.9</glassfish-jaxb.version > <glassfish-jstl.version > 1.2.6</glassfish-jstl.version > <graphql-java.version > 18.5</graphql-java.version > <groovy.version > 3.0.19</groovy.version > <gson.version > 2.9.1</gson.version > <h2.version > 2.1.214</h2.version > <hamcrest.version > 2.2</hamcrest.version > <hazelcast.version > 5.1.7</hazelcast.version > <hazelcast-hibernate5.version > 2.2.1</hazelcast-hibernate5.version > <hibernate.version > 5.6.15.Final</hibernate.version > <hibernate-validator.version > 6.2.5.Final</hibernate-validator.version > <hikaricp.version > 4.0.3</hikaricp.version > <hsqldb.version > 2.5.2</hsqldb.version > <htmlunit.version > 2.60.0</htmlunit.version > <httpasyncclient.version > 4.1.5</httpasyncclient.version > <httpclient.version > 4.5.14</httpclient.version > <httpclient5.version > 5.1.4</httpclient5.version > <httpcore.version > 4.4.16</httpcore.version > <httpcore5.version > 5.1.5</httpcore5.version > <infinispan.version > 13.0.20.Final</infinispan.version > <influxdb-java.version > 2.22</influxdb-java.version > <jackson-bom.version > 2.13.5</jackson-bom.version > <jakarta-activation.version > 1.2.2</jakarta-activation.version > <jakarta-annotation.version > 1.3.5</jakarta-annotation.version > <jakarta-jms.version > 2.0.3</jakarta-jms.version > <jakarta-json.version > 1.1.6</jakarta-json.version > <jakarta-json-bind.version > 1.0.2</jakarta-json-bind.version > <jakarta-mail.version > 1.6.7</jakarta-mail.version > <jakarta-management.version > 1.1.4</jakarta-management.version > <jakarta-persistence.version > 2.2.3</jakarta-persistence.version > <jakarta-servlet.version > 4.0.4</jakarta-servlet.version > <jakarta-servlet-jsp-jstl.version > 1.2.7</jakarta-servlet-jsp-jstl.version > <jakarta-transaction.version > 1.3.3</jakarta-transaction.version > <jakarta-validation.version > 2.0.2</jakarta-validation.version > <jakarta-websocket.version > 1.1.2</jakarta-websocket.version > <jakarta-ws-rs.version > 2.1.6</jakarta-ws-rs.version > <jakarta-xml-bind.version > 2.3.3</jakarta-xml-bind.version > <jakarta-xml-soap.version > 1.4.2</jakarta-xml-soap.version > <jakarta-xml-ws.version > 2.3.3</jakarta-xml-ws.version > <janino.version > 3.1.10</janino.version > <javax-activation.version > 1.2.0</javax-activation.version > <javax-annotation.version > 1.3.2</javax-annotation.version > <javax-cache.version > 1.1.1</javax-cache.version > <javax-jaxb.version > 2.3.1</javax-jaxb.version > <javax-jaxws.version > 2.3.1</javax-jaxws.version > <javax-jms.version > 2.0.1</javax-jms.version > <javax-json.version > 1.1.4</javax-json.version > <javax-jsonb.version > 1.0</javax-jsonb.version > <javax-mail.version > 1.6.2</javax-mail.version > <javax-money.version > 1.1</javax-money.version > <javax-persistence.version > 2.2</javax-persistence.version > <javax-transaction.version > 1.3</javax-transaction.version > <javax-validation.version > 2.0.1.Final</javax-validation.version > <javax-websocket.version > 1.1</javax-websocket.version > <jaxen.version > 1.2.0</jaxen.version > <jaybird.version > 4.0.9.java8</jaybird.version > <jboss-logging.version > 3.4.3.Final</jboss-logging.version > <jdom2.version > 2.0.6.1</jdom2.version > <jedis.version > 3.8.0</jedis.version > <jersey.version > 2.35</jersey.version > <jetty-el.version > 9.0.52</jetty-el.version > <jetty-jsp.version > 2.2.0.v201112011158</jetty-jsp.version > <jetty-reactive-httpclient.version > 1.1.15</jetty-reactive-httpclient.version > <jetty.version > 9.4.53.v20231009</jetty.version > <jmustache.version > 1.15</jmustache.version > <johnzon.version > 1.2.21</johnzon.version > <jolokia.version > 1.7.2</jolokia.version > <jooq.version > 3.14.16</jooq.version > <json-path.version > 2.7.0</json-path.version > <json-smart.version > 2.4.11</json-smart.version > <jsonassert.version > 1.5.1</jsonassert.version > <jstl.version > 1.2</jstl.version > <jtds.version > 1.3.1</jtds.version > <junit.version > 4.13.2</junit.version > <junit-jupiter.version > 5.8.2</junit-jupiter.version > <kafka.version > 3.1.2</kafka.version > <kotlin.version > 1.6.21</kotlin.version > <kotlin-coroutines.version > 1.6.4</kotlin-coroutines.version > <lettuce.version > 6.1.10.RELEASE</lettuce.version > <liquibase.version > 4.9.1</liquibase.version > <log4j2.version > 2.17.2</log4j2.version > <logback.version > 1.2.12</logback.version > <lombok.version > 1.18.30</lombok.version > <mariadb.version > 3.1.4</mariadb.version > <maven-antrun-plugin.version > 3.0.0</maven-antrun-plugin.version > <maven-assembly-plugin.version > 3.3.0</maven-assembly-plugin.version > <maven-clean-plugin.version > 3.2.0</maven-clean-plugin.version > <maven-compiler-plugin.version > 3.10.1</maven-compiler-plugin.version > <maven-dependency-plugin.version > 3.3.0</maven-dependency-plugin.version > <maven-deploy-plugin.version > 2.8.2</maven-deploy-plugin.version > <maven-enforcer-plugin.version > 3.0.0</maven-enforcer-plugin.version > <maven-failsafe-plugin.version > 2.22.2</maven-failsafe-plugin.version > <maven-help-plugin.version > 3.2.0</maven-help-plugin.version > <maven-install-plugin.version > 2.5.2</maven-install-plugin.version > <maven-invoker-plugin.version > 3.2.2</maven-invoker-plugin.version > <maven-jar-plugin.version > 3.2.2</maven-jar-plugin.version > <maven-javadoc-plugin.version > 3.4.1</maven-javadoc-plugin.version > <maven-resources-plugin.version > 3.2.0</maven-resources-plugin.version > <maven-shade-plugin.version > 3.3.0</maven-shade-plugin.version > <maven-source-plugin.version > 3.2.1</maven-source-plugin.version > <maven-surefire-plugin.version > 2.22.2</maven-surefire-plugin.version > <maven-war-plugin.version > 3.3.2</maven-war-plugin.version > <micrometer.version > 1.9.17</micrometer.version > <mockito.version > 4.5.1</mockito.version > <mongodb.version > 4.6.1</mongodb.version > <mssql-jdbc.version > 10.2.3.jre8</mssql-jdbc.version > <mysql.version > 8.0.33</mysql.version > <nekohtml.version > 1.9.22</nekohtml.version > <neo4j-java-driver.version > 4.4.12</neo4j-java-driver.version > <netty.version > 4.1.101.Final</netty.version > <okhttp.version > 4.9.3</okhttp.version > <oracle-database.version > 21.5.0.0</oracle-database.version > <pooled-jms.version > 1.2.6</pooled-jms.version > <postgresql.version > 42.3.8</postgresql.version > <prometheus-client.version > 0.15.0</prometheus-client.version > <quartz.version > 2.3.2</quartz.version > <querydsl.version > 5.0.0</querydsl.version > <r2dbc-bom.version > Borca-SR2</r2dbc-bom.version > <rabbit-amqp-client.version > 5.14.3</rabbit-amqp-client.version > <rabbit-stream-client.version > 0.5.0</rabbit-stream-client.version > <reactive-streams.version > 1.0.4</reactive-streams.version > <reactor-bom.version > 2020.0.38</reactor-bom.version > <rest-assured.version > 4.5.1</rest-assured.version > <rsocket.version > 1.1.3</rsocket.version > <rxjava.version > 1.3.8</rxjava.version > <rxjava-adapter.version > 1.2.1</rxjava-adapter.version > <rxjava2.version > 2.2.21</rxjava2.version > <saaj-impl.version > 1.5.3</saaj-impl.version > <selenium.version > 4.1.4</selenium.version > <selenium-htmlunit.version > 3.61.0</selenium-htmlunit.version > <sendgrid.version > 4.9.3</sendgrid.version > <servlet-api.version > 4.0.1</servlet-api.version > <slf4j.version > 1.7.36</slf4j.version > <snakeyaml.version > 1.30</snakeyaml.version > <solr.version > 8.11.2</solr.version > <spring-amqp.version > 2.4.17</spring-amqp.version > <spring-batch.version > 4.3.10</spring-batch.version > <spring-data-bom.version > 2021.2.18</spring-data-bom.version > <spring-framework.version > 5.3.31</spring-framework.version > <spring-graphql.version > 1.0.6</spring-graphql.version > <spring-hateoas.version > 1.5.6</spring-hateoas.version > <spring-integration.version > 5.5.20</spring-integration.version > <spring-kafka.version > 2.8.11</spring-kafka.version > <spring-ldap.version > 2.4.1</spring-ldap.version > <spring-restdocs.version > 2.0.8.RELEASE</spring-restdocs.version > <spring-retry.version > 1.3.4</spring-retry.version > <spring-security.version > 5.7.11</spring-security.version > <spring-session-bom.version > 2021.2.3</spring-session-bom.version > <spring-ws.version > 3.1.8</spring-ws.version > <sqlite-jdbc.version > 3.36.0.3</sqlite-jdbc.version > <sun-mail.version > 1.6.7</sun-mail.version > <thymeleaf.version > 3.0.15.RELEASE</thymeleaf.version > <thymeleaf-extras-data-attribute.version > 2.0.1</thymeleaf-extras-data-attribute.version > <thymeleaf-extras-java8time.version > 3.0.4.RELEASE</thymeleaf-extras-java8time.version > <thymeleaf-extras-springsecurity.version > 3.0.5.RELEASE</thymeleaf-extras-springsecurity.version > <thymeleaf-layout-dialect.version > 3.0.0</thymeleaf-layout-dialect.version > <tomcat.version > 9.0.83</tomcat.version > <unboundid-ldapsdk.version > 6.0.10</unboundid-ldapsdk.version > <undertow.version > 2.2.28.Final</undertow.version > <versions-maven-plugin.version > 2.10.0</versions-maven-plugin.version > <webjars-locator-core.version > 0.50</webjars-locator-core.version > <wsdl4j.version > 1.6.3</wsdl4j.version > <xml-maven-plugin.version > 1.0.2</xml-maven-plugin.version > <xmlunit2.version > 2.9.1</xmlunit2.version > </properties > <dependencyManagement > <dependencies > <dependency > <groupId > org.apache.activemq</groupId > <artifactId > activemq-amqp</artifactId > <version > ${activemq.version}</version > </dependency > <dependency > <groupId > org.apache.activemq</groupId > <artifactId > activemq-blueprint</artifactId > <version > ${activemq.version}</version > </dependency > <dependency > <groupId > org.apache.activemq</groupId > <artifactId > activemq-broker</artifactId > <version > ${activemq.version}</version > </dependency > <dependency > <groupId > org.apache.activemq</groupId > <artifactId > activemq-camel</artifactId > <version > ${activemq.version}</version > </dependency > <dependency > <groupId > org.apache.activemq</groupId > <artifactId > activemq-client</artifactId > <version > ${activemq.version}</version > </dependency > <dependency > <groupId > org.apache.activemq</groupId > <artifactId > activemq-console</artifactId > <version > ${activemq.version}</version > <exclusions > <exclusion > <groupId > commons-logging</groupId > <artifactId > commons-logging</artifactId > </exclusion > </exclusions > </dependency > <dependency > <groupId > org.apache.activemq</groupId > <artifactId > activemq-http</artifactId > <version > ${activemq.version}</version > </dependency > <dependency > <groupId > org.apache.activemq</groupId > <artifactId > activemq-jaas</artifactId > <version > ${activemq.version}</version > </dependency > <dependency > <groupId > org.apache.activemq</groupId > <artifactId > activemq-jdbc-store</artifactId > <version > ${activemq.version}</version > </dependency > <dependency > <groupId > org.apache.activemq</groupId > <artifactId > activemq-jms-pool</artifactId > <version > ${activemq.version}</version > </dependency > <dependency > <groupId > org.apache.activemq</groupId > <artifactId > activemq-kahadb-store</artifactId > <version > ${activemq.version}</version > </dependency > <dependency > <groupId > org.apache.activemq</groupId > <artifactId > activemq-karaf</artifactId > <version > ${activemq.version}</version > </dependency > <dependency > <groupId > org.apache.activemq</groupId > <artifactId > activemq-leveldb-store</artifactId > <version > ${activemq.version}</version > </dependency > <dependency > <groupId > org.apache.activemq</groupId > <artifactId > activemq-log4j-appender</artifactId > <version > ${activemq.version}</version > </dependency > <dependency > <groupId > org.apache.activemq</groupId > <artifactId > activemq-mqtt</artifactId > <version > ${activemq.version}</version > </dependency > <dependency > <groupId > org.apache.activemq</groupId > <artifactId > activemq-openwire-generator</artifactId > <version > ${activemq.version}</version > </dependency > <dependency > <groupId > org.apache.activemq</groupId > <artifactId > activemq-openwire-legacy</artifactId > <version > ${activemq.version}</version > </dependency > <dependency > <groupId > org.apache.activemq</groupId > <artifactId > activemq-osgi</artifactId > <version > ${activemq.version}</version > </dependency > <dependency > <groupId > org.apache.activemq</groupId > <artifactId > activemq-partition</artifactId > <version > ${activemq.version}</version > </dependency > <dependency > <groupId > org.apache.activemq</groupId > <artifactId > activemq-pool</artifactId > <version > ${activemq.version}</version > </dependency > <dependency > <groupId > org.apache.activemq</groupId > <artifactId > activemq-ra</artifactId > <version > ${activemq.version}</version > </dependency > <dependency > <groupId > org.apache.activemq</groupId > <artifactId > activemq-run</artifactId > <version > ${activemq.version}</version > </dependency > <dependency > <groupId > org.apache.activemq</groupId > <artifactId > activemq-runtime-config</artifactId > <version > ${activemq.version}</version > </dependency > <dependency > <groupId > org.apache.activemq</groupId > <artifactId > activemq-shiro</artifactId > <version > ${activemq.version}</version > </dependency > <dependency > <groupId > org.apache.activemq</groupId > <artifactId > activemq-spring</artifactId > <version > ${activemq.version}</version > <exclusions > <exclusion > <groupId > commons-logging</groupId > <artifactId > commons-logging</artifactId > </exclusion > </exclusions > </dependency > <dependency > <groupId > org.apache.activemq</groupId > <artifactId > activemq-stomp</artifactId > <version > ${activemq.version}</version > </dependency > <dependency > <groupId > org.apache.activemq</groupId > <artifactId > activemq-web</artifactId > <version > ${activemq.version}</version > </dependency > <dependency > <groupId > antlr</groupId > <artifactId > antlr</artifactId > <version > ${antlr2.version}</version > </dependency > <dependency > <groupId > com.google.appengine</groupId > <artifactId > appengine-api-1.0-sdk</artifactId > <version > ${appengine-sdk.version}</version > </dependency > <dependency > <groupId > org.apache.activemq</groupId > <artifactId > artemis-amqp-protocol</artifactId > <version > ${artemis.version}</version > </dependency > <dependency > <groupId > org.apache.activemq</groupId > <artifactId > artemis-commons</artifactId > <version > ${artemis.version}</version > <exclusions > <exclusion > <groupId > commons-logging</groupId > <artifactId > commons-logging</artifactId > </exclusion > </exclusions > </dependency > <dependency > <groupId > org.apache.activemq</groupId > <artifactId > artemis-core-client</artifactId > <version > ${artemis.version}</version > </dependency > <dependency > <groupId > org.apache.activemq</groupId > <artifactId > artemis-jdbc-store</artifactId > <version > ${artemis.version}</version > </dependency > <dependency > <groupId > org.apache.activemq</groupId > <artifactId > artemis-jms-client</artifactId > <version > ${artemis.version}</version > </dependency > <dependency > <groupId > org.apache.activemq</groupId > <artifactId > artemis-jms-server</artifactId > <version > ${artemis.version}</version > </dependency > <dependency > <groupId > org.apache.activemq</groupId > <artifactId > artemis-journal</artifactId > <version > ${artemis.version}</version > </dependency > <dependency > <groupId > org.apache.activemq</groupId > <artifactId > artemis-quorum-api</artifactId > <version > ${artemis.version}</version > </dependency > <dependency > <groupId > org.apache.activemq</groupId > <artifactId > artemis-selector</artifactId > <version > ${artemis.version}</version > </dependency > <dependency > <groupId > org.apache.activemq</groupId > <artifactId > artemis-server</artifactId > <version > ${artemis.version}</version > <exclusions > <exclusion > <groupId > commons-logging</groupId > <artifactId > commons-logging</artifactId > </exclusion > </exclusions > </dependency > <dependency > <groupId > org.apache.activemq</groupId > <artifactId > artemis-service-extensions</artifactId > <version > ${artemis.version}</version > </dependency > <dependency > <groupId > org.aspectj</groupId > <artifactId > aspectjrt</artifactId > <version > ${aspectj.version}</version > </dependency > <dependency > <groupId > org.aspectj</groupId > <artifactId > aspectjtools</artifactId > <version > ${aspectj.version}</version > </dependency > <dependency > <groupId > org.aspectj</groupId > <artifactId > aspectjweaver</artifactId > <version > ${aspectj.version}</version > </dependency > <dependency > <groupId > org.assertj</groupId > <artifactId > assertj-core</artifactId > <version > ${assertj.version}</version > </dependency > <dependency > <groupId > com.atomikos</groupId > <artifactId > transactions-jdbc</artifactId > <version > ${atomikos.version}</version > </dependency > <dependency > <groupId > com.atomikos</groupId > <artifactId > transactions-jms</artifactId > <version > ${atomikos.version}</version > </dependency > <dependency > <groupId > com.atomikos</groupId > <artifactId > transactions-jta</artifactId > <version > ${atomikos.version}</version > </dependency > <dependency > <groupId > org.awaitility</groupId > <artifactId > awaitility</artifactId > <version > ${awaitility.version}</version > </dependency > <dependency > <groupId > org.awaitility</groupId > <artifactId > awaitility-groovy</artifactId > <version > ${awaitility.version}</version > </dependency > <dependency > <groupId > org.awaitility</groupId > <artifactId > awaitility-kotlin</artifactId > <version > ${awaitility.version}</version > </dependency > <dependency > <groupId > org.awaitility</groupId > <artifactId > awaitility-scala</artifactId > <version > ${awaitility.version}</version > </dependency > <dependency > <groupId > net.bytebuddy</groupId > <artifactId > byte-buddy</artifactId > <version > ${byte-buddy.version}</version > </dependency > <dependency > <groupId > net.bytebuddy</groupId > <artifactId > byte-buddy-agent</artifactId > <version > ${byte-buddy.version}</version > </dependency > <dependency > <groupId > org.cache2k</groupId > <artifactId > cache2k-api</artifactId > <version > ${cache2k.version}</version > </dependency > <dependency > <groupId > org.cache2k</groupId > <artifactId > cache2k-config</artifactId > <version > ${cache2k.version}</version > </dependency > <dependency > <groupId > org.cache2k</groupId > <artifactId > cache2k-core</artifactId > <version > ${cache2k.version}</version > </dependency > <dependency > <groupId > org.cache2k</groupId > <artifactId > cache2k-jcache</artifactId > <version > ${cache2k.version}</version > </dependency > <dependency > <groupId > org.cache2k</groupId > <artifactId > cache2k-micrometer</artifactId > <version > ${cache2k.version}</version > </dependency > <dependency > <groupId > org.cache2k</groupId > <artifactId > cache2k-spring</artifactId > <version > ${cache2k.version}</version > </dependency > <dependency > <groupId > com.github.ben-manes.caffeine</groupId > <artifactId > caffeine</artifactId > <version > ${caffeine.version}</version > </dependency > <dependency > <groupId > com.github.ben-manes.caffeine</groupId > <artifactId > guava</artifactId > <version > ${caffeine.version}</version > </dependency > <dependency > <groupId > com.github.ben-manes.caffeine</groupId > <artifactId > jcache</artifactId > <version > ${caffeine.version}</version > </dependency > <dependency > <groupId > com.github.ben-manes.caffeine</groupId > <artifactId > simulator</artifactId > <version > ${caffeine.version}</version > </dependency > <dependency > <groupId > com.datastax.oss</groupId > <artifactId > java-driver-core</artifactId > <version > ${cassandra-driver.version}</version > </dependency > <dependency > <groupId > com.fasterxml</groupId > <artifactId > classmate</artifactId > <version > ${classmate.version}</version > </dependency > <dependency > <groupId > commons-codec</groupId > <artifactId > commons-codec</artifactId > <version > ${commons-codec.version}</version > </dependency > <dependency > <groupId > org.apache.commons</groupId > <artifactId > commons-dbcp2</artifactId > <version > ${commons-dbcp2.version}</version > <exclusions > <exclusion > <groupId > commons-logging</groupId > <artifactId > commons-logging</artifactId > </exclusion > </exclusions > </dependency > <dependency > <groupId > org.apache.commons</groupId > <artifactId > commons-lang3</artifactId > <version > ${commons-lang3.version}</version > </dependency > <dependency > <groupId > commons-pool</groupId > <artifactId > commons-pool</artifactId > <version > ${commons-pool.version}</version > </dependency > <dependency > <groupId > org.apache.commons</groupId > <artifactId > commons-pool2</artifactId > <version > ${commons-pool2.version}</version > </dependency > <dependency > <groupId > com.couchbase.client</groupId > <artifactId > java-client</artifactId > <version > ${couchbase-client.version}</version > </dependency > <dependency > <groupId > com.ibm.db2</groupId > <artifactId > jcc</artifactId > <version > ${db2-jdbc.version}</version > </dependency > <dependency > <groupId > io.spring.gradle</groupId > <artifactId > dependency-management-plugin</artifactId > <version > ${dependency-management-plugin.version}</version > </dependency > <dependency > <groupId > org.apache.derby</groupId > <artifactId > derby</artifactId > <version > ${derby.version}</version > </dependency > <dependency > <groupId > org.apache.derby</groupId > <artifactId > derbyclient</artifactId > <version > ${derby.version}</version > </dependency > <dependency > <groupId > org.apache.derby</groupId > <artifactId > derbynet</artifactId > <version > ${derby.version}</version > </dependency > <dependency > <groupId > org.apache.derby</groupId > <artifactId > derbyoptionaltools</artifactId > <version > ${derby.version}</version > </dependency > <dependency > <groupId > org.apache.derby</groupId > <artifactId > derbytools</artifactId > <version > ${derby.version}</version > </dependency > <dependency > <groupId > net.sf.ehcache</groupId > <artifactId > ehcache</artifactId > <version > ${ehcache.version}</version > </dependency > <dependency > <groupId > org.ehcache</groupId > <artifactId > ehcache</artifactId > <version > ${ehcache3.version}</version > </dependency > <dependency > <groupId > org.ehcache</groupId > <artifactId > ehcache-clustered</artifactId > <version > ${ehcache3.version}</version > </dependency > <dependency > <groupId > org.ehcache</groupId > <artifactId > ehcache-transactions</artifactId > <version > ${ehcache3.version}</version > </dependency > <dependency > <groupId > org.elasticsearch</groupId > <artifactId > elasticsearch</artifactId > <version > ${elasticsearch.version}</version > </dependency > <dependency > <groupId > org.elasticsearch.client</groupId > <artifactId > transport</artifactId > <version > ${elasticsearch.version}</version > </dependency > <dependency > <groupId > org.elasticsearch.client</groupId > <artifactId > elasticsearch-rest-client</artifactId > <version > ${elasticsearch.version}</version > <exclusions > <exclusion > <groupId > commons-logging</groupId > <artifactId > commons-logging</artifactId > </exclusion > </exclusions > </dependency > <dependency > <groupId > org.elasticsearch.client</groupId > <artifactId > elasticsearch-rest-client-sniffer</artifactId > <version > ${elasticsearch.version}</version > <exclusions > <exclusion > <groupId > commons-logging</groupId > <artifactId > commons-logging</artifactId > </exclusion > </exclusions > </dependency > <dependency > <groupId > org.elasticsearch.client</groupId > <artifactId > elasticsearch-rest-high-level-client</artifactId > <version > ${elasticsearch.version}</version > </dependency > <dependency > <groupId > org.elasticsearch.distribution.integ-test-zip</groupId > <artifactId > elasticsearch</artifactId > <version > ${elasticsearch.version}</version > <type > zip</type > </dependency > <dependency > <groupId > org.elasticsearch.plugin</groupId > <artifactId > transport-netty4-client</artifactId > <version > ${elasticsearch.version}</version > </dependency > <dependency > <groupId > de.flapdoodle.embed</groupId > <artifactId > de.flapdoodle.embed.mongo</artifactId > <version > ${embedded-mongo.version}</version > </dependency > <dependency > <groupId > org.flywaydb</groupId > <artifactId > flyway-core</artifactId > <version > ${flyway.version}</version > </dependency > <dependency > <groupId > org.flywaydb</groupId > <artifactId > flyway-firebird</artifactId > <version > ${flyway.version}</version > </dependency > <dependency > <groupId > org.flywaydb</groupId > <artifactId > flyway-mysql</artifactId > <version > ${flyway.version}</version > </dependency > <dependency > <groupId > org.flywaydb</groupId > <artifactId > flyway-sqlserver</artifactId > <version > ${flyway.version}</version > </dependency > <dependency > <groupId > org.freemarker</groupId > <artifactId > freemarker</artifactId > <version > ${freemarker.version}</version > </dependency > <dependency > <groupId > org.glassfish</groupId > <artifactId > jakarta.el</artifactId > <version > ${glassfish-el.version}</version > </dependency > <dependency > <groupId > org.glassfish.jaxb</groupId > <artifactId > codemodel</artifactId > <version > ${glassfish-jaxb.version}</version > </dependency > <dependency > <groupId > org.glassfish.jaxb</groupId > <artifactId > codemodel-annotation-compiler</artifactId > <version > ${glassfish-jaxb.version}</version > </dependency > <dependency > <groupId > org.glassfish.jaxb</groupId > <artifactId > jaxb-jxc</artifactId > <version > ${glassfish-jaxb.version}</version > </dependency > <dependency > <groupId > org.glassfish.jaxb</groupId > <artifactId > jaxb-runtime</artifactId > <version > ${glassfish-jaxb.version}</version > </dependency > <dependency > <groupId > org.glassfish.jaxb</groupId > <artifactId > jaxb-xjc</artifactId > <version > ${glassfish-jaxb.version}</version > </dependency > <dependency > <groupId > org.glassfish.jaxb</groupId > <artifactId > txw2</artifactId > <version > ${glassfish-jaxb.version}</version > </dependency > <dependency > <groupId > org.glassfish.jaxb</groupId > <artifactId > txwc2</artifactId > <version > ${glassfish-jaxb.version}</version > </dependency > <dependency > <groupId > org.glassfish.jaxb</groupId > <artifactId > xsom</artifactId > <version > ${glassfish-jaxb.version}</version > </dependency > <dependency > <groupId > org.glassfish.web</groupId > <artifactId > jakarta.servlet.jsp.jstl</artifactId > <version > ${glassfish-jstl.version}</version > </dependency > <dependency > <groupId > com.graphql-java</groupId > <artifactId > graphql-java</artifactId > <version > ${graphql-java.version}</version > </dependency > <dependency > <groupId > com.google.code.gson</groupId > <artifactId > gson</artifactId > <version > ${gson.version}</version > </dependency > <dependency > <groupId > com.h2database</groupId > <artifactId > h2</artifactId > <version > ${h2.version}</version > </dependency > <dependency > <groupId > org.hamcrest</groupId > <artifactId > hamcrest</artifactId > <version > ${hamcrest.version}</version > </dependency > <dependency > <groupId > org.hamcrest</groupId > <artifactId > hamcrest-core</artifactId > <version > ${hamcrest.version}</version > </dependency > <dependency > <groupId > org.hamcrest</groupId > <artifactId > hamcrest-library</artifactId > <version > ${hamcrest.version}</version > </dependency > <dependency > <groupId > com.hazelcast</groupId > <artifactId > hazelcast</artifactId > <version > ${hazelcast.version}</version > </dependency > <dependency > <groupId > com.hazelcast</groupId > <artifactId > hazelcast-spring</artifactId > <version > ${hazelcast.version}</version > </dependency > <dependency > <groupId > com.hazelcast</groupId > <artifactId > hazelcast-hibernate52</artifactId > <version > ${hazelcast-hibernate5.version}</version > </dependency > <dependency > <groupId > com.hazelcast</groupId > <artifactId > hazelcast-hibernate53</artifactId > <version > ${hazelcast-hibernate5.version}</version > </dependency > <dependency > <groupId > org.hibernate</groupId > <artifactId > hibernate-c3p0</artifactId > <version > ${hibernate.version}</version > </dependency > <dependency > <groupId > org.hibernate</groupId > <artifactId > hibernate-core</artifactId > <version > ${hibernate.version}</version > </dependency > <dependency > <groupId > org.hibernate</groupId > <artifactId > hibernate-ehcache</artifactId > <version > ${hibernate.version}</version > </dependency > <dependency > <groupId > org.hibernate</groupId > <artifactId > hibernate-entitymanager</artifactId > <version > ${hibernate.version}</version > </dependency > <dependency > <groupId > org.hibernate</groupId > <artifactId > hibernate-envers</artifactId > <version > ${hibernate.version}</version > </dependency > <dependency > <groupId > org.hibernate</groupId > <artifactId > hibernate-hikaricp</artifactId > <version > ${hibernate.version}</version > </dependency > <dependency > <groupId > org.hibernate</groupId > <artifactId > hibernate-java8</artifactId > <version > ${hibernate.version}</version > </dependency > <dependency > <groupId > org.hibernate</groupId > <artifactId > hibernate-jcache</artifactId > <version > ${hibernate.version}</version > </dependency > <dependency > <groupId > org.hibernate</groupId > <artifactId > hibernate-jpamodelgen</artifactId > <version > ${hibernate.version}</version > </dependency > <dependency > <groupId > org.hibernate</groupId > <artifactId > hibernate-micrometer</artifactId > <version > ${hibernate.version}</version > </dependency > <dependency > <groupId > org.hibernate</groupId > <artifactId > hibernate-proxool</artifactId > <version > ${hibernate.version}</version > </dependency > <dependency > <groupId > org.hibernate</groupId > <artifactId > hibernate-spatial</artifactId > <version > ${hibernate.version}</version > </dependency > <dependency > <groupId > org.hibernate</groupId > <artifactId > hibernate-testing</artifactId > <version > ${hibernate.version}</version > </dependency > <dependency > <groupId > org.hibernate</groupId > <artifactId > hibernate-vibur</artifactId > <version > ${hibernate.version}</version > </dependency > <dependency > <groupId > org.hibernate.validator</groupId > <artifactId > hibernate-validator</artifactId > <version > ${hibernate-validator.version}</version > </dependency > <dependency > <groupId > org.hibernate.validator</groupId > <artifactId > hibernate-validator-annotation-processor</artifactId > <version > ${hibernate-validator.version}</version > </dependency > <dependency > <groupId > com.zaxxer</groupId > <artifactId > HikariCP</artifactId > <version > ${hikaricp.version}</version > </dependency > <dependency > <groupId > org.hsqldb</groupId > <artifactId > hsqldb</artifactId > <version > ${hsqldb.version}</version > </dependency > <dependency > <groupId > net.sourceforge.htmlunit</groupId > <artifactId > htmlunit</artifactId > <version > ${htmlunit.version}</version > <exclusions > <exclusion > <groupId > commons-logging</groupId > <artifactId > commons-logging</artifactId > </exclusion > </exclusions > </dependency > <dependency > <groupId > org.apache.httpcomponents</groupId > <artifactId > httpasyncclient</artifactId > <version > ${httpasyncclient.version}</version > <exclusions > <exclusion > <groupId > commons-logging</groupId > <artifactId > commons-logging</artifactId > </exclusion > </exclusions > </dependency > <dependency > <groupId > org.apache.httpcomponents</groupId > <artifactId > fluent-hc</artifactId > <version > ${httpclient.version}</version > </dependency > <dependency > <groupId > org.apache.httpcomponents</groupId > <artifactId > httpclient</artifactId > <version > ${httpclient.version}</version > <exclusions > <exclusion > <groupId > commons-logging</groupId > <artifactId > commons-logging</artifactId > </exclusion > </exclusions > </dependency > <dependency > <groupId > org.apache.httpcomponents</groupId > <artifactId > httpclient-cache</artifactId > <version > ${httpclient.version}</version > </dependency > <dependency > <groupId > org.apache.httpcomponents</groupId > <artifactId > httpclient-osgi</artifactId > <version > ${httpclient.version}</version > </dependency > <dependency > <groupId > org.apache.httpcomponents</groupId > <artifactId > httpclient-win</artifactId > <version > ${httpclient.version}</version > </dependency > <dependency > <groupId > org.apache.httpcomponents</groupId > <artifactId > httpmime</artifactId > <version > ${httpclient.version}</version > </dependency > <dependency > <groupId > org.apache.httpcomponents.client5</groupId > <artifactId > httpclient5</artifactId > <version > ${httpclient5.version}</version > </dependency > <dependency > <groupId > org.apache.httpcomponents.client5</groupId > <artifactId > httpclient5-cache</artifactId > <version > ${httpclient5.version}</version > </dependency > <dependency > <groupId > org.apache.httpcomponents.client5</groupId > <artifactId > httpclient5-fluent</artifactId > <version > ${httpclient5.version}</version > </dependency > <dependency > <groupId > org.apache.httpcomponents.client5</groupId > <artifactId > httpclient5-win</artifactId > <version > ${httpclient5.version}</version > </dependency > <dependency > <groupId > org.apache.httpcomponents</groupId > <artifactId > httpcore</artifactId > <version > ${httpcore.version}</version > </dependency > <dependency > <groupId > org.apache.httpcomponents</groupId > <artifactId > httpcore-nio</artifactId > <version > ${httpcore.version}</version > </dependency > <dependency > <groupId > org.apache.httpcomponents.core5</groupId > <artifactId > httpcore5</artifactId > <version > ${httpcore5.version}</version > </dependency > <dependency > <groupId > org.apache.httpcomponents.core5</groupId > <artifactId > httpcore5-h2</artifactId > <version > ${httpcore5.version}</version > </dependency > <dependency > <groupId > org.apache.httpcomponents.core5</groupId > <artifactId > httpcore5-reactive</artifactId > <version > ${httpcore5.version}</version > </dependency > <dependency > <groupId > org.influxdb</groupId > <artifactId > influxdb-java</artifactId > <version > ${influxdb-java.version}</version > </dependency > <dependency > <groupId > com.sun.activation</groupId > <artifactId > jakarta.activation</artifactId > <version > ${jakarta-activation.version}</version > </dependency > <dependency > <groupId > jakarta.activation</groupId > <artifactId > jakarta.activation-api</artifactId > <version > ${jakarta-activation.version}</version > </dependency > <dependency > <groupId > jakarta.annotation</groupId > <artifactId > jakarta.annotation-api</artifactId > <version > ${jakarta-annotation.version}</version > </dependency > <dependency > <groupId > jakarta.jms</groupId > <artifactId > jakarta.jms-api</artifactId > <version > ${jakarta-jms.version}</version > </dependency > <dependency > <groupId > jakarta.json</groupId > <artifactId > jakarta.json-api</artifactId > <version > ${jakarta-json.version}</version > </dependency > <dependency > <groupId > jakarta.json.bind</groupId > <artifactId > jakarta.json.bind-api</artifactId > <version > ${jakarta-json-bind.version}</version > </dependency > <dependency > <groupId > jakarta.mail</groupId > <artifactId > jakarta.mail-api</artifactId > <version > ${jakarta-mail.version}</version > </dependency > <dependency > <groupId > jakarta.management.j2ee</groupId > <artifactId > jakarta.management.j2ee-api</artifactId > <version > ${jakarta-management.version}</version > </dependency > <dependency > <groupId > jakarta.persistence</groupId > <artifactId > jakarta.persistence-api</artifactId > <version > ${jakarta-persistence.version}</version > </dependency > <dependency > <groupId > jakarta.servlet</groupId > <artifactId > jakarta.servlet-api</artifactId > <version > ${jakarta-servlet.version}</version > </dependency > <dependency > <groupId > jakarta.servlet.jsp.jstl</groupId > <artifactId > jakarta.servlet.jsp.jstl-api</artifactId > <version > ${jakarta-servlet-jsp-jstl.version}</version > </dependency > <dependency > <groupId > jakarta.transaction</groupId > <artifactId > jakarta.transaction-api</artifactId > <version > ${jakarta-transaction.version}</version > </dependency > <dependency > <groupId > jakarta.validation</groupId > <artifactId > jakarta.validation-api</artifactId > <version > ${jakarta-validation.version}</version > </dependency > <dependency > <groupId > jakarta.websocket</groupId > <artifactId > jakarta.websocket-api</artifactId > <version > ${jakarta-websocket.version}</version > </dependency > <dependency > <groupId > jakarta.ws.rs</groupId > <artifactId > jakarta.ws.rs-api</artifactId > <version > ${jakarta-ws-rs.version}</version > </dependency > <dependency > <groupId > jakarta.xml.bind</groupId > <artifactId > jakarta.xml.bind-api</artifactId > <version > ${jakarta-xml-bind.version}</version > </dependency > <dependency > <groupId > jakarta.xml.soap</groupId > <artifactId > jakarta.xml.soap-api</artifactId > <version > ${jakarta-xml-soap.version}</version > </dependency > <dependency > <groupId > jakarta.xml.ws</groupId > <artifactId > jakarta.xml.ws-api</artifactId > <version > ${jakarta-xml-ws.version}</version > </dependency > <dependency > <groupId > org.codehaus.janino</groupId > <artifactId > commons-compiler</artifactId > <version > ${janino.version}</version > </dependency > <dependency > <groupId > org.codehaus.janino</groupId > <artifactId > commons-compiler-jdk</artifactId > <version > ${janino.version}</version > </dependency > <dependency > <groupId > org.codehaus.janino</groupId > <artifactId > janino</artifactId > <version > ${janino.version}</version > </dependency > <dependency > <groupId > javax.activation</groupId > <artifactId > javax.activation-api</artifactId > <version > ${javax-activation.version}</version > </dependency > <dependency > <groupId > javax.annotation</groupId > <artifactId > javax.annotation-api</artifactId > <version > ${javax-annotation.version}</version > </dependency > <dependency > <groupId > javax.cache</groupId > <artifactId > cache-api</artifactId > <version > ${javax-cache.version}</version > </dependency > <dependency > <groupId > javax.xml.bind</groupId > <artifactId > jaxb-api</artifactId > <version > ${javax-jaxb.version}</version > </dependency > <dependency > <groupId > javax.xml.ws</groupId > <artifactId > jaxws-api</artifactId > <version > ${javax-jaxws.version}</version > </dependency > <dependency > <groupId > javax.jms</groupId > <artifactId > javax.jms-api</artifactId > <version > ${javax-jms.version}</version > </dependency > <dependency > <groupId > javax.json</groupId > <artifactId > javax.json-api</artifactId > <version > ${javax-json.version}</version > </dependency > <dependency > <groupId > javax.json.bind</groupId > <artifactId > javax.json.bind-api</artifactId > <version > ${javax-jsonb.version}</version > </dependency > <dependency > <groupId > javax.mail</groupId > <artifactId > javax.mail-api</artifactId > <version > ${javax-mail.version}</version > </dependency > <dependency > <groupId > javax.money</groupId > <artifactId > money-api</artifactId > <version > ${javax-money.version}</version > </dependency > <dependency > <groupId > javax.persistence</groupId > <artifactId > javax.persistence-api</artifactId > <version > ${javax-persistence.version}</version > </dependency > <dependency > <groupId > javax.transaction</groupId > <artifactId > javax.transaction-api</artifactId > <version > ${javax-transaction.version}</version > </dependency > <dependency > <groupId > javax.validation</groupId > <artifactId > validation-api</artifactId > <version > ${javax-validation.version}</version > </dependency > <dependency > <groupId > javax.websocket</groupId > <artifactId > javax.websocket-api</artifactId > <version > ${javax-websocket.version}</version > </dependency > <dependency > <groupId > jaxen</groupId > <artifactId > jaxen</artifactId > <version > ${jaxen.version}</version > </dependency > <dependency > <groupId > org.firebirdsql.jdbc</groupId > <artifactId > jaybird</artifactId > <version > ${jaybird.version}</version > </dependency > <dependency > <groupId > org.firebirdsql.jdbc</groupId > <artifactId > jaybird-jdk18</artifactId > <version > ${jaybird.version}</version > </dependency > <dependency > <groupId > org.jboss.logging</groupId > <artifactId > jboss-logging</artifactId > <version > ${jboss-logging.version}</version > </dependency > <dependency > <groupId > org.jdom</groupId > <artifactId > jdom2</artifactId > <version > ${jdom2.version}</version > </dependency > <dependency > <groupId > redis.clients</groupId > <artifactId > jedis</artifactId > <version > ${jedis.version}</version > </dependency > <dependency > <groupId > org.mortbay.jasper</groupId > <artifactId > apache-el</artifactId > <version > ${jetty-el.version}</version > </dependency > <dependency > <groupId > org.eclipse.jetty.orbit</groupId > <artifactId > javax.servlet.jsp</artifactId > <version > ${jetty-jsp.version}</version > </dependency > <dependency > <groupId > org.eclipse.jetty</groupId > <artifactId > jetty-reactive-httpclient</artifactId > <version > ${jetty-reactive-httpclient.version}</version > </dependency > <dependency > <groupId > com.samskivert</groupId > <artifactId > jmustache</artifactId > <version > ${jmustache.version}</version > </dependency > <dependency > <groupId > org.apache.johnzon</groupId > <artifactId > johnzon-core</artifactId > <version > ${johnzon.version}</version > </dependency > <dependency > <groupId > org.apache.johnzon</groupId > <artifactId > johnzon-jaxrs</artifactId > <version > ${johnzon.version}</version > </dependency > <dependency > <groupId > org.apache.johnzon</groupId > <artifactId > johnzon-jsonb</artifactId > <version > ${johnzon.version}</version > </dependency > <dependency > <groupId > org.apache.johnzon</groupId > <artifactId > johnzon-jsonb-extras</artifactId > <version > ${johnzon.version}</version > </dependency > <dependency > <groupId > org.apache.johnzon</groupId > <artifactId > johnzon-jsonschema</artifactId > <version > ${johnzon.version}</version > </dependency > <dependency > <groupId > org.apache.johnzon</groupId > <artifactId > johnzon-mapper</artifactId > <version > ${johnzon.version}</version > </dependency > <dependency > <groupId > org.apache.johnzon</groupId > <artifactId > johnzon-websocket</artifactId > <version > ${johnzon.version}</version > </dependency > <dependency > <groupId > org.jolokia</groupId > <artifactId > jolokia-core</artifactId > <version > ${jolokia.version}</version > </dependency > <dependency > <groupId > org.jooq</groupId > <artifactId > jooq</artifactId > <version > ${jooq.version}</version > </dependency > <dependency > <groupId > org.jooq</groupId > <artifactId > jooq-codegen</artifactId > <version > ${jooq.version}</version > </dependency > <dependency > <groupId > org.jooq</groupId > <artifactId > jooq-kotlin</artifactId > <version > ${jooq.version}</version > </dependency > <dependency > <groupId > org.jooq</groupId > <artifactId > jooq-meta</artifactId > <version > ${jooq.version}</version > </dependency > <dependency > <groupId > com.jayway.jsonpath</groupId > <artifactId > json-path</artifactId > <version > ${json-path.version}</version > </dependency > <dependency > <groupId > com.jayway.jsonpath</groupId > <artifactId > json-path-assert</artifactId > <version > ${json-path.version}</version > </dependency > <dependency > <groupId > net.minidev</groupId > <artifactId > json-smart</artifactId > <version > ${json-smart.version}</version > </dependency > <dependency > <groupId > org.skyscreamer</groupId > <artifactId > jsonassert</artifactId > <version > ${jsonassert.version}</version > </dependency > <dependency > <groupId > javax.servlet</groupId > <artifactId > jstl</artifactId > <version > ${jstl.version}</version > </dependency > <dependency > <groupId > net.sourceforge.jtds</groupId > <artifactId > jtds</artifactId > <version > ${jtds.version}</version > </dependency > <dependency > <groupId > junit</groupId > <artifactId > junit</artifactId > <version > ${junit.version}</version > </dependency > <dependency > <groupId > org.apache.kafka</groupId > <artifactId > connect</artifactId > <version > ${kafka.version}</version > </dependency > <dependency > <groupId > org.apache.kafka</groupId > <artifactId > connect-api</artifactId > <version > ${kafka.version}</version > </dependency > <dependency > <groupId > org.apache.kafka</groupId > <artifactId > connect-basic-auth-extension</artifactId > <version > ${kafka.version}</version > </dependency > <dependency > <groupId > org.apache.kafka</groupId > <artifactId > connect-file</artifactId > <version > ${kafka.version}</version > </dependency > <dependency > <groupId > org.apache.kafka</groupId > <artifactId > connect-json</artifactId > <version > ${kafka.version}</version > </dependency > <dependency > <groupId > org.apache.kafka</groupId > <artifactId > connect-mirror</artifactId > <version > ${kafka.version}</version > </dependency > <dependency > <groupId > org.apache.kafka</groupId > <artifactId > connect-mirror-client</artifactId > <version > ${kafka.version}</version > </dependency > <dependency > <groupId > org.apache.kafka</groupId > <artifactId > connect-runtime</artifactId > <version > ${kafka.version}</version > </dependency > <dependency > <groupId > org.apache.kafka</groupId > <artifactId > connect-transforms</artifactId > <version > ${kafka.version}</version > </dependency > <dependency > <groupId > org.apache.kafka</groupId > <artifactId > generator</artifactId > <version > ${kafka.version}</version > </dependency > <dependency > <groupId > org.apache.kafka</groupId > <artifactId > kafka-clients</artifactId > <version > ${kafka.version}</version > </dependency > <dependency > <groupId > org.apache.kafka</groupId > <artifactId > kafka-clients</artifactId > <version > ${kafka.version}</version > <classifier > test</classifier > </dependency > <dependency > <groupId > org.apache.kafka</groupId > <artifactId > kafka-log4j-appender</artifactId > <version > ${kafka.version}</version > </dependency > <dependency > <groupId > org.apache.kafka</groupId > <artifactId > kafka-metadata</artifactId > <version > ${kafka.version}</version > </dependency > <dependency > <groupId > org.apache.kafka</groupId > <artifactId > kafka-raft</artifactId > <version > ${kafka.version}</version > </dependency > <dependency > <groupId > org.apache.kafka</groupId > <artifactId > kafka-server-common</artifactId > <version > ${kafka.version}</version > </dependency > <dependency > <groupId > org.apache.kafka</groupId > <artifactId > kafka-server-common</artifactId > <version > ${kafka.version}</version > <classifier > test</classifier > </dependency > <dependency > <groupId > org.apache.kafka</groupId > <artifactId > kafka-shell</artifactId > <version > ${kafka.version}</version > </dependency > <dependency > <groupId > org.apache.kafka</groupId > <artifactId > kafka-storage</artifactId > <version > ${kafka.version}</version > </dependency > <dependency > <groupId > org.apache.kafka</groupId > <artifactId > kafka-storage-api</artifactId > <version > ${kafka.version}</version > </dependency > <dependency > <groupId > org.apache.kafka</groupId > <artifactId > kafka-streams</artifactId > <version > ${kafka.version}</version > </dependency > <dependency > <groupId > org.apache.kafka</groupId > <artifactId > kafka-streams-scala_2.12</artifactId > <version > ${kafka.version}</version > </dependency > <dependency > <groupId > org.apache.kafka</groupId > <artifactId > kafka-streams-scala_2.13</artifactId > <version > ${kafka.version}</version > </dependency > <dependency > <groupId > org.apache.kafka</groupId > <artifactId > kafka-streams-test-utils</artifactId > <version > ${kafka.version}</version > </dependency > <dependency > <groupId > org.apache.kafka</groupId > <artifactId > kafka-tools</artifactId > <version > ${kafka.version}</version > </dependency > <dependency > <groupId > org.apache.kafka</groupId > <artifactId > kafka_2.12</artifactId > <version > ${kafka.version}</version > </dependency > <dependency > <groupId > org.apache.kafka</groupId > <artifactId > kafka_2.12</artifactId > <version > ${kafka.version}</version > <classifier > test</classifier > </dependency > <dependency > <groupId > org.apache.kafka</groupId > <artifactId > kafka_2.13</artifactId > <version > ${kafka.version}</version > </dependency > <dependency > <groupId > org.apache.kafka</groupId > <artifactId > kafka_2.13</artifactId > <version > ${kafka.version}</version > <classifier > test</classifier > </dependency > <dependency > <groupId > org.apache.kafka</groupId > <artifactId > trogdor</artifactId > <version > ${kafka.version}</version > </dependency > <dependency > <groupId > io.lettuce</groupId > <artifactId > lettuce-core</artifactId > <version > ${lettuce.version}</version > </dependency > <dependency > <groupId > org.liquibase</groupId > <artifactId > liquibase-cdi</artifactId > <version > ${liquibase.version}</version > </dependency > <dependency > <groupId > org.liquibase</groupId > <artifactId > liquibase-core</artifactId > <version > ${liquibase.version}</version > </dependency > <dependency > <groupId > ch.qos.logback</groupId > <artifactId > logback-access</artifactId > <version > ${logback.version}</version > </dependency > <dependency > <groupId > ch.qos.logback</groupId > <artifactId > logback-classic</artifactId > <version > ${logback.version}</version > </dependency > <dependency > <groupId > ch.qos.logback</groupId > <artifactId > logback-core</artifactId > <version > ${logback.version}</version > </dependency > <dependency > <groupId > org.projectlombok</groupId > <artifactId > lombok</artifactId > <version > ${lombok.version}</version > </dependency > <dependency > <groupId > org.mariadb.jdbc</groupId > <artifactId > mariadb-java-client</artifactId > <version > ${mariadb.version}</version > </dependency > <dependency > <groupId > io.micrometer</groupId > <artifactId > micrometer-registry-stackdriver</artifactId > <version > ${micrometer.version}</version > <exclusions > <exclusion > <groupId > javax.annotation</groupId > <artifactId > javax.annotation-api</artifactId > </exclusion > </exclusions > </dependency > <dependency > <groupId > org.mongodb</groupId > <artifactId > bson</artifactId > <version > ${mongodb.version}</version > </dependency > <dependency > <groupId > org.mongodb</groupId > <artifactId > bson-record-codec</artifactId > <version > ${mongodb.version}</version > </dependency > <dependency > <groupId > org.mongodb</groupId > <artifactId > mongodb-driver-core</artifactId > <version > ${mongodb.version}</version > </dependency > <dependency > <groupId > org.mongodb</groupId > <artifactId > mongodb-driver-legacy</artifactId > <version > ${mongodb.version}</version > </dependency > <dependency > <groupId > org.mongodb</groupId > <artifactId > mongodb-driver-reactivestreams</artifactId > <version > ${mongodb.version}</version > </dependency > <dependency > <groupId > org.mongodb</groupId > <artifactId > mongodb-driver-sync</artifactId > <version > ${mongodb.version}</version > </dependency > <dependency > <groupId > com.microsoft.sqlserver</groupId > <artifactId > mssql-jdbc</artifactId > <version > ${mssql-jdbc.version}</version > </dependency > <dependency > <groupId > com.mysql</groupId > <artifactId > mysql-connector-j</artifactId > <version > ${mysql.version}</version > <exclusions > <exclusion > <groupId > com.google.protobuf</groupId > <artifactId > protobuf-java</artifactId > </exclusion > </exclusions > </dependency > <dependency > <groupId > net.sourceforge.nekohtml</groupId > <artifactId > nekohtml</artifactId > <version > ${nekohtml.version}</version > </dependency > <dependency > <groupId > org.neo4j.driver</groupId > <artifactId > neo4j-java-driver</artifactId > <version > ${neo4j-java-driver.version}</version > </dependency > <dependency > <groupId > org.messaginghub</groupId > <artifactId > pooled-jms</artifactId > <version > ${pooled-jms.version}</version > </dependency > <dependency > <groupId > org.postgresql</groupId > <artifactId > postgresql</artifactId > <version > ${postgresql.version}</version > </dependency > <dependency > <groupId > org.quartz-scheduler</groupId > <artifactId > quartz</artifactId > <version > ${quartz.version}</version > <exclusions > <exclusion > <groupId > com.mchange</groupId > <artifactId > c3p0</artifactId > </exclusion > <exclusion > <groupId > com.zaxxer</groupId > <artifactId > *</artifactId > </exclusion > </exclusions > </dependency > <dependency > <groupId > org.quartz-scheduler</groupId > <artifactId > quartz-jobs</artifactId > <version > ${quartz.version}</version > </dependency > <dependency > <groupId > com.rabbitmq</groupId > <artifactId > amqp-client</artifactId > <version > ${rabbit-amqp-client.version}</version > </dependency > <dependency > <groupId > com.rabbitmq</groupId > <artifactId > stream-client</artifactId > <version > ${rabbit-stream-client.version}</version > </dependency > <dependency > <groupId > org.reactivestreams</groupId > <artifactId > reactive-streams</artifactId > <version > ${reactive-streams.version}</version > </dependency > <dependency > <groupId > io.reactivex</groupId > <artifactId > rxjava</artifactId > <version > ${rxjava.version}</version > </dependency > <dependency > <groupId > io.reactivex</groupId > <artifactId > rxjava-reactive-streams</artifactId > <version > ${rxjava-adapter.version}</version > </dependency > <dependency > <groupId > io.reactivex.rxjava2</groupId > <artifactId > rxjava</artifactId > <version > ${rxjava2.version}</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-test</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-test-autoconfigure</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-actuator</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-actuator-autoconfigure</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-autoconfigure</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-autoconfigure-processor</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-buildpack-platform</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-configuration-metadata</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-configuration-processor</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-devtools</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-jarmode-layertools</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-loader</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-loader-tools</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-properties-migrator</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-activemq</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-actuator</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-amqp</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-aop</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-artemis</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-batch</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-cache</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-data-cassandra</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-data-cassandra-reactive</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-data-couchbase</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-data-couchbase-reactive</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-data-elasticsearch</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-data-jdbc</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-data-jpa</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-data-ldap</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-data-mongodb</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-data-mongodb-reactive</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-data-r2dbc</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-data-redis</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-data-redis-reactive</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-data-neo4j</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-data-rest</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-freemarker</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-graphql</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-groovy-templates</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-hateoas</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-integration</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-jdbc</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-jersey</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-jetty</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-jooq</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-json</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-jta-atomikos</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-log4j2</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-logging</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-mail</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-mustache</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-oauth2-client</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-oauth2-resource-server</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-quartz</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-reactor-netty</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-rsocket</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-security</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-test</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-thymeleaf</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-tomcat</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-undertow</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-validation</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-web</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-webflux</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-websocket</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-starter-web-services</artifactId > <version > 2.7.18</version > </dependency > <dependency > <groupId > com.sun.xml.messaging.saaj</groupId > <artifactId > saaj-impl</artifactId > <version > ${saaj-impl.version}</version > </dependency > <dependency > <groupId > org.seleniumhq.selenium</groupId > <artifactId > lift</artifactId > <version > ${selenium.version}</version > </dependency > <dependency > <groupId > org.seleniumhq.selenium</groupId > <artifactId > selenium-api</artifactId > <version > ${selenium.version}</version > </dependency > <dependency > <groupId > org.seleniumhq.selenium</groupId > <artifactId > selenium-chrome-driver</artifactId > <version > ${selenium.version}</version > </dependency > <dependency > <groupId > org.seleniumhq.selenium</groupId > <artifactId > selenium-chromium-driver</artifactId > <version > ${selenium.version}</version > </dependency > <dependency > <groupId > org.seleniumhq.selenium</groupId > <artifactId > selenium-devtools-v100</artifactId > <version > ${selenium.version}</version > </dependency > <dependency > <groupId > org.seleniumhq.selenium</groupId > <artifactId > selenium-devtools-v101</artifactId > <version > ${selenium.version}</version > </dependency > <dependency > <groupId > org.seleniumhq.selenium</groupId > <artifactId > selenium-devtools-v85</artifactId > <version > ${selenium.version}</version > </dependency > <dependency > <groupId > org.seleniumhq.selenium</groupId > <artifactId > selenium-devtools-v99</artifactId > <version > ${selenium.version}</version > </dependency > <dependency > <groupId > org.seleniumhq.selenium</groupId > <artifactId > selenium-edge-driver</artifactId > <version > ${selenium.version}</version > </dependency > <dependency > <groupId > org.seleniumhq.selenium</groupId > <artifactId > selenium-firefox-driver</artifactId > <version > ${selenium.version}</version > </dependency > <dependency > <groupId > org.seleniumhq.selenium</groupId > <artifactId > selenium-grid</artifactId > <version > ${selenium.version}</version > </dependency > <dependency > <groupId > org.seleniumhq.selenium</groupId > <artifactId > selenium-http</artifactId > <version > ${selenium.version}</version > </dependency > <dependency > <groupId > org.seleniumhq.selenium</groupId > <artifactId > selenium-ie-driver</artifactId > <version > ${selenium.version}</version > </dependency > <dependency > <groupId > org.seleniumhq.selenium</groupId > <artifactId > selenium-java</artifactId > <version > ${selenium.version}</version > </dependency > <dependency > <groupId > org.seleniumhq.selenium</groupId > <artifactId > selenium-json</artifactId > <version > ${selenium.version}</version > </dependency > <dependency > <groupId > org.seleniumhq.selenium</groupId > <artifactId > selenium-opera-driver</artifactId > <version > ${selenium.version}</version > </dependency > <dependency > <groupId > org.seleniumhq.selenium</groupId > <artifactId > selenium-remote-driver</artifactId > <version > ${selenium.version}</version > </dependency > <dependency > <groupId > org.seleniumhq.selenium</groupId > <artifactId > selenium-safari-driver</artifactId > <version > ${selenium.version}</version > </dependency > <dependency > <groupId > org.seleniumhq.selenium</groupId > <artifactId > selenium-session-map-jdbc</artifactId > <version > ${selenium.version}</version > </dependency > <dependency > <groupId > org.seleniumhq.selenium</groupId > <artifactId > selenium-session-map-redis</artifactId > <version > ${selenium.version}</version > </dependency > <dependency > <groupId > org.seleniumhq.selenium</groupId > <artifactId > selenium-support</artifactId > <version > ${selenium.version}</version > </dependency > <dependency > <groupId > org.seleniumhq.selenium</groupId > <artifactId > htmlunit-driver</artifactId > <version > ${selenium-htmlunit.version}</version > </dependency > <dependency > <groupId > com.sendgrid</groupId > <artifactId > sendgrid-java</artifactId > <version > ${sendgrid.version}</version > </dependency > <dependency > <groupId > javax.servlet</groupId > <artifactId > javax.servlet-api</artifactId > <version > ${servlet-api.version}</version > </dependency > <dependency > <groupId > org.slf4j</groupId > <artifactId > jcl-over-slf4j</artifactId > <version > ${slf4j.version}</version > </dependency > <dependency > <groupId > org.slf4j</groupId > <artifactId > jul-to-slf4j</artifactId > <version > ${slf4j.version}</version > </dependency > <dependency > <groupId > org.slf4j</groupId > <artifactId > log4j-over-slf4j</artifactId > <version > ${slf4j.version}</version > </dependency > <dependency > <groupId > org.slf4j</groupId > <artifactId > slf4j-api</artifactId > <version > ${slf4j.version}</version > </dependency > <dependency > <groupId > org.slf4j</groupId > <artifactId > slf4j-ext</artifactId > <version > ${slf4j.version}</version > </dependency > <dependency > <groupId > org.slf4j</groupId > <artifactId > slf4j-jcl</artifactId > <version > ${slf4j.version}</version > </dependency > <dependency > <groupId > org.slf4j</groupId > <artifactId > slf4j-jdk14</artifactId > <version > ${slf4j.version}</version > </dependency > <dependency > <groupId > org.slf4j</groupId > <artifactId > slf4j-log4j12</artifactId > <version > ${slf4j.version}</version > </dependency > <dependency > <groupId > org.slf4j</groupId > <artifactId > slf4j-nop</artifactId > <version > ${slf4j.version}</version > </dependency > <dependency > <groupId > org.slf4j</groupId > <artifactId > slf4j-simple</artifactId > <version > ${slf4j.version}</version > </dependency > <dependency > <groupId > org.yaml</groupId > <artifactId > snakeyaml</artifactId > <version > ${snakeyaml.version}</version > </dependency > <dependency > <groupId > org.apache.solr</groupId > <artifactId > solr-analysis-extras</artifactId > <version > ${solr.version}</version > </dependency > <dependency > <groupId > org.apache.solr</groupId > <artifactId > solr-analytics</artifactId > <version > ${solr.version}</version > </dependency > <dependency > <groupId > org.apache.solr</groupId > <artifactId > solr-cell</artifactId > <version > ${solr.version}</version > </dependency > <dependency > <groupId > org.apache.solr</groupId > <artifactId > solr-core</artifactId > <version > ${solr.version}</version > </dependency > <dependency > <groupId > org.apache.solr</groupId > <artifactId > solr-dataimporthandler</artifactId > <version > ${solr.version}</version > </dependency > <dependency > <groupId > org.apache.solr</groupId > <artifactId > solr-dataimporthandler-extras</artifactId > <version > ${solr.version}</version > </dependency > <dependency > <groupId > org.apache.solr</groupId > <artifactId > solr-gcs-repository</artifactId > <version > ${solr.version}</version > </dependency > <dependency > <groupId > org.apache.solr</groupId > <artifactId > solr-jaegertracer-configurator</artifactId > <version > ${solr.version}</version > </dependency > <dependency > <groupId > org.apache.solr</groupId > <artifactId > solr-langid</artifactId > <version > ${solr.version}</version > </dependency > <dependency > <groupId > org.apache.solr</groupId > <artifactId > solr-ltr</artifactId > <version > ${solr.version}</version > </dependency > <dependency > <groupId > org.apache.solr</groupId > <artifactId > solr-prometheus-exporter</artifactId > <version > ${solr.version}</version > </dependency > <dependency > <groupId > org.apache.solr</groupId > <artifactId > solr-s3-repository</artifactId > <version > ${solr.version}</version > </dependency > <dependency > <groupId > org.apache.solr</groupId > <artifactId > solr-solrj</artifactId > <version > ${solr.version}</version > <exclusions > <exclusion > <groupId > org.slf4j</groupId > <artifactId > jcl-over-slf4j</artifactId > </exclusion > </exclusions > </dependency > <dependency > <groupId > org.apache.solr</groupId > <artifactId > solr-test-framework</artifactId > <version > ${solr.version}</version > </dependency > <dependency > <groupId > org.apache.solr</groupId > <artifactId > solr-velocity</artifactId > <version > ${solr.version}</version > </dependency > <dependency > <groupId > org.springframework.amqp</groupId > <artifactId > spring-amqp</artifactId > <version > ${spring-amqp.version}</version > </dependency > <dependency > <groupId > org.springframework.amqp</groupId > <artifactId > spring-rabbit</artifactId > <version > ${spring-amqp.version}</version > </dependency > <dependency > <groupId > org.springframework.amqp</groupId > <artifactId > spring-rabbit-stream</artifactId > <version > ${spring-amqp.version}</version > </dependency > <dependency > <groupId > org.springframework.amqp</groupId > <artifactId > spring-rabbit-junit</artifactId > <version > ${spring-amqp.version}</version > </dependency > <dependency > <groupId > org.springframework.amqp</groupId > <artifactId > spring-rabbit-test</artifactId > <version > ${spring-amqp.version}</version > </dependency > <dependency > <groupId > org.springframework.batch</groupId > <artifactId > spring-batch-core</artifactId > <version > ${spring-batch.version}</version > </dependency > <dependency > <groupId > org.springframework.batch</groupId > <artifactId > spring-batch-infrastructure</artifactId > <version > ${spring-batch.version}</version > </dependency > <dependency > <groupId > org.springframework.batch</groupId > <artifactId > spring-batch-integration</artifactId > <version > ${spring-batch.version}</version > </dependency > <dependency > <groupId > org.springframework.batch</groupId > <artifactId > spring-batch-test</artifactId > <version > ${spring-batch.version}</version > </dependency > <dependency > <groupId > org.springframework.graphql</groupId > <artifactId > spring-graphql</artifactId > <version > ${spring-graphql.version}</version > </dependency > <dependency > <groupId > org.springframework.graphql</groupId > <artifactId > spring-graphql-test</artifactId > <version > ${spring-graphql.version}</version > </dependency > <dependency > <groupId > org.springframework.hateoas</groupId > <artifactId > spring-hateoas</artifactId > <version > ${spring-hateoas.version}</version > </dependency > <dependency > <groupId > org.springframework.kafka</groupId > <artifactId > spring-kafka</artifactId > <version > ${spring-kafka.version}</version > </dependency > <dependency > <groupId > org.springframework.kafka</groupId > <artifactId > spring-kafka-test</artifactId > <version > ${spring-kafka.version}</version > </dependency > <dependency > <groupId > org.springframework.ldap</groupId > <artifactId > spring-ldap-core</artifactId > <version > ${spring-ldap.version}</version > </dependency > <dependency > <groupId > org.springframework.ldap</groupId > <artifactId > spring-ldap-core-tiger</artifactId > <version > ${spring-ldap.version}</version > </dependency > <dependency > <groupId > org.springframework.ldap</groupId > <artifactId > spring-ldap-ldif-core</artifactId > <version > ${spring-ldap.version}</version > </dependency > <dependency > <groupId > org.springframework.ldap</groupId > <artifactId > spring-ldap-odm</artifactId > <version > ${spring-ldap.version}</version > </dependency > <dependency > <groupId > org.springframework.ldap</groupId > <artifactId > spring-ldap-test</artifactId > <version > ${spring-ldap.version}</version > </dependency > <dependency > <groupId > org.springframework.restdocs</groupId > <artifactId > spring-restdocs-asciidoctor</artifactId > <version > ${spring-restdocs.version}</version > </dependency > <dependency > <groupId > org.springframework.restdocs</groupId > <artifactId > spring-restdocs-core</artifactId > <version > ${spring-restdocs.version}</version > </dependency > <dependency > <groupId > org.springframework.restdocs</groupId > <artifactId > spring-restdocs-mockmvc</artifactId > <version > ${spring-restdocs.version}</version > </dependency > <dependency > <groupId > org.springframework.restdocs</groupId > <artifactId > spring-restdocs-restassured</artifactId > <version > ${spring-restdocs.version}</version > </dependency > <dependency > <groupId > org.springframework.restdocs</groupId > <artifactId > spring-restdocs-webtestclient</artifactId > <version > ${spring-restdocs.version}</version > </dependency > <dependency > <groupId > org.springframework.retry</groupId > <artifactId > spring-retry</artifactId > <version > ${spring-retry.version}</version > </dependency > <dependency > <groupId > org.springframework.ws</groupId > <artifactId > spring-ws-core</artifactId > <version > ${spring-ws.version}</version > </dependency > <dependency > <groupId > org.springframework.ws</groupId > <artifactId > spring-ws-security</artifactId > <version > ${spring-ws.version}</version > </dependency > <dependency > <groupId > org.springframework.ws</groupId > <artifactId > spring-ws-support</artifactId > <version > ${spring-ws.version}</version > </dependency > <dependency > <groupId > org.springframework.ws</groupId > <artifactId > spring-ws-test</artifactId > <version > ${spring-ws.version}</version > </dependency > <dependency > <groupId > org.springframework.ws</groupId > <artifactId > spring-xml</artifactId > <version > ${spring-ws.version}</version > </dependency > <dependency > <groupId > org.xerial</groupId > <artifactId > sqlite-jdbc</artifactId > <version > ${sqlite-jdbc.version}</version > </dependency > <dependency > <groupId > com.sun.mail</groupId > <artifactId > jakarta.mail</artifactId > <version > ${sun-mail.version}</version > </dependency > <dependency > <groupId > org.thymeleaf</groupId > <artifactId > thymeleaf</artifactId > <version > ${thymeleaf.version}</version > </dependency > <dependency > <groupId > org.thymeleaf</groupId > <artifactId > thymeleaf-spring5</artifactId > <version > ${thymeleaf.version}</version > </dependency > <dependency > <groupId > com.github.mxab.thymeleaf.extras</groupId > <artifactId > thymeleaf-extras-data-attribute</artifactId > <version > ${thymeleaf-extras-data-attribute.version}</version > </dependency > <dependency > <groupId > org.thymeleaf.extras</groupId > <artifactId > thymeleaf-extras-java8time</artifactId > <version > ${thymeleaf-extras-java8time.version}</version > </dependency > <dependency > <groupId > org.thymeleaf.extras</groupId > <artifactId > thymeleaf-extras-springsecurity5</artifactId > <version > ${thymeleaf-extras-springsecurity.version}</version > </dependency > <dependency > <groupId > nz.net.ultraq.thymeleaf</groupId > <artifactId > thymeleaf-layout-dialect</artifactId > <version > ${thymeleaf-layout-dialect.version}</version > </dependency > <dependency > <groupId > org.apache.tomcat</groupId > <artifactId > tomcat-annotations-api</artifactId > <version > ${tomcat.version}</version > </dependency > <dependency > <groupId > org.apache.tomcat</groupId > <artifactId > tomcat-jdbc</artifactId > <version > ${tomcat.version}</version > </dependency > <dependency > <groupId > org.apache.tomcat</groupId > <artifactId > tomcat-jsp-api</artifactId > <version > ${tomcat.version}</version > </dependency > <dependency > <groupId > org.apache.tomcat.embed</groupId > <artifactId > tomcat-embed-core</artifactId > <version > ${tomcat.version}</version > </dependency > <dependency > <groupId > org.apache.tomcat.embed</groupId > <artifactId > tomcat-embed-el</artifactId > <version > ${tomcat.version}</version > </dependency > <dependency > <groupId > org.apache.tomcat.embed</groupId > <artifactId > tomcat-embed-jasper</artifactId > <version > ${tomcat.version}</version > </dependency > <dependency > <groupId > org.apache.tomcat.embed</groupId > <artifactId > tomcat-embed-websocket</artifactId > <version > ${tomcat.version}</version > </dependency > <dependency > <groupId > com.unboundid</groupId > <artifactId > unboundid-ldapsdk</artifactId > <version > ${unboundid-ldapsdk.version}</version > </dependency > <dependency > <groupId > io.undertow</groupId > <artifactId > undertow-core</artifactId > <version > ${undertow.version}</version > </dependency > <dependency > <groupId > io.undertow</groupId > <artifactId > undertow-servlet</artifactId > <version > ${undertow.version}</version > </dependency > <dependency > <groupId > io.undertow</groupId > <artifactId > undertow-websockets-jsr</artifactId > <version > ${undertow.version}</version > </dependency > <dependency > <groupId > org.webjars</groupId > <artifactId > webjars-locator-core</artifactId > <version > ${webjars-locator-core.version}</version > </dependency > <dependency > <groupId > wsdl4j</groupId > <artifactId > wsdl4j</artifactId > <version > ${wsdl4j.version}</version > </dependency > <dependency > <groupId > org.xmlunit</groupId > <artifactId > xmlunit-assertj</artifactId > <version > ${xmlunit2.version}</version > </dependency > <dependency > <groupId > org.xmlunit</groupId > <artifactId > xmlunit-assertj3</artifactId > <version > ${xmlunit2.version}</version > </dependency > <dependency > <groupId > org.xmlunit</groupId > <artifactId > xmlunit-core</artifactId > <version > ${xmlunit2.version}</version > </dependency > <dependency > <groupId > org.xmlunit</groupId > <artifactId > xmlunit-legacy</artifactId > <version > ${xmlunit2.version}</version > </dependency > <dependency > <groupId > org.xmlunit</groupId > <artifactId > xmlunit-matchers</artifactId > <version > ${xmlunit2.version}</version > </dependency > <dependency > <groupId > org.xmlunit</groupId > <artifactId > xmlunit-placeholders</artifactId > <version > ${xmlunit2.version}</version > </dependency > <dependency > <groupId > com.datastax.oss</groupId > <artifactId > java-driver-bom</artifactId > <version > ${cassandra-driver.version}</version > <type > pom</type > <scope > import</scope > </dependency > <dependency > <groupId > io.dropwizard.metrics</groupId > <artifactId > metrics-bom</artifactId > <version > ${dropwizard-metrics.version}</version > <type > pom</type > <scope > import</scope > </dependency > <dependency > <groupId > org.codehaus.groovy</groupId > <artifactId > groovy-bom</artifactId > <version > ${groovy.version}</version > <type > pom</type > <scope > import</scope > </dependency > <dependency > <groupId > org.infinispan</groupId > <artifactId > infinispan-bom</artifactId > <version > ${infinispan.version}</version > <type > pom</type > <scope > import</scope > </dependency > <dependency > <groupId > com.fasterxml.jackson</groupId > <artifactId > jackson-bom</artifactId > <version > ${jackson-bom.version}</version > <type > pom</type > <scope > import</scope > </dependency > <dependency > <groupId > org.glassfish.jersey</groupId > <artifactId > jersey-bom</artifactId > <version > ${jersey.version}</version > <type > pom</type > <scope > import</scope > </dependency > <dependency > <groupId > org.eclipse.jetty</groupId > <artifactId > jetty-bom</artifactId > <version > ${jetty.version}</version > <type > pom</type > <scope > import</scope > </dependency > <dependency > <groupId > org.junit</groupId > <artifactId > junit-bom</artifactId > <version > ${junit-jupiter.version}</version > <type > pom</type > <scope > import</scope > </dependency > <dependency > <groupId > org.jetbrains.kotlin</groupId > <artifactId > kotlin-bom</artifactId > <version > ${kotlin.version}</version > <type > pom</type > <scope > import</scope > </dependency > <dependency > <groupId > org.jetbrains.kotlinx</groupId > <artifactId > kotlinx-coroutines-bom</artifactId > <version > ${kotlin-coroutines.version}</version > <type > pom</type > <scope > import</scope > </dependency > <dependency > <groupId > org.apache.logging.log4j</groupId > <artifactId > log4j-bom</artifactId > <version > ${log4j2.version}</version > <type > pom</type > <scope > import</scope > </dependency > <dependency > <groupId > io.micrometer</groupId > <artifactId > micrometer-bom</artifactId > <version > ${micrometer.version}</version > <type > pom</type > <scope > import</scope > </dependency > <dependency > <groupId > org.mockito</groupId > <artifactId > mockito-bom</artifactId > <version > ${mockito.version}</version > <type > pom</type > <scope > import</scope > </dependency > <dependency > <groupId > io.netty</groupId > <artifactId > netty-bom</artifactId > <version > ${netty.version}</version > <type > pom</type > <scope > import</scope > </dependency > <dependency > <groupId > com.squareup.okhttp3</groupId > <artifactId > okhttp-bom</artifactId > <version > ${okhttp.version}</version > <type > pom</type > <scope > import</scope > </dependency > <dependency > <groupId > com.oracle.database.jdbc</groupId > <artifactId > ojdbc-bom</artifactId > <version > ${oracle-database.version}</version > <type > pom</type > <scope > import</scope > </dependency > <dependency > <groupId > io.prometheus</groupId > <artifactId > simpleclient_bom</artifactId > <version > ${prometheus-client.version}</version > <type > pom</type > <scope > import</scope > </dependency > <dependency > <groupId > com.querydsl</groupId > <artifactId > querydsl-bom</artifactId > <version > ${querydsl.version}</version > <type > pom</type > <scope > import</scope > </dependency > <dependency > <groupId > io.r2dbc</groupId > <artifactId > r2dbc-bom</artifactId > <version > ${r2dbc-bom.version}</version > <type > pom</type > <scope > import</scope > </dependency > <dependency > <groupId > io.projectreactor</groupId > <artifactId > reactor-bom</artifactId > <version > ${reactor-bom.version}</version > <type > pom</type > <scope > import</scope > </dependency > <dependency > <groupId > io.rest-assured</groupId > <artifactId > rest-assured-bom</artifactId > <version > ${rest-assured.version}</version > <type > pom</type > <scope > import</scope > </dependency > <dependency > <groupId > io.rsocket</groupId > <artifactId > rsocket-bom</artifactId > <version > ${rsocket.version}</version > <type > pom</type > <scope > import</scope > </dependency > <dependency > <groupId > org.springframework.data</groupId > <artifactId > spring-data-bom</artifactId > <version > ${spring-data-bom.version}</version > <type > pom</type > <scope > import</scope > </dependency > <dependency > <groupId > org.springframework</groupId > <artifactId > spring-framework-bom</artifactId > <version > ${spring-framework.version}</version > <type > pom</type > <scope > import</scope > </dependency > <dependency > <groupId > org.springframework.integration</groupId > <artifactId > spring-integration-bom</artifactId > <version > ${spring-integration.version}</version > <type > pom</type > <scope > import</scope > </dependency > <dependency > <groupId > org.springframework.security</groupId > <artifactId > spring-security-bom</artifactId > <version > ${spring-security.version}</version > <type > pom</type > <scope > import</scope > </dependency > <dependency > <groupId > org.springframework.session</groupId > <artifactId > spring-session-bom</artifactId > <version > ${spring-session-bom.version}</version > <type > pom</type > <scope > import</scope > </dependency > </dependencies > </dependencyManagement > <build > <pluginManagement > <plugins > <plugin > <groupId > org.codehaus.mojo</groupId > <artifactId > build-helper-maven-plugin</artifactId > <version > ${build-helper-maven-plugin.version}</version > </plugin > <plugin > <groupId > org.flywaydb</groupId > <artifactId > flyway-maven-plugin</artifactId > <version > ${flyway.version}</version > </plugin > <plugin > <groupId > pl.project13.maven</groupId > <artifactId > git-commit-id-plugin</artifactId > <version > ${git-commit-id-plugin.version}</version > </plugin > <plugin > <groupId > org.apache.johnzon</groupId > <artifactId > johnzon-maven-plugin</artifactId > <version > ${johnzon.version}</version > </plugin > <plugin > <groupId > org.jooq</groupId > <artifactId > jooq-codegen-maven</artifactId > <version > ${jooq.version}</version > </plugin > <plugin > <groupId > org.jetbrains.kotlin</groupId > <artifactId > kotlin-maven-plugin</artifactId > <version > ${kotlin.version}</version > </plugin > <plugin > <groupId > org.liquibase</groupId > <artifactId > liquibase-maven-plugin</artifactId > <version > ${liquibase.version}</version > </plugin > <plugin > <groupId > org.apache.maven.plugins</groupId > <artifactId > maven-antrun-plugin</artifactId > <version > ${maven-antrun-plugin.version}</version > </plugin > <plugin > <groupId > org.apache.maven.plugins</groupId > <artifactId > maven-assembly-plugin</artifactId > <version > ${maven-assembly-plugin.version}</version > </plugin > <plugin > <groupId > org.apache.maven.plugins</groupId > <artifactId > maven-clean-plugin</artifactId > <version > ${maven-clean-plugin.version}</version > </plugin > <plugin > <groupId > org.apache.maven.plugins</groupId > <artifactId > maven-compiler-plugin</artifactId > <version > ${maven-compiler-plugin.version}</version > </plugin > <plugin > <groupId > org.apache.maven.plugins</groupId > <artifactId > maven-dependency-plugin</artifactId > <version > ${maven-dependency-plugin.version}</version > </plugin > <plugin > <groupId > org.apache.maven.plugins</groupId > <artifactId > maven-deploy-plugin</artifactId > <version > ${maven-deploy-plugin.version}</version > </plugin > <plugin > <groupId > org.apache.maven.plugins</groupId > <artifactId > maven-enforcer-plugin</artifactId > <version > ${maven-enforcer-plugin.version}</version > </plugin > <plugin > <groupId > org.apache.maven.plugins</groupId > <artifactId > maven-failsafe-plugin</artifactId > <version > ${maven-failsafe-plugin.version}</version > </plugin > <plugin > <groupId > org.apache.maven.plugins</groupId > <artifactId > maven-help-plugin</artifactId > <version > ${maven-help-plugin.version}</version > </plugin > <plugin > <groupId > org.apache.maven.plugins</groupId > <artifactId > maven-install-plugin</artifactId > <version > ${maven-install-plugin.version}</version > </plugin > <plugin > <groupId > org.apache.maven.plugins</groupId > <artifactId > maven-invoker-plugin</artifactId > <version > ${maven-invoker-plugin.version}</version > </plugin > <plugin > <groupId > org.apache.maven.plugins</groupId > <artifactId > maven-jar-plugin</artifactId > <version > ${maven-jar-plugin.version}</version > </plugin > <plugin > <groupId > org.apache.maven.plugins</groupId > <artifactId > maven-javadoc-plugin</artifactId > <version > ${maven-javadoc-plugin.version}</version > </plugin > <plugin > <groupId > org.apache.maven.plugins</groupId > <artifactId > maven-resources-plugin</artifactId > <version > ${maven-resources-plugin.version}</version > </plugin > <plugin > <groupId > org.apache.maven.plugins</groupId > <artifactId > maven-shade-plugin</artifactId > <version > ${maven-shade-plugin.version}</version > </plugin > <plugin > <groupId > org.apache.maven.plugins</groupId > <artifactId > maven-source-plugin</artifactId > <version > ${maven-source-plugin.version}</version > </plugin > <plugin > <groupId > org.apache.maven.plugins</groupId > <artifactId > maven-surefire-plugin</artifactId > <version > ${maven-surefire-plugin.version}</version > </plugin > <plugin > <groupId > org.apache.maven.plugins</groupId > <artifactId > maven-war-plugin</artifactId > <version > ${maven-war-plugin.version}</version > </plugin > <plugin > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-maven-plugin</artifactId > <version > 2.7.18</version > </plugin > <plugin > <groupId > org.codehaus.mojo</groupId > <artifactId > versions-maven-plugin</artifactId > <version > ${versions-maven-plugin.version}</version > </plugin > <plugin > <groupId > org.codehaus.mojo</groupId > <artifactId > xml-maven-plugin</artifactId > <version > ${xml-maven-plugin.version}</version > </plugin > </plugins > </pluginManagement > </build > </project >
此时再在你的项目中引入定义好版本的某个依赖,比如 httpcore :
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 <dependencyManagement > <dependencies > <dependency > <groupId > org.springframework.boot</groupId > <artifactId > spring-boot-dependencies</artifactId > <version > 2.7.18</version > <type > pom</type > <scope > import</scope > </dependency > </dependencies > </dependencyManagement > <dependencies > <dependency > <groupId > org.apache.httpcomponents</groupId > <artifactId > httpcore</artifactId > </dependency > </dependencies >
你会发现maven会默认添加 spring-boot-dependencies 中定义好的httpcore的对应版本(4.4.16)的jar
Maven 指令 Maven的指定就是Maven为整个项目声明周期的各个阶段,提供了各种各样的指令。
1 2 3 4 5 6 mvn clean:清空target目求。 mvn compile:编译整个项目,生成到target。 mvn test:专门针对test目录下的内容做测试 mvn package:会将当前项目打包: jar 、war,取决于pom文件里是否指定packaging为war。默认时jar mvn install: 会打包并将jar放到本地仓库供其他项目使用。 mvn deploy:单独放到私服的位置再讲
mvn compile :这里是将main目录下的内容编译,生成一个target目录,将编译后的内容全部放到target目录下,其次java和resources都可以称为classpath,因內编译后的内容都是放在classes目录下的。
如果运行 mvn compile 命令后目标文件夹没有显示出来,您需要在“项目结构”设置中移除目标文件夹的“排除”标记.
mvn clean : 将编译后的内容全部清除掉。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 [INFO] Scanning for projects... [INFO] [INFO] ------------------------< com.elolee:Maven-Web >------------------------ [INFO] Building Maven-Web 1.0 -SNAPSHOT [INFO] --------------------------------[ war ]--------------------------------- [INFO] [INFO] --- maven-clean-plugin:2.5 :clean (default -clean) @ Maven-Web --- [INFO] Deleting /Users/JoshuaBrooks/IdeaProjects/Joshs/MaShiBings/MavenLearning/Maven/Maven-Web/target [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESS [INFO] ------------------------------------------------------------------------ [INFO] Total time: 0.181 s [INFO] Finished at: 2026 -04 -12 T18:54 :41 +08 :00 [INFO] ------------------------------------------------------------------------
mvn test :
1 2 3 4 5 6 7 8 9 10 ------------------------------------------------------- T E S T S ------------------------------------------------------- Running com.elolee.ScopeDemoTest hello world Tests run: 1 , Failures: 0 , Errors: 0 , Skipped: 0 , Time elapsed: 0.027 sec Results : Tests run: 1 , Failures: 0 , Errors: 0 , Skipped: 0
mvn package : 将项目进行打包,但是打包会经历compile以及test,并且成功后,才会将项目打包成具体的jar 或者是war。打包后的具体文件,会存放在tarqet目录下。
mvn package -Dskiptests:
• install:将当前项目做好编译,测试,打包,并且将项目安装到本地仓库。如果安装到本地仓库的是一个jar 包,其他项目就可以将这个jar依赖过来使用。
聚合工程 典型的maven项目目录结构是:
1 2 3 4 5 6 7 8 my-project/ ├── pom.xml ├── src/ │ ├── main/ │ │ └── java/ # 主源码 │ └── test/ │ └── java/ # 测试代码 └── target/ # 构建输出(由 Maven 生成)
但是在多模块项目中, 父 POM 使用 <packaging>pom</packaging> ,聚合多个子模块(如微服务架构), 则父项目的结构会变成:
1 2 Parent-project/ ├── pom.xml
因为父项目的主要作用是将各个子模块聚合到一起,仅此而已,没有其他功能性代码、需求, 所以不需要src目录。
如需查看当前项目的完整有效 POM(含继承自 Super POM 的默认配置),可执行命令:
父工程 :在其中可以统一依赖版本管理,同时可以基于聚合工程做统一的多个项目的打包或者其他操作。(在聚合项目目录下打包,其中所有子模块都会打包)
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 <packaging > pom</packaging > <modules > <module > item</module > <module > order</module > <module > cart</module > <module > payment</module > <module > delivery</module > </modules > <dependencyManagement > <dependencies > <groupId > </groupId > <artifactId > </artifactId > <version > </version > </dependencies > </dependencyManagement >
子工程 :
1 2 3 4 5 6 7 8 9 10 <parent > <groupId > com.mashibing</groupId > <artifactId > yanxuan</artifactId > <version > 0.0.1-SNAPSHOT</version > </parent > <ModelVersion > 4.0.0</ModelVersion > <artifact > order</artifact >
Maven私服 Maven私服的概念 •私服是搭建在局域网的一种特殊的远程仓库,目的是代理远程仓库,让下载依赖的效率更高。
• 有了私有之后,使用Maven需要下载依赖时,直接请求私服下载依赖,将私服中的依赖下载到本地仓库中。如果私服中没有具体依赖,私服会去外部的远程仓库下载。
• 私服可以解决在业务做开发时,有一些内部的依赖,是中央仓库没有提供的,是公司开发人员自行封装的一些依赖。可以将公司自研的一些框架和依赖上传到私服中,让公司内部人员可以通过私服将这种依赖下载到本地仓库。
搭建私服的方式非常多,Apache Archiva,Sonatype Nexus。一般都会采用后者。
搭建Nexus私服 官网下载安装包 Nexus 下载地址