pom.xml 119 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <project xmlns="http://maven.apache.org/POM/4.0.0"
  3. xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
  4. xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  5. <modelVersion>4.0.0</modelVersion>
  6. <groupId>com.kingtom.kirin</groupId>
  7. <artifactId>kirin_dependencies</artifactId>
  8. <version>1.0</version>
  9. <packaging>pom</packaging>
  10. <properties>
  11. <maven.compiler.source>17</maven.compiler.source>
  12. <maven.compiler.target>17</maven.compiler.target>
  13. <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
  14. <!-- 基础 -->
  15. <spring.boot.version>3.1.0</spring.boot.version>
  16. <kirin.version>1.0</kirin.version>
  17. <!-- 自己加的 -->
  18. <springdoc.version>2.1.0</springdoc.version>
  19. <satoken.version>1.34.0</satoken.version>
  20. <mybatis.version>3.0.2</mybatis.version>
  21. <mybatis.caffeine.version>1.1.0</mybatis.caffeine.version>
  22. <kryo.version>5.5.0</kryo.version>
  23. <guava.version>32.0.0-jre</guava.version>
  24. <hutool.version>5.8.9</hutool.version>
  25. <pagehelper.version>1.4.6</pagehelper.version>
  26. <mapstruct.version>1.5.5.Final</mapstruct.version>
  27. <poitl.version>1.12.1</poitl.version>
  28. <!-- 自己加的 end -->
  29. <!-- spring-boot-dependencies3.1.0中定义的 -->
  30. <activemq.version>5.18.1</activemq.version>
  31. <angus-mail.version>1.1.0</angus-mail.version>
  32. <artemis.version>2.28.0</artemis.version>
  33. <aspectj.version>1.9.19</aspectj.version>
  34. <assertj.version>3.24.2</assertj.version>
  35. <awaitility.version>4.2.0</awaitility.version>
  36. <brave.version>5.15.1</brave.version>
  37. <build-helper-maven-plugin.version>3.3.0</build-helper-maven-plugin.version>
  38. <byte-buddy.version>1.14.4</byte-buddy.version>
  39. <cache2k.version>2.6.1.Final</cache2k.version>
  40. <caffeine.version>3.1.6</caffeine.version>
  41. <cassandra-driver.version>4.15.0</cassandra-driver.version>
  42. <classmate.version>1.5.1</classmate.version>
  43. <commons-codec.version>1.15</commons-codec.version>
  44. <commons-dbcp2.version>2.9.0</commons-dbcp2.version>
  45. <commons-lang3.version>3.12.0</commons-lang3.version>
  46. <commons-pool.version>1.6</commons-pool.version>
  47. <commons-pool2.version>2.11.1</commons-pool2.version>
  48. <couchbase-client.version>3.4.6</couchbase-client.version>
  49. <db2-jdbc.version>11.5.8.0</db2-jdbc.version>
  50. <dependency-management-plugin.version>1.1.0</dependency-management-plugin.version>
  51. <derby.version>10.16.1.1</derby.version>
  52. <dropwizard-metrics.version>4.2.18</dropwizard-metrics.version>
  53. <ehcache3.version>3.10.8</ehcache3.version>
  54. <elasticsearch-client.version>8.7.1</elasticsearch-client.version>
  55. <flyway.version>9.16.3</flyway.version>
  56. <freemarker.version>2.3.32</freemarker.version>
  57. <git-commit-id-maven-plugin.version>5.0.0</git-commit-id-maven-plugin.version>
  58. <glassfish-jaxb.version>4.0.2</glassfish-jaxb.version>
  59. <glassfish-jstl.version>3.0.1</glassfish-jstl.version>
  60. <graphql-java.version>20.2</graphql-java.version>
  61. <groovy.version>4.0.12</groovy.version>
  62. <gson.version>2.10.1</gson.version>
  63. <h2.version>2.1.214</h2.version>
  64. <hamcrest.version>2.2</hamcrest.version>
  65. <hazelcast.version>5.2.3</hazelcast.version>
  66. <hibernate.version>6.2.2.Final</hibernate.version>
  67. <hibernate-validator.version>8.0.0.Final</hibernate-validator.version>
  68. <hikaricp.version>5.0.1</hikaricp.version>
  69. <hsqldb.version>2.7.1</hsqldb.version>
  70. <htmlunit.version>2.70.0</htmlunit.version>
  71. <httpasyncclient.version>4.1.5</httpasyncclient.version>
  72. <httpclient5.version>5.2.1</httpclient5.version>
  73. <httpcore.version>4.4.16</httpcore.version>
  74. <httpcore5.version>5.2.1</httpcore5.version>
  75. <infinispan.version>14.0.9.Final</infinispan.version>
  76. <influxdb-java.version>2.23</influxdb-java.version>
  77. <jackson-bom.version>2.15.0</jackson-bom.version>
  78. <jakarta-activation.version>2.1.2</jakarta-activation.version>
  79. <jakarta-annotation.version>2.1.1</jakarta-annotation.version>
  80. <jakarta-jms.version>3.1.0</jakarta-jms.version>
  81. <jakarta-json.version>2.1.1</jakarta-json.version>
  82. <jakarta-json-bind.version>3.0.0</jakarta-json-bind.version>
  83. <jakarta-mail.version>2.1.1</jakarta-mail.version>
  84. <jakarta-management.version>1.1.4</jakarta-management.version>
  85. <jakarta-persistence.version>3.1.0</jakarta-persistence.version>
  86. <jakarta-servlet.version>6.0.0</jakarta-servlet.version>
  87. <jakarta-servlet-jsp-jstl.version>3.0.0</jakarta-servlet-jsp-jstl.version>
  88. <jakarta-transaction.version>2.0.1</jakarta-transaction.version>
  89. <jakarta-validation.version>3.0.2</jakarta-validation.version>
  90. <jakarta-websocket.version>2.1.0</jakarta-websocket.version>
  91. <jakarta-ws-rs.version>3.1.0</jakarta-ws-rs.version>
  92. <jakarta-xml-bind.version>4.0.0</jakarta-xml-bind.version>
  93. <jakarta-xml-soap.version>3.0.0</jakarta-xml-soap.version>
  94. <jakarta-xml-ws.version>4.0.0</jakarta-xml-ws.version>
  95. <janino.version>3.1.9</janino.version>
  96. <javax-cache.version>1.1.1</javax-cache.version>
  97. <javax-money.version>1.1</javax-money.version>
  98. <jaxen.version>2.0.0</jaxen.version>
  99. <jaybird.version>5.0.1.java11</jaybird.version>
  100. <jboss-logging.version>3.5.0.Final</jboss-logging.version>
  101. <jdom2.version>2.0.6.1</jdom2.version>
  102. <jedis.version>4.3.2</jedis.version>
  103. <jersey.version>3.1.1</jersey.version>
  104. <jetty-reactive-httpclient.version>3.0.8</jetty-reactive-httpclient.version>
  105. <jetty.version>11.0.15</jetty.version>
  106. <jmustache.version>1.15</jmustache.version>
  107. <jooq.version>3.18.4</jooq.version>
  108. <json-path.version>2.8.0</json-path.version>
  109. <json-smart.version>2.4.10</json-smart.version>
  110. <jsonassert.version>1.5.1</jsonassert.version>
  111. <jtds.version>1.3.1</jtds.version>
  112. <junit.version>4.13.2</junit.version>
  113. <junit-jupiter.version>5.9.3</junit-jupiter.version>
  114. <kafka.version>3.4.0</kafka.version>
  115. <kotlin.version>1.8.21</kotlin.version>
  116. <kotlin-coroutines.version>1.6.4</kotlin-coroutines.version>
  117. <lettuce.version>6.2.4.RELEASE</lettuce.version>
  118. <liquibase.version>4.20.0</liquibase.version>
  119. <log4j2.version>2.20.0</log4j2.version>
  120. <logback.version>1.4.7</logback.version>
  121. <lombok.version>1.18.26</lombok.version>
  122. <mariadb.version>3.1.4</mariadb.version>
  123. <maven-antrun-plugin.version>3.1.0</maven-antrun-plugin.version>
  124. <maven-assembly-plugin.version>3.5.0</maven-assembly-plugin.version>
  125. <maven-clean-plugin.version>3.2.0</maven-clean-plugin.version>
  126. <maven-compiler-plugin.version>3.11.0</maven-compiler-plugin.version>
  127. <maven-dependency-plugin.version>3.5.0</maven-dependency-plugin.version>
  128. <maven-deploy-plugin.version>3.1.1</maven-deploy-plugin.version>
  129. <maven-enforcer-plugin.version>3.3.0</maven-enforcer-plugin.version>
  130. <maven-failsafe-plugin.version>3.0.0</maven-failsafe-plugin.version>
  131. <maven-help-plugin.version>3.4.0</maven-help-plugin.version>
  132. <maven-install-plugin.version>3.1.1</maven-install-plugin.version>
  133. <maven-invoker-plugin.version>3.5.1</maven-invoker-plugin.version>
  134. <maven-jar-plugin.version>3.3.0</maven-jar-plugin.version>
  135. <maven-javadoc-plugin.version>3.5.0</maven-javadoc-plugin.version>
  136. <maven-resources-plugin.version>3.3.1</maven-resources-plugin.version>
  137. <maven-shade-plugin.version>3.4.1</maven-shade-plugin.version>
  138. <maven-source-plugin.version>3.2.1</maven-source-plugin.version>
  139. <maven-surefire-plugin.version>3.0.0</maven-surefire-plugin.version>
  140. <maven-war-plugin.version>3.3.2</maven-war-plugin.version>
  141. <micrometer.version>1.11.0</micrometer.version>
  142. <micrometer-tracing.version>1.1.1</micrometer-tracing.version>
  143. <mockito.version>5.3.1</mockito.version>
  144. <mongodb.version>4.9.1</mongodb.version>
  145. <mssql-jdbc.version>11.2.3.jre17</mssql-jdbc.version>
  146. <mysql.version>8.0.33</mysql.version>
  147. <native-build-tools-plugin.version>0.9.22</native-build-tools-plugin.version>
  148. <nekohtml.version>1.9.22</nekohtml.version>
  149. <neo4j-java-driver.version>5.8.0</neo4j-java-driver.version>
  150. <netty.version>4.1.92.Final</netty.version>
  151. <okhttp.version>4.10.0</okhttp.version>
  152. <opentelemetry.version>1.25.0</opentelemetry.version>
  153. <oracle-database.version>21.9.0.0</oracle-database.version>
  154. <oracle-r2dbc.version>1.1.1</oracle-r2dbc.version>
  155. <pooled-jms.version>3.1.0</pooled-jms.version>
  156. <postgresql.version>42.6.0</postgresql.version>
  157. <prometheus-client.version>0.16.0</prometheus-client.version>
  158. <quartz.version>2.3.2</quartz.version>
  159. <querydsl.version>5.0.0</querydsl.version>
  160. <r2dbc-h2.version>1.0.0.RELEASE</r2dbc-h2.version>
  161. <r2dbc-mariadb.version>1.1.4</r2dbc-mariadb.version>
  162. <r2dbc-mssql.version>1.0.0.RELEASE</r2dbc-mssql.version>
  163. <r2dbc-mysql.version>1.0.1</r2dbc-mysql.version>
  164. <r2dbc-pool.version>1.0.0.RELEASE</r2dbc-pool.version>
  165. <r2dbc-postgresql.version>1.0.1.RELEASE</r2dbc-postgresql.version>
  166. <r2dbc-proxy.version>1.1.0.RELEASE</r2dbc-proxy.version>
  167. <r2dbc-spi.version>1.0.0.RELEASE</r2dbc-spi.version>
  168. <rabbit-amqp-client.version>5.17.0</rabbit-amqp-client.version>
  169. <rabbit-stream-client.version>0.9.0</rabbit-stream-client.version>
  170. <reactive-streams.version>1.0.4</reactive-streams.version>
  171. <reactor-bom.version>2022.0.7</reactor-bom.version>
  172. <rest-assured.version>5.3.0</rest-assured.version>
  173. <rsocket.version>1.1.3</rsocket.version>
  174. <rxjava3.version>3.1.6</rxjava3.version>
  175. <saaj-impl.version>3.0.2</saaj-impl.version>
  176. <selenium.version>4.8.3</selenium.version>
  177. <selenium-htmlunit.version>4.8.3</selenium-htmlunit.version>
  178. <sendgrid.version>4.9.3</sendgrid.version>
  179. <slf4j.version>2.0.7</slf4j.version>
  180. <snakeyaml.version>1.33</snakeyaml.version>
  181. <spring-amqp.version>3.0.4</spring-amqp.version>
  182. <spring-authorization-server.version>1.1.0</spring-authorization-server.version>
  183. <spring-batch.version>5.0.2</spring-batch.version>
  184. <spring-data-bom.version>2023.0.0</spring-data-bom.version>
  185. <spring-framework.version>6.0.9</spring-framework.version>
  186. <spring-graphql.version>1.2.0</spring-graphql.version>
  187. <spring-hateoas.version>2.1.0</spring-hateoas.version>
  188. <spring-integration.version>6.1.0</spring-integration.version>
  189. <spring-kafka.version>3.0.7</spring-kafka.version>
  190. <spring-ldap.version>3.1.0</spring-ldap.version>
  191. <spring-restdocs.version>3.0.0</spring-restdocs.version>
  192. <spring-retry.version>2.0.1</spring-retry.version>
  193. <spring-security.version>6.1.0</spring-security.version>
  194. <spring-session.version>3.1.0</spring-session.version>
  195. <spring-ws.version>4.0.4</spring-ws.version>
  196. <sqlite-jdbc.version>3.41.2.1</sqlite-jdbc.version>
  197. <testcontainers.version>1.18.0</testcontainers.version>
  198. <thymeleaf.version>3.1.1.RELEASE</thymeleaf.version>
  199. <thymeleaf-extras-data-attribute.version>2.0.1</thymeleaf-extras-data-attribute.version>
  200. <thymeleaf-extras-springsecurity.version>3.1.1.RELEASE</thymeleaf-extras-springsecurity.version>
  201. <thymeleaf-layout-dialect.version>3.2.1</thymeleaf-layout-dialect.version>
  202. <tomcat.version>10.1.8</tomcat.version>
  203. <unboundid-ldapsdk.version>6.0.8</unboundid-ldapsdk.version>
  204. <undertow.version>2.3.6.Final</undertow.version>
  205. <versions-maven-plugin.version>2.15.0</versions-maven-plugin.version>
  206. <webjars-locator-core.version>0.52</webjars-locator-core.version>
  207. <wsdl4j.version>1.6.3</wsdl4j.version>
  208. <xml-maven-plugin.version>1.0.2</xml-maven-plugin.version>
  209. <xmlunit2.version>2.9.1</xmlunit2.version>
  210. <yasson.version>3.0.3</yasson.version>
  211. </properties>
  212. <dependencyManagement>
  213. <dependencies>
  214. <!-- 基本的 -->
  215. <dependency>
  216. <groupId>com.kingtom.kirin</groupId>
  217. <artifactId>kirin_core</artifactId>
  218. <version>${kirin.version}</version>
  219. </dependency>
  220. <dependency>
  221. <groupId>com.kingtom.kirin</groupId>
  222. <artifactId>kirin_app</artifactId>
  223. <version>${kirin.version}</version>
  224. </dependency>
  225. <dependency>
  226. <groupId>com.kingtom.kirin</groupId>
  227. <artifactId>kirin_api_core</artifactId>
  228. <version>${kirin.version}</version>
  229. </dependency>
  230. <dependency>
  231. <groupId>com.kingtom.kirin</groupId>
  232. <artifactId>kirin_generator_core</artifactId>
  233. <version>${kirin.version}</version>
  234. </dependency>
  235. <!-- 基本的 end -->
  236. <!-- 自己加的 -->
  237. <dependency>
  238. <groupId>org.springdoc</groupId>
  239. <artifactId>springdoc-openapi-starter-webmvc-ui</artifactId>
  240. <version>${springdoc.version}</version>
  241. </dependency>
  242. <dependency>
  243. <groupId>cn.dev33</groupId>
  244. <artifactId>sa-token-spring-boot3-starter</artifactId>
  245. <version>${satoken.version}</version>
  246. </dependency>
  247. <dependency>
  248. <groupId>cn.dev33</groupId>
  249. <artifactId>sa-token-jwt</artifactId>
  250. <version>${satoken.version}</version>
  251. </dependency>
  252. <dependency>
  253. <groupId>org.mybatis.spring.boot</groupId>
  254. <artifactId>mybatis-spring-boot-starter</artifactId>
  255. <version>${mybatis.version}</version>
  256. </dependency>
  257. <dependency>
  258. <groupId>org.mybatis.caches</groupId>
  259. <artifactId>mybatis-caffeine</artifactId>
  260. <version>${mybatis.caffeine.version}</version>
  261. </dependency>
  262. <dependency>
  263. <groupId>com.esotericsoftware</groupId>
  264. <artifactId>kryo</artifactId>
  265. <version>${kryo.version}</version>
  266. </dependency>
  267. <dependency>
  268. <groupId>com.google.guava</groupId>
  269. <artifactId>guava</artifactId>
  270. <version>${guava.version}</version>
  271. </dependency>
  272. <dependency>
  273. <groupId>cn.hutool</groupId>
  274. <artifactId>hutool-all</artifactId>
  275. <version>${hutool.version}</version>
  276. </dependency>
  277. <dependency>
  278. <groupId>com.github.pagehelper</groupId>
  279. <artifactId>pagehelper-spring-boot-starter</artifactId>
  280. <version>${pagehelper.version}</version>
  281. </dependency>
  282. <dependency>
  283. <groupId>com.deepoove</groupId>
  284. <artifactId>poi-tl</artifactId>
  285. <version>${poitl.version}</version>
  286. </dependency>
  287. <!-- 自己加的 end-->
  288. <!-- spring-boot-dependencies3.1.0中定义的 -->
  289. <dependency>
  290. <groupId>org.apache.activemq</groupId>
  291. <artifactId>activemq-amqp</artifactId>
  292. <version>${activemq.version}</version>
  293. </dependency>
  294. <dependency>
  295. <groupId>org.apache.activemq</groupId>
  296. <artifactId>activemq-blueprint</artifactId>
  297. <version>${activemq.version}</version>
  298. </dependency>
  299. <dependency>
  300. <groupId>org.apache.activemq</groupId>
  301. <artifactId>activemq-broker</artifactId>
  302. <version>${activemq.version}</version>
  303. </dependency>
  304. <dependency>
  305. <groupId>org.apache.activemq</groupId>
  306. <artifactId>activemq-client</artifactId>
  307. <version>${activemq.version}</version>
  308. </dependency>
  309. <dependency>
  310. <groupId>org.apache.activemq</groupId>
  311. <artifactId>activemq-client-jakarta</artifactId>
  312. <version>${activemq.version}</version>
  313. </dependency>
  314. <dependency>
  315. <groupId>org.apache.activemq</groupId>
  316. <artifactId>activemq-console</artifactId>
  317. <version>${activemq.version}</version>
  318. <exclusions>
  319. <exclusion>
  320. <groupId>commons-logging</groupId>
  321. <artifactId>commons-logging</artifactId>
  322. </exclusion>
  323. </exclusions>
  324. </dependency>
  325. <dependency>
  326. <groupId>org.apache.activemq</groupId>
  327. <artifactId>activemq-http</artifactId>
  328. <version>${activemq.version}</version>
  329. </dependency>
  330. <dependency>
  331. <groupId>org.apache.activemq</groupId>
  332. <artifactId>activemq-jaas</artifactId>
  333. <version>${activemq.version}</version>
  334. </dependency>
  335. <dependency>
  336. <groupId>org.apache.activemq</groupId>
  337. <artifactId>activemq-jdbc-store</artifactId>
  338. <version>${activemq.version}</version>
  339. </dependency>
  340. <dependency>
  341. <groupId>org.apache.activemq</groupId>
  342. <artifactId>activemq-jms-pool</artifactId>
  343. <version>${activemq.version}</version>
  344. </dependency>
  345. <dependency>
  346. <groupId>org.apache.activemq</groupId>
  347. <artifactId>activemq-kahadb-store</artifactId>
  348. <version>${activemq.version}</version>
  349. </dependency>
  350. <dependency>
  351. <groupId>org.apache.activemq</groupId>
  352. <artifactId>activemq-karaf</artifactId>
  353. <version>${activemq.version}</version>
  354. </dependency>
  355. <dependency>
  356. <groupId>org.apache.activemq</groupId>
  357. <artifactId>activemq-log4j-appender</artifactId>
  358. <version>${activemq.version}</version>
  359. </dependency>
  360. <dependency>
  361. <groupId>org.apache.activemq</groupId>
  362. <artifactId>activemq-mqtt</artifactId>
  363. <version>${activemq.version}</version>
  364. </dependency>
  365. <dependency>
  366. <groupId>org.apache.activemq</groupId>
  367. <artifactId>activemq-openwire-generator</artifactId>
  368. <version>${activemq.version}</version>
  369. </dependency>
  370. <dependency>
  371. <groupId>org.apache.activemq</groupId>
  372. <artifactId>activemq-openwire-legacy</artifactId>
  373. <version>${activemq.version}</version>
  374. </dependency>
  375. <dependency>
  376. <groupId>org.apache.activemq</groupId>
  377. <artifactId>activemq-osgi</artifactId>
  378. <version>${activemq.version}</version>
  379. </dependency>
  380. <dependency>
  381. <groupId>org.apache.activemq</groupId>
  382. <artifactId>activemq-partition</artifactId>
  383. <version>${activemq.version}</version>
  384. </dependency>
  385. <dependency>
  386. <groupId>org.apache.activemq</groupId>
  387. <artifactId>activemq-pool</artifactId>
  388. <version>${activemq.version}</version>
  389. </dependency>
  390. <dependency>
  391. <groupId>org.apache.activemq</groupId>
  392. <artifactId>activemq-ra</artifactId>
  393. <version>${activemq.version}</version>
  394. </dependency>
  395. <dependency>
  396. <groupId>org.apache.activemq</groupId>
  397. <artifactId>activemq-run</artifactId>
  398. <version>${activemq.version}</version>
  399. </dependency>
  400. <dependency>
  401. <groupId>org.apache.activemq</groupId>
  402. <artifactId>activemq-runtime-config</artifactId>
  403. <version>${activemq.version}</version>
  404. </dependency>
  405. <dependency>
  406. <groupId>org.apache.activemq</groupId>
  407. <artifactId>activemq-shiro</artifactId>
  408. <version>${activemq.version}</version>
  409. </dependency>
  410. <dependency>
  411. <groupId>org.apache.activemq</groupId>
  412. <artifactId>activemq-spring</artifactId>
  413. <version>${activemq.version}</version>
  414. <exclusions>
  415. <exclusion>
  416. <groupId>commons-logging</groupId>
  417. <artifactId>commons-logging</artifactId>
  418. </exclusion>
  419. </exclusions>
  420. </dependency>
  421. <dependency>
  422. <groupId>org.apache.activemq</groupId>
  423. <artifactId>activemq-stomp</artifactId>
  424. <version>${activemq.version}</version>
  425. </dependency>
  426. <dependency>
  427. <groupId>org.apache.activemq</groupId>
  428. <artifactId>activemq-web</artifactId>
  429. <version>${activemq.version}</version>
  430. </dependency>
  431. <dependency>
  432. <groupId>org.eclipse.angus</groupId>
  433. <artifactId>angus-core</artifactId>
  434. <version>${angus-mail.version}</version>
  435. </dependency>
  436. <dependency>
  437. <groupId>org.eclipse.angus</groupId>
  438. <artifactId>angus-mail</artifactId>
  439. <version>${angus-mail.version}</version>
  440. </dependency>
  441. <dependency>
  442. <groupId>org.eclipse.angus</groupId>
  443. <artifactId>dsn</artifactId>
  444. <version>${angus-mail.version}</version>
  445. </dependency>
  446. <dependency>
  447. <groupId>org.eclipse.angus</groupId>
  448. <artifactId>gimap</artifactId>
  449. <version>${angus-mail.version}</version>
  450. </dependency>
  451. <dependency>
  452. <groupId>org.eclipse.angus</groupId>
  453. <artifactId>imap</artifactId>
  454. <version>${angus-mail.version}</version>
  455. </dependency>
  456. <dependency>
  457. <groupId>org.eclipse.angus</groupId>
  458. <artifactId>jakarta.mail</artifactId>
  459. <version>${angus-mail.version}</version>
  460. </dependency>
  461. <dependency>
  462. <groupId>org.eclipse.angus</groupId>
  463. <artifactId>logging-mailhandler</artifactId>
  464. <version>${angus-mail.version}</version>
  465. </dependency>
  466. <dependency>
  467. <groupId>org.eclipse.angus</groupId>
  468. <artifactId>pop3</artifactId>
  469. <version>${angus-mail.version}</version>
  470. </dependency>
  471. <dependency>
  472. <groupId>org.eclipse.angus</groupId>
  473. <artifactId>smtp</artifactId>
  474. <version>${angus-mail.version}</version>
  475. </dependency>
  476. <dependency>
  477. <groupId>org.apache.activemq</groupId>
  478. <artifactId>artemis-amqp-protocol</artifactId>
  479. <version>${artemis.version}</version>
  480. </dependency>
  481. <dependency>
  482. <groupId>org.apache.activemq</groupId>
  483. <artifactId>artemis-commons</artifactId>
  484. <version>${artemis.version}</version>
  485. </dependency>
  486. <dependency>
  487. <groupId>org.apache.activemq</groupId>
  488. <artifactId>artemis-core-client</artifactId>
  489. <version>${artemis.version}</version>
  490. </dependency>
  491. <dependency>
  492. <groupId>org.apache.activemq</groupId>
  493. <artifactId>artemis-jakarta-client</artifactId>
  494. <version>${artemis.version}</version>
  495. </dependency>
  496. <dependency>
  497. <groupId>org.apache.activemq</groupId>
  498. <artifactId>artemis-jakarta-server</artifactId>
  499. <version>${artemis.version}</version>
  500. </dependency>
  501. <dependency>
  502. <groupId>org.apache.activemq</groupId>
  503. <artifactId>artemis-jakarta-service-extensions</artifactId>
  504. <version>${artemis.version}</version>
  505. </dependency>
  506. <dependency>
  507. <groupId>org.apache.activemq</groupId>
  508. <artifactId>artemis-jdbc-store</artifactId>
  509. <version>${artemis.version}</version>
  510. </dependency>
  511. <dependency>
  512. <groupId>org.apache.activemq</groupId>
  513. <artifactId>artemis-journal</artifactId>
  514. <version>${artemis.version}</version>
  515. </dependency>
  516. <dependency>
  517. <groupId>org.apache.activemq</groupId>
  518. <artifactId>artemis-quorum-api</artifactId>
  519. <version>${artemis.version}</version>
  520. </dependency>
  521. <dependency>
  522. <groupId>org.apache.activemq</groupId>
  523. <artifactId>artemis-selector</artifactId>
  524. <version>${artemis.version}</version>
  525. </dependency>
  526. <dependency>
  527. <groupId>org.apache.activemq</groupId>
  528. <artifactId>artemis-server</artifactId>
  529. <version>${artemis.version}</version>
  530. </dependency>
  531. <dependency>
  532. <groupId>org.apache.activemq</groupId>
  533. <artifactId>artemis-service-extensions</artifactId>
  534. <version>${artemis.version}</version>
  535. </dependency>
  536. <dependency>
  537. <groupId>org.aspectj</groupId>
  538. <artifactId>aspectjrt</artifactId>
  539. <version>${aspectj.version}</version>
  540. </dependency>
  541. <dependency>
  542. <groupId>org.aspectj</groupId>
  543. <artifactId>aspectjtools</artifactId>
  544. <version>${aspectj.version}</version>
  545. </dependency>
  546. <dependency>
  547. <groupId>org.aspectj</groupId>
  548. <artifactId>aspectjweaver</artifactId>
  549. <version>${aspectj.version}</version>
  550. </dependency>
  551. <dependency>
  552. <groupId>org.awaitility</groupId>
  553. <artifactId>awaitility</artifactId>
  554. <version>${awaitility.version}</version>
  555. </dependency>
  556. <dependency>
  557. <groupId>org.awaitility</groupId>
  558. <artifactId>awaitility-groovy</artifactId>
  559. <version>${awaitility.version}</version>
  560. </dependency>
  561. <dependency>
  562. <groupId>org.awaitility</groupId>
  563. <artifactId>awaitility-kotlin</artifactId>
  564. <version>${awaitility.version}</version>
  565. </dependency>
  566. <dependency>
  567. <groupId>org.awaitility</groupId>
  568. <artifactId>awaitility-scala</artifactId>
  569. <version>${awaitility.version}</version>
  570. </dependency>
  571. <dependency>
  572. <groupId>net.bytebuddy</groupId>
  573. <artifactId>byte-buddy</artifactId>
  574. <version>${byte-buddy.version}</version>
  575. </dependency>
  576. <dependency>
  577. <groupId>net.bytebuddy</groupId>
  578. <artifactId>byte-buddy-agent</artifactId>
  579. <version>${byte-buddy.version}</version>
  580. </dependency>
  581. <dependency>
  582. <groupId>org.cache2k</groupId>
  583. <artifactId>cache2k-api</artifactId>
  584. <version>${cache2k.version}</version>
  585. </dependency>
  586. <dependency>
  587. <groupId>org.cache2k</groupId>
  588. <artifactId>cache2k-config</artifactId>
  589. <version>${cache2k.version}</version>
  590. </dependency>
  591. <dependency>
  592. <groupId>org.cache2k</groupId>
  593. <artifactId>cache2k-core</artifactId>
  594. <version>${cache2k.version}</version>
  595. </dependency>
  596. <dependency>
  597. <groupId>org.cache2k</groupId>
  598. <artifactId>cache2k-jcache</artifactId>
  599. <version>${cache2k.version}</version>
  600. </dependency>
  601. <dependency>
  602. <groupId>org.cache2k</groupId>
  603. <artifactId>cache2k-micrometer</artifactId>
  604. <version>${cache2k.version}</version>
  605. </dependency>
  606. <dependency>
  607. <groupId>org.cache2k</groupId>
  608. <artifactId>cache2k-spring</artifactId>
  609. <version>${cache2k.version}</version>
  610. </dependency>
  611. <dependency>
  612. <groupId>com.github.ben-manes.caffeine</groupId>
  613. <artifactId>caffeine</artifactId>
  614. <version>${caffeine.version}</version>
  615. </dependency>
  616. <dependency>
  617. <groupId>com.github.ben-manes.caffeine</groupId>
  618. <artifactId>guava</artifactId>
  619. <version>${caffeine.version}</version>
  620. </dependency>
  621. <dependency>
  622. <groupId>com.github.ben-manes.caffeine</groupId>
  623. <artifactId>jcache</artifactId>
  624. <version>${caffeine.version}</version>
  625. </dependency>
  626. <dependency>
  627. <groupId>com.github.ben-manes.caffeine</groupId>
  628. <artifactId>simulator</artifactId>
  629. <version>${caffeine.version}</version>
  630. </dependency>
  631. <dependency>
  632. <groupId>com.datastax.oss</groupId>
  633. <artifactId>java-driver-core</artifactId>
  634. <version>${cassandra-driver.version}</version>
  635. <exclusions>
  636. <exclusion>
  637. <groupId>org.slf4j</groupId>
  638. <artifactId>jcl-over-slf4j</artifactId>
  639. </exclusion>
  640. </exclusions>
  641. </dependency>
  642. <dependency>
  643. <groupId>com.fasterxml</groupId>
  644. <artifactId>classmate</artifactId>
  645. <version>${classmate.version}</version>
  646. </dependency>
  647. <dependency>
  648. <groupId>commons-codec</groupId>
  649. <artifactId>commons-codec</artifactId>
  650. <version>${commons-codec.version}</version>
  651. </dependency>
  652. <dependency>
  653. <groupId>org.apache.commons</groupId>
  654. <artifactId>commons-dbcp2</artifactId>
  655. <version>${commons-dbcp2.version}</version>
  656. <exclusions>
  657. <exclusion>
  658. <groupId>commons-logging</groupId>
  659. <artifactId>commons-logging</artifactId>
  660. </exclusion>
  661. </exclusions>
  662. </dependency>
  663. <dependency>
  664. <groupId>org.apache.commons</groupId>
  665. <artifactId>commons-lang3</artifactId>
  666. <version>${commons-lang3.version}</version>
  667. </dependency>
  668. <dependency>
  669. <groupId>commons-pool</groupId>
  670. <artifactId>commons-pool</artifactId>
  671. <version>${commons-pool.version}</version>
  672. </dependency>
  673. <dependency>
  674. <groupId>org.apache.commons</groupId>
  675. <artifactId>commons-pool2</artifactId>
  676. <version>${commons-pool2.version}</version>
  677. </dependency>
  678. <dependency>
  679. <groupId>com.couchbase.client</groupId>
  680. <artifactId>java-client</artifactId>
  681. <version>${couchbase-client.version}</version>
  682. </dependency>
  683. <dependency>
  684. <groupId>com.ibm.db2</groupId>
  685. <artifactId>jcc</artifactId>
  686. <version>${db2-jdbc.version}</version>
  687. </dependency>
  688. <dependency>
  689. <groupId>io.spring.gradle</groupId>
  690. <artifactId>dependency-management-plugin</artifactId>
  691. <version>${dependency-management-plugin.version}</version>
  692. </dependency>
  693. <dependency>
  694. <groupId>org.apache.derby</groupId>
  695. <artifactId>derby</artifactId>
  696. <version>${derby.version}</version>
  697. </dependency>
  698. <dependency>
  699. <groupId>org.apache.derby</groupId>
  700. <artifactId>derbyclient</artifactId>
  701. <version>${derby.version}</version>
  702. </dependency>
  703. <dependency>
  704. <groupId>org.apache.derby</groupId>
  705. <artifactId>derbynet</artifactId>
  706. <version>${derby.version}</version>
  707. </dependency>
  708. <dependency>
  709. <groupId>org.apache.derby</groupId>
  710. <artifactId>derbyoptionaltools</artifactId>
  711. <version>${derby.version}</version>
  712. </dependency>
  713. <dependency>
  714. <groupId>org.apache.derby</groupId>
  715. <artifactId>derbyshared</artifactId>
  716. <version>${derby.version}</version>
  717. </dependency>
  718. <dependency>
  719. <groupId>org.apache.derby</groupId>
  720. <artifactId>derbytools</artifactId>
  721. <version>${derby.version}</version>
  722. </dependency>
  723. <dependency>
  724. <groupId>org.ehcache</groupId>
  725. <artifactId>ehcache</artifactId>
  726. <version>${ehcache3.version}</version>
  727. <classifier>jakarta</classifier>
  728. </dependency>
  729. <dependency>
  730. <groupId>org.ehcache</groupId>
  731. <artifactId>ehcache-clustered</artifactId>
  732. <version>${ehcache3.version}</version>
  733. </dependency>
  734. <dependency>
  735. <groupId>org.ehcache</groupId>
  736. <artifactId>ehcache-transactions</artifactId>
  737. <version>${ehcache3.version}</version>
  738. <classifier>jakarta</classifier>
  739. </dependency>
  740. <dependency>
  741. <groupId>org.elasticsearch.client</groupId>
  742. <artifactId>elasticsearch-rest-client</artifactId>
  743. <version>${elasticsearch-client.version}</version>
  744. <exclusions>
  745. <exclusion>
  746. <groupId>commons-logging</groupId>
  747. <artifactId>commons-logging</artifactId>
  748. </exclusion>
  749. </exclusions>
  750. </dependency>
  751. <dependency>
  752. <groupId>org.elasticsearch.client</groupId>
  753. <artifactId>elasticsearch-rest-client-sniffer</artifactId>
  754. <version>${elasticsearch-client.version}</version>
  755. <exclusions>
  756. <exclusion>
  757. <groupId>commons-logging</groupId>
  758. <artifactId>commons-logging</artifactId>
  759. </exclusion>
  760. </exclusions>
  761. </dependency>
  762. <dependency>
  763. <groupId>co.elastic.clients</groupId>
  764. <artifactId>elasticsearch-java</artifactId>
  765. <version>${elasticsearch-client.version}</version>
  766. </dependency>
  767. <dependency>
  768. <groupId>org.flywaydb</groupId>
  769. <artifactId>flyway-core</artifactId>
  770. <version>${flyway.version}</version>
  771. </dependency>
  772. <dependency>
  773. <groupId>org.flywaydb</groupId>
  774. <artifactId>flyway-firebird</artifactId>
  775. <version>${flyway.version}</version>
  776. </dependency>
  777. <dependency>
  778. <groupId>org.flywaydb</groupId>
  779. <artifactId>flyway-mysql</artifactId>
  780. <version>${flyway.version}</version>
  781. </dependency>
  782. <dependency>
  783. <groupId>org.flywaydb</groupId>
  784. <artifactId>flyway-sqlserver</artifactId>
  785. <version>${flyway.version}</version>
  786. </dependency>
  787. <dependency>
  788. <groupId>org.freemarker</groupId>
  789. <artifactId>freemarker</artifactId>
  790. <version>${freemarker.version}</version>
  791. </dependency>
  792. <dependency>
  793. <groupId>org.glassfish.web</groupId>
  794. <artifactId>jakarta.servlet.jsp.jstl</artifactId>
  795. <version>${glassfish-jstl.version}</version>
  796. </dependency>
  797. <dependency>
  798. <groupId>com.graphql-java</groupId>
  799. <artifactId>graphql-java</artifactId>
  800. <version>${graphql-java.version}</version>
  801. </dependency>
  802. <dependency>
  803. <groupId>com.google.code.gson</groupId>
  804. <artifactId>gson</artifactId>
  805. <version>${gson.version}</version>
  806. </dependency>
  807. <dependency>
  808. <groupId>com.h2database</groupId>
  809. <artifactId>h2</artifactId>
  810. <version>${h2.version}</version>
  811. </dependency>
  812. <dependency>
  813. <groupId>org.hamcrest</groupId>
  814. <artifactId>hamcrest</artifactId>
  815. <version>${hamcrest.version}</version>
  816. </dependency>
  817. <dependency>
  818. <groupId>org.hamcrest</groupId>
  819. <artifactId>hamcrest-core</artifactId>
  820. <version>${hamcrest.version}</version>
  821. </dependency>
  822. <dependency>
  823. <groupId>org.hamcrest</groupId>
  824. <artifactId>hamcrest-library</artifactId>
  825. <version>${hamcrest.version}</version>
  826. </dependency>
  827. <dependency>
  828. <groupId>com.hazelcast</groupId>
  829. <artifactId>hazelcast</artifactId>
  830. <version>${hazelcast.version}</version>
  831. </dependency>
  832. <dependency>
  833. <groupId>com.hazelcast</groupId>
  834. <artifactId>hazelcast-spring</artifactId>
  835. <version>${hazelcast.version}</version>
  836. </dependency>
  837. <dependency>
  838. <groupId>org.hibernate.orm</groupId>
  839. <artifactId>hibernate-agroal</artifactId>
  840. <version>${hibernate.version}</version>
  841. </dependency>
  842. <dependency>
  843. <groupId>org.hibernate.orm</groupId>
  844. <artifactId>hibernate-ant</artifactId>
  845. <version>${hibernate.version}</version>
  846. </dependency>
  847. <dependency>
  848. <groupId>org.hibernate.orm</groupId>
  849. <artifactId>hibernate-c3p0</artifactId>
  850. <version>${hibernate.version}</version>
  851. </dependency>
  852. <dependency>
  853. <groupId>org.hibernate.orm</groupId>
  854. <artifactId>hibernate-community-dialects</artifactId>
  855. <version>${hibernate.version}</version>
  856. </dependency>
  857. <dependency>
  858. <groupId>org.hibernate.orm</groupId>
  859. <artifactId>hibernate-core</artifactId>
  860. <version>${hibernate.version}</version>
  861. </dependency>
  862. <dependency>
  863. <groupId>org.hibernate.orm</groupId>
  864. <artifactId>hibernate-envers</artifactId>
  865. <version>${hibernate.version}</version>
  866. </dependency>
  867. <dependency>
  868. <groupId>org.hibernate.orm</groupId>
  869. <artifactId>hibernate-graalvm</artifactId>
  870. <version>${hibernate.version}</version>
  871. </dependency>
  872. <dependency>
  873. <groupId>org.hibernate.orm</groupId>
  874. <artifactId>hibernate-hikaricp</artifactId>
  875. <version>${hibernate.version}</version>
  876. </dependency>
  877. <dependency>
  878. <groupId>org.hibernate.orm</groupId>
  879. <artifactId>hibernate-jcache</artifactId>
  880. <version>${hibernate.version}</version>
  881. </dependency>
  882. <dependency>
  883. <groupId>org.hibernate.orm</groupId>
  884. <artifactId>hibernate-jpamodelgen</artifactId>
  885. <version>${hibernate.version}</version>
  886. </dependency>
  887. <dependency>
  888. <groupId>org.hibernate.orm</groupId>
  889. <artifactId>hibernate-micrometer</artifactId>
  890. <version>${hibernate.version}</version>
  891. </dependency>
  892. <dependency>
  893. <groupId>org.hibernate.orm</groupId>
  894. <artifactId>hibernate-proxool</artifactId>
  895. <version>${hibernate.version}</version>
  896. </dependency>
  897. <dependency>
  898. <groupId>org.hibernate.orm</groupId>
  899. <artifactId>hibernate-spatial</artifactId>
  900. <version>${hibernate.version}</version>
  901. </dependency>
  902. <dependency>
  903. <groupId>org.hibernate.orm</groupId>
  904. <artifactId>hibernate-testing</artifactId>
  905. <version>${hibernate.version}</version>
  906. </dependency>
  907. <dependency>
  908. <groupId>org.hibernate.orm</groupId>
  909. <artifactId>hibernate-vibur</artifactId>
  910. <version>${hibernate.version}</version>
  911. </dependency>
  912. <dependency>
  913. <groupId>org.hibernate.validator</groupId>
  914. <artifactId>hibernate-validator</artifactId>
  915. <version>${hibernate-validator.version}</version>
  916. </dependency>
  917. <dependency>
  918. <groupId>org.hibernate.validator</groupId>
  919. <artifactId>hibernate-validator-annotation-processor</artifactId>
  920. <version>${hibernate-validator.version}</version>
  921. </dependency>
  922. <dependency>
  923. <groupId>com.zaxxer</groupId>
  924. <artifactId>HikariCP</artifactId>
  925. <version>${hikaricp.version}</version>
  926. </dependency>
  927. <dependency>
  928. <groupId>org.hsqldb</groupId>
  929. <artifactId>hsqldb</artifactId>
  930. <version>${hsqldb.version}</version>
  931. </dependency>
  932. <dependency>
  933. <groupId>net.sourceforge.htmlunit</groupId>
  934. <artifactId>htmlunit</artifactId>
  935. <version>${htmlunit.version}</version>
  936. <exclusions>
  937. <exclusion>
  938. <groupId>commons-logging</groupId>
  939. <artifactId>commons-logging</artifactId>
  940. </exclusion>
  941. </exclusions>
  942. </dependency>
  943. <dependency>
  944. <groupId>org.apache.httpcomponents</groupId>
  945. <artifactId>httpasyncclient</artifactId>
  946. <version>${httpasyncclient.version}</version>
  947. <exclusions>
  948. <exclusion>
  949. <groupId>commons-logging</groupId>
  950. <artifactId>commons-logging</artifactId>
  951. </exclusion>
  952. </exclusions>
  953. </dependency>
  954. <dependency>
  955. <groupId>org.apache.httpcomponents.client5</groupId>
  956. <artifactId>httpclient5</artifactId>
  957. <version>${httpclient5.version}</version>
  958. </dependency>
  959. <dependency>
  960. <groupId>org.apache.httpcomponents.client5</groupId>
  961. <artifactId>httpclient5-cache</artifactId>
  962. <version>${httpclient5.version}</version>
  963. </dependency>
  964. <dependency>
  965. <groupId>org.apache.httpcomponents.client5</groupId>
  966. <artifactId>httpclient5-fluent</artifactId>
  967. <version>${httpclient5.version}</version>
  968. </dependency>
  969. <dependency>
  970. <groupId>org.apache.httpcomponents.client5</groupId>
  971. <artifactId>httpclient5-win</artifactId>
  972. <version>${httpclient5.version}</version>
  973. </dependency>
  974. <dependency>
  975. <groupId>org.apache.httpcomponents</groupId>
  976. <artifactId>httpcore</artifactId>
  977. <version>${httpcore.version}</version>
  978. </dependency>
  979. <dependency>
  980. <groupId>org.apache.httpcomponents</groupId>
  981. <artifactId>httpcore-nio</artifactId>
  982. <version>${httpcore.version}</version>
  983. </dependency>
  984. <dependency>
  985. <groupId>org.apache.httpcomponents.core5</groupId>
  986. <artifactId>httpcore5</artifactId>
  987. <version>${httpcore5.version}</version>
  988. </dependency>
  989. <dependency>
  990. <groupId>org.apache.httpcomponents.core5</groupId>
  991. <artifactId>httpcore5-h2</artifactId>
  992. <version>${httpcore5.version}</version>
  993. </dependency>
  994. <dependency>
  995. <groupId>org.apache.httpcomponents.core5</groupId>
  996. <artifactId>httpcore5-reactive</artifactId>
  997. <version>${httpcore5.version}</version>
  998. </dependency>
  999. <dependency>
  1000. <groupId>org.influxdb</groupId>
  1001. <artifactId>influxdb-java</artifactId>
  1002. <version>${influxdb-java.version}</version>
  1003. </dependency>
  1004. <dependency>
  1005. <groupId>jakarta.activation</groupId>
  1006. <artifactId>jakarta.activation-api</artifactId>
  1007. <version>${jakarta-activation.version}</version>
  1008. </dependency>
  1009. <dependency>
  1010. <groupId>jakarta.annotation</groupId>
  1011. <artifactId>jakarta.annotation-api</artifactId>
  1012. <version>${jakarta-annotation.version}</version>
  1013. </dependency>
  1014. <dependency>
  1015. <groupId>jakarta.jms</groupId>
  1016. <artifactId>jakarta.jms-api</artifactId>
  1017. <version>${jakarta-jms.version}</version>
  1018. </dependency>
  1019. <dependency>
  1020. <groupId>jakarta.json</groupId>
  1021. <artifactId>jakarta.json-api</artifactId>
  1022. <version>${jakarta-json.version}</version>
  1023. </dependency>
  1024. <dependency>
  1025. <groupId>jakarta.json.bind</groupId>
  1026. <artifactId>jakarta.json.bind-api</artifactId>
  1027. <version>${jakarta-json-bind.version}</version>
  1028. </dependency>
  1029. <dependency>
  1030. <groupId>jakarta.mail</groupId>
  1031. <artifactId>jakarta.mail-api</artifactId>
  1032. <version>${jakarta-mail.version}</version>
  1033. </dependency>
  1034. <dependency>
  1035. <groupId>jakarta.management.j2ee</groupId>
  1036. <artifactId>jakarta.management.j2ee-api</artifactId>
  1037. <version>${jakarta-management.version}</version>
  1038. </dependency>
  1039. <dependency>
  1040. <groupId>jakarta.persistence</groupId>
  1041. <artifactId>jakarta.persistence-api</artifactId>
  1042. <version>${jakarta-persistence.version}</version>
  1043. </dependency>
  1044. <dependency>
  1045. <groupId>jakarta.servlet</groupId>
  1046. <artifactId>jakarta.servlet-api</artifactId>
  1047. <version>${jakarta-servlet.version}</version>
  1048. </dependency>
  1049. <dependency>
  1050. <groupId>jakarta.servlet.jsp.jstl</groupId>
  1051. <artifactId>jakarta.servlet.jsp.jstl-api</artifactId>
  1052. <version>${jakarta-servlet-jsp-jstl.version}</version>
  1053. </dependency>
  1054. <dependency>
  1055. <groupId>jakarta.transaction</groupId>
  1056. <artifactId>jakarta.transaction-api</artifactId>
  1057. <version>${jakarta-transaction.version}</version>
  1058. </dependency>
  1059. <dependency>
  1060. <groupId>jakarta.validation</groupId>
  1061. <artifactId>jakarta.validation-api</artifactId>
  1062. <version>${jakarta-validation.version}</version>
  1063. </dependency>
  1064. <dependency>
  1065. <groupId>jakarta.websocket</groupId>
  1066. <artifactId>jakarta.websocket-api</artifactId>
  1067. <version>${jakarta-websocket.version}</version>
  1068. </dependency>
  1069. <dependency>
  1070. <groupId>jakarta.websocket</groupId>
  1071. <artifactId>jakarta.websocket-client-api</artifactId>
  1072. <version>${jakarta-websocket.version}</version>
  1073. </dependency>
  1074. <dependency>
  1075. <groupId>jakarta.ws.rs</groupId>
  1076. <artifactId>jakarta.ws.rs-api</artifactId>
  1077. <version>${jakarta-ws-rs.version}</version>
  1078. </dependency>
  1079. <dependency>
  1080. <groupId>jakarta.xml.bind</groupId>
  1081. <artifactId>jakarta.xml.bind-api</artifactId>
  1082. <version>${jakarta-xml-bind.version}</version>
  1083. </dependency>
  1084. <dependency>
  1085. <groupId>jakarta.xml.soap</groupId>
  1086. <artifactId>jakarta.xml.soap-api</artifactId>
  1087. <version>${jakarta-xml-soap.version}</version>
  1088. </dependency>
  1089. <dependency>
  1090. <groupId>jakarta.xml.ws</groupId>
  1091. <artifactId>jakarta.xml.ws-api</artifactId>
  1092. <version>${jakarta-xml-ws.version}</version>
  1093. </dependency>
  1094. <dependency>
  1095. <groupId>org.codehaus.janino</groupId>
  1096. <artifactId>commons-compiler</artifactId>
  1097. <version>${janino.version}</version>
  1098. </dependency>
  1099. <dependency>
  1100. <groupId>org.codehaus.janino</groupId>
  1101. <artifactId>commons-compiler-jdk</artifactId>
  1102. <version>${janino.version}</version>
  1103. </dependency>
  1104. <dependency>
  1105. <groupId>org.codehaus.janino</groupId>
  1106. <artifactId>janino</artifactId>
  1107. <version>${janino.version}</version>
  1108. </dependency>
  1109. <dependency>
  1110. <groupId>javax.cache</groupId>
  1111. <artifactId>cache-api</artifactId>
  1112. <version>${javax-cache.version}</version>
  1113. </dependency>
  1114. <dependency>
  1115. <groupId>javax.money</groupId>
  1116. <artifactId>money-api</artifactId>
  1117. <version>${javax-money.version}</version>
  1118. </dependency>
  1119. <dependency>
  1120. <groupId>jaxen</groupId>
  1121. <artifactId>jaxen</artifactId>
  1122. <version>${jaxen.version}</version>
  1123. </dependency>
  1124. <dependency>
  1125. <groupId>org.firebirdsql.jdbc</groupId>
  1126. <artifactId>jaybird</artifactId>
  1127. <version>${jaybird.version}</version>
  1128. </dependency>
  1129. <dependency>
  1130. <groupId>org.jboss.logging</groupId>
  1131. <artifactId>jboss-logging</artifactId>
  1132. <version>${jboss-logging.version}</version>
  1133. </dependency>
  1134. <dependency>
  1135. <groupId>org.jdom</groupId>
  1136. <artifactId>jdom2</artifactId>
  1137. <version>${jdom2.version}</version>
  1138. </dependency>
  1139. <dependency>
  1140. <groupId>redis.clients</groupId>
  1141. <artifactId>jedis</artifactId>
  1142. <version>${jedis.version}</version>
  1143. </dependency>
  1144. <dependency>
  1145. <groupId>org.eclipse.jetty</groupId>
  1146. <artifactId>jetty-reactive-httpclient</artifactId>
  1147. <version>${jetty-reactive-httpclient.version}</version>
  1148. </dependency>
  1149. <dependency>
  1150. <groupId>com.samskivert</groupId>
  1151. <artifactId>jmustache</artifactId>
  1152. <version>${jmustache.version}</version>
  1153. </dependency>
  1154. <dependency>
  1155. <groupId>org.jooq</groupId>
  1156. <artifactId>jooq</artifactId>
  1157. <version>${jooq.version}</version>
  1158. </dependency>
  1159. <dependency>
  1160. <groupId>org.jooq</groupId>
  1161. <artifactId>jooq-codegen</artifactId>
  1162. <version>${jooq.version}</version>
  1163. </dependency>
  1164. <dependency>
  1165. <groupId>org.jooq</groupId>
  1166. <artifactId>jooq-kotlin</artifactId>
  1167. <version>${jooq.version}</version>
  1168. </dependency>
  1169. <dependency>
  1170. <groupId>org.jooq</groupId>
  1171. <artifactId>jooq-meta</artifactId>
  1172. <version>${jooq.version}</version>
  1173. </dependency>
  1174. <dependency>
  1175. <groupId>com.jayway.jsonpath</groupId>
  1176. <artifactId>json-path</artifactId>
  1177. <version>${json-path.version}</version>
  1178. </dependency>
  1179. <dependency>
  1180. <groupId>com.jayway.jsonpath</groupId>
  1181. <artifactId>json-path-assert</artifactId>
  1182. <version>${json-path.version}</version>
  1183. </dependency>
  1184. <dependency>
  1185. <groupId>net.minidev</groupId>
  1186. <artifactId>json-smart</artifactId>
  1187. <version>${json-smart.version}</version>
  1188. </dependency>
  1189. <dependency>
  1190. <groupId>org.skyscreamer</groupId>
  1191. <artifactId>jsonassert</artifactId>
  1192. <version>${jsonassert.version}</version>
  1193. </dependency>
  1194. <dependency>
  1195. <groupId>net.sourceforge.jtds</groupId>
  1196. <artifactId>jtds</artifactId>
  1197. <version>${jtds.version}</version>
  1198. </dependency>
  1199. <dependency>
  1200. <groupId>junit</groupId>
  1201. <artifactId>junit</artifactId>
  1202. <version>${junit.version}</version>
  1203. </dependency>
  1204. <dependency>
  1205. <groupId>org.apache.kafka</groupId>
  1206. <artifactId>connect</artifactId>
  1207. <version>${kafka.version}</version>
  1208. </dependency>
  1209. <dependency>
  1210. <groupId>org.apache.kafka</groupId>
  1211. <artifactId>connect-api</artifactId>
  1212. <version>${kafka.version}</version>
  1213. </dependency>
  1214. <dependency>
  1215. <groupId>org.apache.kafka</groupId>
  1216. <artifactId>connect-basic-auth-extension</artifactId>
  1217. <version>${kafka.version}</version>
  1218. </dependency>
  1219. <dependency>
  1220. <groupId>org.apache.kafka</groupId>
  1221. <artifactId>connect-file</artifactId>
  1222. <version>${kafka.version}</version>
  1223. </dependency>
  1224. <dependency>
  1225. <groupId>org.apache.kafka</groupId>
  1226. <artifactId>connect-json</artifactId>
  1227. <version>${kafka.version}</version>
  1228. </dependency>
  1229. <dependency>
  1230. <groupId>org.apache.kafka</groupId>
  1231. <artifactId>connect-mirror</artifactId>
  1232. <version>${kafka.version}</version>
  1233. </dependency>
  1234. <dependency>
  1235. <groupId>org.apache.kafka</groupId>
  1236. <artifactId>connect-mirror-client</artifactId>
  1237. <version>${kafka.version}</version>
  1238. </dependency>
  1239. <dependency>
  1240. <groupId>org.apache.kafka</groupId>
  1241. <artifactId>connect-runtime</artifactId>
  1242. <version>${kafka.version}</version>
  1243. </dependency>
  1244. <dependency>
  1245. <groupId>org.apache.kafka</groupId>
  1246. <artifactId>connect-transforms</artifactId>
  1247. <version>${kafka.version}</version>
  1248. </dependency>
  1249. <dependency>
  1250. <groupId>org.apache.kafka</groupId>
  1251. <artifactId>generator</artifactId>
  1252. <version>${kafka.version}</version>
  1253. </dependency>
  1254. <dependency>
  1255. <groupId>org.apache.kafka</groupId>
  1256. <artifactId>kafka-clients</artifactId>
  1257. <version>${kafka.version}</version>
  1258. </dependency>
  1259. <dependency>
  1260. <groupId>org.apache.kafka</groupId>
  1261. <artifactId>kafka-clients</artifactId>
  1262. <version>${kafka.version}</version>
  1263. <classifier>test</classifier>
  1264. </dependency>
  1265. <dependency>
  1266. <groupId>org.apache.kafka</groupId>
  1267. <artifactId>kafka-log4j-appender</artifactId>
  1268. <version>${kafka.version}</version>
  1269. </dependency>
  1270. <dependency>
  1271. <groupId>org.apache.kafka</groupId>
  1272. <artifactId>kafka-metadata</artifactId>
  1273. <version>${kafka.version}</version>
  1274. </dependency>
  1275. <dependency>
  1276. <groupId>org.apache.kafka</groupId>
  1277. <artifactId>kafka-raft</artifactId>
  1278. <version>${kafka.version}</version>
  1279. </dependency>
  1280. <dependency>
  1281. <groupId>org.apache.kafka</groupId>
  1282. <artifactId>kafka-server-common</artifactId>
  1283. <version>${kafka.version}</version>
  1284. </dependency>
  1285. <dependency>
  1286. <groupId>org.apache.kafka</groupId>
  1287. <artifactId>kafka-shell</artifactId>
  1288. <version>${kafka.version}</version>
  1289. </dependency>
  1290. <dependency>
  1291. <groupId>org.apache.kafka</groupId>
  1292. <artifactId>kafka-storage</artifactId>
  1293. <version>${kafka.version}</version>
  1294. </dependency>
  1295. <dependency>
  1296. <groupId>org.apache.kafka</groupId>
  1297. <artifactId>kafka-storage-api</artifactId>
  1298. <version>${kafka.version}</version>
  1299. </dependency>
  1300. <dependency>
  1301. <groupId>org.apache.kafka</groupId>
  1302. <artifactId>kafka-streams</artifactId>
  1303. <version>${kafka.version}</version>
  1304. </dependency>
  1305. <dependency>
  1306. <groupId>org.apache.kafka</groupId>
  1307. <artifactId>kafka-streams-scala_2.12</artifactId>
  1308. <version>${kafka.version}</version>
  1309. </dependency>
  1310. <dependency>
  1311. <groupId>org.apache.kafka</groupId>
  1312. <artifactId>kafka-streams-scala_2.13</artifactId>
  1313. <version>${kafka.version}</version>
  1314. </dependency>
  1315. <dependency>
  1316. <groupId>org.apache.kafka</groupId>
  1317. <artifactId>kafka-streams-test-utils</artifactId>
  1318. <version>${kafka.version}</version>
  1319. </dependency>
  1320. <dependency>
  1321. <groupId>org.apache.kafka</groupId>
  1322. <artifactId>kafka-tools</artifactId>
  1323. <version>${kafka.version}</version>
  1324. </dependency>
  1325. <dependency>
  1326. <groupId>org.apache.kafka</groupId>
  1327. <artifactId>kafka_2.12</artifactId>
  1328. <version>${kafka.version}</version>
  1329. </dependency>
  1330. <dependency>
  1331. <groupId>org.apache.kafka</groupId>
  1332. <artifactId>kafka_2.12</artifactId>
  1333. <version>${kafka.version}</version>
  1334. <classifier>test</classifier>
  1335. </dependency>
  1336. <dependency>
  1337. <groupId>org.apache.kafka</groupId>
  1338. <artifactId>kafka_2.13</artifactId>
  1339. <version>${kafka.version}</version>
  1340. </dependency>
  1341. <dependency>
  1342. <groupId>org.apache.kafka</groupId>
  1343. <artifactId>kafka_2.13</artifactId>
  1344. <version>${kafka.version}</version>
  1345. <classifier>test</classifier>
  1346. </dependency>
  1347. <dependency>
  1348. <groupId>org.apache.kafka</groupId>
  1349. <artifactId>trogdor</artifactId>
  1350. <version>${kafka.version}</version>
  1351. </dependency>
  1352. <dependency>
  1353. <groupId>io.lettuce</groupId>
  1354. <artifactId>lettuce-core</artifactId>
  1355. <version>${lettuce.version}</version>
  1356. </dependency>
  1357. <dependency>
  1358. <groupId>org.liquibase</groupId>
  1359. <artifactId>liquibase-cdi</artifactId>
  1360. <version>${liquibase.version}</version>
  1361. </dependency>
  1362. <dependency>
  1363. <groupId>org.liquibase</groupId>
  1364. <artifactId>liquibase-core</artifactId>
  1365. <version>${liquibase.version}</version>
  1366. </dependency>
  1367. <dependency>
  1368. <groupId>ch.qos.logback</groupId>
  1369. <artifactId>logback-access</artifactId>
  1370. <version>${logback.version}</version>
  1371. </dependency>
  1372. <dependency>
  1373. <groupId>ch.qos.logback</groupId>
  1374. <artifactId>logback-classic</artifactId>
  1375. <version>${logback.version}</version>
  1376. </dependency>
  1377. <dependency>
  1378. <groupId>ch.qos.logback</groupId>
  1379. <artifactId>logback-core</artifactId>
  1380. <version>${logback.version}</version>
  1381. </dependency>
  1382. <dependency>
  1383. <groupId>org.mapstruct</groupId>
  1384. <artifactId>mapstruct</artifactId>
  1385. <version>${mapstruct.version}</version>
  1386. </dependency>
  1387. <dependency>
  1388. <groupId>org.mapstruct</groupId>
  1389. <artifactId>mapstruct-processor</artifactId>
  1390. <version>${mapstruct.version}</version>
  1391. </dependency>
  1392. <dependency>
  1393. <groupId>org.projectlombok</groupId>
  1394. <artifactId>lombok</artifactId>
  1395. <version>${lombok.version}</version>
  1396. </dependency>
  1397. <dependency>
  1398. <groupId>org.mariadb.jdbc</groupId>
  1399. <artifactId>mariadb-java-client</artifactId>
  1400. <version>${mariadb.version}</version>
  1401. </dependency>
  1402. <dependency>
  1403. <groupId>io.micrometer</groupId>
  1404. <artifactId>micrometer-registry-stackdriver</artifactId>
  1405. <version>${micrometer.version}</version>
  1406. <exclusions>
  1407. <exclusion>
  1408. <groupId>javax.annotation</groupId>
  1409. <artifactId>javax.annotation-api</artifactId>
  1410. </exclusion>
  1411. </exclusions>
  1412. </dependency>
  1413. <dependency>
  1414. <groupId>org.mongodb</groupId>
  1415. <artifactId>bson</artifactId>
  1416. <version>${mongodb.version}</version>
  1417. </dependency>
  1418. <dependency>
  1419. <groupId>org.mongodb</groupId>
  1420. <artifactId>bson-record-codec</artifactId>
  1421. <version>${mongodb.version}</version>
  1422. </dependency>
  1423. <dependency>
  1424. <groupId>org.mongodb</groupId>
  1425. <artifactId>mongodb-driver-core</artifactId>
  1426. <version>${mongodb.version}</version>
  1427. </dependency>
  1428. <dependency>
  1429. <groupId>org.mongodb</groupId>
  1430. <artifactId>mongodb-driver-legacy</artifactId>
  1431. <version>${mongodb.version}</version>
  1432. </dependency>
  1433. <dependency>
  1434. <groupId>org.mongodb</groupId>
  1435. <artifactId>mongodb-driver-reactivestreams</artifactId>
  1436. <version>${mongodb.version}</version>
  1437. </dependency>
  1438. <dependency>
  1439. <groupId>org.mongodb</groupId>
  1440. <artifactId>mongodb-driver-sync</artifactId>
  1441. <version>${mongodb.version}</version>
  1442. </dependency>
  1443. <dependency>
  1444. <groupId>com.microsoft.sqlserver</groupId>
  1445. <artifactId>mssql-jdbc</artifactId>
  1446. <version>${mssql-jdbc.version}</version>
  1447. </dependency>
  1448. <dependency>
  1449. <groupId>com.mysql</groupId>
  1450. <artifactId>mysql-connector-j</artifactId>
  1451. <version>${mysql.version}</version>
  1452. <exclusions>
  1453. <exclusion>
  1454. <groupId>com.google.protobuf</groupId>
  1455. <artifactId>protobuf-java</artifactId>
  1456. </exclusion>
  1457. </exclusions>
  1458. </dependency>
  1459. <dependency>
  1460. <groupId>net.sourceforge.nekohtml</groupId>
  1461. <artifactId>nekohtml</artifactId>
  1462. <version>${nekohtml.version}</version>
  1463. </dependency>
  1464. <dependency>
  1465. <groupId>org.neo4j.driver</groupId>
  1466. <artifactId>neo4j-java-driver</artifactId>
  1467. <version>${neo4j-java-driver.version}</version>
  1468. </dependency>
  1469. <dependency>
  1470. <groupId>com.oracle.database.r2dbc</groupId>
  1471. <artifactId>oracle-r2dbc</artifactId>
  1472. <version>${oracle-r2dbc.version}</version>
  1473. </dependency>
  1474. <dependency>
  1475. <groupId>org.messaginghub</groupId>
  1476. <artifactId>pooled-jms</artifactId>
  1477. <version>${pooled-jms.version}</version>
  1478. </dependency>
  1479. <dependency>
  1480. <groupId>org.postgresql</groupId>
  1481. <artifactId>postgresql</artifactId>
  1482. <version>${postgresql.version}</version>
  1483. </dependency>
  1484. <dependency>
  1485. <groupId>org.quartz-scheduler</groupId>
  1486. <artifactId>quartz</artifactId>
  1487. <version>${quartz.version}</version>
  1488. <exclusions>
  1489. <exclusion>
  1490. <groupId>com.mchange</groupId>
  1491. <artifactId>c3p0</artifactId>
  1492. </exclusion>
  1493. <exclusion>
  1494. <groupId>com.zaxxer</groupId>
  1495. <artifactId>*</artifactId>
  1496. </exclusion>
  1497. </exclusions>
  1498. </dependency>
  1499. <dependency>
  1500. <groupId>org.quartz-scheduler</groupId>
  1501. <artifactId>quartz-jobs</artifactId>
  1502. <version>${quartz.version}</version>
  1503. </dependency>
  1504. <dependency>
  1505. <groupId>io.r2dbc</groupId>
  1506. <artifactId>r2dbc-h2</artifactId>
  1507. <version>${r2dbc-h2.version}</version>
  1508. </dependency>
  1509. <dependency>
  1510. <groupId>org.mariadb</groupId>
  1511. <artifactId>r2dbc-mariadb</artifactId>
  1512. <version>${r2dbc-mariadb.version}</version>
  1513. </dependency>
  1514. <dependency>
  1515. <groupId>io.r2dbc</groupId>
  1516. <artifactId>r2dbc-mssql</artifactId>
  1517. <version>${r2dbc-mssql.version}</version>
  1518. </dependency>
  1519. <dependency>
  1520. <groupId>io.asyncer</groupId>
  1521. <artifactId>r2dbc-mysql</artifactId>
  1522. <version>${r2dbc-mysql.version}</version>
  1523. </dependency>
  1524. <dependency>
  1525. <groupId>io.r2dbc</groupId>
  1526. <artifactId>r2dbc-pool</artifactId>
  1527. <version>${r2dbc-pool.version}</version>
  1528. </dependency>
  1529. <dependency>
  1530. <groupId>org.postgresql</groupId>
  1531. <artifactId>r2dbc-postgresql</artifactId>
  1532. <version>${r2dbc-postgresql.version}</version>
  1533. </dependency>
  1534. <dependency>
  1535. <groupId>io.r2dbc</groupId>
  1536. <artifactId>r2dbc-proxy</artifactId>
  1537. <version>${r2dbc-proxy.version}</version>
  1538. </dependency>
  1539. <dependency>
  1540. <groupId>io.r2dbc</groupId>
  1541. <artifactId>r2dbc-spi</artifactId>
  1542. <version>${r2dbc-spi.version}</version>
  1543. </dependency>
  1544. <dependency>
  1545. <groupId>com.rabbitmq</groupId>
  1546. <artifactId>amqp-client</artifactId>
  1547. <version>${rabbit-amqp-client.version}</version>
  1548. </dependency>
  1549. <dependency>
  1550. <groupId>com.rabbitmq</groupId>
  1551. <artifactId>stream-client</artifactId>
  1552. <version>${rabbit-stream-client.version}</version>
  1553. </dependency>
  1554. <dependency>
  1555. <groupId>org.reactivestreams</groupId>
  1556. <artifactId>reactive-streams</artifactId>
  1557. <version>${reactive-streams.version}</version>
  1558. </dependency>
  1559. <dependency>
  1560. <groupId>io.reactivex.rxjava3</groupId>
  1561. <artifactId>rxjava</artifactId>
  1562. <version>${rxjava3.version}</version>
  1563. </dependency>
  1564. <dependency>
  1565. <groupId>org.springframework.boot</groupId>
  1566. <artifactId>spring-boot</artifactId>
  1567. <version>3.1.0</version>
  1568. </dependency>
  1569. <dependency>
  1570. <groupId>org.springframework.boot</groupId>
  1571. <artifactId>spring-boot-test</artifactId>
  1572. <version>3.1.0</version>
  1573. </dependency>
  1574. <dependency>
  1575. <groupId>org.springframework.boot</groupId>
  1576. <artifactId>spring-boot-test-autoconfigure</artifactId>
  1577. <version>3.1.0</version>
  1578. </dependency>
  1579. <dependency>
  1580. <groupId>org.springframework.boot</groupId>
  1581. <artifactId>spring-boot-testcontainers</artifactId>
  1582. <version>3.1.0</version>
  1583. </dependency>
  1584. <dependency>
  1585. <groupId>org.springframework.boot</groupId>
  1586. <artifactId>spring-boot-actuator</artifactId>
  1587. <version>3.1.0</version>
  1588. </dependency>
  1589. <dependency>
  1590. <groupId>org.springframework.boot</groupId>
  1591. <artifactId>spring-boot-actuator-autoconfigure</artifactId>
  1592. <version>3.1.0</version>
  1593. </dependency>
  1594. <dependency>
  1595. <groupId>org.springframework.boot</groupId>
  1596. <artifactId>spring-boot-autoconfigure</artifactId>
  1597. <version>3.1.0</version>
  1598. </dependency>
  1599. <dependency>
  1600. <groupId>org.springframework.boot</groupId>
  1601. <artifactId>spring-boot-autoconfigure-processor</artifactId>
  1602. <version>3.1.0</version>
  1603. </dependency>
  1604. <dependency>
  1605. <groupId>org.springframework.boot</groupId>
  1606. <artifactId>spring-boot-buildpack-platform</artifactId>
  1607. <version>3.1.0</version>
  1608. </dependency>
  1609. <dependency>
  1610. <groupId>org.springframework.boot</groupId>
  1611. <artifactId>spring-boot-configuration-metadata</artifactId>
  1612. <version>3.1.0</version>
  1613. </dependency>
  1614. <dependency>
  1615. <groupId>org.springframework.boot</groupId>
  1616. <artifactId>spring-boot-configuration-processor</artifactId>
  1617. <version>3.1.0</version>
  1618. </dependency>
  1619. <dependency>
  1620. <groupId>org.springframework.boot</groupId>
  1621. <artifactId>spring-boot-devtools</artifactId>
  1622. <version>3.1.0</version>
  1623. </dependency>
  1624. <dependency>
  1625. <groupId>org.springframework.boot</groupId>
  1626. <artifactId>spring-boot-docker-compose</artifactId>
  1627. <version>3.1.0</version>
  1628. </dependency>
  1629. <dependency>
  1630. <groupId>org.springframework.boot</groupId>
  1631. <artifactId>spring-boot-jarmode-layertools</artifactId>
  1632. <version>3.1.0</version>
  1633. </dependency>
  1634. <dependency>
  1635. <groupId>org.springframework.boot</groupId>
  1636. <artifactId>spring-boot-loader</artifactId>
  1637. <version>3.1.0</version>
  1638. </dependency>
  1639. <dependency>
  1640. <groupId>org.springframework.boot</groupId>
  1641. <artifactId>spring-boot-loader-tools</artifactId>
  1642. <version>3.1.0</version>
  1643. </dependency>
  1644. <dependency>
  1645. <groupId>org.springframework.boot</groupId>
  1646. <artifactId>spring-boot-properties-migrator</artifactId>
  1647. <version>3.1.0</version>
  1648. </dependency>
  1649. <dependency>
  1650. <groupId>org.springframework.boot</groupId>
  1651. <artifactId>spring-boot-starter</artifactId>
  1652. <version>3.1.0</version>
  1653. </dependency>
  1654. <dependency>
  1655. <groupId>org.springframework.boot</groupId>
  1656. <artifactId>spring-boot-starter-activemq</artifactId>
  1657. <version>3.1.0</version>
  1658. </dependency>
  1659. <dependency>
  1660. <groupId>org.springframework.boot</groupId>
  1661. <artifactId>spring-boot-starter-actuator</artifactId>
  1662. <version>3.1.0</version>
  1663. </dependency>
  1664. <dependency>
  1665. <groupId>org.springframework.boot</groupId>
  1666. <artifactId>spring-boot-starter-amqp</artifactId>
  1667. <version>3.1.0</version>
  1668. </dependency>
  1669. <dependency>
  1670. <groupId>org.springframework.boot</groupId>
  1671. <artifactId>spring-boot-starter-aop</artifactId>
  1672. <version>3.1.0</version>
  1673. </dependency>
  1674. <dependency>
  1675. <groupId>org.springframework.boot</groupId>
  1676. <artifactId>spring-boot-starter-artemis</artifactId>
  1677. <version>3.1.0</version>
  1678. </dependency>
  1679. <dependency>
  1680. <groupId>org.springframework.boot</groupId>
  1681. <artifactId>spring-boot-starter-batch</artifactId>
  1682. <version>3.1.0</version>
  1683. </dependency>
  1684. <dependency>
  1685. <groupId>org.springframework.boot</groupId>
  1686. <artifactId>spring-boot-starter-cache</artifactId>
  1687. <version>3.1.0</version>
  1688. </dependency>
  1689. <dependency>
  1690. <groupId>org.springframework.boot</groupId>
  1691. <artifactId>spring-boot-starter-data-cassandra</artifactId>
  1692. <version>3.1.0</version>
  1693. </dependency>
  1694. <dependency>
  1695. <groupId>org.springframework.boot</groupId>
  1696. <artifactId>spring-boot-starter-data-cassandra-reactive</artifactId>
  1697. <version>3.1.0</version>
  1698. </dependency>
  1699. <dependency>
  1700. <groupId>org.springframework.boot</groupId>
  1701. <artifactId>spring-boot-starter-data-couchbase</artifactId>
  1702. <version>3.1.0</version>
  1703. </dependency>
  1704. <dependency>
  1705. <groupId>org.springframework.boot</groupId>
  1706. <artifactId>spring-boot-starter-data-couchbase-reactive</artifactId>
  1707. <version>3.1.0</version>
  1708. </dependency>
  1709. <dependency>
  1710. <groupId>org.springframework.boot</groupId>
  1711. <artifactId>spring-boot-starter-data-elasticsearch</artifactId>
  1712. <version>3.1.0</version>
  1713. </dependency>
  1714. <dependency>
  1715. <groupId>org.springframework.boot</groupId>
  1716. <artifactId>spring-boot-starter-data-jdbc</artifactId>
  1717. <version>3.1.0</version>
  1718. </dependency>
  1719. <dependency>
  1720. <groupId>org.springframework.boot</groupId>
  1721. <artifactId>spring-boot-starter-data-jpa</artifactId>
  1722. <version>3.1.0</version>
  1723. </dependency>
  1724. <dependency>
  1725. <groupId>org.springframework.boot</groupId>
  1726. <artifactId>spring-boot-starter-data-ldap</artifactId>
  1727. <version>3.1.0</version>
  1728. </dependency>
  1729. <dependency>
  1730. <groupId>org.springframework.boot</groupId>
  1731. <artifactId>spring-boot-starter-data-mongodb</artifactId>
  1732. <version>3.1.0</version>
  1733. </dependency>
  1734. <dependency>
  1735. <groupId>org.springframework.boot</groupId>
  1736. <artifactId>spring-boot-starter-data-mongodb-reactive</artifactId>
  1737. <version>3.1.0</version>
  1738. </dependency>
  1739. <dependency>
  1740. <groupId>org.springframework.boot</groupId>
  1741. <artifactId>spring-boot-starter-data-r2dbc</artifactId>
  1742. <version>3.1.0</version>
  1743. </dependency>
  1744. <dependency>
  1745. <groupId>org.springframework.boot</groupId>
  1746. <artifactId>spring-boot-starter-data-redis</artifactId>
  1747. <version>3.1.0</version>
  1748. </dependency>
  1749. <dependency>
  1750. <groupId>org.springframework.boot</groupId>
  1751. <artifactId>spring-boot-starter-data-redis-reactive</artifactId>
  1752. <version>3.1.0</version>
  1753. </dependency>
  1754. <dependency>
  1755. <groupId>org.springframework.boot</groupId>
  1756. <artifactId>spring-boot-starter-data-neo4j</artifactId>
  1757. <version>3.1.0</version>
  1758. </dependency>
  1759. <dependency>
  1760. <groupId>org.springframework.boot</groupId>
  1761. <artifactId>spring-boot-starter-data-rest</artifactId>
  1762. <version>3.1.0</version>
  1763. </dependency>
  1764. <dependency>
  1765. <groupId>org.springframework.boot</groupId>
  1766. <artifactId>spring-boot-starter-freemarker</artifactId>
  1767. <version>3.1.0</version>
  1768. </dependency>
  1769. <dependency>
  1770. <groupId>org.springframework.boot</groupId>
  1771. <artifactId>spring-boot-starter-graphql</artifactId>
  1772. <version>3.1.0</version>
  1773. </dependency>
  1774. <dependency>
  1775. <groupId>org.springframework.boot</groupId>
  1776. <artifactId>spring-boot-starter-groovy-templates</artifactId>
  1777. <version>3.1.0</version>
  1778. </dependency>
  1779. <dependency>
  1780. <groupId>org.springframework.boot</groupId>
  1781. <artifactId>spring-boot-starter-hateoas</artifactId>
  1782. <version>3.1.0</version>
  1783. </dependency>
  1784. <dependency>
  1785. <groupId>org.springframework.boot</groupId>
  1786. <artifactId>spring-boot-starter-integration</artifactId>
  1787. <version>3.1.0</version>
  1788. </dependency>
  1789. <dependency>
  1790. <groupId>org.springframework.boot</groupId>
  1791. <artifactId>spring-boot-starter-jdbc</artifactId>
  1792. <version>3.1.0</version>
  1793. </dependency>
  1794. <dependency>
  1795. <groupId>org.springframework.boot</groupId>
  1796. <artifactId>spring-boot-starter-jersey</artifactId>
  1797. <version>3.1.0</version>
  1798. </dependency>
  1799. <dependency>
  1800. <groupId>org.springframework.boot</groupId>
  1801. <artifactId>spring-boot-starter-jetty</artifactId>
  1802. <version>3.1.0</version>
  1803. </dependency>
  1804. <dependency>
  1805. <groupId>org.springframework.boot</groupId>
  1806. <artifactId>spring-boot-starter-jooq</artifactId>
  1807. <version>3.1.0</version>
  1808. </dependency>
  1809. <dependency>
  1810. <groupId>org.springframework.boot</groupId>
  1811. <artifactId>spring-boot-starter-json</artifactId>
  1812. <version>3.1.0</version>
  1813. </dependency>
  1814. <dependency>
  1815. <groupId>org.springframework.boot</groupId>
  1816. <artifactId>spring-boot-starter-log4j2</artifactId>
  1817. <version>3.1.0</version>
  1818. </dependency>
  1819. <dependency>
  1820. <groupId>org.springframework.boot</groupId>
  1821. <artifactId>spring-boot-starter-logging</artifactId>
  1822. <version>3.1.0</version>
  1823. </dependency>
  1824. <dependency>
  1825. <groupId>org.springframework.boot</groupId>
  1826. <artifactId>spring-boot-starter-mail</artifactId>
  1827. <version>3.1.0</version>
  1828. </dependency>
  1829. <dependency>
  1830. <groupId>org.springframework.boot</groupId>
  1831. <artifactId>spring-boot-starter-mustache</artifactId>
  1832. <version>3.1.0</version>
  1833. </dependency>
  1834. <dependency>
  1835. <groupId>org.springframework.boot</groupId>
  1836. <artifactId>spring-boot-starter-oauth2-authorization-server</artifactId>
  1837. <version>3.1.0</version>
  1838. </dependency>
  1839. <dependency>
  1840. <groupId>org.springframework.boot</groupId>
  1841. <artifactId>spring-boot-starter-oauth2-client</artifactId>
  1842. <version>3.1.0</version>
  1843. </dependency>
  1844. <dependency>
  1845. <groupId>org.springframework.boot</groupId>
  1846. <artifactId>spring-boot-starter-oauth2-resource-server</artifactId>
  1847. <version>3.1.0</version>
  1848. </dependency>
  1849. <dependency>
  1850. <groupId>org.springframework.boot</groupId>
  1851. <artifactId>spring-boot-starter-quartz</artifactId>
  1852. <version>3.1.0</version>
  1853. </dependency>
  1854. <dependency>
  1855. <groupId>org.springframework.boot</groupId>
  1856. <artifactId>spring-boot-starter-reactor-netty</artifactId>
  1857. <version>3.1.0</version>
  1858. </dependency>
  1859. <dependency>
  1860. <groupId>org.springframework.boot</groupId>
  1861. <artifactId>spring-boot-starter-rsocket</artifactId>
  1862. <version>3.1.0</version>
  1863. </dependency>
  1864. <dependency>
  1865. <groupId>org.springframework.boot</groupId>
  1866. <artifactId>spring-boot-starter-security</artifactId>
  1867. <version>3.1.0</version>
  1868. </dependency>
  1869. <dependency>
  1870. <groupId>org.springframework.boot</groupId>
  1871. <artifactId>spring-boot-starter-test</artifactId>
  1872. <version>3.1.0</version>
  1873. </dependency>
  1874. <dependency>
  1875. <groupId>org.springframework.boot</groupId>
  1876. <artifactId>spring-boot-starter-thymeleaf</artifactId>
  1877. <version>3.1.0</version>
  1878. </dependency>
  1879. <dependency>
  1880. <groupId>org.springframework.boot</groupId>
  1881. <artifactId>spring-boot-starter-tomcat</artifactId>
  1882. <version>3.1.0</version>
  1883. </dependency>
  1884. <dependency>
  1885. <groupId>org.springframework.boot</groupId>
  1886. <artifactId>spring-boot-starter-undertow</artifactId>
  1887. <version>3.1.0</version>
  1888. </dependency>
  1889. <dependency>
  1890. <groupId>org.springframework.boot</groupId>
  1891. <artifactId>spring-boot-starter-validation</artifactId>
  1892. <version>3.1.0</version>
  1893. </dependency>
  1894. <dependency>
  1895. <groupId>org.springframework.boot</groupId>
  1896. <artifactId>spring-boot-starter-web</artifactId>
  1897. <version>3.1.0</version>
  1898. </dependency>
  1899. <dependency>
  1900. <groupId>org.springframework.boot</groupId>
  1901. <artifactId>spring-boot-starter-webflux</artifactId>
  1902. <version>3.1.0</version>
  1903. </dependency>
  1904. <dependency>
  1905. <groupId>org.springframework.boot</groupId>
  1906. <artifactId>spring-boot-starter-websocket</artifactId>
  1907. <version>3.1.0</version>
  1908. </dependency>
  1909. <dependency>
  1910. <groupId>org.springframework.boot</groupId>
  1911. <artifactId>spring-boot-starter-web-services</artifactId>
  1912. <version>3.1.0</version>
  1913. </dependency>
  1914. <dependency>
  1915. <groupId>com.sun.xml.messaging.saaj</groupId>
  1916. <artifactId>saaj-impl</artifactId>
  1917. <version>${saaj-impl.version}</version>
  1918. </dependency>
  1919. <dependency>
  1920. <groupId>org.seleniumhq.selenium</groupId>
  1921. <artifactId>lift</artifactId>
  1922. <version>${selenium.version}</version>
  1923. </dependency>
  1924. <dependency>
  1925. <groupId>org.seleniumhq.selenium</groupId>
  1926. <artifactId>selenium-api</artifactId>
  1927. <version>${selenium.version}</version>
  1928. </dependency>
  1929. <dependency>
  1930. <groupId>org.seleniumhq.selenium</groupId>
  1931. <artifactId>selenium-chrome-driver</artifactId>
  1932. <version>${selenium.version}</version>
  1933. </dependency>
  1934. <dependency>
  1935. <groupId>org.seleniumhq.selenium</groupId>
  1936. <artifactId>selenium-chromium-driver</artifactId>
  1937. <version>${selenium.version}</version>
  1938. </dependency>
  1939. <dependency>
  1940. <groupId>org.seleniumhq.selenium</groupId>
  1941. <artifactId>selenium-devtools-v108</artifactId>
  1942. <version>${selenium.version}</version>
  1943. </dependency>
  1944. <dependency>
  1945. <groupId>org.seleniumhq.selenium</groupId>
  1946. <artifactId>selenium-devtools-v109</artifactId>
  1947. <version>${selenium.version}</version>
  1948. </dependency>
  1949. <dependency>
  1950. <groupId>org.seleniumhq.selenium</groupId>
  1951. <artifactId>selenium-devtools-v110</artifactId>
  1952. <version>${selenium.version}</version>
  1953. </dependency>
  1954. <dependency>
  1955. <groupId>org.seleniumhq.selenium</groupId>
  1956. <artifactId>selenium-devtools-v85</artifactId>
  1957. <version>${selenium.version}</version>
  1958. </dependency>
  1959. <dependency>
  1960. <groupId>org.seleniumhq.selenium</groupId>
  1961. <artifactId>selenium-edge-driver</artifactId>
  1962. <version>${selenium.version}</version>
  1963. </dependency>
  1964. <dependency>
  1965. <groupId>org.seleniumhq.selenium</groupId>
  1966. <artifactId>selenium-firefox-driver</artifactId>
  1967. <version>${selenium.version}</version>
  1968. </dependency>
  1969. <dependency>
  1970. <groupId>org.seleniumhq.selenium</groupId>
  1971. <artifactId>selenium-grid</artifactId>
  1972. <version>${selenium.version}</version>
  1973. </dependency>
  1974. <dependency>
  1975. <groupId>org.seleniumhq.selenium</groupId>
  1976. <artifactId>selenium-http</artifactId>
  1977. <version>${selenium.version}</version>
  1978. </dependency>
  1979. <dependency>
  1980. <groupId>org.seleniumhq.selenium</groupId>
  1981. <artifactId>selenium-http-jdk-client</artifactId>
  1982. <version>${selenium.version}</version>
  1983. </dependency>
  1984. <dependency>
  1985. <groupId>org.seleniumhq.selenium</groupId>
  1986. <artifactId>selenium-ie-driver</artifactId>
  1987. <version>${selenium.version}</version>
  1988. </dependency>
  1989. <dependency>
  1990. <groupId>org.seleniumhq.selenium</groupId>
  1991. <artifactId>selenium-java</artifactId>
  1992. <version>${selenium.version}</version>
  1993. </dependency>
  1994. <dependency>
  1995. <groupId>org.seleniumhq.selenium</groupId>
  1996. <artifactId>selenium-json</artifactId>
  1997. <version>${selenium.version}</version>
  1998. </dependency>
  1999. <dependency>
  2000. <groupId>org.seleniumhq.selenium</groupId>
  2001. <artifactId>selenium-manager</artifactId>
  2002. <version>${selenium.version}</version>
  2003. </dependency>
  2004. <dependency>
  2005. <groupId>org.seleniumhq.selenium</groupId>
  2006. <artifactId>selenium-remote-driver</artifactId>
  2007. <version>${selenium.version}</version>
  2008. </dependency>
  2009. <dependency>
  2010. <groupId>org.seleniumhq.selenium</groupId>
  2011. <artifactId>selenium-safari-driver</artifactId>
  2012. <version>${selenium.version}</version>
  2013. </dependency>
  2014. <dependency>
  2015. <groupId>org.seleniumhq.selenium</groupId>
  2016. <artifactId>selenium-session-map-jdbc</artifactId>
  2017. <version>${selenium.version}</version>
  2018. </dependency>
  2019. <dependency>
  2020. <groupId>org.seleniumhq.selenium</groupId>
  2021. <artifactId>selenium-session-map-redis</artifactId>
  2022. <version>${selenium.version}</version>
  2023. </dependency>
  2024. <dependency>
  2025. <groupId>org.seleniumhq.selenium</groupId>
  2026. <artifactId>selenium-support</artifactId>
  2027. <version>${selenium.version}</version>
  2028. </dependency>
  2029. <dependency>
  2030. <groupId>org.seleniumhq.selenium</groupId>
  2031. <artifactId>htmlunit-driver</artifactId>
  2032. <version>${selenium-htmlunit.version}</version>
  2033. </dependency>
  2034. <dependency>
  2035. <groupId>com.sendgrid</groupId>
  2036. <artifactId>sendgrid-java</artifactId>
  2037. <version>${sendgrid.version}</version>
  2038. </dependency>
  2039. <dependency>
  2040. <groupId>org.slf4j</groupId>
  2041. <artifactId>jcl-over-slf4j</artifactId>
  2042. <version>${slf4j.version}</version>
  2043. </dependency>
  2044. <dependency>
  2045. <groupId>org.slf4j</groupId>
  2046. <artifactId>jul-to-slf4j</artifactId>
  2047. <version>${slf4j.version}</version>
  2048. </dependency>
  2049. <dependency>
  2050. <groupId>org.slf4j</groupId>
  2051. <artifactId>log4j-over-slf4j</artifactId>
  2052. <version>${slf4j.version}</version>
  2053. </dependency>
  2054. <dependency>
  2055. <groupId>org.slf4j</groupId>
  2056. <artifactId>slf4j-api</artifactId>
  2057. <version>${slf4j.version}</version>
  2058. </dependency>
  2059. <dependency>
  2060. <groupId>org.slf4j</groupId>
  2061. <artifactId>slf4j-ext</artifactId>
  2062. <version>${slf4j.version}</version>
  2063. </dependency>
  2064. <dependency>
  2065. <groupId>org.slf4j</groupId>
  2066. <artifactId>slf4j-jdk-platform-logging</artifactId>
  2067. <version>${slf4j.version}</version>
  2068. </dependency>
  2069. <dependency>
  2070. <groupId>org.slf4j</groupId>
  2071. <artifactId>slf4j-jdk14</artifactId>
  2072. <version>${slf4j.version}</version>
  2073. </dependency>
  2074. <dependency>
  2075. <groupId>org.slf4j</groupId>
  2076. <artifactId>slf4j-log4j12</artifactId>
  2077. <version>${slf4j.version}</version>
  2078. </dependency>
  2079. <dependency>
  2080. <groupId>org.slf4j</groupId>
  2081. <artifactId>slf4j-nop</artifactId>
  2082. <version>${slf4j.version}</version>
  2083. </dependency>
  2084. <dependency>
  2085. <groupId>org.slf4j</groupId>
  2086. <artifactId>slf4j-reload4j</artifactId>
  2087. <version>${slf4j.version}</version>
  2088. </dependency>
  2089. <dependency>
  2090. <groupId>org.slf4j</groupId>
  2091. <artifactId>slf4j-simple</artifactId>
  2092. <version>${slf4j.version}</version>
  2093. </dependency>
  2094. <dependency>
  2095. <groupId>org.yaml</groupId>
  2096. <artifactId>snakeyaml</artifactId>
  2097. <version>${snakeyaml.version}</version>
  2098. </dependency>
  2099. <dependency>
  2100. <groupId>org.springframework.amqp</groupId>
  2101. <artifactId>spring-amqp</artifactId>
  2102. <version>${spring-amqp.version}</version>
  2103. </dependency>
  2104. <dependency>
  2105. <groupId>org.springframework.amqp</groupId>
  2106. <artifactId>spring-rabbit</artifactId>
  2107. <version>${spring-amqp.version}</version>
  2108. </dependency>
  2109. <dependency>
  2110. <groupId>org.springframework.amqp</groupId>
  2111. <artifactId>spring-rabbit-stream</artifactId>
  2112. <version>${spring-amqp.version}</version>
  2113. </dependency>
  2114. <dependency>
  2115. <groupId>org.springframework.amqp</groupId>
  2116. <artifactId>spring-rabbit-junit</artifactId>
  2117. <version>${spring-amqp.version}</version>
  2118. </dependency>
  2119. <dependency>
  2120. <groupId>org.springframework.amqp</groupId>
  2121. <artifactId>spring-rabbit-test</artifactId>
  2122. <version>${spring-amqp.version}</version>
  2123. </dependency>
  2124. <dependency>
  2125. <groupId>org.springframework.security</groupId>
  2126. <artifactId>spring-security-oauth2-authorization-server</artifactId>
  2127. <version>${spring-authorization-server.version}</version>
  2128. </dependency>
  2129. <dependency>
  2130. <groupId>org.springframework.graphql</groupId>
  2131. <artifactId>spring-graphql</artifactId>
  2132. <version>${spring-graphql.version}</version>
  2133. </dependency>
  2134. <dependency>
  2135. <groupId>org.springframework.graphql</groupId>
  2136. <artifactId>spring-graphql-test</artifactId>
  2137. <version>${spring-graphql.version}</version>
  2138. </dependency>
  2139. <dependency>
  2140. <groupId>org.springframework.hateoas</groupId>
  2141. <artifactId>spring-hateoas</artifactId>
  2142. <version>${spring-hateoas.version}</version>
  2143. </dependency>
  2144. <dependency>
  2145. <groupId>org.springframework.kafka</groupId>
  2146. <artifactId>spring-kafka</artifactId>
  2147. <version>${spring-kafka.version}</version>
  2148. </dependency>
  2149. <dependency>
  2150. <groupId>org.springframework.kafka</groupId>
  2151. <artifactId>spring-kafka-test</artifactId>
  2152. <version>${spring-kafka.version}</version>
  2153. </dependency>
  2154. <dependency>
  2155. <groupId>org.springframework.ldap</groupId>
  2156. <artifactId>spring-ldap-core</artifactId>
  2157. <version>${spring-ldap.version}</version>
  2158. </dependency>
  2159. <dependency>
  2160. <groupId>org.springframework.ldap</groupId>
  2161. <artifactId>spring-ldap-ldif-core</artifactId>
  2162. <version>${spring-ldap.version}</version>
  2163. </dependency>
  2164. <dependency>
  2165. <groupId>org.springframework.ldap</groupId>
  2166. <artifactId>spring-ldap-odm</artifactId>
  2167. <version>${spring-ldap.version}</version>
  2168. </dependency>
  2169. <dependency>
  2170. <groupId>org.springframework.ldap</groupId>
  2171. <artifactId>spring-ldap-test</artifactId>
  2172. <version>${spring-ldap.version}</version>
  2173. </dependency>
  2174. <dependency>
  2175. <groupId>org.springframework.retry</groupId>
  2176. <artifactId>spring-retry</artifactId>
  2177. <version>${spring-retry.version}</version>
  2178. </dependency>
  2179. <dependency>
  2180. <groupId>org.xerial</groupId>
  2181. <artifactId>sqlite-jdbc</artifactId>
  2182. <version>${sqlite-jdbc.version}</version>
  2183. </dependency>
  2184. <dependency>
  2185. <groupId>org.thymeleaf</groupId>
  2186. <artifactId>thymeleaf</artifactId>
  2187. <version>${thymeleaf.version}</version>
  2188. </dependency>
  2189. <dependency>
  2190. <groupId>org.thymeleaf</groupId>
  2191. <artifactId>thymeleaf-spring6</artifactId>
  2192. <version>${thymeleaf.version}</version>
  2193. </dependency>
  2194. <dependency>
  2195. <groupId>com.github.mxab.thymeleaf.extras</groupId>
  2196. <artifactId>thymeleaf-extras-data-attribute</artifactId>
  2197. <version>${thymeleaf-extras-data-attribute.version}</version>
  2198. </dependency>
  2199. <dependency>
  2200. <groupId>org.thymeleaf.extras</groupId>
  2201. <artifactId>thymeleaf-extras-springsecurity6</artifactId>
  2202. <version>${thymeleaf-extras-springsecurity.version}</version>
  2203. </dependency>
  2204. <dependency>
  2205. <groupId>nz.net.ultraq.thymeleaf</groupId>
  2206. <artifactId>thymeleaf-layout-dialect</artifactId>
  2207. <version>${thymeleaf-layout-dialect.version}</version>
  2208. </dependency>
  2209. <dependency>
  2210. <groupId>org.apache.tomcat</groupId>
  2211. <artifactId>tomcat-annotations-api</artifactId>
  2212. <version>${tomcat.version}</version>
  2213. </dependency>
  2214. <dependency>
  2215. <groupId>org.apache.tomcat</groupId>
  2216. <artifactId>tomcat-jdbc</artifactId>
  2217. <version>${tomcat.version}</version>
  2218. </dependency>
  2219. <dependency>
  2220. <groupId>org.apache.tomcat</groupId>
  2221. <artifactId>tomcat-jsp-api</artifactId>
  2222. <version>${tomcat.version}</version>
  2223. </dependency>
  2224. <dependency>
  2225. <groupId>org.apache.tomcat.embed</groupId>
  2226. <artifactId>tomcat-embed-core</artifactId>
  2227. <version>${tomcat.version}</version>
  2228. </dependency>
  2229. <dependency>
  2230. <groupId>org.apache.tomcat.embed</groupId>
  2231. <artifactId>tomcat-embed-el</artifactId>
  2232. <version>${tomcat.version}</version>
  2233. </dependency>
  2234. <dependency>
  2235. <groupId>org.apache.tomcat.embed</groupId>
  2236. <artifactId>tomcat-embed-jasper</artifactId>
  2237. <version>${tomcat.version}</version>
  2238. </dependency>
  2239. <dependency>
  2240. <groupId>org.apache.tomcat.embed</groupId>
  2241. <artifactId>tomcat-embed-websocket</artifactId>
  2242. <version>${tomcat.version}</version>
  2243. </dependency>
  2244. <dependency>
  2245. <groupId>com.unboundid</groupId>
  2246. <artifactId>unboundid-ldapsdk</artifactId>
  2247. <version>${unboundid-ldapsdk.version}</version>
  2248. </dependency>
  2249. <dependency>
  2250. <groupId>io.undertow</groupId>
  2251. <artifactId>undertow-core</artifactId>
  2252. <version>${undertow.version}</version>
  2253. </dependency>
  2254. <dependency>
  2255. <groupId>io.undertow</groupId>
  2256. <artifactId>undertow-servlet</artifactId>
  2257. <version>${undertow.version}</version>
  2258. </dependency>
  2259. <dependency>
  2260. <groupId>io.undertow</groupId>
  2261. <artifactId>undertow-websockets-jsr</artifactId>
  2262. <version>${undertow.version}</version>
  2263. </dependency>
  2264. <dependency>
  2265. <groupId>org.webjars</groupId>
  2266. <artifactId>webjars-locator-core</artifactId>
  2267. <version>${webjars-locator-core.version}</version>
  2268. </dependency>
  2269. <dependency>
  2270. <groupId>wsdl4j</groupId>
  2271. <artifactId>wsdl4j</artifactId>
  2272. <version>${wsdl4j.version}</version>
  2273. </dependency>
  2274. <dependency>
  2275. <groupId>org.xmlunit</groupId>
  2276. <artifactId>xmlunit-assertj</artifactId>
  2277. <version>${xmlunit2.version}</version>
  2278. </dependency>
  2279. <dependency>
  2280. <groupId>org.xmlunit</groupId>
  2281. <artifactId>xmlunit-assertj3</artifactId>
  2282. <version>${xmlunit2.version}</version>
  2283. </dependency>
  2284. <dependency>
  2285. <groupId>org.xmlunit</groupId>
  2286. <artifactId>xmlunit-core</artifactId>
  2287. <version>${xmlunit2.version}</version>
  2288. </dependency>
  2289. <dependency>
  2290. <groupId>org.xmlunit</groupId>
  2291. <artifactId>xmlunit-jakarta-jaxb-impl</artifactId>
  2292. <version>${xmlunit2.version}</version>
  2293. </dependency>
  2294. <dependency>
  2295. <groupId>org.xmlunit</groupId>
  2296. <artifactId>xmlunit-legacy</artifactId>
  2297. <version>${xmlunit2.version}</version>
  2298. </dependency>
  2299. <dependency>
  2300. <groupId>org.xmlunit</groupId>
  2301. <artifactId>xmlunit-matchers</artifactId>
  2302. <version>${xmlunit2.version}</version>
  2303. </dependency>
  2304. <dependency>
  2305. <groupId>org.xmlunit</groupId>
  2306. <artifactId>xmlunit-placeholders</artifactId>
  2307. <version>${xmlunit2.version}</version>
  2308. </dependency>
  2309. <dependency>
  2310. <groupId>org.eclipse</groupId>
  2311. <artifactId>yasson</artifactId>
  2312. <version>${yasson.version}</version>
  2313. </dependency>
  2314. <dependency>
  2315. <groupId>org.assertj</groupId>
  2316. <artifactId>assertj-bom</artifactId>
  2317. <version>${assertj.version}</version>
  2318. <type>pom</type>
  2319. <scope>import</scope>
  2320. </dependency>
  2321. <dependency>
  2322. <groupId>io.zipkin.brave</groupId>
  2323. <artifactId>brave-bom</artifactId>
  2324. <version>${brave.version}</version>
  2325. <type>pom</type>
  2326. <scope>import</scope>
  2327. </dependency>
  2328. <dependency>
  2329. <groupId>com.datastax.oss</groupId>
  2330. <artifactId>java-driver-bom</artifactId>
  2331. <version>${cassandra-driver.version}</version>
  2332. <type>pom</type>
  2333. <scope>import</scope>
  2334. </dependency>
  2335. <dependency>
  2336. <groupId>io.dropwizard.metrics</groupId>
  2337. <artifactId>metrics-bom</artifactId>
  2338. <version>${dropwizard-metrics.version}</version>
  2339. <type>pom</type>
  2340. <scope>import</scope>
  2341. </dependency>
  2342. <dependency>
  2343. <groupId>org.glassfish.jaxb</groupId>
  2344. <artifactId>jaxb-bom</artifactId>
  2345. <version>${glassfish-jaxb.version}</version>
  2346. <type>pom</type>
  2347. <scope>import</scope>
  2348. </dependency>
  2349. <dependency>
  2350. <groupId>org.apache.groovy</groupId>
  2351. <artifactId>groovy-bom</artifactId>
  2352. <version>${groovy.version}</version>
  2353. <type>pom</type>
  2354. <scope>import</scope>
  2355. </dependency>
  2356. <dependency>
  2357. <groupId>org.infinispan</groupId>
  2358. <artifactId>infinispan-bom</artifactId>
  2359. <version>${infinispan.version}</version>
  2360. <type>pom</type>
  2361. <scope>import</scope>
  2362. </dependency>
  2363. <dependency>
  2364. <groupId>com.fasterxml.jackson</groupId>
  2365. <artifactId>jackson-bom</artifactId>
  2366. <version>${jackson-bom.version}</version>
  2367. <type>pom</type>
  2368. <scope>import</scope>
  2369. </dependency>
  2370. <dependency>
  2371. <groupId>org.glassfish.jersey</groupId>
  2372. <artifactId>jersey-bom</artifactId>
  2373. <version>${jersey.version}</version>
  2374. <type>pom</type>
  2375. <scope>import</scope>
  2376. </dependency>
  2377. <dependency>
  2378. <groupId>org.eclipse.jetty</groupId>
  2379. <artifactId>jetty-bom</artifactId>
  2380. <version>${jetty.version}</version>
  2381. <type>pom</type>
  2382. <scope>import</scope>
  2383. </dependency>
  2384. <dependency>
  2385. <groupId>org.junit</groupId>
  2386. <artifactId>junit-bom</artifactId>
  2387. <version>${junit-jupiter.version}</version>
  2388. <type>pom</type>
  2389. <scope>import</scope>
  2390. </dependency>
  2391. <dependency>
  2392. <groupId>org.jetbrains.kotlin</groupId>
  2393. <artifactId>kotlin-bom</artifactId>
  2394. <version>${kotlin.version}</version>
  2395. <type>pom</type>
  2396. <scope>import</scope>
  2397. </dependency>
  2398. <dependency>
  2399. <groupId>org.jetbrains.kotlinx</groupId>
  2400. <artifactId>kotlinx-coroutines-bom</artifactId>
  2401. <version>${kotlin-coroutines.version}</version>
  2402. <type>pom</type>
  2403. <scope>import</scope>
  2404. </dependency>
  2405. <dependency>
  2406. <groupId>org.apache.logging.log4j</groupId>
  2407. <artifactId>log4j-bom</artifactId>
  2408. <version>${log4j2.version}</version>
  2409. <type>pom</type>
  2410. <scope>import</scope>
  2411. </dependency>
  2412. <dependency>
  2413. <groupId>io.micrometer</groupId>
  2414. <artifactId>micrometer-bom</artifactId>
  2415. <version>${micrometer.version}</version>
  2416. <type>pom</type>
  2417. <scope>import</scope>
  2418. </dependency>
  2419. <dependency>
  2420. <groupId>io.micrometer</groupId>
  2421. <artifactId>micrometer-tracing-bom</artifactId>
  2422. <version>${micrometer-tracing.version}</version>
  2423. <type>pom</type>
  2424. <scope>import</scope>
  2425. </dependency>
  2426. <dependency>
  2427. <groupId>org.mockito</groupId>
  2428. <artifactId>mockito-bom</artifactId>
  2429. <version>${mockito.version}</version>
  2430. <type>pom</type>
  2431. <scope>import</scope>
  2432. </dependency>
  2433. <dependency>
  2434. <groupId>io.netty</groupId>
  2435. <artifactId>netty-bom</artifactId>
  2436. <version>${netty.version}</version>
  2437. <type>pom</type>
  2438. <scope>import</scope>
  2439. </dependency>
  2440. <dependency>
  2441. <groupId>com.squareup.okhttp3</groupId>
  2442. <artifactId>okhttp-bom</artifactId>
  2443. <version>${okhttp.version}</version>
  2444. <type>pom</type>
  2445. <scope>import</scope>
  2446. </dependency>
  2447. <dependency>
  2448. <groupId>io.opentelemetry</groupId>
  2449. <artifactId>opentelemetry-bom</artifactId>
  2450. <version>${opentelemetry.version}</version>
  2451. <type>pom</type>
  2452. <scope>import</scope>
  2453. </dependency>
  2454. <dependency>
  2455. <groupId>com.oracle.database.jdbc</groupId>
  2456. <artifactId>ojdbc-bom</artifactId>
  2457. <version>${oracle-database.version}</version>
  2458. <type>pom</type>
  2459. <scope>import</scope>
  2460. </dependency>
  2461. <dependency>
  2462. <groupId>io.prometheus</groupId>
  2463. <artifactId>simpleclient_bom</artifactId>
  2464. <version>${prometheus-client.version}</version>
  2465. <type>pom</type>
  2466. <scope>import</scope>
  2467. </dependency>
  2468. <dependency>
  2469. <groupId>com.querydsl</groupId>
  2470. <artifactId>querydsl-bom</artifactId>
  2471. <version>${querydsl.version}</version>
  2472. <type>pom</type>
  2473. <scope>import</scope>
  2474. </dependency>
  2475. <dependency>
  2476. <groupId>io.projectreactor</groupId>
  2477. <artifactId>reactor-bom</artifactId>
  2478. <version>${reactor-bom.version}</version>
  2479. <type>pom</type>
  2480. <scope>import</scope>
  2481. </dependency>
  2482. <dependency>
  2483. <groupId>io.rest-assured</groupId>
  2484. <artifactId>rest-assured-bom</artifactId>
  2485. <version>${rest-assured.version}</version>
  2486. <type>pom</type>
  2487. <scope>import</scope>
  2488. </dependency>
  2489. <dependency>
  2490. <groupId>io.rsocket</groupId>
  2491. <artifactId>rsocket-bom</artifactId>
  2492. <version>${rsocket.version}</version>
  2493. <type>pom</type>
  2494. <scope>import</scope>
  2495. </dependency>
  2496. <dependency>
  2497. <groupId>org.springframework.batch</groupId>
  2498. <artifactId>spring-batch-bom</artifactId>
  2499. <version>${spring-batch.version}</version>
  2500. <type>pom</type>
  2501. <scope>import</scope>
  2502. </dependency>
  2503. <dependency>
  2504. <groupId>org.springframework.data</groupId>
  2505. <artifactId>spring-data-bom</artifactId>
  2506. <version>${spring-data-bom.version}</version>
  2507. <type>pom</type>
  2508. <scope>import</scope>
  2509. </dependency>
  2510. <dependency>
  2511. <groupId>org.springframework</groupId>
  2512. <artifactId>spring-framework-bom</artifactId>
  2513. <version>${spring-framework.version}</version>
  2514. <type>pom</type>
  2515. <scope>import</scope>
  2516. </dependency>
  2517. <dependency>
  2518. <groupId>org.springframework.integration</groupId>
  2519. <artifactId>spring-integration-bom</artifactId>
  2520. <version>${spring-integration.version}</version>
  2521. <type>pom</type>
  2522. <scope>import</scope>
  2523. </dependency>
  2524. <dependency>
  2525. <groupId>org.springframework.restdocs</groupId>
  2526. <artifactId>spring-restdocs-bom</artifactId>
  2527. <version>${spring-restdocs.version}</version>
  2528. <type>pom</type>
  2529. <scope>import</scope>
  2530. </dependency>
  2531. <dependency>
  2532. <groupId>org.springframework.security</groupId>
  2533. <artifactId>spring-security-bom</artifactId>
  2534. <version>${spring-security.version}</version>
  2535. <type>pom</type>
  2536. <scope>import</scope>
  2537. </dependency>
  2538. <dependency>
  2539. <groupId>org.springframework.session</groupId>
  2540. <artifactId>spring-session-bom</artifactId>
  2541. <version>${spring-session.version}</version>
  2542. <type>pom</type>
  2543. <scope>import</scope>
  2544. </dependency>
  2545. <dependency>
  2546. <groupId>org.springframework.ws</groupId>
  2547. <artifactId>spring-ws-bom</artifactId>
  2548. <version>${spring-ws.version}</version>
  2549. <type>pom</type>
  2550. <scope>import</scope>
  2551. </dependency>
  2552. <dependency>
  2553. <groupId>org.testcontainers</groupId>
  2554. <artifactId>testcontainers-bom</artifactId>
  2555. <version>${testcontainers.version}</version>
  2556. <type>pom</type>
  2557. <scope>import</scope>
  2558. </dependency>
  2559. </dependencies>
  2560. </dependencyManagement>
  2561. <build>
  2562. <pluginManagement>
  2563. <plugins>
  2564. <plugin>
  2565. <groupId>org.codehaus.mojo</groupId>
  2566. <artifactId>build-helper-maven-plugin</artifactId>
  2567. <version>${build-helper-maven-plugin.version}</version>
  2568. </plugin>
  2569. <plugin>
  2570. <groupId>org.flywaydb</groupId>
  2571. <artifactId>flyway-maven-plugin</artifactId>
  2572. <version>${flyway.version}</version>
  2573. </plugin>
  2574. <plugin>
  2575. <groupId>io.github.git-commit-id</groupId>
  2576. <artifactId>git-commit-id-maven-plugin</artifactId>
  2577. <version>${git-commit-id-maven-plugin.version}</version>
  2578. </plugin>
  2579. <plugin>
  2580. <groupId>org.jooq</groupId>
  2581. <artifactId>jooq-codegen-maven</artifactId>
  2582. <version>${jooq.version}</version>
  2583. </plugin>
  2584. <plugin>
  2585. <groupId>org.jetbrains.kotlin</groupId>
  2586. <artifactId>kotlin-maven-plugin</artifactId>
  2587. <version>${kotlin.version}</version>
  2588. </plugin>
  2589. <plugin>
  2590. <groupId>org.liquibase</groupId>
  2591. <artifactId>liquibase-maven-plugin</artifactId>
  2592. <version>${liquibase.version}</version>
  2593. </plugin>
  2594. <plugin>
  2595. <groupId>org.apache.maven.plugins</groupId>
  2596. <artifactId>maven-antrun-plugin</artifactId>
  2597. <version>${maven-antrun-plugin.version}</version>
  2598. </plugin>
  2599. <plugin>
  2600. <groupId>org.apache.maven.plugins</groupId>
  2601. <artifactId>maven-assembly-plugin</artifactId>
  2602. <version>${maven-assembly-plugin.version}</version>
  2603. </plugin>
  2604. <plugin>
  2605. <groupId>org.apache.maven.plugins</groupId>
  2606. <artifactId>maven-clean-plugin</artifactId>
  2607. <version>${maven-clean-plugin.version}</version>
  2608. </plugin>
  2609. <plugin>
  2610. <groupId>org.apache.maven.plugins</groupId>
  2611. <artifactId>maven-compiler-plugin</artifactId>
  2612. <version>${maven-compiler-plugin.version}</version>
  2613. </plugin>
  2614. <plugin>
  2615. <groupId>org.apache.maven.plugins</groupId>
  2616. <artifactId>maven-dependency-plugin</artifactId>
  2617. <version>${maven-dependency-plugin.version}</version>
  2618. </plugin>
  2619. <plugin>
  2620. <groupId>org.apache.maven.plugins</groupId>
  2621. <artifactId>maven-deploy-plugin</artifactId>
  2622. <version>${maven-deploy-plugin.version}</version>
  2623. </plugin>
  2624. <plugin>
  2625. <groupId>org.apache.maven.plugins</groupId>
  2626. <artifactId>maven-enforcer-plugin</artifactId>
  2627. <version>${maven-enforcer-plugin.version}</version>
  2628. </plugin>
  2629. <plugin>
  2630. <groupId>org.apache.maven.plugins</groupId>
  2631. <artifactId>maven-failsafe-plugin</artifactId>
  2632. <version>${maven-failsafe-plugin.version}</version>
  2633. </plugin>
  2634. <plugin>
  2635. <groupId>org.apache.maven.plugins</groupId>
  2636. <artifactId>maven-help-plugin</artifactId>
  2637. <version>${maven-help-plugin.version}</version>
  2638. </plugin>
  2639. <plugin>
  2640. <groupId>org.apache.maven.plugins</groupId>
  2641. <artifactId>maven-install-plugin</artifactId>
  2642. <version>${maven-install-plugin.version}</version>
  2643. </plugin>
  2644. <plugin>
  2645. <groupId>org.apache.maven.plugins</groupId>
  2646. <artifactId>maven-invoker-plugin</artifactId>
  2647. <version>${maven-invoker-plugin.version}</version>
  2648. </plugin>
  2649. <plugin>
  2650. <groupId>org.apache.maven.plugins</groupId>
  2651. <artifactId>maven-jar-plugin</artifactId>
  2652. <version>${maven-jar-plugin.version}</version>
  2653. </plugin>
  2654. <plugin>
  2655. <groupId>org.apache.maven.plugins</groupId>
  2656. <artifactId>maven-javadoc-plugin</artifactId>
  2657. <version>${maven-javadoc-plugin.version}</version>
  2658. </plugin>
  2659. <plugin>
  2660. <groupId>org.apache.maven.plugins</groupId>
  2661. <artifactId>maven-resources-plugin</artifactId>
  2662. <version>${maven-resources-plugin.version}</version>
  2663. </plugin>
  2664. <plugin>
  2665. <groupId>org.apache.maven.plugins</groupId>
  2666. <artifactId>maven-shade-plugin</artifactId>
  2667. <version>${maven-shade-plugin.version}</version>
  2668. </plugin>
  2669. <plugin>
  2670. <groupId>org.apache.maven.plugins</groupId>
  2671. <artifactId>maven-source-plugin</artifactId>
  2672. <version>${maven-source-plugin.version}</version>
  2673. </plugin>
  2674. <plugin>
  2675. <groupId>org.apache.maven.plugins</groupId>
  2676. <artifactId>maven-surefire-plugin</artifactId>
  2677. <version>${maven-surefire-plugin.version}</version>
  2678. </plugin>
  2679. <plugin>
  2680. <groupId>org.apache.maven.plugins</groupId>
  2681. <artifactId>maven-war-plugin</artifactId>
  2682. <version>${maven-war-plugin.version}</version>
  2683. </plugin>
  2684. <plugin>
  2685. <groupId>org.graalvm.buildtools</groupId>
  2686. <artifactId>native-maven-plugin</artifactId>
  2687. <version>${native-build-tools-plugin.version}</version>
  2688. </plugin>
  2689. <plugin>
  2690. <groupId>org.springframework.boot</groupId>
  2691. <artifactId>spring-boot-maven-plugin</artifactId>
  2692. <version>${spring.boot.version}</version>
  2693. </plugin>
  2694. <plugin>
  2695. <groupId>org.codehaus.mojo</groupId>
  2696. <artifactId>versions-maven-plugin</artifactId>
  2697. <version>${versions-maven-plugin.version}</version>
  2698. </plugin>
  2699. <plugin>
  2700. <groupId>org.codehaus.mojo</groupId>
  2701. <artifactId>xml-maven-plugin</artifactId>
  2702. <version>${xml-maven-plugin.version}</version>
  2703. </plugin>
  2704. </plugins>
  2705. </pluginManagement>
  2706. </build>
  2707. <distributionManagement>
  2708. <repository>
  2709. <id>releases</id>
  2710. <url>http://116.204.115.13:8081/repository/maven-releases/</url>
  2711. </repository>
  2712. <snapshotRepository>
  2713. <id>snapshots</id>
  2714. <url>http://116.204.115.13:8081/repository/maven-snapshots/</url>
  2715. </snapshotRepository>
  2716. </distributionManagement>
  2717. </project>