diff --git a/.DS_Store b/.DS_Store index 32ee8755..a3f2d40c 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/.vscode/settings.json b/.vscode/settings.json index c7e5d9b0..ceeb6b6f 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -197,4 +197,5 @@ "Java源代码/Lesson05", "Java源代码/Lesson06" ], + "java.configuration.updateBuildConfiguration": "disabled", } \ No newline at end of file diff --git a/maven/maven教程/01 maven概述.md b/maven/01 maven概述.md similarity index 61% rename from maven/maven教程/01 maven概述.md rename to maven/01 maven概述.md index a87ce81c..9b7fd7c3 100644 --- a/maven/maven教程/01 maven概述.md +++ b/maven/01 maven概述.md @@ -1,4 +1,5 @@ ## 1 概述 +> 参考文档 http://heavy_code_industry.gitee.io/code_heavy_industry/pro002-maven/chapter10/verse02.html ### 应用场景 ![](image/2022-10-28-18-22-04.png) @@ -10,7 +11,8 @@ ![](image/2022-10-28-18-35-00.png) -nexus私服,企业可以创建内部的公用仓库 +### nexus私服 +企业可以创建内部的公用仓库 * nexus是一个强大的maven仓库管理器,它极大的简化了本地内部仓库的维护和外部仓库的访问. * nexus是一套开箱即用的系统不需要数据库,它使用文件系统加Lucene来组织数据 @@ -26,6 +28,10 @@ Maven 是一个项目管理工具,可以对 Java 项目进行构建、依赖 ![](image/2022-07-11-10-36-37.png) +* 项目对象模型POM:,xml文件,项目基本信息,描述项目构建过程,声明项目依赖。 +* 构件:任何一个依赖、插件或者项目构建输出,都可以称之为构件。 +* 插件Plugin:maven是依赖插件完成任务的,项目管理工具。 +* 仓库Repository:maven仓库能够帮我们管理构件 ### 基本作用 @@ -34,7 +40,11 @@ Maven 是一个项目管理工具,可以对 Java 项目进行构建、依赖 1. 打java包或者war包 3. **统一开发结构**。提供标准的、统一的项目结构。 -## 1 maven相关概念 +### 基本原理 + + +![](image/2022-10-29-10-17-50.png) +## 2 maven相关概念 ### POM项目对象模型 项目对象模型(Project Object Management,POM)是一种模型化思想。与DOM、BOM等文档对象模型、浏览器对象模型类似。POM将工程抽象为一个模型,用程序中的对象来描述这个模型,实现项目的管理。 @@ -139,9 +149,48 @@ mvn archetype:generate -DgroupId=com.demo -DartifactId=webproject -DarchetypeArt 1. 需要自己指定源代码、测试代码、源代码资源文件和测试资源文件。 2. 可以在idea中自动创建启动参数。edit configuration 3. 使用原型创建Maven模块。选择不同的Maven原型文件。 +4. 直接在web中添加tomcat插件,即可在本地展示网站。 + +## maven简介 + +> 纯java开源项目。**项目管理工具**,对java项目进行构建、依赖管理。也可以用于构建和管理其他项目(c#,Ruby,Scala) + +> 在上一次做handoop mapreduce的时候,发现了pom文件,然后配置了maven,作为maven工程打开过。但是具体的过程,为啥忘得一干二净,只记得自己曾经对maven的setting文件进行修改,那个时候应该还创建了本地库。但是完全记不清了。 + +## 4 maven主要功能 + +* 项目构建 +* 依赖管理 +* 项目管理 + * 文档生成 + * 报告 + * SCMs + * 发布 + * 分发 + * 邮件列表 -### idea创建web项目 +### maven项目目录结构 +| 目录| 目的| +|-|-| +| ${basedir} |存放pom.xml和所有的子目录| +| ${basedir}/src/main/java |项目的java源代码| +| ${basedir}/src/main/resources |项目的资源,比如说property文件,springmvc.xml| +| ${basedir}/src/test/java |项目的测试类,比如说Junit代码| +| ${basedir}/src/test/resources |测试用的资源| +| ${basedir}/src/main/webapp/WEB-INF |web应用文件目录,web项目的信息,比如存放web.xml、本地图片、jsp视图页面| +| ${basedir}/target |打包输出目录| +| ${basedir}/target/classes |编译输出目录| +| ${basedir}/target/test-classes |测试编译输出目录| +| Test.java |Maven只会自动运行符合该命名规则的测试类| +| ~/.m2/repository |Maven默认的本地仓库目录位置| -1. 直接在web中添加tomcat插件,即可在本地展示网站。 +### maven项目的优势 +* 基于模型的构建 − Maven能够将任意数量的项目构建到预定义的输出类型中,如 JAR,WAR 或基于项目元数据的分发,而不需要在大多数情况下执行任何脚本。 +* 项目信息的一致性站点 − 使用与构建过程相同的元数据,Maven 能够生成一个网站或PDF,包括您要添加的任何文档,并添加到关于项目开发状态的标准报告中。 +* 发布管理和发布单独的输出 − Maven 将不需要额外的配置,就可以与源代码管理系统(如 Subversion 或 Git)集成,并可以基于某个标签管理项目的发布。它也可以将其发布到分发位置供其他项目使用。Maven 能够发布单独的输出,如 JAR,包含其他依赖和文档的归档,或者作为源代码发布。 +* 向后兼容性 − 您可以很轻松的从旧版本 Maven 的多个模块移植到 Maven 3 中。 +* 子项目使用父项目依赖时,正常情况子项目应该继承父项目依赖,无需使用版本号 +* 并行构建 − 编译的速度能普遍提高20 - 50 %。 +* 更好的错误报告 − Maven 改进了错误报告,它为您提供了 Maven wiki 页面的链接,您可以点击链接查看错误的完整描述。 diff --git a/maven/2maven POM.md b/maven/02 mavenPOM.md similarity index 82% rename from maven/2maven POM.md rename to maven/02 mavenPOM.md index 51bf3455..95e4ab67 100644 --- a/maven/2maven POM.md +++ b/maven/02 mavenPOM.md @@ -1,19 +1,234 @@ ## 1 简介 +### POM概念 POM( Project Object Model,项目对象模型 ) 是 Maven 工程的基本工作单元,是一个XML文件,包含了项目的基本信息,用于描述项目如何构建,声明项目依赖,等等。 pom.xml 项目模型对象文件。POM 中可以指定以下配置: * 项目依赖 -* 插件 -* 执行目标 +* 插件:执行目标 * 项目构建 profile * 项目版本 * 项目开发者列表 * 相关邮件列表信息 -## 2 POM 标签大全详解 + +### pom工程之间的关系 +* 在dependency中的依赖关系。 +* 在parent中的继承关系 +* 在module中的聚合关系 + + +## 2 依赖关系dependency +> 依赖的传递主要通过dependency标签实现的 + +### scope依赖范围标签 +scope的取值用来定义依赖生效的空间(main目录、test目录)和时间(开发中、部署中)。 + +标签位置 dependencies/dependency/scope +标签取值 compile/test/provided/system/runtime/import + +* compile是最基本的标签,在所有的范围、所有的时间都能生效。 +* test标签,仅仅在test目录开发阶段生效的依赖,生效空间和时间范围最小。 +* prvoide标签,在开发阶段生效,在部署阶段不生效的依赖(因为部署环境提供了该依赖,不需要打包到jar或者war包中) +* import maven也是单继承。通过import导入多个依赖。导入的依赖必须是POM工程,package中的打包方式是pom +![](image/2022-11-06-22-24-53.png) +* system 强行将当前系统下的jar包作为依赖导入进来。使用系统根路径,可以是相对路径。 +![](image/2022-11-06-22-25-13.png) +* runtime编译时不需要,但是运行时需要的jar。实际运行时需要接口的实现类。JDBC接口标准提供了一系列借口,能够进行编译。但是运行时需要JDBC的具体实现。 +![](image/2022-11-06-22-30-18.png) + +### optional可选依赖 + +在开发阶段需要的类,但是在运行阶段可能不需要的类,就不需要再打包的时候导入到其中。 +![](image/2022-11-06-22-31-10.png) + + + +### 依赖的传递性 +能够通过依赖传递,导入大量相关的间接依赖。而不需要手动导入所有的依赖。 +* A依赖B,B依赖C的时候,A不需要引入C即可使用C依赖。A会间接依赖C +* compile范围的依赖能够传递,test和provide范围的依赖无法传递。 + + +### 依赖的排除 + +阻断依赖的传递性。多个间接依赖可能不兼容,需要排除不兼容的间接依赖。 + +![](image/2022-11-03-09-40-26.png) + +标签位置 dependency/exclusions/exclusion + +```xml + + + + + + + + ``` + +### 版本仲裁 +![](image/2022-11-06-22-34-11.png) + +1. 最短路径优先 +2. 路径相同先声明者优先。 + +## 3 继承关系parent +> 依赖的继承主要是通过parent标签实现的。 + + +### 继承关系 +Maven工程之间,A工程继承B工程 +* B工程:父工程 +* A工程:子工程 + +本质上是A工程的pom.xml中的配置继承了B工程中pom.xml的配置。 + +继承,也就是父工程,主要管理依赖信息的版本 + +### 继承的作用 +在付工程中统一管理项目中的依赖信息,管理以来信息的版本。 + + +背景 +* 一个大型的项目进行了模块拆分 +* 一个project下面创建了很多module +* 每一个module都需要自己的依赖信息 + + +需求 +* 每一个module中各自维护各自的依赖信息很容易发生不一致的情况,不易统一管理 +* 使用框架内的的不同的jar包,应该是同一个版本,所以整个项目使用的框架版本需要统一 +* 使用框架时所需要的jar包组合,需要经过长期摸索和反复调试,最终确定一个可用的组合。 + +通过在父工程中为整个项目维护依赖信息的组合,既保证了整个项目的使用规范、准确的jar包;又能讲以往的经验沉淀下来,节约时间和精力。 + +### 继承的使用 + +1. 创建父工程,修改工程的打包方式。只有打包方式为pom的maven工程能够管理其他的maven工程。**打包方式为pom**的maven工程总不写业务代码,是专门管理其他maven工程的工程。 + +```xml +com.ykl +project-maven +1.0.2 +pom +``` + +2. 创建模块工程。idea中的module。从聚合分解的角度分析就是聚合和模块两种工程。而不是父子工程。 + + +3. 模块间的依赖关系 + 1. 在父工程中通过modules来引入子工程 + 2. 在子工程中通过parent引入父工程 + + + +```xml + + + + + +``` +4. 在付工程进行依赖信息的统一管理 +```xml + + + + + + +``` + +* 并不是在父工程管理了依赖,子工程具体使用哪个依赖,还要明确配置。仅仅是不需要配置版本号。 + +* 对于已经在付工程进行管理的依赖,子工程引用时可以不写version + * 父子工程版本一致,可以省略了version标签 + * 父子工程版本冲突,子工程的版本覆盖了父工程中的版本。 + +### 继承中的属性 + +创建自定以的属性标签,标签名也就是属性名,标签纸也就是属性值。 + +引用方式 `$com.ykl.spring.version$`。通过属性名解析后才知道具体的版本号值。 + +```xml + + 4.1.0.RELEASE + + + ${com.ykl.spring.version} +``` +### 实际意义 + +![](image/2022-11-05-21-14-18.png) + +* 梳理出一整套版本之间依赖的方案。与我们的火车头版本很想,会总结出一套可以相互兼容没有问题的中间件的合集。 + +## 4 聚合关系modules + +### 聚合的含义 + +通过moudules标签聚合子项目。好处 +1. 如果没有聚合标签,或者说聚合功能,则需要去每个模块下执行maven命令,并且按照依赖顺序从前到后执行。 +1. 如果有聚合标签,可以一键执行maven命令。mvn 会按照模块之间的依赖关系依次执行命令。 +2. 能够显示各个所有的模块。 + +```xml + + project04-maven-moduele + project05-maven-moduele + project06-maven-moduele + +``` +### 循环依赖 + +* 防止循环依赖,会出现报错 + +```xml +the ... dependencies has cyclic dependency + +``` +## 5 POM的层次 + +### 基本概念 +Maven不仅仅用来做依赖管理和项目构建。还用来做**项目管理**。 + +POM有四个层次:超级POM、父POM、当前POM、生效POM + + +### 超级pom + +默认继承了超级POM。超级POM + +* moduleversion版本信息 +* repository 仓库的地址 +* pluginrepostory 插件仓库的地址 +* builid 主要设置各个目录的位置。 +* 插件管理 +* profiles 配置文件 + + +### 父POM +> 当前的POM的parent + + +### 当前POM + +> 下层POM会继承上层POM。最近的有效配置是下层pom + + +### 有效POM +> 最终生效的POM文件,将所有的父POM叠加到一起 + +``` +mvn help:effective-pom +``` +## 6 POM 标签大全详解 +```xml - - com.xykj - wallet-api - 0.0.1-SNAPSHOT - wallet-api - 浔银电子钱包接口服务 - - - 1.8 - 1.18.12 - 2.1.2 - 2.9.2 - 1.0.0 - 0.9.1 - 1.2.68 - 5.3.5 - - - - - - - org.springframework.retry - spring-retry - - - org.springframework.boot - spring-boot-starter-web - - - org.springframework.boot - spring-boot-starter-tomcat - - - - - org.springframework.boot - spring-boot-starter-undertow - - - org.springframework.boot - spring-boot-starter-aop - - - - - org.projectlombok - lombok - ${lombok.version} - provided - - - - - cn.hutool - hutool-all - ${hutool.version} - - - - org.springframework.boot - spring-boot-starter-test - test - - - org.junit.vintage - junit-vintage-engine - - - - - - - com.aliyun - aliyun-java-sdk-core - 4.5.1 - - - - com.aliyun - aliyun-java-sdk-dysmsapi - 2.1.0 - - - - - com.alibaba - fastjson - ${fastjson.version} - - - - org.aspectj - aspectjrt - 1.9.5 - - - - commons-codec - commons-codec - 1.13 - - - org.apache.commons - commons-lang3 - 3.9 - - - commons-io - commons-io - 2.0.1 - - - - - - - - - - - com.zxw.zcloud - db-spring-boot-starter - ${zcloud.version} - - - - com.zxw.zcloud - swagger-spring-boot-starter - ${zcloud.version} - - - - com.zxw.zcloud - cache-spring-boot-starter - ${zcloud.version} - - - - com.zxw.zcloud - license-boot-starter - ${zcloud.version} - - - - io.jsonwebtoken - jjwt - ${jjwt.version} - - - - - com.github.binarywang - weixin-java-mp - 3.8.0 - - - junit - junit - - - org.springframework.security - spring-security-core - 5.2.1.RELEASE - - - - io.swagger - swagger-annotations - 1.5.20 - - - org.xmlunit - xmlunit-core - - - org.mybatis - mybatis - 3.5.5 - - - org.redisson - redisson - 3.11.4 - - - - - - - - org.springframework.boot - spring-boot-maven-plugin - - - - - - - - - - - - - - - zclod - zcloud nexus - http://maven.zoujy.com/repository/zcloud_group/ - - true - - - - - - - public - zcloud nexus - http://maven.aliyun.com/nexus/content/groups/public/ - - - true - - - false - - - - - -``` \ No newline at end of file diff --git a/maven/03 maven与Idea.md b/maven/03 maven与Idea.md new file mode 100644 index 00000000..0b79fd74 --- /dev/null +++ b/maven/03 maven与Idea.md @@ -0,0 +1,32 @@ +# Idea的使用 + +## 1 创建工程 + +1. 创建maven工程。可以选择archetype创建模板工程,也可以不选,创建标准工程。 +2. 配置项目。基本配置包括groupId、artifactId、version +3. maven的配置。在setting/preference自定义maven的位置,加载maven的仓库位置,而不是使用Idea集成的maven。可以通过maven工具窗口。 +4. 创建Java模块工程。在父工程中自动添加modules和package + + +## 2 侧边栏使用 + + +1. 扳手:配置maven +2. 打开关闭目录 +3. M:表示执行maven命令 + + +## 3 工程导入 + +### 导入整个工程 +IDEA直接打开目录就能识别。含有parent-pom的目录 + +### 导入单个模块 + +project-structures Import module导入基本组件。 + +project-structures Import facets导入Web组件 + + +## 4 生命周期 +提高构件过程的自动化程度。 \ No newline at end of file diff --git a/maven/4pom生命周期.md b/maven/04 maven生命周期.md similarity index 67% rename from maven/4pom生命周期.md rename to maven/04 maven生命周期.md index 5a0ea1a0..2df341e1 100644 --- a/maven/4pom生命周期.md +++ b/maven/04 maven生命周期.md @@ -1,26 +1,35 @@ -## 一个普通项目的生命周期 +## 1 命令构成 -![](image/生命周期.png) +> 生命周期、插件和目标 +### 基本命令 -| 阶段 |处理 |描述| -|-|-|-|-| -| 验证 validate |验证项目 |验证项目是否正确且所有必须信息是可用的| -| 编译 compile |执行编译 |源代码编译在此阶段完成| -| 测试 Test |测试 |使用适当的单元测试框架(例如JUnit)运行测试。| -| 包装 package |打包 |创建JAR/WAR包如在 pom.xml 中定义提及的包| -| 检查 verify |检查 |对集成测试的结果进行检查,以保证质量达标| -| 安装 install |安装 |安装打包的项目到本地仓库,以供其他项目使用| -| 部署 deploy |部署 |拷贝最终的工程包到远程仓库中,以共享给其他开发人员和工程| +* 主命令 +* 插件 +* 子命令 -## maven项目的三个生命周期 +![](image/2022-10-30-14-14-47.png) -### clean生命周期:清理项目,包含三个phase。 + + + +* 添加-Dmaven.test.skip=true表示跳过执行。 +![](image/2022-11-05-21-47-56.png) + + +## 2 maven项目的生命周期 + + +> maven项目开发主要包括以下三个生命周期 +### clean生命周期 + +清理项目,包含三个phase。 1. pre-clean:执行清理前需要完成的工作 2. clean:清理上一次构建生成的文件 3. post-clean:执行清理后需要完成的工作 -### default生命周期:构建项目,重要的phase如下。 +### default生命周期 +构建项目,重要的phase如下。 1. validate:验证工程是否正确,所有需要的资源是否可用。 1. compile:编译项目的源代码。 @@ -31,9 +40,27 @@ 1. install:把包安装到maven本地仓库,可以被其他工程作为依赖来使用。 1. Deploy:在集成或者发布环境下执行,将最终版本的包拷贝到远程的repository,使得其他的开发者或者工程可以共享。 -### site生命周期:建立和发布项目站点,phase如下 +### site生命周期 +建立和发布项目站点,phase如下 1. pre-site:生成项目站点之前需要完成的工作 2. site:生成项目站点文档 3. post-site:生成项目站点之后需要完成的工作 -4. site-deploy:将项目站点发布到服务器 \ No newline at end of file +4. site-deploy:将项目站点发布到服务器 + + +## 3 maven命令 + +三个生命周期是独立的。maven命令是按顺序依次执行的。每次执行都会将同一周期之前的命令执行一遍。 + + + +| 阶段 |处理 |描述| +|-|-|-|-| +| 验证 validate |验证项目 |验证项目是否正确且所有必须信息是可用的| +| 编译 compile |执行编译 |源代码编译在此阶段完成| +| 测试 Test |测试 |使用适当的单元测试框架(例如JUnit)运行测试。| +| 包装 package |打包 |创建JAR/WAR包如在 pom.xml 中定义提及的包| +| 检查 verify |检查 |对集成测试的结果进行检查,以保证质量达标| +| 安装 install |安装 |安装打包的项目到本地仓库,以供其他项目使用| +| 部署 deploy |部署 |拷贝最终的工程包到远程仓库中,以共享给其他开发人员和工程| \ No newline at end of file diff --git a/maven/5maven仓库.md b/maven/05 maven仓库.md similarity index 98% rename from maven/5maven仓库.md rename to maven/05 maven仓库.md index 3dd5819e..f1523f3e 100644 --- a/maven/5maven仓库.md +++ b/maven/05 maven仓库.md @@ -3,7 +3,7 @@ ## 1 仓库简介 仓库是项目中依赖的第三方库。任何一个依赖、插件或者项目构建输出,都可以称之为构件。maven仓库能够帮我们管理构件(比如jar程序)。maven仓库有3中类型,本地、中央、远程。 - +![](image/2022-11-05-22-27-12.png) ## 2 本地仓库 第一次运行maven仓库时,创建本地仓库。maven所需要的构建都是直接从本地仓库获取的。如果本地仓库没有,会首先尝试从远程仓库下载值本地仓库,然后使用本地仓库的构件。 diff --git a/maven/06 maven命令插件Plugins.md b/maven/06 maven命令插件Plugins.md new file mode 100644 index 00000000..fcea3cdd --- /dev/null +++ b/maven/06 maven命令插件Plugins.md @@ -0,0 +1,274 @@ +## 1 简介 + +### 插件概念 +maven项目包含三个生命周期,每个生命周期包含多个节点。每个节点都是由maven插件实现。例如maven-clean-plugin + +maven实际上是一个依赖插件执行的框架。 + +插件提供了一个目标的集合。使用以下语法执行 +``` +mvn [plugin-name]:[goal-name] +mvn compiler:compile +``` + +### 插件与生命周期 +插件可以通过phase标签绑定到指定的生命周期环境。而在执行命令的时候,会执行该生命周期之前的所有生命周期关联的插件。 + + +### 配置额外的插件 +在项目的build标签中,添加plugins/plugin标签,然后进行配置。 +* plugin的坐标groupId/artifactId/version +* execution 插件的id和绑定的生命周期phase。 +* execution 插件的名称和目标goal。 +```xml + +4.0.0 +com.companyname.projectgroup +project +1.0 + + + + org.apache.maven.plugins + maven-antrun-plugin + 1.1 + + + id.clean + clean + + run + + + + clean phase + + + + + + + + +``` + + +## 2 常用插件 + + +分为两类 +* Build plugins +* Repoting plugins + +常用插件列表 + +* clean 构建之后清理目标文件。删除目标目录。 +* compiler 编译 Java 源文件。 +* surefile 运行 JUnit 单元测试。创建测试报告。 +* jar 从当前工程中构建 JAR 文件。 +* war 从当前工程中构建 WAR 文件。 +* javadoc 为工程生成 Javadoc。 +* antrun 从构建过程的任意一个阶段中运行一个 ant 任务的集合。 + +### help插件:分析依赖 +![](image/2022-11-05-23-03-56.png) + + +### archetype插件:创建工程 + +``` +mvn archetype:generate -DgroupId=com.ykl -DartifactId=project04-maven-import -DarchetypeArtifactId=maven-archetype-quickstart -Dversion=0.0.1-snapshot +``` + + + +### mvn差价dependcy:依赖管理和分析 + + +* 查看依赖列表 + +``` +mvn dependcy:list +mvn dependcy:tree +``` +### spring-boot-maven-plugin + +spring-boot-maven-plugin是spring boot提供的maven打包插件。可打直接可运行的jar包或war包。 + +```xml + + + + org.springframework.boot + spring-boot-maven-plugin + + + +``` +插件提供了6个maven goal + +* build-info:生成项目的构建信息文件 build-info.properties +* help:用于展示spring-boot-maven-plugin的帮助信息。使用命令行mvn spring-boot:help -Ddetail=true -Dgoal=可展示goal的参数描述信息。 +* repackage:可生成可执行的jar包或war包。插件的核心goal。 +* run:运行 Spring Boot 应用 +* start:在集成测试阶段,控制生命周期 +* stop:在集成测试阶段,控制生命周期 + +## 2 自定义插件 + +### 创建工程 +```shell +➜ maven源码 git:(master) ✗ mvn archetype:generate -DgroupId=com.ykl -DartifactId=project05-maven-plugin -DarchetypeArtifactId=maven-archetype-quickstart -Dversion=0.0.1-snapshot +``` +### 打包方式 + +``` +maven-plugin +``` + +### maven依赖 +![](image/2022-11-06-22-41-34.png) + +下面两种方式二选一: + +```xml +#[1]将来在文档注释中使用注解 + + org.apache.maven + maven-plugin-api + 3.5.2 + +#[2]将来直接使用注解 + + org.apache.maven.plugin-tools + maven-plugin-annotations + 3.5.2 + +``` +### 创建Mojo类 + +maven old java object maven的核心类。每一个 Mojo 都需要实现 org.apache.maven.plugin.Mojo 接口。 + + +![](image/2022-11-07-14-48-13.png) + + +```java +public class MyHelloPlugin extends AbstractMojo { + @Override + public void execute() throws MojoExecutionException, MojoFailureException { + getLog().info("---> This is my first maven plugin. <---"); + } +} +``` +### 添加注解标识 +* 文档注释中用注解:对应的 pom.xml 中的依赖: maven-plugin-api +![](image/2022-11-07-14-56-43.png) + + +* 直接在类上标记注解:对应 pom.xml 中的依赖:maven-plugin-annotations +``` +// name 属性:指定目标名称 +@Mojo(name = "firstBlood") +public class MyPluginOfFistBlood extends AbstractMojo { + @Override + public void execute() throws MojoExecutionException, MojoFailureException { + getLog().info("---> first blood <---"); + } +} +``` + +### 安装插件 +要在后续使用插件,就必须至少将插件安装到本地仓库。 + +``` +mvn clean install +``` + +### 注册插件。 + +我们需要将插件坐标中的 groupId 部分注册到 settings.xml 中。再pluginGroups声明插件仓库。 + +```xml + + + com.ykl + +``` + +![](image/2022-11-07-15-17-31.png) + +### 使用插件 + +Maven 根据插件的 artifactId 来识别插件前缀。例如下面两种情况: +``` +#[1]前置匹配 +匹配规则:${prefix}-maven-plugin +artifactId:hello-maven-plugin +前缀:hello +#[2]中间匹配 +匹配规则:maven-${prefix}-plugin +artifactId:maven-good-plugin +前缀:good +``` + +**在命令行直接用** + +命令: +``` +mvn hello:sayHello +``` +效果: +![](image/2022-11-07-15-01-48.png) + +**配置到build标签里** +这里找一个和插件无关的 Maven 工程配置才有说服力。 +``` +#[1]配置 + + + + com.atguigu.maven + hello-maven-plugin + 1.0-SNAPSHOT + + + hello + + clean + + sayHello + + + + blood + validate + + firstBlood + + + + + + +``` +效果 +![](image/2022-11-07-15-01-40.png) + +**图形化界面使用** + +![](image/2022-11-07-15-01-29.png) + +**命令行使用** +执行已和插件目标绑定的生命周期: + +![](image/images.png) + + + diff --git a/maven/7maven构建java项目.md b/maven/07 maven项目实战.md similarity index 56% rename from maven/7maven构建java项目.md rename to maven/07 maven项目实战.md index a79f06a9..3fb47a88 100644 --- a/maven/7maven构建java项目.md +++ b/maven/07 maven项目实战.md @@ -40,4 +40,24 @@ mvn clean package 运行文档生成 ``` mvn site -``` \ No newline at end of file +``` + +## 5 引入外部依赖到项目中 +在src下创建lib文件夹,用来防止第三方的jar文件。 +``` + + + + ldapjdk + ldapjdk + 1.0 + system + ${basedir}\src\lib\ldapjdk.jar + + +``` + +### 引入外部依赖到本地中 + +可以直接下载到当前的mvn本地仓库中。.m2/repository + diff --git a/maven/08 maven属性标签Properties.md b/maven/08 maven属性标签Properties.md new file mode 100644 index 00000000..29cbaab5 --- /dev/null +++ b/maven/08 maven属性标签Properties.md @@ -0,0 +1,148 @@ +# 属性的生命与使用 + + +## 1 自定义maven属性值 + +### 创建属性值 +``` + + temp + world + +``` + +### 查看属性值 +``` +mvn help:evaluate +``` + +### 访问属性值 + +``` +${a.b} +``` + +## 2 maven中的其他属性 + +### maven访问的系统属性 + +![](image/2022-11-06-10-10-36.png) +这里的系统属性指的是Java虚拟机中定义的变量。 + +```java +Properties properties = System.getProperties(); + +Set properitesSet = properties.keySet(); + +for (Object propName :propertiesSet){ + String propValue = properties.getProperty((String)propName); + System.out.println(propName + ": " + propValue); +} +``` + +得到如下的结果 + +```shell +java.runtime.name: Java(TM) SE Runtime Environment +sun.boot.library.path: /Library/Java/JavaVirtualMachines/jdk1.8.0_291.jdk/Contents/Home/jre/lib +java.vm.version: 25.291-b10 +gopherProxySet: false +java.vm.vendor: Oracle Corporation +java.vendor.url: http://java.oracle.com/ +path.separator: : +java.vm.name: Java HotSpot(TM) 64-Bit Server VM +file.encoding.pkg: sun.io +user.country: CN +sun.java.launcher: SUN_STANDARD +sun.os.patch.level: unknown +java.vm.specification.name: Java Virtual Machine Specification +user.dir: /Users/yinkanglong/work/notes/maven/maven源码/project01-maven-java/target/classes +java.runtime.version: 1.8.0_291-b10 +java.awt.graphicsenv: sun.awt.CGraphicsEnvironment +java.endorsed.dirs: /Library/Java/JavaVirtualMachines/jdk1.8.0_291.jdk/Contents/Home/jre/lib/endorsed +os.arch: x86_64 +java.io.tmpdir: /var/folders/w5/xwpp23dd6qxfb4b8kw2512nr0000gp/T/ +line.separator: + +java.vm.specification.vendor: Oracle Corporation +os.name: Mac OS X +sun.jnu.encoding: UTF-8 +java.library.path: /Users/yinkanglong/Library/Java/Extensions:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java:. +java.specification.name: Java Platform API Specification +java.class.version: 52.0 +sun.management.compiler: HotSpot 64-Bit Tiered Compilers +os.version: 10.16 +user.home: /Users/yinkanglong +user.timezone: +java.awt.printerjob: sun.lwawt.macosx.CPrinterJob +file.encoding: UTF-8 +java.specification.version: 1.8 +java.class.path: . +user.name: yinkanglong +java.vm.specification.version: 1.8 +sun.java.command: com.ykl.App +java.home: /Library/Java/JavaVirtualMachines/jdk1.8.0_291.jdk/Contents/Home/jre +sun.arch.data.model: 64 +user.language: zh +java.specification.vendor: Oracle Corporation +awt.toolkit: sun.lwawt.macosx.LWCToolkit +java.vm.info: mixed mode +java.version: 1.8.0_291 +java.ext.dirs: /Users/yinkanglong/Library/Java/Extensions:/Library/Java/JavaVirtualMachines/jdk1.8.0_291.jdk/Contents/Home/jre/lib/ext:/Library/Java/Extensions:/Network/Library/Java/Extensions:/System/Library/Java/Extensions:/usr/lib/java +sun.boot.class.path: /Library/Java/JavaVirtualMachines/jdk1.8.0_291.jdk/Contents/Home/jre/lib/resources.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_291.jdk/Contents/Home/jre/lib/rt.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_291.jdk/Contents/Home/jre/lib/sunrsasign.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_291.jdk/Contents/Home/jre/lib/jsse.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_291.jdk/Contents/Home/jre/lib/jce.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_291.jdk/Contents/Home/jre/lib/charsets.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_291.jdk/Contents/Home/jre/lib/jfr.jar:/Library/Java/JavaVirtualMachines/jdk1.8.0_291.jdk/Contents/Home/jre/classes +java.vendor: Oracle Corporation +file.separator: / +java.vendor.url.bug: http://bugreport.sun.com/bugreport/ +sun.io.unicode.encoding: UnicodeBig +sun.cpu.endian: little +sun.cpu.isalist: +``` + +### maven能够访问的系统环境变量 +使用env前缀能够访问系统环境变量 +![](image/2022-11-06-10-11-01.png) +这里的系统环境变量指的是操作系统env中当前定义的变量 +通过`${env.JAVA_HOME}`实现。 +``` +[INFO] Enter the Maven expression i.e. ${project.groupId} or 0 to exit?: +${env.JAVA_HOME} +[INFO] +/Library/Java/JavaVirtualMachines/jdk1.8.0_291.jdk/Contents/Home +``` + + +### maven 能够访问POM标签 +使用 project前缀可以访问POM标签 +![](image/2022-11-06-10-11-48.png) +![](image/2022-11-06-10-09-40.png) + +使用表达式`${project.xxx}`可以访问当前POM中定义的元素值。也就是POM中配置的任何元素都可以用属性值进行访问解析。 + +``` +[INFO] Enter the Maven expression i.e. ${project.groupId} or 0 to exit?: +${project.groupId} +[INFO] +org.apache.maven +``` + +### maven能够访问settings全局配置 +![](image/2022-11-06-10-15-28.png) + +使用settings前缀访问settingsxml中配置文件 + +```xml +[INFO] Enter the Maven expression i.e. ${project.groupId} or 0 to exit?: +${settings.localRepository} +[INFO] +/Users/yinkanglong/.m2/repository +``` + + +## 3 maven属性的用途 + +在当前的pom.xml文件中引用属性 + +资源过滤功能:在非maven配置文件中引用属性,由于maven在处理资源师将引用属性的表达式替换为属性值。 + +针对不同环境的profile一般不常用,一般是在框架中做的。 + diff --git a/maven/09 maven构建标签Build.md b/maven/09 maven构建标签Build.md new file mode 100644 index 00000000..050ba228 --- /dev/null +++ b/maven/09 maven构建标签Build.md @@ -0,0 +1,232 @@ +## 1 概述 + +本质上配置的Build标签是对超级POM配置的Build标签的叠加。(猜想 sofaboot的目录结构也是通过build标签定义了约定的目录结构。) + + +## 2 作用 +### 配置约定的目录结构Dir + +![](image/2022-11-06-10-41-09.png) +``` + + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/src/main/java + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/src/main/scripts + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/src/test/java + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/target/classes + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/target/test-classes + + + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/src/main/resources + + + + + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/src/test/resources + + + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/target + project03-maven-test-0.0.1-snapshot + +``` + +### 备用插件管理pluginManagement + +pluginManagement标签存放着多个插件 + +* maven-antrun-plugin +* maven-assembly-plugin +* mavne-dependency-plugin +* maven-release-plugin + +通过pluginMangement标签管理起来的插件,和dependencyManagement一样。子工程使用时可以忽略版本号,在父工程中统一管理版本。父子工程仍旧能够起到版本管理的作用。 + +* spring-boot-dependencies管理的插件信息 +``` + + + + + org.codehaus.mojo + build-helper-maven-plugin + ${build-helper-maven-plugin.version} + + + org.flywaydb + flyway-maven-plugin + ${flyway.version} + + + pl.project13.maven + git-commit-id-plugin + ${git-commit-id-plugin.version} + + +``` + +### 生命周期插件plugins + +plugins 标签存放的是默认生命周期中实际会用到的插件。这是正式使用的插件。正如dependencyManagement一样,是备用的依赖。 + +* 是execution不是exculusion + +```xml + + + + maven-clean-plugin + 3.1.0 + + + default-clean + clean + + clean + + + + + + maven-install-plugin + 2.5.2 + + + default-install + install + + install + + + + + + maven-deploy-plugin + 2.8.2 + + + default-deploy + deploy + + deploy + + + + + + maven-site-plugin + 3.3 + + + default-site + site + + site + + + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/target/site + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + + + + + default-deploy + site-deploy + + deploy + + + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/target/site + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + + + + + + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/target/site + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + + + + + +``` + +## 3 典型应用 + +### source标签和target标签 +* Idea读取的是maven的settings.xml种jdk的版本进行编译的执行。 +* 在settings.xml中的profile配置的jdk版本,注释掉。则IDEA无法正常调用指定版本的jdk编译器,编译程序。 +* 在plugins能够通过指定jdk的版本,实现当前步骤的正常编译。 + * source的配置就是指定的版本。java编译的时候的source参数 + * target是调用编译器时指定的。java编译的时候target参数。 + +![](image/2022-11-06-21-59-58.png) + + +* 在settings.xml中配置jdk版本:尽在本地剩下,如果驼鹿当前settings。xml能够覆盖的范围,则无法生效 +* 在当前maven工程的pom.xml种配置:无论在哪个环境执行编译等构建操作都有效。 + + +### springboot定制化打包 + +* Spring-boot-maven-plugin,用来改变maven默认的构建行为。具体来说就是改变打包的行为。 + * 默认情况下maven调用maven-jar-plugin插件的jar目标,生成普通的jar + * 普通jar没办法通过java -jar xxx.jar命令启动运行, + * 但是Springboot的设计理念就是每一个微服务导出一个jar包。这个jar包可以使用jar -jar命令直接启动。例如需要web的时候,就需要讲tomcat等插件打包到一起。 +* 使用方式,配置Spring-boot-maven-plugin插件。即可使用springboot的打包方式进行打包。 + +```xml + + + + org.springframework.boot + spring-boot-maven-plugin + 2.6.2 + + + +``` + +插件提供了6个maven goal + +* build-info:生成项目的构建信息文件 build-info.properties +* help:用于展示spring-boot-maven-plugin的帮助信息。使用命令行mvn spring-boot:help -Ddetail=true -Dgoal=可展示goal的参数描述信息。 +* repackage:可生成可执行的jar包或war包。插件的核心goal。 +* run:运行 Spring Boot 应用 +* start:在集成测试阶段,控制生命周期 +* stop:在集成测试阶段,控制生命周期 + + +### mybatis的逆向工程 + +插件也可以有自己的依赖。 + +![](image/2022-11-06-22-19-48.png) + + +### resources + +resource可以配置资源过滤 + +* directory指定资源过滤的目录 +* filtering是否打开资源过滤 +* include 包含资源过滤的文件 +* exclude 排除资源过滤的文件。不会被打包的target目标文件夹当中。 + + +![](image/2022-11-06-23-16-13.png) + +## 总结 + +maven的POM中的一些内容。 \ No newline at end of file diff --git a/maven/3maven构建配置文件.md b/maven/10 maven配置文件Profile.md similarity index 69% rename from maven/3maven构建配置文件.md rename to maven/10 maven配置文件Profile.md index fd237587..94237547 100644 --- a/maven/3maven构建配置文件.md +++ b/maven/10 maven配置文件Profile.md @@ -1,15 +1,67 @@ -## 1 配置文件的类型 +## 1 配置文件 -* 项目级:定义在项目的POM文件pom.xml中。 -* 用户级:定义在maven的设置文件xml中(%USER_HOME%.m2/setting.xml) -* 全局:定义在Maven全局的设置xml文件中(%M2_HOME%/comf/settings.xml) - -## 配置文件激活 - -### 配置文件激活 +### 配置文件概述 profile 可以让我们定义一系列的配置信息,然后指定其激活条件。这样我们就可以定义多个 profile,然后每个 profile 对应不同的激活条件和配置信息,从而达到不同环境使用不同配置信息的效果。 +* profiles/profile 代表众多可选配置中的一个,所以使用profiles附属形式进行管理。 +* 由于profile标签覆盖了pom.xml中的默认配置(能够覆盖任何之前的配置),所以profiles标签通常是pom.xml +```xml + + test + + + env + test + + + + + + central + http://mvn.test.alipay.net:8080/artifactory/repo + + true + + + + snapshots + http://mvn.test.alipay.net:8080/artifactory/repo + + true + never + + + + alibaba + http://mvnrepo.alibaba-inc.com/mvn/repository + + + + + central + http://mvn.test.alipay.net:8080/artifactory/repo + + false + never + + + + alibaba + http://mvnrepo.alibaba-inc.com/mvn/repository + + + + +``` + + +* activation标签:激活的方式 + * activeByDefault表示默认激活 + * properties表示一旦被激活后采纳的配置 +* id是名字 + +## 2 maven配置文件的激活方式 ### 通过maven设置激活配置文件 通过Maven设置激活配置文件 @@ -165,3 +217,25 @@ activation 元素包含下面的操作系统信息。当系统为 windows XP 时 ``` +### 使用命令进行激活 + +查看当前环境激活的profile +``` +mvn help:active-profiles +``` +激活某个指定id的profile +``` +mvn compile -P +``` + +## 3 实例 + +### 编写lambda表达式 + + + +## 4 资源属性过滤 +> 一般不用 + +### 过滤资源 +* 使用资源处理功能,处理解析指定目下的`${}`变量。 \ No newline at end of file diff --git a/maven/11 maven私服Nexus.md b/maven/11 maven私服Nexus.md new file mode 100644 index 00000000..7ef679cb --- /dev/null +++ b/maven/11 maven私服Nexus.md @@ -0,0 +1,49 @@ +用于快速的模块化的版本迭代。 + + +## 1 步骤 + +1. 下载nexus的执行程序。也可以直接下载nexus的docker,然后运行。 + + +2. 运行启动nexus执行程序,并查看nexus占用的端口号。 +``` +netstat anl |grep nexus +``` + +3. 然后登录nexus服务器的管理端。 + + +4. 复制黏贴自己的私服地址和用户名密码到settings.xml当中。 + + +5. 配置当前工程pom中的distributionManagement +![](image/2022-11-07-09-54-26.png) + +6. 执行部署。默认情况下,mvn deploy会不数到上述配置中的仓库里。 + + +7. 使用别人部署的jar。必须配置别人部署的nexus仓库。 + + + + +## 2 概述 + +nexus仓库的仓库 +![](image/2022-11-07-09-44-57.png) + + +nexus仓库的类型 +![](image/2022-11-07-09-44-42.png) + + +nexus仓库的名称 + +![](image/2022-11-07-09-46-05.png) + + + +## 3 实验实践 + + diff --git a/maven/12 maven依赖冲突.md b/maven/12 maven依赖冲突.md new file mode 100644 index 00000000..1ba93d6a --- /dev/null +++ b/maven/12 maven依赖冲突.md @@ -0,0 +1,134 @@ +# jar包冲突问题 + +## 1 解决依赖冲突 + +### 冲突的引入 +1. 编订依赖列表的时候需要解决依赖冲突 +2. 在引入多个jar包时产生了冲突 + +### 冲突的本质 +* 统一jar包,不同版本(名称不一样,版本仲裁机制无法生效,导入了多个包,或者仲裁的包错误) +![](image/2022-11-07-14-20-24.png) +* 不同jar包包含同类名(全限定名相同的类) +![](image/2022-11-07-14-20-41.png) + + +## 2 表现形式 + +表现形式:整个错误信息全部是框架、第三方工具包中的类报错,往往就是jar包的问题引起的。并且maven的版本仲裁机制无法生效的情况下。 + +### 抛异常:找不到类 + +* java.lang.ClassNotFoundException:编译过程找不到类 +* java.lang.NoClassDefFoundError:运行过程找不到类 +* java.lang.LinkageError:不同类加载器分别加在的多个类具有相同的全类名。 + +### 抛异常找不到哦啊方法 +* java.lang.NoSuchMethodException:反射过程找不到类。 + * 经过仲裁选中了版本,但是显示包中没有该版本的方法。 + +### 没有报错单结果不对 +* 两个 jar 包中的类分别实现了同一个接口,这本来是很正常的。但是问题在于:由于没有注意命名规范,两个不同实现类恰巧是同一个名字。 + * 具体例子是有的同学在实际工作中遇到过:项目中部分模块使用 log4j 打印日志;其它模块使用 logback,编译运行都不会冲突,但是会引起日志服务降级,让你的 log 配置文件失效。比如:你指定了 error 级别输出,但是冲突就会导致 info、debug 都在输出。 + + + +## 解决方法 + +1. 找到冲突的jar包。 +2. 把彼此冲突的jar包解决掉。 + 1. exclusions排除 + 2. 明确声明依赖。 + + +### IDEA中找到依赖冲突 + +在IDEA中安装maven helper插件。基于pom.xml的依赖冲突分析。能够分析冲突的版本,但不能分析冲突的全类名。 +* 在POM文件下有Analyzer标签。打开可以看到依赖列表、冲突列表。查找所有依赖、展开依赖列表等。 + +也可以使用idea自带的maven功能,也能自动分析maven工程,查看依赖树和查找依赖包。 + + +### maven的enforcer插件 + +检测同一个jar包的不同版本和不同jar包中的同类名。 + +1. 配置build enforcer插件 + +```xml + + + + + org.apache.maven.plugins + maven-enforcer-plugin + 1.4.1 + + + enforce-dependencies + validate + + display-info + enforce + + + + + + org.codehaus.mojo + extra-enforcer-rules + 1.0-beta-4 + + + + + + true + + + + + + + +``` +2. 执行冲突分析命令 +``` + + + + org.apache.maven.plugins + maven-enforcer-plugin + 1.4.1 + + + enforce-dependencies + validate + + display-info + enforce + + + + + + org.codehaus.mojo + extra-enforcer-rules + 1.0-beta-4 + + + + + + true + + + + + + +``` + +3. 查看并分析冲突的内容 + +![](image/2022-11-07-14-27-22.png) diff --git a/maven/13 maven导入普通jar.md b/maven/13 maven导入普通jar.md new file mode 100644 index 00000000..6c12e437 --- /dev/null +++ b/maven/13 maven导入普通jar.md @@ -0,0 +1,127 @@ + +## 1 概述 + + +### 提出问题 + +而实际开发中确实有可能用到一些 jar 包并非是用 Maven 的方式发布,那自然也没法通过 Maven 导入。 + +此时如果我们能够拿到该 jar 包的源码那还可以自己建一个 Maven 工程,自己打包。 + +## 2 手动打包一个可执行文件 + +1. 生成.class 文件。利用javac命令进行编译 +```sh +➜ src git:(master) ✗ javac com/ykl/Main.java -d ./out/ +➜ src git:(master) ✗ ls +com out +``` + +2. 编写manifest文件。manifest文件命名和格式按照要求,可以少写几个参数。 + +``` +➜ out git:(master) ✗ cat MANIFEST.MF +Manifest-Version: 1.0 +Main-Class: com.ykl.Main +``` + + +3. jar打包文件。jar命令在工作目录下执行。out/目录下打包所有内容。如果没有主类,则使用jar -cvf。 如果有主类则使用jar -cvfm + +``` +➜ out git:(master) ✗ jar -cvfm hello.jar * +已添加清单 +正在添加: com/(输入 = 0) (输出 = 0)(存储了 0%) +正在添加: com/ykl/(输入 = 0) (输出 = 0)(存储了 0%) +正在添加: com/ykl/MANIFEST.MF(输入 = 48) (输出 = 48)(压缩了 0%) +正在添加: com/ykl/hello.jar(输入 = 3072) (输出 = 474)(压缩了 84%) +正在添加: com/ykl/Main.class(输入 = 422) (输出 = 293)(压缩了 30%) +``` + +4. 执行文件 + +``` +➜ out git:(master) ✗ java -jar hello.jar +hello world! +``` + +## 3 使用IDEA打包一个可执行文件 + +1. 创建一个Java工程 + + + +2. 配置artifacts,打包成jar。project structure -> artifact -> moudule import。利用IDEA自动打包过程会添加MANIFEST.MF 文件到打包文件中。 + +![](image/2022-11-07-13-27-00.png) + +![](image/2022-11-07-13-27-10.png) + + + +## 4 导入一个非maven的jar包。 + +1. 将jar包安装到maven仓库中。install + +```java +mvn install:install-file -Dfile=./hello.jar \ +-DgroupId=com.ykl \ +-DartifactId=java-main-project \ +-Dversion=1 \ +-Dpackaging=jar +``` + +``` +➜ out git:(master) ✗ mvn install:install-file -Dfile=./hello.jar \ +-DgroupId=com.ykl \ +-DartifactId=java-main-project \ +-Dversion=1 \ +-Dpackaging=jar +[INFO] Scanning for projects... +[INFO] +[INFO] ------------------< org.apache.maven:standalone-pom >------------------- +[INFO] Building Maven Stub Project (No POM) 1 +[INFO] --------------------------------[ pom ]--------------------------------- +[INFO] +[INFO] --- maven-install-plugin:2.4:install-file (default-cli) @ standalone-pom --- +[INFO] Installing /Users/yinkanglong/work/notes/maven/maven源码/project04-maven-import/purejavamoudle/src/out/hello.jar to /Users/yinkanglong/.m2/repository/com/ykl/java-main-project/1/java-main-project-1.jar +[INFO] Installing /var/folders/w5/xwpp23dd6qxfb4b8kw2512nr0000gp/T/mvninstall3747814679268417305.pom to /Users/yinkanglong/.m2/repository/com/ykl/java-main-project/1/java-main-project-1.pom +[INFO] ------------------------------------------------------------------------ +[INFO] BUILD SUCCESS +[INFO] ------------------------------------------------------------------------ +[INFO] Total time: 0.379 s +[INFO] Finished at: 2022-11-07T14:07:10+08:00 +[INFO] ------------------------------------------------------------------------ +``` + +2. 查看maven仓库中的jar包 + +![](image/2022-11-07-14-13-21.png) + +3. 引入自定义安装的jar包 + +```xml + + com.ykl + java-main-project + 1 + +``` + +4. 测试程序。创建这个方法,并运行成功。 + +```java +package com.ykl; +import com.ykl.Main; +/** + * Hello world! + * + */ +public class App +{ + public static void main( String[] args ) + { + Main.main( args ); + } +} +``` \ No newline at end of file diff --git a/maven/1简介.md b/maven/1简介.md deleted file mode 100644 index 3b0d7954..00000000 --- a/maven/1简介.md +++ /dev/null @@ -1,48 +0,0 @@ -# maven简介 - -> 纯java开源项目。**项目管理工具**,对java项目进行构建、依赖管理。也可以用于构建和管理其他项目(c#,Ruby,Scala) - -> 在上一次做handoop mapreduce的时候,发现了pom文件,然后配置了maven,作为maven工程打开过。但是具体的过程,为啥忘得一干二净,只记得自己曾经对maven的setting文件进行修改,那个时候应该还创建了本地库。但是完全记不清了。 - -## 1 maven主要功能 - -* 构建 -* 文档生成 -* 报告 -* 依赖 -* SCMs -* 发布 -* 分发 -* 邮件列表 - - -## 2 maven项目目录结构 -| 目录| 目的| -|-|-| -| ${basedir} |存放pom.xml和所有的子目录| -| ${basedir}/src/main/java |项目的java源代码| -| ${basedir}/src/main/resources |项目的资源,比如说property文件,springmvc.xml| -| ${basedir}/src/test/java |项目的测试类,比如说Junit代码| -| ${basedir}/src/test/resources |测试用的资源| -| ${basedir}/src/main/webapp/WEB-INF |web应用文件目录,web项目的信息,比如存放web.xml、本地图片、jsp视图页面| -| ${basedir}/target |打包输出目录| -| ${basedir}/target/classes |编译输出目录| -| ${basedir}/target/test-classes |测试编译输出目录| -| Test.java |Maven只会自动运行符合该命名规则的测试类| -| ~/.m2/repository |Maven默认的本地仓库目录位置| - - -## 3 maven项目的优势 -* 基于模型的构建 − Maven能够将任意数量的项目构建到预定义的输出类型中,如 JAR,WAR 或基于项目元数据的分发,而不需要在大多数情况下执行任何脚本。 -* 项目信息的一致性站点 − 使用与构建过程相同的元数据,Maven 能够生成一个网站或PDF,包括您要添加的任何文档,并添加到关于项目开发状态的标准报告中。 -* 发布管理和发布单独的输出 − Maven 将不需要额外的配置,就可以与源代码管理系统(如 Subversion 或 Git)集成,并可以基于某个标签管理项目的发布。它也可以将其发布到分发位置供其他项目使用。Maven 能够发布单独的输出,如 JAR,包含其他依赖和文档的归档,或者作为源代码发布。 -* 向后兼容性 − 您可以很轻松的从旧版本 Maven 的多个模块移植到 Maven 3 中。 -* 子项目使用父项目依赖时,正常情况子项目应该继承父项目依赖,无需使用版本号 -* 并行构建 − 编译的速度能普遍提高20 - 50 %。 -* 更好的错误报告 − Maven 改进了错误报告,它为您提供了 Maven wiki 页面的链接,您可以点击链接查看错误的完整描述。 - -## 4 maven名词解释 -* 项目对象模型POM:,xml文件,项目基本信息,描述项目构建过程,声明项目依赖。 -* 构件:任何一个依赖、插件或者项目构建输出,都可以称之为构件。 -* 插件Plugin:maven是依赖插件完成任务的,项目管理工具。 -* 仓库Repository:maven仓库能够帮我们管理构件 \ No newline at end of file diff --git a/maven/6maven插件.md b/maven/6maven插件.md deleted file mode 100644 index 414ec2c6..00000000 --- a/maven/6maven插件.md +++ /dev/null @@ -1,64 +0,0 @@ -## 1 简介 - -maven项目包含三个生命周期,每个生命周期包含多个节点。每个节点都是由maven插件实现。例如maven-clean-plugin - -maven实际上是一个依赖插件执行的框架。 - -插件提供了一个目标的集合。使用以下语法执行 -``` -mvn [plugin-name]:[goal-name] -mvn compiler:compile -``` - -## 2 常用插件 - -分为两类 -* Build plugins -* Repoting plugins - -常用插件列表 - -* clean 构建之后清理目标文件。删除目标目录。 -* compiler 编译 Java 源文件。 -* surefile 运行 JUnit 单元测试。创建测试报告。 -* jar 从当前工程中构建 JAR 文件。 -* war 从当前工程中构建 WAR 文件。 -* javadoc 为工程生成 Javadoc。 -* antrun 从构建过程的任意一个阶段中运行一个 ant 任务的集合。 - -## 3 插件修改方法 - -``` - -4.0.0 -com.companyname.projectgroup -project -1.0 - - - - org.apache.maven.plugins - maven-antrun-plugin - 1.1 - - - id.clean - clean - - run - - - - clean phase - - - - - - - - -``` \ No newline at end of file diff --git a/maven/8maven引入外部依赖.md b/maven/8maven引入外部依赖.md deleted file mode 100644 index a56c6882..00000000 --- a/maven/8maven引入外部依赖.md +++ /dev/null @@ -1,19 +0,0 @@ -## 1. 引入外部依赖到项目中 -在src下创建lib文件夹,用来防止第三方的jar文件。 -``` - - - - ldapjdk - ldapjdk - 1.0 - system - ${basedir}\src\lib\ldapjdk.jar - - -``` - -## 2. 引入外部依赖到本地中 - -可以直接下载到当前的mvn本地仓库中。.m2/repository - diff --git a/maven/9maven快照.md b/maven/9maven快照.md deleted file mode 100644 index 565fc22b..00000000 --- a/maven/9maven快照.md +++ /dev/null @@ -1 +0,0 @@ -用于快速的模块化的版本迭代。 \ No newline at end of file diff --git a/maven/maven教程/image/2022-07-11-10-36-37.png b/maven/image/2022-07-11-10-36-37.png similarity index 100% rename from maven/maven教程/image/2022-07-11-10-36-37.png rename to maven/image/2022-07-11-10-36-37.png diff --git a/maven/maven教程/image/2022-07-11-11-40-25.png b/maven/image/2022-07-11-11-40-25.png similarity index 100% rename from maven/maven教程/image/2022-07-11-11-40-25.png rename to maven/image/2022-07-11-11-40-25.png diff --git a/maven/maven教程/image/2022-07-11-11-56-50.png b/maven/image/2022-07-11-11-56-50.png similarity index 100% rename from maven/maven教程/image/2022-07-11-11-56-50.png rename to maven/image/2022-07-11-11-56-50.png diff --git a/maven/maven教程/image/2022-07-11-13-20-18.png b/maven/image/2022-07-11-13-20-18.png similarity index 100% rename from maven/maven教程/image/2022-07-11-13-20-18.png rename to maven/image/2022-07-11-13-20-18.png diff --git a/maven/maven教程/image/2022-10-28-18-22-04.png b/maven/image/2022-10-28-18-22-04.png similarity index 100% rename from maven/maven教程/image/2022-10-28-18-22-04.png rename to maven/image/2022-10-28-18-22-04.png diff --git a/maven/maven教程/image/2022-10-28-18-35-00.png b/maven/image/2022-10-28-18-35-00.png similarity index 100% rename from maven/maven教程/image/2022-10-28-18-35-00.png rename to maven/image/2022-10-28-18-35-00.png diff --git a/maven/maven教程/image/2022-10-28-18-36-02.png b/maven/image/2022-10-28-18-36-02.png similarity index 100% rename from maven/maven教程/image/2022-10-28-18-36-02.png rename to maven/image/2022-10-28-18-36-02.png diff --git a/maven/maven教程/image/2022-10-28-18-59-23.png b/maven/image/2022-10-28-18-59-23.png similarity index 100% rename from maven/maven教程/image/2022-10-28-18-59-23.png rename to maven/image/2022-10-28-18-59-23.png diff --git a/maven/maven教程/image/2022-10-29-10-17-50.png b/maven/image/2022-10-29-10-17-50.png similarity index 100% rename from maven/maven教程/image/2022-10-29-10-17-50.png rename to maven/image/2022-10-29-10-17-50.png diff --git a/maven/maven教程/image/2022-10-30-14-14-47.png b/maven/image/2022-10-30-14-14-47.png similarity index 100% rename from maven/maven教程/image/2022-10-30-14-14-47.png rename to maven/image/2022-10-30-14-14-47.png diff --git a/maven/image/2022-11-03-09-40-26.png b/maven/image/2022-11-03-09-40-26.png new file mode 100644 index 00000000..ed805f11 Binary files /dev/null and b/maven/image/2022-11-03-09-40-26.png differ diff --git a/maven/image/2022-11-05-21-14-18.png b/maven/image/2022-11-05-21-14-18.png new file mode 100644 index 00000000..7248cf7b Binary files /dev/null and b/maven/image/2022-11-05-21-14-18.png differ diff --git a/maven/image/2022-11-05-21-47-56.png b/maven/image/2022-11-05-21-47-56.png new file mode 100644 index 00000000..ad388750 Binary files /dev/null and b/maven/image/2022-11-05-21-47-56.png differ diff --git a/maven/image/2022-11-05-22-27-12.png b/maven/image/2022-11-05-22-27-12.png new file mode 100644 index 00000000..2cae1c74 Binary files /dev/null and b/maven/image/2022-11-05-22-27-12.png differ diff --git a/maven/image/2022-11-05-23-03-56.png b/maven/image/2022-11-05-23-03-56.png new file mode 100644 index 00000000..1476f02d Binary files /dev/null and b/maven/image/2022-11-05-23-03-56.png differ diff --git a/maven/image/2022-11-06-10-09-40.png b/maven/image/2022-11-06-10-09-40.png new file mode 100644 index 00000000..eda81e05 Binary files /dev/null and b/maven/image/2022-11-06-10-09-40.png differ diff --git a/maven/image/2022-11-06-10-10-36.png b/maven/image/2022-11-06-10-10-36.png new file mode 100644 index 00000000..e2839373 Binary files /dev/null and b/maven/image/2022-11-06-10-10-36.png differ diff --git a/maven/image/2022-11-06-10-11-01.png b/maven/image/2022-11-06-10-11-01.png new file mode 100644 index 00000000..25f874bf Binary files /dev/null and b/maven/image/2022-11-06-10-11-01.png differ diff --git a/maven/image/2022-11-06-10-11-48.png b/maven/image/2022-11-06-10-11-48.png new file mode 100644 index 00000000..65d7d266 Binary files /dev/null and b/maven/image/2022-11-06-10-11-48.png differ diff --git a/maven/image/2022-11-06-10-15-28.png b/maven/image/2022-11-06-10-15-28.png new file mode 100644 index 00000000..902a0b64 Binary files /dev/null and b/maven/image/2022-11-06-10-15-28.png differ diff --git a/maven/image/2022-11-06-10-41-09.png b/maven/image/2022-11-06-10-41-09.png new file mode 100644 index 00000000..ee47bc10 Binary files /dev/null and b/maven/image/2022-11-06-10-41-09.png differ diff --git a/maven/image/2022-11-06-21-59-58.png b/maven/image/2022-11-06-21-59-58.png new file mode 100644 index 00000000..ebb29a12 Binary files /dev/null and b/maven/image/2022-11-06-21-59-58.png differ diff --git a/maven/image/2022-11-06-22-19-48.png b/maven/image/2022-11-06-22-19-48.png new file mode 100644 index 00000000..02a4d732 Binary files /dev/null and b/maven/image/2022-11-06-22-19-48.png differ diff --git a/maven/image/2022-11-06-22-24-53.png b/maven/image/2022-11-06-22-24-53.png new file mode 100644 index 00000000..f0ccf978 Binary files /dev/null and b/maven/image/2022-11-06-22-24-53.png differ diff --git a/maven/image/2022-11-06-22-25-13.png b/maven/image/2022-11-06-22-25-13.png new file mode 100644 index 00000000..df038309 Binary files /dev/null and b/maven/image/2022-11-06-22-25-13.png differ diff --git a/maven/image/2022-11-06-22-30-18.png b/maven/image/2022-11-06-22-30-18.png new file mode 100644 index 00000000..58fc01b5 Binary files /dev/null and b/maven/image/2022-11-06-22-30-18.png differ diff --git a/maven/image/2022-11-06-22-31-10.png b/maven/image/2022-11-06-22-31-10.png new file mode 100644 index 00000000..8d4181c2 Binary files /dev/null and b/maven/image/2022-11-06-22-31-10.png differ diff --git a/maven/image/2022-11-06-22-34-11.png b/maven/image/2022-11-06-22-34-11.png new file mode 100644 index 00000000..79a4bc31 Binary files /dev/null and b/maven/image/2022-11-06-22-34-11.png differ diff --git a/maven/image/2022-11-06-22-41-34.png b/maven/image/2022-11-06-22-41-34.png new file mode 100644 index 00000000..7f6b4fde Binary files /dev/null and b/maven/image/2022-11-06-22-41-34.png differ diff --git a/maven/image/2022-11-06-23-16-13.png b/maven/image/2022-11-06-23-16-13.png new file mode 100644 index 00000000..d7ba14dc Binary files /dev/null and b/maven/image/2022-11-06-23-16-13.png differ diff --git a/maven/image/2022-11-07-09-44-42.png b/maven/image/2022-11-07-09-44-42.png new file mode 100644 index 00000000..e7cd5495 Binary files /dev/null and b/maven/image/2022-11-07-09-44-42.png differ diff --git a/maven/image/2022-11-07-09-44-57.png b/maven/image/2022-11-07-09-44-57.png new file mode 100644 index 00000000..f1a6f892 Binary files /dev/null and b/maven/image/2022-11-07-09-44-57.png differ diff --git a/maven/image/2022-11-07-09-46-05.png b/maven/image/2022-11-07-09-46-05.png new file mode 100644 index 00000000..7317a029 Binary files /dev/null and b/maven/image/2022-11-07-09-46-05.png differ diff --git a/maven/image/2022-11-07-09-54-26.png b/maven/image/2022-11-07-09-54-26.png new file mode 100644 index 00000000..da6bab8a Binary files /dev/null and b/maven/image/2022-11-07-09-54-26.png differ diff --git a/maven/image/2022-11-07-13-27-00.png b/maven/image/2022-11-07-13-27-00.png new file mode 100644 index 00000000..8ce6a664 Binary files /dev/null and b/maven/image/2022-11-07-13-27-00.png differ diff --git a/maven/image/2022-11-07-13-27-10.png b/maven/image/2022-11-07-13-27-10.png new file mode 100644 index 00000000..4ff80ba7 Binary files /dev/null and b/maven/image/2022-11-07-13-27-10.png differ diff --git a/maven/image/2022-11-07-14-13-21.png b/maven/image/2022-11-07-14-13-21.png new file mode 100644 index 00000000..189c6278 Binary files /dev/null and b/maven/image/2022-11-07-14-13-21.png differ diff --git a/maven/image/2022-11-07-14-20-24.png b/maven/image/2022-11-07-14-20-24.png new file mode 100644 index 00000000..9a96fd9f Binary files /dev/null and b/maven/image/2022-11-07-14-20-24.png differ diff --git a/maven/image/2022-11-07-14-20-41.png b/maven/image/2022-11-07-14-20-41.png new file mode 100644 index 00000000..9112cc4a Binary files /dev/null and b/maven/image/2022-11-07-14-20-41.png differ diff --git a/maven/image/2022-11-07-14-27-22.png b/maven/image/2022-11-07-14-27-22.png new file mode 100644 index 00000000..c735b094 Binary files /dev/null and b/maven/image/2022-11-07-14-27-22.png differ diff --git a/maven/image/2022-11-07-14-48-13.png b/maven/image/2022-11-07-14-48-13.png new file mode 100644 index 00000000..186b3fac Binary files /dev/null and b/maven/image/2022-11-07-14-48-13.png differ diff --git a/maven/image/2022-11-07-14-56-43.png b/maven/image/2022-11-07-14-56-43.png new file mode 100644 index 00000000..bf3b0b26 Binary files /dev/null and b/maven/image/2022-11-07-14-56-43.png differ diff --git a/maven/image/2022-11-07-15-01-29.png b/maven/image/2022-11-07-15-01-29.png new file mode 100644 index 00000000..5f94bdef Binary files /dev/null and b/maven/image/2022-11-07-15-01-29.png differ diff --git a/maven/image/2022-11-07-15-01-40.png b/maven/image/2022-11-07-15-01-40.png new file mode 100644 index 00000000..3512afb6 Binary files /dev/null and b/maven/image/2022-11-07-15-01-40.png differ diff --git a/maven/image/2022-11-07-15-01-48.png b/maven/image/2022-11-07-15-01-48.png new file mode 100644 index 00000000..c8c5e3a9 Binary files /dev/null and b/maven/image/2022-11-07-15-01-48.png differ diff --git a/maven/image/2022-11-07-15-17-31.png b/maven/image/2022-11-07-15-17-31.png new file mode 100644 index 00000000..e299d488 Binary files /dev/null and b/maven/image/2022-11-07-15-17-31.png differ diff --git a/maven/image/images.png b/maven/image/images.png new file mode 100644 index 00000000..d37a9f0d Binary files /dev/null and b/maven/image/images.png differ diff --git a/maven/maven教程/02 maven工作机制.md b/maven/maven教程/02 maven工作机制.md deleted file mode 100644 index 3c81185e..00000000 --- a/maven/maven教程/02 maven工作机制.md +++ /dev/null @@ -1,6 +0,0 @@ -# maven工作机制 - - -## 1 工作机制 - -![](image/2022-10-29-10-17-50.png) \ No newline at end of file diff --git a/maven/maven教程/03 maven命令使用.md b/maven/maven教程/03 maven命令使用.md deleted file mode 100644 index 72d06cc4..00000000 --- a/maven/maven教程/03 maven命令使用.md +++ /dev/null @@ -1,21 +0,0 @@ -## 1 命令 - - -### 基本命令 - -* 主命令 -* 插件 -* 子命令 - -![](image/2022-10-30-14-14-47.png) - - - -### 生成maven工程 - -``` -mvn archetype:generate -DarchetypeGroupId=com.alipay.sofa -DarchetypeArtifactId=sofaboot-web-archetype -DarchetypeVersion=1.0-SNAPSHOT -DarchetypeCatalog=internal -``` - -## 2 pom解析 - diff --git a/maven/maven源码/project01-maven-java/pom.xml b/maven/maven源码/project01-maven-java/pom.xml index b7ff48cd..396326a6 100644 --- a/maven/maven源码/project01-maven-java/pom.xml +++ b/maven/maven源码/project01-maven-java/pom.xml @@ -32,6 +32,11 @@ 4.11 test + + org.springframework + spring-core + 4.0.0.RELEASE + diff --git a/maven/maven源码/project01-maven-java/src/main/java/com/ykl/App.java b/maven/maven源码/project01-maven-java/src/main/java/com/ykl/App.java index 0afe0348..bb444653 100644 --- a/maven/maven源码/project01-maven-java/src/main/java/com/ykl/App.java +++ b/maven/maven源码/project01-maven-java/src/main/java/com/ykl/App.java @@ -1,5 +1,8 @@ package com.ykl; +import java.util.Properties; +import java.util.Set; + /** * Hello world! * @@ -9,5 +12,13 @@ public class App public static void main( String[] args ) { System.out.println( "Hello World!" ); + Properties properties = System.getProperties(); + + Set properitesSet = properties.keySet(); + + for (Object propName :properitesSet){ + String propValue = properties.getProperty((String)propName); + System.out.println(propName + ": " + propValue); + } } } diff --git a/maven/maven源码/project02-maven-web/pom.xml b/maven/maven源码/project02-maven-web/pom.xml index 1cf559fd..933e71d4 100644 --- a/maven/maven源码/project02-maven-web/pom.xml +++ b/maven/maven源码/project02-maven-web/pom.xml @@ -1,12 +1,15 @@ 4.0.0 + com.ykl project02-maven-web - war 0.0.1-snapshot + + war project02-maven-web Maven Webapp http://maven.apache.org + junit @@ -14,14 +17,25 @@ 3.8.1 test - + javax.servlet javax.servlet-api 3.1.0 provided + + com.ykl + project01-maven-java + 1.0-SNAPSHOT + + + junit + junit + 4.11 + test + diff --git a/maven/maven源码/project02-maven-web/src/test/java/com/ykl/AppTest.java b/maven/maven源码/project02-maven-web/src/test/java/com/ykl/AppTest.java new file mode 100644 index 00000000..2bd2dce2 --- /dev/null +++ b/maven/maven源码/project02-maven-web/src/test/java/com/ykl/AppTest.java @@ -0,0 +1,21 @@ +package com.ykl; + +import static org.junit.Assert.assertTrue; + +import org.junit.Test; + +/** + * Unit test for simple App. + */ +public class AppTest +{ + /** + * Rigorous Test :-) + */ + @Test + public void shouldAnswerWithTrue() + { + assertTrue( true ); + System.out.println("test finish"); + } +} diff --git a/maven/maven源码/project03-maven-test/effective-pom.xml b/maven/maven源码/project03-maven-test/effective-pom.xml new file mode 100644 index 00000000..bd0db813 --- /dev/null +++ b/maven/maven源码/project03-maven-test/effective-pom.xml @@ -0,0 +1,25268 @@ + + + + + + + + + + + + + + + + 4.0.0 + + org.springframework.boot + spring-boot-dependencies + 2.6.2 + + com.ykl + project03-maven-test + 0.0.1-snapshot + pom + project03-maven-test + Spring Boot Dependencies + http://maven.apache.org + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + + + Pivotal + info@pivotal.io + Pivotal Software, Inc. + https://www.spring.io + + + + project04-maven-moduele + project05-maven-moduele + project06-maven-moduele + + + https://github.com/spring-projects/spring-boot/project03-maven-test + + + 5.16.3 + 2.7.7 + 1.9.93 + 2.19.0 + 1.9.7 + 3.21.0 + 4.0.6 + 4.1.1 + 3.2.0 + 1.11.22 + 2.9.3 + 4.13.0 + 1.5.1 + temp + world + 1.15 + 2.9.0 + 3.12.0 + 1.6 + 2.11.1 + 3.2.4 + 11.5.7.0 + 1.0.11.RELEASE + 10.14.2.0 + 4.2.7 + 2.10.9.2 + 3.9.9 + 7.15.2 + 3.0.0 + 8.0.5 + 2.3.31 + 4.9.10 + 3.0.4 + 2.3.5 + 1.2.6 + 3.0.9 + 2.8.9 + 1.4.200 + 2.2 + 2.2.1 + 4.2.4 + 6.2.0.Final + 5.6.3.Final + 4.0.3 + 2.5.2 + 2.54.0 + 4.1.5 + 4.5.13 + 5.1.2 + 4.4.15 + 5.1.2 + 12.1.10.Final + 2.22 + 2.13.1 + 1.2.2 + 1.3.5 + 2.0.3 + 1.0.2 + 1.1.6 + 1.6.7 + 1.1.4 + 2.2.3 + 1.2.7 + 4.0.4 + 1.3.3 + 2.0.2 + 1.1.2 + 2.1.6 + 2.3.3 + 1.4.2 + 2.3.3 + 3.1.6 + 1.2.0 + 1.3.2 + 1.1.1 + 2.3.1 + 2.3.1 + 2.0.1 + 1.1.4 + 1.0 + 1.6.2 + 1.1 + 2.2 + 1.3 + 2.0.1.Final + 1.1 + 1.2.0 + 4.0.4.java8 + 3.4.2.Final + 2.0.6.1 + 3.7.1 + 2.35 + 9.0.52 + 2.2.0.v201112011158 + 1.1.10 + 9.4.44.v20210927 + 1.15 + 1.2.15 + 1.7.1 + 3.14.15 + 2.6.0 + 2.4.7 + 1.5.0 + 1.2 + 1.3.1 + 5.8.2 + 4.13.2 + 3.0.0 + 1.5.2 + 1.6.10 + 6.1.5.RELEASE + 4.5.0 + 2.17.0 + 1.2.9 + 1.18.22 + 2.7.4 + 3.0.0 + 3.3.0 + 3.1.0 + 3.8.1 + 3.2.0 + 2.8.2 + 3.0.0 + 2.22.2 + 3.2.0 + 2.5.2 + 3.2.2 + 3.2.0 + 3.3.1 + 3.2.0 + 3.2.4 + 3.2.1 + 2.22.2 + 3.3.2 + 1.8.1 + 1.9.15 + 4.0.0 + 4.4.0 + 9.4.1.jre8 + 8.0.27 + 1.9.22 + 4.3.6 + 2.0.46.Final + 4.1.72.Final + 3.14.9 + 21.3.0.0 + 1.2.2 + 42.3.1 + 0.12.0 + 2.3.2 + 5.0.0 + Arabba-SR11 + 5.13.1 + 0.4.0 + 1.0.3 + 2020.0.14 + 4.4.0 + 1.1.1 + 1.2.1 + 1.3.8 + 2.2.21 + 1.5.3 + 2.54.0 + 3.141.59 + 4.7.6 + 4.0.1 + 1.7.32 + 1.29 + 8.8.2 + 2.4.1 + 4.3.4 + 2021.1.0 + 5.3.14 + 1.4.0 + 5.5.7 + 2.8.1 + 2.3.5.RELEASE + 2.0.5.RELEASE + 1.3.1 + 5.6.1 + 2021.1.1 + 3.1.2 + 3.36.0.3 + 1.6.7 + 2.0.1 + 3.0.4.RELEASE + 3.0.4.RELEASE + 3.0.0 + 3.0.14.RELEASE + 9.0.56 + 4.0.14 + 2.2.14.Final + 2.8.1 + 0.48 + 1.6.3 + 1.0.2 + 2.8.4 + + + + + org.spingframwork + spring-core + 4.0.0.RELEASE + + + org.springframework + spring-beans + 4.0.0.RELEASE + + + org.springframework + spring-context + 4.0.0.RELEASE + + + org.springframework + spring-expression + 4.0.0.RELEASE + + + org.springframework + spring-aop + 4.0.0.RELEASE + + + org.apache.activemq + activemq-amqp + 5.16.3 + + + org.apache.activemq + activemq-blueprint + 5.16.3 + + + org.apache.activemq + activemq-broker + 5.16.3 + + + org.apache.activemq + activemq-camel + 5.16.3 + + + org.apache.activemq + activemq-client + 5.16.3 + + + org.apache.activemq + activemq-console + 5.16.3 + + + commons-logging + commons-logging + + + + + org.apache.activemq + activemq-http + 5.16.3 + + + org.apache.activemq + activemq-jaas + 5.16.3 + + + org.apache.activemq + activemq-jdbc-store + 5.16.3 + + + org.apache.activemq + activemq-jms-pool + 5.16.3 + + + org.apache.activemq + activemq-kahadb-store + 5.16.3 + + + org.apache.activemq + activemq-karaf + 5.16.3 + + + org.apache.activemq + activemq-leveldb-store + 5.16.3 + + + commons-logging + commons-logging + + + + + org.apache.activemq + activemq-log4j-appender + 5.16.3 + + + org.apache.activemq + activemq-mqtt + 5.16.3 + + + org.apache.activemq + activemq-openwire-generator + 5.16.3 + + + org.apache.activemq + activemq-openwire-legacy + 5.16.3 + + + org.apache.activemq + activemq-osgi + 5.16.3 + + + org.apache.activemq + activemq-partition + 5.16.3 + + + org.apache.activemq + activemq-pool + 5.16.3 + + + org.apache.activemq + activemq-ra + 5.16.3 + + + org.apache.activemq + activemq-run + 5.16.3 + + + org.apache.activemq + activemq-runtime-config + 5.16.3 + + + org.apache.activemq + activemq-shiro + 5.16.3 + + + org.apache.activemq + activemq-spring + 5.16.3 + + + commons-logging + commons-logging + + + + + org.apache.activemq + activemq-stomp + 5.16.3 + + + org.apache.activemq + activemq-web + 5.16.3 + + + antlr + antlr + 2.7.7 + + + com.google.appengine + appengine-api-1.0-sdk + 1.9.93 + + + org.apache.activemq + artemis-amqp-protocol + 2.19.0 + + + org.apache.activemq + artemis-commons + 2.19.0 + + + commons-logging + commons-logging + + + + + org.apache.activemq + artemis-core-client + 2.19.0 + + + geronimo-json_1.0_spec + org.apache.geronimo.specs + + + + + org.apache.activemq + artemis-jms-client + 2.19.0 + + + geronimo-json_1.0_spec + org.apache.geronimo.specs + + + + + org.apache.activemq + artemis-jms-server + 2.19.0 + + + geronimo-json_1.0_spec + org.apache.geronimo.specs + + + + + org.apache.activemq + artemis-journal + 2.19.0 + + + org.apache.activemq + artemis-selector + 2.19.0 + + + org.apache.activemq + artemis-server + 2.19.0 + + + commons-logging + commons-logging + + + geronimo-json_1.0_spec + org.apache.geronimo.specs + + + + + org.apache.activemq + artemis-service-extensions + 2.19.0 + + + org.aspectj + aspectjrt + 1.9.7 + + + org.aspectj + aspectjtools + 1.9.7 + + + org.aspectj + aspectjweaver + 1.9.7 + + + org.assertj + assertj-core + 3.21.0 + + + com.atomikos + transactions-jdbc + 4.0.6 + + + com.atomikos + transactions-jms + 4.0.6 + + + com.atomikos + transactions-jta + 4.0.6 + + + org.awaitility + awaitility + 4.1.1 + + + org.awaitility + awaitility-groovy + 4.1.1 + + + org.awaitility + awaitility-kotlin + 4.1.1 + + + org.awaitility + awaitility-scala + 4.1.1 + + + net.bytebuddy + byte-buddy + 1.11.22 + + + net.bytebuddy + byte-buddy-agent + 1.11.22 + + + com.github.ben-manes.caffeine + caffeine + 2.9.3 + + + com.github.ben-manes.caffeine + guava + 2.9.3 + + + com.github.ben-manes.caffeine + jcache + 2.9.3 + + + com.github.ben-manes.caffeine + simulator + 2.9.3 + + + com.datastax.oss + java-driver-core + 4.13.0 + + + jcl-over-slf4j + org.slf4j + + + + + com.fasterxml + classmate + 1.5.1 + + + commons-codec + commons-codec + 1.15 + + + org.apache.commons + commons-dbcp2 + 2.9.0 + + + commons-logging + commons-logging + + + + + org.apache.commons + commons-lang3 + 3.12.0 + + + commons-pool + commons-pool + 1.6 + + + org.apache.commons + commons-pool2 + 2.11.1 + + + com.couchbase.client + java-client + 3.2.4 + + + com.ibm.db2 + jcc + 11.5.7.0 + + + io.spring.gradle + dependency-management-plugin + 1.0.11.RELEASE + + + org.apache.derby + derby + 10.14.2.0 + + + org.apache.derby + derbyclient + 10.14.2.0 + + + net.sf.ehcache + ehcache + 2.10.9.2 + + + org.ehcache + ehcache + 3.9.9 + + + org.ehcache + ehcache-clustered + 3.9.9 + + + org.ehcache + ehcache-transactions + 3.9.9 + + + org.elasticsearch + elasticsearch + 7.15.2 + + + org.elasticsearch.client + transport + 7.15.2 + + + org.elasticsearch.client + elasticsearch-rest-client + 7.15.2 + + + commons-logging + commons-logging + + + + + org.elasticsearch.client + elasticsearch-rest-client-sniffer + 7.15.2 + + + commons-logging + commons-logging + + + + + org.elasticsearch.client + elasticsearch-rest-high-level-client + 7.15.2 + + + org.elasticsearch.distribution.integ-test-zip + elasticsearch + 7.15.2 + zip + + + org.elasticsearch.plugin + transport-netty4-client + 7.15.2 + + + de.flapdoodle.embed + de.flapdoodle.embed.mongo + 3.0.0 + + + org.flywaydb + flyway-core + 8.0.5 + + + org.freemarker + freemarker + 2.3.31 + + + org.glassfish + jakarta.el + 3.0.4 + + + org.glassfish.jaxb + codemodel + 2.3.5 + + + org.glassfish.jaxb + codemodel-annotation-compiler + 2.3.5 + + + org.glassfish.jaxb + jaxb-jxc + 2.3.5 + + + org.glassfish.jaxb + jaxb-runtime + 2.3.5 + + + org.glassfish.jaxb + jaxb-xjc + 2.3.5 + + + org.glassfish.jaxb + txw2 + 2.3.5 + + + org.glassfish.jaxb + txwc2 + 2.3.5 + + + org.glassfish.jaxb + xsom + 2.3.5 + + + org.glassfish.web + jakarta.servlet.jsp.jstl + 1.2.6 + + + com.google.code.gson + gson + 2.8.9 + + + com.h2database + h2 + 1.4.200 + + + org.hamcrest + hamcrest + 2.2 + + + org.hamcrest + hamcrest-core + 2.2 + + + org.hamcrest + hamcrest-library + 2.2 + + + com.hazelcast + hazelcast + 4.2.4 + + + com.hazelcast + hazelcast-spring + 4.2.4 + + + com.hazelcast + hazelcast-hibernate52 + 2.2.1 + + + com.hazelcast + hazelcast-hibernate53 + 2.2.1 + + + org.hibernate + hibernate-c3p0 + 5.6.3.Final + + + org.hibernate + hibernate-core + 5.6.3.Final + + + org.hibernate + hibernate-ehcache + 5.6.3.Final + + + org.hibernate + hibernate-entitymanager + 5.6.3.Final + + + org.hibernate + hibernate-envers + 5.6.3.Final + + + org.hibernate + hibernate-hikaricp + 5.6.3.Final + + + org.hibernate + hibernate-java8 + 5.6.3.Final + + + org.hibernate + hibernate-jcache + 5.6.3.Final + + + org.hibernate + hibernate-jpamodelgen + 5.6.3.Final + + + org.hibernate + hibernate-micrometer + 5.6.3.Final + + + org.hibernate + hibernate-proxool + 5.6.3.Final + + + org.hibernate + hibernate-spatial + 5.6.3.Final + + + org.hibernate + hibernate-testing + 5.6.3.Final + + + org.hibernate + hibernate-vibur + 5.6.3.Final + + + org.hibernate.validator + hibernate-validator + 6.2.0.Final + + + org.hibernate.validator + hibernate-validator-annotation-processor + 6.2.0.Final + + + com.zaxxer + HikariCP + 4.0.3 + + + org.hsqldb + hsqldb + 2.5.2 + + + net.sourceforge.htmlunit + htmlunit + 2.54.0 + + + commons-logging + commons-logging + + + + + org.apache.httpcomponents + httpasyncclient + 4.1.5 + + + commons-logging + commons-logging + + + + + org.apache.httpcomponents + fluent-hc + 4.5.13 + + + org.apache.httpcomponents + httpclient + 4.5.13 + + + commons-logging + commons-logging + + + + + org.apache.httpcomponents + httpclient-cache + 4.5.13 + + + org.apache.httpcomponents + httpclient-osgi + 4.5.13 + + + org.apache.httpcomponents + httpclient-win + 4.5.13 + + + org.apache.httpcomponents + httpmime + 4.5.13 + + + org.apache.httpcomponents.client5 + httpclient5 + 5.1.2 + + + org.apache.httpcomponents.client5 + httpclient5-cache + 5.1.2 + + + org.apache.httpcomponents.client5 + httpclient5-fluent + 5.1.2 + + + org.apache.httpcomponents.client5 + httpclient5-win + 5.1.2 + + + org.apache.httpcomponents + httpcore + 4.4.15 + + + org.apache.httpcomponents + httpcore-nio + 4.4.15 + + + org.apache.httpcomponents.core5 + httpcore5 + 5.1.2 + + + org.apache.httpcomponents.core5 + httpcore5-h2 + 5.1.2 + + + org.apache.httpcomponents.core5 + httpcore5-reactive + 5.1.2 + + + org.influxdb + influxdb-java + 2.22 + + + com.sun.activation + jakarta.activation + 1.2.2 + + + jakarta.activation + jakarta.activation-api + 1.2.2 + + + jakarta.annotation + jakarta.annotation-api + 1.3.5 + + + jakarta.jms + jakarta.jms-api + 2.0.3 + + + jakarta.json + jakarta.json-api + 1.1.6 + + + jakarta.json.bind + jakarta.json.bind-api + 1.0.2 + + + jakarta.mail + jakarta.mail-api + 1.6.7 + + + jakarta.management.j2ee + jakarta.management.j2ee-api + 1.1.4 + + + jakarta.persistence + jakarta.persistence-api + 2.2.3 + + + jakarta.servlet + jakarta.servlet-api + 4.0.4 + + + jakarta.servlet.jsp.jstl + jakarta.servlet.jsp.jstl-api + 1.2.7 + + + jakarta.transaction + jakarta.transaction-api + 1.3.3 + + + jakarta.validation + jakarta.validation-api + 2.0.2 + + + jakarta.websocket + jakarta.websocket-api + 1.1.2 + + + jakarta.ws.rs + jakarta.ws.rs-api + 2.1.6 + + + jakarta.xml.bind + jakarta.xml.bind-api + 2.3.3 + + + jakarta.xml.soap + jakarta.xml.soap-api + 1.4.2 + + + jakarta.xml.ws + jakarta.xml.ws-api + 2.3.3 + + + org.codehaus.janino + commons-compiler + 3.1.6 + + + org.codehaus.janino + commons-compiler-jdk + 3.1.6 + + + org.codehaus.janino + janino + 3.1.6 + + + javax.activation + javax.activation-api + 1.2.0 + + + javax.annotation + javax.annotation-api + 1.3.2 + + + javax.cache + cache-api + 1.1.1 + + + javax.xml.bind + jaxb-api + 2.3.1 + + + javax.xml.ws + jaxws-api + 2.3.1 + + + javax.jms + javax.jms-api + 2.0.1 + + + javax.json + javax.json-api + 1.1.4 + + + javax.json.bind + javax.json.bind-api + 1.0 + + + javax.mail + javax.mail-api + 1.6.2 + + + javax.money + money-api + 1.1 + + + javax.persistence + javax.persistence-api + 2.2 + + + javax.transaction + javax.transaction-api + 1.3 + + + javax.validation + validation-api + 2.0.1.Final + + + javax.websocket + javax.websocket-api + 1.1 + + + jaxen + jaxen + 1.2.0 + + + org.firebirdsql.jdbc + jaybird + 4.0.4.java8 + + + org.firebirdsql.jdbc + jaybird-jdk18 + 4.0.4.java8 + + + org.jboss.logging + jboss-logging + 3.4.2.Final + + + org.jdom + jdom2 + 2.0.6.1 + + + redis.clients + jedis + 3.7.1 + + + org.mortbay.jasper + apache-el + 9.0.52 + + + org.eclipse.jetty.orbit + javax.servlet.jsp + 2.2.0.v201112011158 + + + org.eclipse.jetty + jetty-reactive-httpclient + 1.1.10 + + + com.samskivert + jmustache + 1.15 + + + org.apache.johnzon + johnzon-core + 1.2.15 + + + org.apache.johnzon + johnzon-jaxrs + 1.2.15 + + + org.apache.johnzon + johnzon-jsonb + 1.2.15 + + + org.apache.johnzon + johnzon-jsonb-extras + 1.2.15 + + + org.apache.johnzon + johnzon-jsonschema + 1.2.15 + + + org.apache.johnzon + johnzon-mapper + 1.2.15 + + + org.apache.johnzon + johnzon-websocket + 1.2.15 + + + org.jolokia + jolokia-core + 1.7.1 + + + org.jooq + jooq + 3.14.15 + + + org.jooq + jooq-codegen + 3.14.15 + + + org.jooq + jooq-kotlin + 3.14.15 + + + org.jooq + jooq-meta + 3.14.15 + + + com.jayway.jsonpath + json-path + 2.6.0 + + + com.jayway.jsonpath + json-path-assert + 2.6.0 + + + net.minidev + json-smart + 2.4.7 + + + org.skyscreamer + jsonassert + 1.5.0 + + + javax.servlet + jstl + 1.2 + + + net.sourceforge.jtds + jtds + 1.3.1 + + + junit + junit + 4.13.2 + + + org.apache.kafka + connect-api + 3.0.0 + + + org.apache.kafka + connect-basic-auth-extension + 3.0.0 + + + org.apache.kafka + connect-file + 3.0.0 + + + org.apache.kafka + connect-json + 3.0.0 + + + org.apache.kafka + connect-runtime + 3.0.0 + + + org.apache.kafka + connect-transforms + 3.0.0 + + + org.apache.kafka + kafka-clients + 3.0.0 + + + org.apache.kafka + kafka-metadata + 3.0.0 + + + org.apache.kafka + kafka-log4j-appender + 3.0.0 + + + org.apache.kafka + kafka-streams + 3.0.0 + + + org.apache.kafka + kafka-streams-scala_2.12 + 3.0.0 + + + org.apache.kafka + kafka-streams-scala_2.13 + 3.0.0 + + + org.apache.kafka + kafka-streams-test-utils + 3.0.0 + + + org.apache.kafka + kafka-tools + 3.0.0 + + + org.apache.kafka + kafka_2.12 + 3.0.0 + + + org.apache.kafka + kafka_2.13 + 3.0.0 + + + io.lettuce + lettuce-core + 6.1.5.RELEASE + + + org.liquibase + liquibase-core + 4.5.0 + + + ch.qos.logback + logback-access + 1.2.9 + + + ch.qos.logback + logback-classic + 1.2.9 + + + ch.qos.logback + logback-core + 1.2.9 + + + org.projectlombok + lombok + 1.18.22 + + + org.mariadb.jdbc + mariadb-java-client + 2.7.4 + + + io.micrometer + micrometer-registry-stackdriver + 1.8.1 + + + javax.annotation-api + javax.annotation + + + + + org.jvnet.mimepull + mimepull + 1.9.15 + + + org.mockito + mockito-core + 4.0.0 + + + org.mockito + mockito-inline + 4.0.0 + + + org.mockito + mockito-junit-jupiter + 4.0.0 + + + org.mongodb + bson + 4.4.0 + + + org.mongodb + mongodb-driver-core + 4.4.0 + + + org.mongodb + mongodb-driver-legacy + 4.4.0 + + + org.mongodb + mongodb-driver-reactivestreams + 4.4.0 + + + org.mongodb + mongodb-driver-sync + 4.4.0 + + + com.microsoft.sqlserver + mssql-jdbc + 9.4.1.jre8 + + + mysql + mysql-connector-java + 8.0.27 + + + protobuf-java + com.google.protobuf + + + + + net.sourceforge.nekohtml + nekohtml + 1.9.22 + + + org.neo4j.driver + neo4j-java-driver + 4.3.6 + + + io.netty + netty-tcnative + 2.0.46.Final + + + io.netty + netty-tcnative-boringssl-static + 2.0.46.Final + + + com.squareup.okhttp3 + logging-interceptor + 3.14.9 + + + com.squareup.okhttp3 + mockwebserver + 3.14.9 + + + com.squareup.okhttp3 + okcurl + 3.14.9 + + + com.squareup.okhttp3 + okhttp + 3.14.9 + + + com.squareup.okhttp3 + okhttp-dnsoverhttps + 3.14.9 + + + com.squareup.okhttp3 + okhttp-sse + 3.14.9 + + + com.squareup.okhttp3 + okhttp-testing-support + 3.14.9 + + + com.squareup.okhttp3 + okhttp-tls + 3.14.9 + + + com.squareup.okhttp3 + okhttp-urlconnection + 3.14.9 + + + org.messaginghub + pooled-jms + 1.2.2 + + + org.postgresql + postgresql + 42.3.1 + + + org.quartz-scheduler + quartz + 2.3.2 + + + c3p0 + com.mchange + + + * + com.zaxxer + + + + + org.quartz-scheduler + quartz-jobs + 2.3.2 + + + com.rabbitmq + amqp-client + 5.13.1 + + + com.rabbitmq + stream-client + 0.4.0 + + + org.reactivestreams + reactive-streams + 1.0.3 + + + io.rest-assured + json-path + 4.4.0 + + + io.rest-assured + json-schema-validator + 4.4.0 + + + io.rest-assured + rest-assured + 4.4.0 + + + io.rest-assured + scala-support + 4.4.0 + + + io.rest-assured + spring-mock-mvc + 4.4.0 + + + io.rest-assured + spring-web-test-client + 4.4.0 + + + io.rest-assured + xml-path + 4.4.0 + + + io.reactivex + rxjava + 1.3.8 + + + io.reactivex + rxjava-reactive-streams + 1.2.1 + + + io.reactivex.rxjava2 + rxjava + 2.2.21 + + + org.springframework.boot + spring-boot + 2.6.2 + + + org.springframework.boot + spring-boot-test + 2.6.2 + + + org.springframework.boot + spring-boot-test-autoconfigure + 2.6.2 + + + org.springframework.boot + spring-boot-actuator + 2.6.2 + + + org.springframework.boot + spring-boot-actuator-autoconfigure + 2.6.2 + + + org.springframework.boot + spring-boot-autoconfigure + 2.6.2 + + + org.springframework.boot + spring-boot-autoconfigure-processor + 2.6.2 + + + org.springframework.boot + spring-boot-buildpack-platform + 2.6.2 + + + org.springframework.boot + spring-boot-configuration-metadata + 2.6.2 + + + org.springframework.boot + spring-boot-configuration-processor + 2.6.2 + + + org.springframework.boot + spring-boot-devtools + 2.6.2 + + + org.springframework.boot + spring-boot-jarmode-layertools + 2.6.2 + + + org.springframework.boot + spring-boot-loader + 2.6.2 + + + org.springframework.boot + spring-boot-loader-tools + 2.6.2 + + + org.springframework.boot + spring-boot-properties-migrator + 2.6.2 + + + org.springframework.boot + spring-boot-starter + 2.6.2 + + + org.springframework.boot + spring-boot-starter-activemq + 2.6.2 + + + org.springframework.boot + spring-boot-starter-actuator + 2.6.2 + + + org.springframework.boot + spring-boot-starter-amqp + 2.6.2 + + + org.springframework.boot + spring-boot-starter-aop + 2.6.2 + + + org.springframework.boot + spring-boot-starter-artemis + 2.6.2 + + + org.springframework.boot + spring-boot-starter-batch + 2.6.2 + + + org.springframework.boot + spring-boot-starter-cache + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-cassandra + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-cassandra-reactive + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-couchbase + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-couchbase-reactive + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-elasticsearch + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-jdbc + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-jpa + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-ldap + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-mongodb + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-mongodb-reactive + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-r2dbc + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-redis + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-redis-reactive + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-neo4j + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-rest + 2.6.2 + + + org.springframework.boot + spring-boot-starter-freemarker + 2.6.2 + + + org.springframework.boot + spring-boot-starter-groovy-templates + 2.6.2 + + + org.springframework.boot + spring-boot-starter-hateoas + 2.6.2 + + + org.springframework.boot + spring-boot-starter-integration + 2.6.2 + + + org.springframework.boot + spring-boot-starter-jdbc + 2.6.2 + + + org.springframework.boot + spring-boot-starter-jersey + 2.6.2 + + + org.springframework.boot + spring-boot-starter-jetty + 2.6.2 + + + org.springframework.boot + spring-boot-starter-jooq + 2.6.2 + + + org.springframework.boot + spring-boot-starter-json + 2.6.2 + + + org.springframework.boot + spring-boot-starter-jta-atomikos + 2.6.2 + + + org.springframework.boot + spring-boot-starter-log4j2 + 2.6.2 + + + org.springframework.boot + spring-boot-starter-logging + 2.6.2 + + + org.springframework.boot + spring-boot-starter-mail + 2.6.2 + + + org.springframework.boot + spring-boot-starter-mustache + 2.6.2 + + + org.springframework.boot + spring-boot-starter-oauth2-client + 2.6.2 + + + org.springframework.boot + spring-boot-starter-oauth2-resource-server + 2.6.2 + + + org.springframework.boot + spring-boot-starter-quartz + 2.6.2 + + + org.springframework.boot + spring-boot-starter-reactor-netty + 2.6.2 + + + org.springframework.boot + spring-boot-starter-rsocket + 2.6.2 + + + org.springframework.boot + spring-boot-starter-security + 2.6.2 + + + org.springframework.boot + spring-boot-starter-test + 2.6.2 + + + org.springframework.boot + spring-boot-starter-thymeleaf + 2.6.2 + + + org.springframework.boot + spring-boot-starter-tomcat + 2.6.2 + + + org.springframework.boot + spring-boot-starter-undertow + 2.6.2 + + + org.springframework.boot + spring-boot-starter-validation + 2.6.2 + + + org.springframework.boot + spring-boot-starter-web + 2.6.2 + + + org.springframework.boot + spring-boot-starter-webflux + 2.6.2 + + + org.springframework.boot + spring-boot-starter-websocket + 2.6.2 + + + org.springframework.boot + spring-boot-starter-web-services + 2.6.2 + + + com.sun.xml.messaging.saaj + saaj-impl + 1.5.3 + + + org.seleniumhq.selenium + selenium-api + 3.141.59 + + + org.seleniumhq.selenium + selenium-chrome-driver + 3.141.59 + + + org.seleniumhq.selenium + selenium-edge-driver + 3.141.59 + + + org.seleniumhq.selenium + selenium-firefox-driver + 3.141.59 + + + org.seleniumhq.selenium + selenium-ie-driver + 3.141.59 + + + org.seleniumhq.selenium + selenium-java + 3.141.59 + + + org.seleniumhq.selenium + selenium-opera-driver + 3.141.59 + + + org.seleniumhq.selenium + selenium-remote-driver + 3.141.59 + + + org.seleniumhq.selenium + selenium-safari-driver + 3.141.59 + + + org.seleniumhq.selenium + selenium-support + 3.141.59 + + + org.seleniumhq.selenium + htmlunit-driver + 2.54.0 + + + com.sendgrid + sendgrid-java + 4.7.6 + + + javax.servlet + javax.servlet-api + 4.0.1 + + + org.slf4j + jcl-over-slf4j + 1.7.32 + + + org.slf4j + jul-to-slf4j + 1.7.32 + + + org.slf4j + log4j-over-slf4j + 1.7.32 + + + org.slf4j + slf4j-api + 1.7.32 + + + org.slf4j + slf4j-ext + 1.7.32 + + + org.slf4j + slf4j-jcl + 1.7.32 + + + org.slf4j + slf4j-jdk14 + 1.7.32 + + + org.slf4j + slf4j-log4j12 + 1.7.32 + + + org.slf4j + slf4j-nop + 1.7.32 + + + org.slf4j + slf4j-simple + 1.7.32 + + + org.yaml + snakeyaml + 1.29 + + + org.apache.solr + solr-analysis-extras + 8.8.2 + + + org.apache.solr + solr-analytics + 8.8.2 + + + org.apache.solr + solr-cell + 8.8.2 + + + org.apache.solr + solr-core + 8.8.2 + + + org.apache.solr + solr-dataimporthandler + 8.8.2 + + + org.apache.solr + solr-dataimporthandler-extras + 8.8.2 + + + org.apache.solr + solr-langid + 8.8.2 + + + org.apache.solr + solr-ltr + 8.8.2 + + + org.apache.solr + solr-solrj + 8.8.2 + + + jcl-over-slf4j + org.slf4j + + + + + org.apache.solr + solr-test-framework + 8.8.2 + + + org.apache.solr + solr-velocity + 8.8.2 + + + org.springframework.amqp + spring-amqp + 2.4.1 + + + org.springframework.amqp + spring-rabbit + 2.4.1 + + + org.springframework.amqp + spring-rabbit-stream + 2.4.1 + + + org.springframework.amqp + spring-rabbit-junit + 2.4.1 + + + org.springframework.amqp + spring-rabbit-test + 2.4.1 + + + org.springframework.batch + spring-batch-core + 4.3.4 + + + org.springframework.batch + spring-batch-infrastructure + 4.3.4 + + + org.springframework.batch + spring-batch-integration + 4.3.4 + + + org.springframework.batch + spring-batch-test + 4.3.4 + + + org.springframework.hateoas + spring-hateoas + 1.4.0 + + + org.springframework.kafka + spring-kafka + 2.8.1 + + + org.springframework.kafka + spring-kafka-test + 2.8.1 + + + org.springframework.ldap + spring-ldap-core + 2.3.5.RELEASE + + + org.springframework.ldap + spring-ldap-core-tiger + 2.3.5.RELEASE + + + org.springframework.ldap + spring-ldap-ldif-batch + 2.3.5.RELEASE + + + org.springframework.ldap + spring-ldap-ldif-core + 2.3.5.RELEASE + + + org.springframework.ldap + spring-ldap-odm + 2.3.5.RELEASE + + + org.springframework.ldap + spring-ldap-test + 2.3.5.RELEASE + + + org.springframework.restdocs + spring-restdocs-asciidoctor + 2.0.5.RELEASE + + + org.springframework.restdocs + spring-restdocs-core + 2.0.5.RELEASE + + + org.springframework.restdocs + spring-restdocs-mockmvc + 2.0.5.RELEASE + + + org.springframework.restdocs + spring-restdocs-restassured + 2.0.5.RELEASE + + + org.springframework.restdocs + spring-restdocs-webtestclient + 2.0.5.RELEASE + + + org.springframework.retry + spring-retry + 1.3.1 + + + org.springframework.ws + spring-ws-core + 3.1.2 + + + org.springframework.ws + spring-ws-security + 3.1.2 + + + org.springframework.ws + spring-ws-support + 3.1.2 + + + org.springframework.ws + spring-ws-test + 3.1.2 + + + org.springframework.ws + spring-xml + 3.1.2 + + + org.xerial + sqlite-jdbc + 3.36.0.3 + + + com.sun.mail + jakarta.mail + 1.6.7 + + + org.thymeleaf + thymeleaf + 3.0.14.RELEASE + + + org.thymeleaf + thymeleaf-spring5 + 3.0.14.RELEASE + + + com.github.mxab.thymeleaf.extras + thymeleaf-extras-data-attribute + 2.0.1 + + + org.thymeleaf.extras + thymeleaf-extras-java8time + 3.0.4.RELEASE + + + org.thymeleaf.extras + thymeleaf-extras-springsecurity5 + 3.0.4.RELEASE + + + nz.net.ultraq.thymeleaf + thymeleaf-layout-dialect + 3.0.0 + + + org.apache.tomcat + tomcat-annotations-api + 9.0.56 + + + org.apache.tomcat + tomcat-jdbc + 9.0.56 + + + org.apache.tomcat + tomcat-jsp-api + 9.0.56 + + + org.apache.tomcat.embed + tomcat-embed-core + 9.0.56 + + + org.apache.tomcat.embed + tomcat-embed-el + 9.0.56 + + + org.apache.tomcat.embed + tomcat-embed-jasper + 9.0.56 + + + org.apache.tomcat.embed + tomcat-embed-websocket + 9.0.56 + + + com.unboundid + unboundid-ldapsdk + 4.0.14 + + + io.undertow + undertow-core + 2.2.14.Final + + + io.undertow + undertow-servlet + 2.2.14.Final + + + io.undertow + undertow-websockets-jsr + 2.2.14.Final + + + org.webjars + webjars-locator-core + 0.48 + + + wsdl4j + wsdl4j + 1.6.3 + + + org.xmlunit + xmlunit-assertj + 2.8.4 + + + org.xmlunit + xmlunit-core + 2.8.4 + + + org.xmlunit + xmlunit-legacy + 2.8.4 + + + org.xmlunit + xmlunit-matchers + 2.8.4 + + + org.xmlunit + xmlunit-placeholders + 2.8.4 + + + com.datastax.oss + java-driver-core-shaded + 4.13.0 + + + com.datastax.oss + java-driver-mapper-processor + 4.13.0 + + + com.datastax.oss + java-driver-mapper-runtime + 4.13.0 + + + com.datastax.oss + java-driver-query-builder + 4.13.0 + + + com.datastax.oss + java-driver-test-infra + 4.13.0 + + + com.datastax.oss + java-driver-metrics-micrometer + 4.13.0 + + + com.datastax.oss + java-driver-metrics-microprofile + 4.13.0 + + + com.datastax.oss + native-protocol + 1.5.0 + + + com.datastax.oss + java-driver-shaded-guava + 25.1-jre-graal-sub-1 + + + io.dropwizard.metrics + metrics-annotation + 4.2.7 + + + io.dropwizard.metrics + metrics-caffeine + 4.2.7 + + + io.dropwizard.metrics + metrics-caffeine3 + 4.2.7 + + + io.dropwizard.metrics + metrics-core + 4.2.7 + + + io.dropwizard.metrics + metrics-collectd + 4.2.7 + + + io.dropwizard.metrics + metrics-ehcache + 4.2.7 + + + io.dropwizard.metrics + metrics-graphite + 4.2.7 + + + io.dropwizard.metrics + metrics-healthchecks + 4.2.7 + + + io.dropwizard.metrics + metrics-httpclient + 4.2.7 + + + io.dropwizard.metrics + metrics-httpclient5 + 4.2.7 + + + io.dropwizard.metrics + metrics-httpasyncclient + 4.2.7 + + + io.dropwizard.metrics + metrics-jakarta-servlet + 4.2.7 + + + io.dropwizard.metrics + metrics-jakarta-servlets + 4.2.7 + + + io.dropwizard.metrics + metrics-jcache + 4.2.7 + + + io.dropwizard.metrics + metrics-jdbi + 4.2.7 + + + io.dropwizard.metrics + metrics-jdbi3 + 4.2.7 + + + io.dropwizard.metrics + metrics-jersey2 + 4.2.7 + + + io.dropwizard.metrics + metrics-jersey3 + 4.2.7 + + + io.dropwizard.metrics + metrics-jetty9 + 4.2.7 + + + io.dropwizard.metrics + metrics-jetty10 + 4.2.7 + + + io.dropwizard.metrics + metrics-jetty11 + 4.2.7 + + + io.dropwizard.metrics + metrics-jmx + 4.2.7 + + + io.dropwizard.metrics + metrics-json + 4.2.7 + + + io.dropwizard.metrics + metrics-jvm + 4.2.7 + + + io.dropwizard.metrics + metrics-log4j2 + 4.2.7 + + + io.dropwizard.metrics + metrics-logback + 4.2.7 + + + io.dropwizard.metrics + metrics-servlet + 4.2.7 + + + io.dropwizard.metrics + metrics-servlets + 4.2.7 + + + org.codehaus.groovy + groovy + 3.0.9 + + + org.codehaus.groovy + groovy-ant + 3.0.9 + + + org.codehaus.groovy + groovy-astbuilder + 3.0.9 + + + org.codehaus.groovy + groovy-bsf + 3.0.9 + + + org.codehaus.groovy + groovy-cli-commons + 3.0.9 + + + org.codehaus.groovy + groovy-cli-picocli + 3.0.9 + + + org.codehaus.groovy + groovy-console + 3.0.9 + + + org.codehaus.groovy + groovy-datetime + 3.0.9 + + + org.codehaus.groovy + groovy-dateutil + 3.0.9 + + + org.codehaus.groovy + groovy-docgenerator + 3.0.9 + + + org.codehaus.groovy + groovy-groovydoc + 3.0.9 + + + org.codehaus.groovy + groovy-groovysh + 3.0.9 + + + org.codehaus.groovy + groovy-jaxb + 3.0.9 + + + org.codehaus.groovy + groovy-jmx + 3.0.9 + + + org.codehaus.groovy + groovy-json + 3.0.9 + + + org.codehaus.groovy + groovy-jsr223 + 3.0.9 + + + org.codehaus.groovy + groovy-macro + 3.0.9 + + + org.codehaus.groovy + groovy-nio + 3.0.9 + + + org.codehaus.groovy + groovy-servlet + 3.0.9 + + + org.codehaus.groovy + groovy-sql + 3.0.9 + + + org.codehaus.groovy + groovy-swing + 3.0.9 + + + org.codehaus.groovy + groovy-templates + 3.0.9 + + + org.codehaus.groovy + groovy-test + 3.0.9 + + + org.codehaus.groovy + groovy-test-junit5 + 3.0.9 + + + org.codehaus.groovy + groovy-testng + 3.0.9 + + + org.codehaus.groovy + groovy-xml + 3.0.9 + + + org.codehaus.groovy + groovy-yaml + 3.0.9 + + + org.infinispan + infinispan-api + 12.1.10.Final + + + org.infinispan + infinispan-cachestore-jdbc + 12.1.10.Final + + + org.infinispan + infinispan-cachestore-jpa + 12.1.10.Final + + + org.infinispan + infinispan-cachestore-remote + 12.1.10.Final + + + org.infinispan + infinispan-cachestore-rocksdb + 12.1.10.Final + + + org.infinispan + infinispan-cdi-common + 12.1.10.Final + + + org.infinispan + infinispan-cdi-embedded + 12.1.10.Final + + + org.infinispan + infinispan-cdi-remote + 12.1.10.Final + + + org.infinispan + infinispan-checkstyle + 12.1.10.Final + + + org.infinispan + infinispan-cli-client + 12.1.10.Final + + + org.infinispan + infinispan-client-hotrod + 12.1.10.Final + + + org.infinispan + infinispan-client-rest + 12.1.10.Final + + + org.infinispan + infinispan-key-value-store-client + 12.1.10.Final + + + org.infinispan + infinispan-clustered-counter + 12.1.10.Final + + + org.infinispan + infinispan-clustered-lock + 12.1.10.Final + + + org.infinispan + infinispan-commons + 12.1.10.Final + + + org.infinispan + infinispan-commons-test + 12.1.10.Final + + + org.infinispan + infinispan-component-annotations + 12.1.10.Final + provided + + + org.infinispan + infinispan-component-processor + 12.1.10.Final + + + org.infinispan + infinispan-core + 12.1.10.Final + + + org.infinispan + infinispan-jboss-marshalling + 12.1.10.Final + + + org.infinispan + infinispan-extended-statistics + 12.1.10.Final + + + org.infinispan + infinispan-hibernate-cache-commons + 12.1.10.Final + + + org.infinispan + infinispan-hibernate-cache-spi + 12.1.10.Final + + + org.infinispan + infinispan-hibernate-cache-v51 + 12.1.10.Final + + + org.infinispan + infinispan-hibernate-cache-v53 + 12.1.10.Final + + + org.infinispan + infinispan-jcache-commons + 12.1.10.Final + + + org.infinispan + infinispan-jcache + 12.1.10.Final + + + org.infinispan + infinispan-jcache-remote + 12.1.10.Final + + + org.infinispan + infinispan-console + 0.14.3.Final + + + org.infinispan + infinispan-marshaller-kryo + 12.1.10.Final + + + org.infinispan + infinispan-marshaller-kryo-bundle + 12.1.10.Final + + + org.infinispan + infinispan-marshaller-protostuff + 12.1.10.Final + + + org.infinispan + infinispan-marshaller-protostuff-bundle + 12.1.10.Final + + + org.infinispan + infinispan-multimap + 12.1.10.Final + + + org.infinispan + infinispan-objectfilter + 12.1.10.Final + + + org.infinispan + infinispan-persistence-soft-index + 12.1.10.Final + + + org.infinispan + infinispan-query-core + 12.1.10.Final + + + org.infinispan + infinispan-query + 12.1.10.Final + + + org.infinispan + infinispan-query-dsl + 12.1.10.Final + + + org.infinispan + infinispan-remote-query-client + 12.1.10.Final + + + org.infinispan + infinispan-remote-query-server + 12.1.10.Final + + + org.infinispan + infinispan-scripting + 12.1.10.Final + + + org.infinispan + infinispan-server-core + 12.1.10.Final + + + org.infinispan + infinispan-server-hotrod + 12.1.10.Final + + + org.infinispan + infinispan-server-memcached + 12.1.10.Final + + + org.infinispan + infinispan-server-rest + 12.1.10.Final + + + org.infinispan + infinispan-server-router + 12.1.10.Final + + + org.infinispan + infinispan-server-runtime + 12.1.10.Final + + + org.infinispan + infinispan-server-testdriver-core + 12.1.10.Final + + + org.infinispan + infinispan-server-testdriver-junit4 + 12.1.10.Final + + + org.infinispan + infinispan-server-testdriver-junit5 + 12.1.10.Final + + + org.infinispan + infinispan-spring5-common + 12.1.10.Final + + + org.infinispan + infinispan-spring5-embedded + 12.1.10.Final + + + org.infinispan + infinispan-spring5-remote + 12.1.10.Final + + + org.infinispan + infinispan-spring-boot-starter-embedded + 12.1.10.Final + + + org.infinispan + infinispan-spring-boot-starter-remote + 12.1.10.Final + + + org.infinispan + infinispan-tasks + 12.1.10.Final + + + org.infinispan + infinispan-tasks-api + 12.1.10.Final + + + org.infinispan + infinispan-tools + 12.1.10.Final + + + org.infinispan + infinispan-anchored-keys + 12.1.10.Final + + + org.infinispan.protostream + protostream + 4.4.1.Final + + + org.infinispan.protostream + protostream-types + 4.4.1.Final + + + org.infinispan.protostream + protostream-processor + 4.4.1.Final + provided + + + org.infinispan + infinispan-cloudevents-integration + 12.1.10.Final + + + com.fasterxml.jackson.core + jackson-annotations + 2.13.1 + + + com.fasterxml.jackson.core + jackson-core + 2.13.1 + + + com.fasterxml.jackson.core + jackson-databind + 2.13.1 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-avro + 2.13.1 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-cbor + 2.13.1 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-csv + 2.13.1 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-ion + 2.13.1 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-properties + 2.13.1 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-protobuf + 2.13.1 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-smile + 2.13.1 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-toml + 2.13.1 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-xml + 2.13.1 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-yaml + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-eclipse-collections + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-guava + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate4 + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate5 + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate5-jakarta + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-hppc + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-jakarta-jsonp + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-jaxrs + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-joda + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-joda-money + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-jdk8 + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-json-org + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-jsr310 + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-jsr353 + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-pcollections + 2.13.1 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-base + 2.13.1 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-cbor-provider + 2.13.1 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-json-provider + 2.13.1 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-smile-provider + 2.13.1 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-xml-provider + 2.13.1 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-yaml-provider + 2.13.1 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-base + 2.13.1 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-cbor-provider + 2.13.1 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-json-provider + 2.13.1 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-smile-provider + 2.13.1 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-xml-provider + 2.13.1 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-yaml-provider + 2.13.1 + + + com.fasterxml.jackson.jr + jackson-jr-all + 2.13.1 + + + com.fasterxml.jackson.jr + jackson-jr-annotation-support + 2.13.1 + + + com.fasterxml.jackson.jr + jackson-jr-objects + 2.13.1 + + + com.fasterxml.jackson.jr + jackson-jr-retrofit2 + 2.13.1 + + + com.fasterxml.jackson.jr + jackson-jr-stree + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-afterburner + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-blackbird + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-guice + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-jaxb-annotations + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-jakarta-xmlbind-annotations + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-jsonSchema + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-kotlin + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-mrbean + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-no-ctor-deser + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-osgi + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-parameter-names + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-paranamer + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-scala_2.11 + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-scala_2.12 + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-scala_2.13 + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-scala_3 + 2.13.1 + + + org.glassfish.jersey.core + jersey-common + 2.35 + + + org.glassfish.jersey.core + jersey-client + 2.35 + + + org.glassfish.jersey.core + jersey-server + 2.35 + + + org.glassfish.jersey.bundles + jaxrs-ri + 2.35 + + + org.glassfish.jersey.connectors + jersey-apache-connector + 2.35 + + + org.glassfish.jersey.connectors + jersey-helidon-connector + 2.35 + + + org.glassfish.jersey.connectors + jersey-grizzly-connector + 2.35 + + + org.glassfish.jersey.connectors + jersey-jetty-connector + 2.35 + + + org.glassfish.jersey.connectors + jersey-jdk-connector + 2.35 + + + org.glassfish.jersey.connectors + jersey-netty-connector + 2.35 + + + org.glassfish.jersey.containers + jersey-container-jetty-http + 2.35 + + + org.glassfish.jersey.containers + jersey-container-grizzly2-http + 2.35 + + + org.glassfish.jersey.containers + jersey-container-grizzly2-servlet + 2.35 + + + org.glassfish.jersey.containers + jersey-container-jetty-servlet + 2.35 + + + org.glassfish.jersey.containers + jersey-container-jdk-http + 2.35 + + + org.glassfish.jersey.containers + jersey-container-netty-http + 2.35 + + + org.glassfish.jersey.containers + jersey-container-servlet + 2.35 + + + org.glassfish.jersey.containers + jersey-container-servlet-core + 2.35 + + + org.glassfish.jersey.containers + jersey-container-simple-http + 2.35 + + + org.glassfish.jersey.containers.glassfish + jersey-gf-ejb + 2.35 + + + org.glassfish.jersey.ext + jersey-bean-validation + 2.35 + + + org.glassfish.jersey.ext + jersey-entity-filtering + 2.35 + + + org.glassfish.jersey.ext + jersey-metainf-services + 2.35 + + + org.glassfish.jersey.ext.microprofile + jersey-mp-config + 2.35 + + + org.glassfish.jersey.ext + jersey-mvc + 2.35 + + + org.glassfish.jersey.ext + jersey-mvc-bean-validation + 2.35 + + + org.glassfish.jersey.ext + jersey-mvc-freemarker + 2.35 + + + org.glassfish.jersey.ext + jersey-mvc-jsp + 2.35 + + + org.glassfish.jersey.ext + jersey-mvc-mustache + 2.35 + + + org.glassfish.jersey.ext + jersey-proxy-client + 2.35 + + + org.glassfish.jersey.ext + jersey-servlet-portability + 2.35 + + + org.glassfish.jersey.ext + jersey-spring4 + 2.35 + + + org.glassfish.jersey.ext + jersey-spring5 + 2.35 + + + org.glassfish.jersey.ext + jersey-declarative-linking + 2.35 + + + org.glassfish.jersey.ext + jersey-wadl-doclet + 2.35 + + + org.glassfish.jersey.ext.cdi + jersey-weld2-se + 2.35 + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x + 2.35 + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x-transaction + 2.35 + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x-validation + 2.35 + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x-servlet + 2.35 + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x-ban-custom-hk2-binding + 2.35 + + + org.glassfish.jersey.ext.cdi + jersey-cdi-rs-inject + 2.35 + + + org.glassfish.jersey.ext.rx + jersey-rx-client-guava + 2.35 + + + org.glassfish.jersey.ext.rx + jersey-rx-client-rxjava + 2.35 + + + org.glassfish.jersey.ext.rx + jersey-rx-client-rxjava2 + 2.35 + + + org.glassfish.jersey.ext.microprofile + jersey-mp-rest-client + 2.35 + + + org.glassfish.jersey.media + jersey-media-jaxb + 2.35 + + + org.glassfish.jersey.media + jersey-media-json-jackson + 2.35 + + + org.glassfish.jersey.media + jersey-media-json-jettison + 2.35 + + + org.glassfish.jersey.media + jersey-media-json-processing + 2.35 + + + org.glassfish.jersey.media + jersey-media-json-binding + 2.35 + + + org.glassfish.jersey.media + jersey-media-kryo + 2.35 + + + org.glassfish.jersey.media + jersey-media-moxy + 2.35 + + + org.glassfish.jersey.media + jersey-media-multipart + 2.35 + + + org.glassfish.jersey.media + jersey-media-sse + 2.35 + + + org.glassfish.jersey.security + oauth1-client + 2.35 + + + org.glassfish.jersey.security + oauth1-server + 2.35 + + + org.glassfish.jersey.security + oauth1-signature + 2.35 + + + org.glassfish.jersey.security + oauth2-client + 2.35 + + + org.glassfish.jersey.inject + jersey-hk2 + 2.35 + + + org.glassfish.jersey.inject + jersey-cdi2-se + 2.35 + + + org.glassfish.jersey.test-framework + jersey-test-framework-core + 2.35 + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-bundle + 2.35 + pom + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-external + 2.35 + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-grizzly2 + 2.35 + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-inmemory + 2.35 + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-jdk-http + 2.35 + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-simple + 2.35 + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-jetty + 2.35 + + + org.glassfish.jersey.test-framework + jersey-test-framework-util + 2.35 + + + org.eclipse.jetty + apache-jsp + 9.4.44.v20210927 + + + org.eclipse.jetty + apache-jstl + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-alpn-client + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-alpn-java-client + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-alpn-java-server + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-alpn-openjdk8-client + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-alpn-openjdk8-server + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-alpn-conscrypt-client + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-alpn-conscrypt-server + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-alpn-server + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-annotations + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-ant + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-client + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-continuation + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-deploy + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-distribution + 9.4.44.v20210927 + zip + + + org.eclipse.jetty + jetty-distribution + 9.4.44.v20210927 + tar.gz + + + org.eclipse.jetty.fcgi + fcgi-client + 9.4.44.v20210927 + + + org.eclipse.jetty.fcgi + fcgi-server + 9.4.44.v20210927 + + + org.eclipse.jetty.gcloud + jetty-gcloud-session-manager + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-home + 9.4.44.v20210927 + zip + + + org.eclipse.jetty + jetty-home + 9.4.44.v20210927 + tar.gz + + + org.eclipse.jetty + jetty-http + 9.4.44.v20210927 + + + org.eclipse.jetty.http2 + http2-client + 9.4.44.v20210927 + + + org.eclipse.jetty.http2 + http2-common + 9.4.44.v20210927 + + + org.eclipse.jetty.http2 + http2-hpack + 9.4.44.v20210927 + + + org.eclipse.jetty.http2 + http2-http-client-transport + 9.4.44.v20210927 + + + org.eclipse.jetty.http2 + http2-server + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-http-spi + 9.4.44.v20210927 + + + org.eclipse.jetty + infinispan-common + 9.4.44.v20210927 + + + org.eclipse.jetty + infinispan-remote-query + 9.4.44.v20210927 + + + org.eclipse.jetty + infinispan-embedded-query + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-hazelcast + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-io + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-jaas + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-jaspi + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-jmx + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-jndi + 9.4.44.v20210927 + + + org.eclipse.jetty.memcached + jetty-memcached-sessions + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-nosql + 9.4.44.v20210927 + + + org.eclipse.jetty.osgi + jetty-osgi-boot + 9.4.44.v20210927 + + + org.eclipse.jetty.osgi + jetty-osgi-boot-jsp + 9.4.44.v20210927 + + + org.eclipse.jetty.osgi + jetty-osgi-boot-warurl + 9.4.44.v20210927 + + + org.eclipse.jetty.osgi + jetty-httpservice + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-plus + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-proxy + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-quickstart + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-rewrite + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-security + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-openid + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-server + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-servlet + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-servlets + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-spring + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-unixsocket + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-util + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-util-ajax + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-webapp + 9.4.44.v20210927 + + + org.eclipse.jetty.websocket + javax-websocket-client-impl + 9.4.44.v20210927 + + + org.eclipse.jetty.websocket + javax-websocket-server-impl + 9.4.44.v20210927 + + + org.eclipse.jetty.websocket + websocket-api + 9.4.44.v20210927 + + + org.eclipse.jetty.websocket + websocket-client + 9.4.44.v20210927 + + + org.eclipse.jetty.websocket + websocket-common + 9.4.44.v20210927 + + + org.eclipse.jetty.websocket + websocket-server + 9.4.44.v20210927 + + + org.eclipse.jetty.websocket + websocket-servlet + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-xml + 9.4.44.v20210927 + + + org.junit.jupiter + junit-jupiter + 5.8.2 + + + org.junit.jupiter + junit-jupiter-api + 5.8.2 + + + org.junit.jupiter + junit-jupiter-engine + 5.8.2 + + + org.junit.jupiter + junit-jupiter-migrationsupport + 5.8.2 + + + org.junit.jupiter + junit-jupiter-params + 5.8.2 + + + org.junit.platform + junit-platform-commons + 1.8.2 + + + org.junit.platform + junit-platform-console + 1.8.2 + + + org.junit.platform + junit-platform-engine + 1.8.2 + + + org.junit.platform + junit-platform-jfr + 1.8.2 + + + org.junit.platform + junit-platform-launcher + 1.8.2 + + + org.junit.platform + junit-platform-reporting + 1.8.2 + + + org.junit.platform + junit-platform-runner + 1.8.2 + + + org.junit.platform + junit-platform-suite + 1.8.2 + + + org.junit.platform + junit-platform-suite-api + 1.8.2 + + + org.junit.platform + junit-platform-suite-commons + 1.8.2 + + + org.junit.platform + junit-platform-suite-engine + 1.8.2 + + + org.junit.platform + junit-platform-testkit + 1.8.2 + + + org.junit.vintage + junit-vintage-engine + 5.8.2 + + + org.jetbrains.kotlin + kotlin-stdlib + 1.6.10 + + + org.jetbrains.kotlin + kotlin-stdlib-jdk7 + 1.6.10 + + + org.jetbrains.kotlin + kotlin-stdlib-jdk8 + 1.6.10 + + + org.jetbrains.kotlin + kotlin-stdlib-js + 1.6.10 + + + org.jetbrains.kotlin + kotlin-stdlib-common + 1.6.10 + + + org.jetbrains.kotlin + kotlin-reflect + 1.6.10 + + + org.jetbrains.kotlin + kotlin-osgi-bundle + 1.6.10 + + + org.jetbrains.kotlin + kotlin-test + 1.6.10 + + + org.jetbrains.kotlin + kotlin-test-junit + 1.6.10 + + + org.jetbrains.kotlin + kotlin-test-junit5 + 1.6.10 + + + org.jetbrains.kotlin + kotlin-test-testng + 1.6.10 + + + org.jetbrains.kotlin + kotlin-test-js + 1.6.10 + + + org.jetbrains.kotlin + kotlin-test-common + 1.6.10 + + + org.jetbrains.kotlin + kotlin-test-annotations-common + 1.6.10 + + + org.jetbrains.kotlin + kotlin-main-kts + 1.6.10 + + + org.jetbrains.kotlin + kotlin-script-runtime + 1.6.10 + + + org.jetbrains.kotlin + kotlin-script-util + 1.6.10 + + + org.jetbrains.kotlin + kotlin-scripting-common + 1.6.10 + + + org.jetbrains.kotlin + kotlin-scripting-jvm + 1.6.10 + + + org.jetbrains.kotlin + kotlin-scripting-jvm-host + 1.6.10 + + + org.jetbrains.kotlin + kotlin-scripting-ide-services + 1.6.10 + + + org.jetbrains.kotlin + kotlin-compiler + 1.6.10 + + + org.jetbrains.kotlin + kotlin-compiler-embeddable + 1.6.10 + + + org.jetbrains.kotlin + kotlin-daemon-client + 1.6.10 + + + org.jetbrains.kotlinx + kotlinx-coroutines-android + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-core-jvm + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-core + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-debug + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-guava + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-javafx + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-jdk8 + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-jdk9 + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-play-services + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-reactive + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-reactor + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-rx2 + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-rx3 + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-slf4j + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-swing + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-test + 1.5.2 + + + org.apache.logging.log4j + log4j-api + 2.17.0 + + + org.apache.logging.log4j + log4j-core + 2.17.0 + + + org.apache.logging.log4j + log4j-layout-template-json + 2.17.0 + + + org.apache.logging.log4j + log4j-1.2-api + 2.17.0 + + + org.apache.logging.log4j + log4j-jcl + 2.17.0 + + + org.apache.logging.log4j + log4j-flume-ng + 2.17.0 + + + org.apache.logging.log4j + log4j-taglib + 2.17.0 + + + org.apache.logging.log4j + log4j-jmx-gui + 2.17.0 + + + org.apache.logging.log4j + log4j-slf4j-impl + 2.17.0 + + + org.apache.logging.log4j + log4j-slf4j18-impl + 2.17.0 + + + org.apache.logging.log4j + log4j-to-slf4j + 2.17.0 + + + org.apache.logging.log4j + log4j-appserver + 2.17.0 + + + org.apache.logging.log4j + log4j-web + 2.17.0 + + + org.apache.logging.log4j + log4j-couchdb + 2.17.0 + + + org.apache.logging.log4j + log4j-mongodb4 + 2.17.0 + + + org.apache.logging.log4j + log4j-mongodb3 + 2.17.0 + + + org.apache.logging.log4j + log4j-cassandra + 2.17.0 + + + org.apache.logging.log4j + log4j-jpa + 2.17.0 + + + org.apache.logging.log4j + log4j-iostreams + 2.17.0 + + + org.apache.logging.log4j + log4j-jul + 2.17.0 + + + org.apache.logging.log4j + log4j-jpl + 2.17.0 + + + org.apache.logging.log4j + log4j-liquibase + 2.17.0 + + + org.apache.logging.log4j + log4j-docker + 2.17.0 + + + org.apache.logging.log4j + log4j-kubernetes + 2.17.0 + + + org.apache.logging.log4j + log4j-spring-boot + 2.17.0 + + + org.apache.logging.log4j + log4j-spring-cloud-config-client + 2.17.0 + + + io.micrometer + micrometer-core + 1.8.1 + + + io.micrometer + micrometer-jersey2 + 1.8.1 + + + io.micrometer + micrometer-registry-appoptics + 1.8.1 + + + io.micrometer + micrometer-registry-atlas + 1.8.1 + + + io.micrometer + micrometer-registry-azure-monitor + 1.8.1 + + + io.micrometer + micrometer-registry-cloudwatch + 1.8.1 + + + io.micrometer + micrometer-registry-cloudwatch2 + 1.8.1 + + + io.micrometer + micrometer-registry-datadog + 1.8.1 + + + io.micrometer + micrometer-registry-dynatrace + 1.8.1 + + + io.micrometer + micrometer-registry-elastic + 1.8.1 + + + io.micrometer + micrometer-registry-ganglia + 1.8.1 + + + io.micrometer + micrometer-registry-graphite + 1.8.1 + + + io.micrometer + micrometer-registry-health + 1.8.1 + + + io.micrometer + micrometer-registry-humio + 1.8.1 + + + io.micrometer + micrometer-registry-influx + 1.8.1 + + + io.micrometer + micrometer-registry-jmx + 1.8.1 + + + io.micrometer + micrometer-registry-kairos + 1.8.1 + + + io.micrometer + micrometer-registry-new-relic + 1.8.1 + + + io.micrometer + micrometer-registry-opentsdb + 1.8.1 + + + io.micrometer + micrometer-registry-prometheus + 1.8.1 + + + io.micrometer + micrometer-registry-signalfx + 1.8.1 + + + io.micrometer + micrometer-registry-statsd + 1.8.1 + + + io.micrometer + micrometer-registry-wavefront + 1.8.1 + + + io.micrometer + micrometer-test + 1.8.1 + + + io.netty + netty-buffer + 4.1.72.Final + + + io.netty + netty-codec + 4.1.72.Final + + + io.netty + netty-codec-dns + 4.1.72.Final + + + io.netty + netty-codec-haproxy + 4.1.72.Final + + + io.netty + netty-codec-http + 4.1.72.Final + + + io.netty + netty-codec-http2 + 4.1.72.Final + + + io.netty + netty-codec-memcache + 4.1.72.Final + + + io.netty + netty-codec-mqtt + 4.1.72.Final + + + io.netty + netty-codec-redis + 4.1.72.Final + + + io.netty + netty-codec-smtp + 4.1.72.Final + + + io.netty + netty-codec-socks + 4.1.72.Final + + + io.netty + netty-codec-stomp + 4.1.72.Final + + + io.netty + netty-codec-xml + 4.1.72.Final + + + io.netty + netty-common + 4.1.72.Final + + + io.netty + netty-dev-tools + 4.1.72.Final + + + io.netty + netty-handler + 4.1.72.Final + + + io.netty + netty-handler-proxy + 4.1.72.Final + + + io.netty + netty-resolver + 4.1.72.Final + + + io.netty + netty-resolver-dns + 4.1.72.Final + + + io.netty + netty-transport + 4.1.72.Final + + + io.netty + netty-transport-rxtx + 4.1.72.Final + + + io.netty + netty-transport-sctp + 4.1.72.Final + + + io.netty + netty-transport-udt + 4.1.72.Final + + + io.netty + netty-example + 4.1.72.Final + + + io.netty + netty-all + 4.1.72.Final + + + io.netty + netty-resolver-dns-classes-macos + 4.1.72.Final + + + io.netty + netty-resolver-dns-native-macos + 4.1.72.Final + + + io.netty + netty-resolver-dns-native-macos + 4.1.72.Final + osx-x86_64 + + + io.netty + netty-resolver-dns-native-macos + 4.1.72.Final + osx-aarch_64 + + + io.netty + netty-transport-native-unix-common + 4.1.72.Final + + + io.netty + netty-transport-native-unix-common + 4.1.72.Final + linux-aarch_64 + + + io.netty + netty-transport-native-unix-common + 4.1.72.Final + linux-x86_64 + + + io.netty + netty-transport-native-unix-common + 4.1.72.Final + osx-x86_64 + + + io.netty + netty-transport-native-unix-common + 4.1.72.Final + osx-aarch_64 + + + io.netty + netty-transport-classes-epoll + 4.1.72.Final + + + io.netty + netty-transport-native-epoll + 4.1.72.Final + + + io.netty + netty-transport-native-epoll + 4.1.72.Final + linux-aarch_64 + + + io.netty + netty-transport-native-epoll + 4.1.72.Final + linux-x86_64 + + + io.netty + netty-transport-classes-kqueue + 4.1.72.Final + + + io.netty + netty-transport-native-kqueue + 4.1.72.Final + + + io.netty + netty-transport-native-kqueue + 4.1.72.Final + osx-x86_64 + + + io.netty + netty-transport-native-kqueue + 4.1.72.Final + osx-aarch_64 + + + io.netty + netty-tcnative-classes + 2.0.46.Final + + + io.netty + netty-tcnative + 2.0.46.Final + linux-x86_64 + + + io.netty + netty-tcnative + 2.0.46.Final + linux-x86_64-fedora + + + io.netty + netty-tcnative + 2.0.46.Final + linux-aarch_64-fedora + + + io.netty + netty-tcnative + 2.0.46.Final + osx-x86_64 + + + io.netty + netty-tcnative-boringssl-static + 2.0.46.Final + linux-x86_64 + + + io.netty + netty-tcnative-boringssl-static + 2.0.46.Final + linux-aarch_64 + + + io.netty + netty-tcnative-boringssl-static + 2.0.46.Final + osx-x86_64 + + + io.netty + netty-tcnative-boringssl-static + 2.0.46.Final + osx-aarch_64 + + + io.netty + netty-tcnative-boringssl-static + 2.0.46.Final + windows-x86_64 + + + com.oracle.database.jdbc + ojdbc11 + 21.3.0.0 + + + com.oracle.database.jdbc + ojdbc8 + 21.3.0.0 + + + com.oracle.database.jdbc + ucp + 21.3.0.0 + + + com.oracle.database.jdbc + ucp11 + 21.3.0.0 + + + com.oracle.database.jdbc + rsi + 21.3.0.0 + + + com.oracle.database.security + oraclepki + 21.3.0.0 + + + com.oracle.database.security + osdt_core + 21.3.0.0 + + + com.oracle.database.security + osdt_cert + 21.3.0.0 + + + com.oracle.database.ha + simplefan + 21.3.0.0 + + + com.oracle.database.ha + ons + 21.3.0.0 + + + com.oracle.database.nls + orai18n + 21.3.0.0 + + + com.oracle.database.xml + xdb + 21.3.0.0 + + + com.oracle.database.xml + xmlparserv2 + 21.3.0.0 + + + com.oracle.database.jdbc.debug + ojdbc11_g + 21.3.0.0 + + + com.oracle.database.jdbc.debug + ojdbc8_g + 21.3.0.0 + + + com.oracle.database.jdbc.debug + ojdbc8dms_g + 21.3.0.0 + + + com.oracle.database.jdbc.debug + ojdbc11dms_g + 21.3.0.0 + + + com.oracle.database.observability + dms + 21.3.0.0 + + + com.oracle.database.observability + ojdbc11dms + 21.3.0.0 + + + com.oracle.database.observability + ojdbc8dms + 21.3.0.0 + + + com.oracle.database.jdbc + ojdbc11-production + 21.3.0.0 + pom + + + com.oracle.database.jdbc + ojdbc8-production + 21.3.0.0 + pom + + + com.oracle.database.observability + ojdbc8-observability + 21.3.0.0 + pom + + + com.oracle.database.observability + ojdbc11-observability + 21.3.0.0 + pom + + + com.oracle.database.jdbc.debug + ojdbc8-debug + 21.3.0.0 + pom + + + com.oracle.database.jdbc.debug + ojdbc11-debug + 21.3.0.0 + pom + + + com.oracle.database.jdbc.debug + ojdbc8-observability-debug + 21.3.0.0 + pom + + + com.oracle.database.jdbc.debug + ojdbc11-observability-debug + 21.3.0.0 + pom + + + io.prometheus + simpleclient + 0.12.0 + + + io.prometheus + simpleclient_caffeine + 0.12.0 + + + io.prometheus + simpleclient_common + 0.12.0 + + + io.prometheus + simpleclient_dropwizard + 0.12.0 + + + io.prometheus + simpleclient_graphite_bridge + 0.12.0 + + + io.prometheus + simpleclient_guava + 0.12.0 + + + io.prometheus + simpleclient_hibernate + 0.12.0 + + + io.prometheus + simpleclient_hotspot + 0.12.0 + + + io.prometheus + simpleclient_httpserver + 0.12.0 + + + io.prometheus + simpleclient_jetty + 0.12.0 + + + io.prometheus + simpleclient_jetty_jdk8 + 0.12.0 + + + io.prometheus + simpleclient_log4j + 0.12.0 + + + io.prometheus + simpleclient_log4j2 + 0.12.0 + + + io.prometheus + simpleclient_logback + 0.12.0 + + + io.prometheus + simpleclient_pushgateway + 0.12.0 + + + io.prometheus + simpleclient_servlet + 0.12.0 + + + io.prometheus + simpleclient_servlet_jakarta + 0.12.0 + + + io.prometheus + simpleclient_spring_boot + 0.12.0 + + + io.prometheus + simpleclient_spring_web + 0.12.0 + + + io.prometheus + simpleclient_tracer_otel + 0.12.0 + + + io.prometheus + simpleclient_tracer_otel_agent + 0.12.0 + + + io.prometheus + simpleclient_vertx + 0.12.0 + + + com.querydsl + querydsl-core + 5.0.0 + + + com.querydsl + querydsl-codegen + 5.0.0 + + + com.querydsl + querydsl-codegen-utils + 5.0.0 + + + com.querydsl + querydsl-spatial + 5.0.0 + + + com.querydsl + querydsl-apt + 5.0.0 + + + com.querydsl + querydsl-collections + 5.0.0 + + + com.querydsl + querydsl-guava + 5.0.0 + + + com.querydsl + querydsl-sql + 5.0.0 + + + com.querydsl + querydsl-sql-spatial + 5.0.0 + + + com.querydsl + querydsl-sql-codegen + 5.0.0 + + + com.querydsl + querydsl-sql-spring + 5.0.0 + + + com.querydsl + querydsl-jpa + 5.0.0 + + + com.querydsl + querydsl-jpa-codegen + 5.0.0 + + + com.querydsl + querydsl-jdo + 5.0.0 + + + com.querydsl + querydsl-kotlin-codegen + 5.0.0 + + + com.querydsl + querydsl-lucene3 + 5.0.0 + + + com.querydsl + querydsl-lucene4 + 5.0.0 + + + com.querydsl + querydsl-lucene5 + 5.0.0 + + + com.querydsl + querydsl-hibernate-search + 5.0.0 + + + com.querydsl + querydsl-mongodb + 5.0.0 + + + com.querydsl + querydsl-scala + 5.0.0 + + + com.querydsl + querydsl-kotlin + 5.0.0 + + + com.google.cloud + cloud-spanner-r2dbc + 0.6.0 + + + com.oracle.database.r2dbc + oracle-r2dbc + 0.1.0 + + + io.r2dbc + r2dbc-h2 + 0.8.4.RELEASE + + + org.mariadb + r2dbc-mariadb + 1.0.2 + + + io.r2dbc + r2dbc-mssql + 0.8.7.RELEASE + + + dev.miku + r2dbc-mysql + 0.8.2.RELEASE + + + io.r2dbc + r2dbc-postgresql + 0.8.10.RELEASE + + + io.r2dbc + r2dbc-pool + 0.8.7.RELEASE + + + io.r2dbc + r2dbc-proxy + 0.8.8.RELEASE + + + io.r2dbc + r2dbc-spi + 0.8.6.RELEASE + + + io.projectreactor + reactor-core + 3.4.13 + + + io.projectreactor + reactor-test + 3.4.13 + + + io.projectreactor + reactor-tools + 3.4.13 + + + io.projectreactor.addons + reactor-extra + 3.4.6 + + + io.projectreactor.addons + reactor-adapter + 3.4.6 + + + io.projectreactor.netty + reactor-netty + 1.0.14 + + + io.projectreactor.netty + reactor-netty-core + 1.0.14 + + + io.projectreactor.netty + reactor-netty-http + 1.0.14 + + + io.projectreactor.netty + reactor-netty-http-brave + 1.0.14 + + + io.projectreactor.addons + reactor-pool + 0.2.7 + + + io.projectreactor.kafka + reactor-kafka + 1.3.8 + + + io.projectreactor.rabbitmq + reactor-rabbitmq + 1.5.4 + + + io.projectreactor.kotlin + reactor-kotlin-extensions + 1.1.5 + + + io.rsocket + rsocket-core + 1.1.1 + + + io.rsocket + rsocket-load-balancer + 1.1.1 + + + io.rsocket + rsocket-micrometer + 1.1.1 + + + io.rsocket + rsocket-test + 1.1.1 + + + io.rsocket + rsocket-transport-local + 1.1.1 + + + io.rsocket + rsocket-transport-netty + 1.1.1 + + + org.springframework.data + spring-data-cassandra + 3.3.0 + + + org.springframework.data + spring-data-commons + 2.6.0 + + + org.springframework.data + spring-data-couchbase + 4.3.0 + + + org.springframework.data + spring-data-elasticsearch + 4.3.0 + + + org.springframework.data + spring-data-geode + 2.6.0 + + + org.springframework.data + spring-data-jdbc + 2.3.0 + + + org.springframework.data + spring-data-relational + 2.3.0 + + + org.springframework.data + spring-data-jpa + 2.6.0 + + + org.springframework.data + spring-data-mongodb + 3.3.0 + + + org.springframework.data + spring-data-neo4j + 6.2.0 + + + org.springframework.data + spring-data-r2dbc + 1.4.0 + + + org.springframework.data + spring-data-redis + 2.6.0 + + + org.springframework.data + spring-data-rest-webmvc + 3.6.0 + + + org.springframework.data + spring-data-rest-core + 3.6.0 + + + org.springframework.data + spring-data-rest-hal-explorer + 3.6.0 + + + org.springframework.data + spring-data-keyvalue + 2.6.0 + + + org.springframework.data + spring-data-envers + 2.6.0 + + + org.springframework.data + spring-data-ldap + 2.6.0 + + + org.springframework + spring-aspects + 5.3.14 + + + org.springframework + spring-context-indexer + 5.3.14 + + + org.springframework + spring-context-support + 5.3.14 + + + org.springframework + spring-core + 5.3.14 + + + org.springframework + spring-instrument + 5.3.14 + + + org.springframework + spring-jcl + 5.3.14 + + + org.springframework + spring-jdbc + 5.3.14 + + + org.springframework + spring-jms + 5.3.14 + + + org.springframework + spring-messaging + 5.3.14 + + + org.springframework + spring-orm + 5.3.14 + + + org.springframework + spring-oxm + 5.3.14 + + + org.springframework + spring-r2dbc + 5.3.14 + + + org.springframework + spring-test + 5.3.14 + + + org.springframework + spring-tx + 5.3.14 + + + org.springframework + spring-web + 5.3.14 + + + org.springframework + spring-webflux + 5.3.14 + + + org.springframework + spring-webmvc + 5.3.14 + + + org.springframework + spring-websocket + 5.3.14 + + + org.springframework.integration + spring-integration-amqp + 5.5.7 + + + org.springframework.integration + spring-integration-core + 5.5.7 + + + org.springframework.integration + spring-integration-event + 5.5.7 + + + org.springframework.integration + spring-integration-feed + 5.5.7 + + + org.springframework.integration + spring-integration-file + 5.5.7 + + + org.springframework.integration + spring-integration-ftp + 5.5.7 + + + org.springframework.integration + spring-integration-gemfire + 5.5.7 + + + org.springframework.integration + spring-integration-groovy + 5.5.7 + + + org.springframework.integration + spring-integration-http + 5.5.7 + + + org.springframework.integration + spring-integration-ip + 5.5.7 + + + org.springframework.integration + spring-integration-jdbc + 5.5.7 + + + org.springframework.integration + spring-integration-jms + 5.5.7 + + + org.springframework.integration + spring-integration-jmx + 5.5.7 + + + org.springframework.integration + spring-integration-jpa + 5.5.7 + + + org.springframework.integration + spring-integration-kafka + 5.5.7 + + + org.springframework.integration + spring-integration-mail + 5.5.7 + + + org.springframework.integration + spring-integration-mongodb + 5.5.7 + + + org.springframework.integration + spring-integration-mqtt + 5.5.7 + + + org.springframework.integration + spring-integration-r2dbc + 5.5.7 + + + org.springframework.integration + spring-integration-redis + 5.5.7 + + + org.springframework.integration + spring-integration-rmi + 5.5.7 + + + org.springframework.integration + spring-integration-rsocket + 5.5.7 + + + org.springframework.integration + spring-integration-scripting + 5.5.7 + + + org.springframework.integration + spring-integration-security + 5.5.7 + + + org.springframework.integration + spring-integration-sftp + 5.5.7 + + + org.springframework.integration + spring-integration-stomp + 5.5.7 + + + org.springframework.integration + spring-integration-stream + 5.5.7 + + + org.springframework.integration + spring-integration-syslog + 5.5.7 + + + org.springframework.integration + spring-integration-test + 5.5.7 + + + org.springframework.integration + spring-integration-test-support + 5.5.7 + + + org.springframework.integration + spring-integration-webflux + 5.5.7 + + + org.springframework.integration + spring-integration-websocket + 5.5.7 + + + org.springframework.integration + spring-integration-ws + 5.5.7 + + + org.springframework.integration + spring-integration-xml + 5.5.7 + + + org.springframework.integration + spring-integration-xmpp + 5.5.7 + + + org.springframework.integration + spring-integration-zeromq + 5.5.7 + + + org.springframework.integration + spring-integration-zookeeper + 5.5.7 + + + org.springframework.security + spring-security-acl + 5.6.1 + + + org.springframework.security + spring-security-aspects + 5.6.1 + + + org.springframework.security + spring-security-cas + 5.6.1 + + + org.springframework.security + spring-security-config + 5.6.1 + + + org.springframework.security + spring-security-core + 5.6.1 + + + org.springframework.security + spring-security-crypto + 5.6.1 + + + org.springframework.security + spring-security-data + 5.6.1 + + + org.springframework.security + spring-security-ldap + 5.6.1 + + + org.springframework.security + spring-security-messaging + 5.6.1 + + + org.springframework.security + spring-security-oauth2-client + 5.6.1 + + + org.springframework.security + spring-security-oauth2-core + 5.6.1 + + + org.springframework.security + spring-security-oauth2-jose + 5.6.1 + + + org.springframework.security + spring-security-oauth2-resource-server + 5.6.1 + + + org.springframework.security + spring-security-openid + 5.6.1 + + + org.springframework.security + spring-security-remoting + 5.6.1 + + + org.springframework.security + spring-security-rsocket + 5.6.1 + + + org.springframework.security + spring-security-saml2-service-provider + 5.6.1 + + + org.springframework.security + spring-security-taglibs + 5.6.1 + + + org.springframework.security + spring-security-test + 5.6.1 + + + org.springframework.security + spring-security-web + 5.6.1 + + + org.springframework.session + spring-session-jdbc + 2.6.1 + + + org.springframework.session + spring-session-data-geode + 2.6.0 + + + org.springframework.session + spring-session-hazelcast + 2.6.1 + + + org.springframework.session + spring-session-data-mongodb + 2.6.1 + + + org.springframework.session + spring-session-core + 2.6.1 + + + org.springframework.session + spring-session-data-redis + 2.6.1 + + + + + + junit + junit + 3.8.1 + test + + + + + + true + + nexus-server@alipay + http://mvn.test.alipay.net:8080/artifactory/repo + + + + true + + central + http://mvn.dev.alipay.net:8080/artifactory/repo + + + + true + never + + snapshots + http://mvn.dev.alipay.net:8080/artifactory/repo + + + alibaba + http://mvnrepo.alibaba-inc.com/mvn/repository + + + + + + false + never + + central + http://mvn.dev.alipay.net:8080/artifactory/repo + + + alibaba + http://mvnrepo.alibaba-inc.com/mvn/repository + + + + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/src/main/java + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/src/main/scripts + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/src/test/java + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/target/classes + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/target/test-classes + + + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/src/main/resources + + + + + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/src/test/resources + + + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/target + project03-maven-test-0.0.1-snapshot + + + + org.codehaus.mojo + build-helper-maven-plugin + 3.2.0 + + + org.flywaydb + flyway-maven-plugin + 8.0.5 + + + pl.project13.maven + git-commit-id-plugin + 4.9.10 + + + org.apache.johnzon + johnzon-maven-plugin + 1.2.15 + + + org.jooq + jooq-codegen-maven + 3.14.15 + + + org.jetbrains.kotlin + kotlin-maven-plugin + 1.6.10 + + + org.liquibase + liquibase-maven-plugin + 4.5.0 + + + maven-antrun-plugin + 3.0.0 + + + maven-assembly-plugin + 3.3.0 + + + maven-clean-plugin + 3.1.0 + + + maven-compiler-plugin + 3.8.1 + + + maven-dependency-plugin + 3.2.0 + + + maven-release-plugin + 2.5.3 + + + maven-deploy-plugin + 2.8.2 + + + maven-enforcer-plugin + 3.0.0 + + + maven-failsafe-plugin + 2.22.2 + + + maven-help-plugin + 3.2.0 + + + maven-install-plugin + 2.5.2 + + + maven-invoker-plugin + 3.2.2 + + + maven-jar-plugin + 3.2.0 + + + maven-javadoc-plugin + 3.3.1 + + + maven-resources-plugin + 3.2.0 + + + maven-shade-plugin + 3.2.4 + + + maven-source-plugin + 3.2.1 + + + maven-surefire-plugin + 2.22.2 + + + maven-war-plugin + 3.3.2 + + + org.springframework.boot + spring-boot-maven-plugin + 2.6.2 + + + org.codehaus.mojo + versions-maven-plugin + 2.8.1 + + + org.codehaus.mojo + xml-maven-plugin + 1.0.2 + + + + + + maven-clean-plugin + 3.1.0 + + + default-clean + clean + + clean + + + + + + maven-install-plugin + 2.5.2 + + + default-install + install + + install + + + + + + maven-deploy-plugin + 2.8.2 + + + default-deploy + deploy + + deploy + + + + + + maven-site-plugin + 3.3 + + + default-site + site + + site + + + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/target/site + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + + + + + default-deploy + site-deploy + + deploy + + + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/target/site + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + + + + + + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/target/site + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + + + + + + + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/target/site + + + + + + + + + + 4.0.0 + + com.ykl + project03-maven-test + 0.0.1-snapshot + + com.ykl + project04-maven-moduele + 0.0.1-snapshot + project04-maven-moduele + Spring Boot Dependencies + http://maven.apache.org + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + + + Pivotal + info@pivotal.io + Pivotal Software, Inc. + https://www.spring.io + + + + https://github.com/spring-projects/spring-boot/project03-maven-test/project04-maven-moduele + + + 5.16.3 + 2.7.7 + 1.9.93 + 2.19.0 + 1.9.7 + 3.21.0 + 4.0.6 + 4.1.1 + 3.2.0 + 1.11.22 + 2.9.3 + 4.13.0 + 1.5.1 + temp + world + 1.15 + 2.9.0 + 3.12.0 + 1.6 + 2.11.1 + 3.2.4 + 11.5.7.0 + 1.0.11.RELEASE + 10.14.2.0 + 4.2.7 + 2.10.9.2 + 3.9.9 + 7.15.2 + 3.0.0 + 8.0.5 + 2.3.31 + 4.9.10 + 3.0.4 + 2.3.5 + 1.2.6 + 3.0.9 + 2.8.9 + 1.4.200 + 2.2 + 2.2.1 + 4.2.4 + 6.2.0.Final + 5.6.3.Final + 4.0.3 + 2.5.2 + 2.54.0 + 4.1.5 + 4.5.13 + 5.1.2 + 4.4.15 + 5.1.2 + 12.1.10.Final + 2.22 + 2.13.1 + 1.2.2 + 1.3.5 + 2.0.3 + 1.0.2 + 1.1.6 + 1.6.7 + 1.1.4 + 2.2.3 + 1.2.7 + 4.0.4 + 1.3.3 + 2.0.2 + 1.1.2 + 2.1.6 + 2.3.3 + 1.4.2 + 2.3.3 + 3.1.6 + 1.2.0 + 1.3.2 + 1.1.1 + 2.3.1 + 2.3.1 + 2.0.1 + 1.1.4 + 1.0 + 1.6.2 + 1.1 + 2.2 + 1.3 + 2.0.1.Final + 1.1 + 1.2.0 + 4.0.4.java8 + 3.4.2.Final + 2.0.6.1 + 3.7.1 + 2.35 + 9.0.52 + 2.2.0.v201112011158 + 1.1.10 + 9.4.44.v20210927 + 1.15 + 1.2.15 + 1.7.1 + 3.14.15 + 2.6.0 + 2.4.7 + 1.5.0 + 1.2 + 1.3.1 + 5.8.2 + 4.13.2 + 3.0.0 + 1.5.2 + 1.6.10 + 6.1.5.RELEASE + 4.5.0 + 2.17.0 + 1.2.9 + 1.18.22 + 2.7.4 + 3.0.0 + 3.3.0 + 3.1.0 + 3.8.1 + 3.2.0 + 2.8.2 + 3.0.0 + 2.22.2 + 3.2.0 + 2.5.2 + 3.2.2 + 3.2.0 + 3.3.1 + 3.2.0 + 3.2.4 + 3.2.1 + 2.22.2 + 3.3.2 + 1.8.1 + 1.9.15 + 4.0.0 + 4.4.0 + 9.4.1.jre8 + 8.0.27 + 1.9.22 + 4.3.6 + 2.0.46.Final + 4.1.72.Final + 3.14.9 + 21.3.0.0 + 1.2.2 + 42.3.1 + 0.12.0 + 2.3.2 + 5.0.0 + Arabba-SR11 + 5.13.1 + 0.4.0 + 1.0.3 + 2020.0.14 + 4.4.0 + 1.1.1 + 1.2.1 + 1.3.8 + 2.2.21 + 1.5.3 + 2.54.0 + 3.141.59 + 4.7.6 + 4.0.1 + 1.7.32 + 1.29 + 8.8.2 + 2.4.1 + 4.3.4 + 2021.1.0 + 5.3.14 + 1.4.0 + 5.5.7 + 2.8.1 + 2.3.5.RELEASE + 2.0.5.RELEASE + 1.3.1 + 5.6.1 + 2021.1.1 + 3.1.2 + 3.36.0.3 + 1.6.7 + 2.0.1 + 3.0.4.RELEASE + 3.0.4.RELEASE + 3.0.0 + 3.0.14.RELEASE + 9.0.56 + 4.0.14 + 2.2.14.Final + 2.8.1 + 0.48 + 1.6.3 + 1.0.2 + 2.8.4 + + + + + org.spingframwork + spring-core + 4.0.0.RELEASE + + + org.springframework + spring-beans + 4.0.0.RELEASE + + + org.springframework + spring-context + 4.0.0.RELEASE + + + org.springframework + spring-expression + 4.0.0.RELEASE + + + org.springframework + spring-aop + 4.0.0.RELEASE + + + org.apache.activemq + activemq-amqp + 5.16.3 + + + org.apache.activemq + activemq-blueprint + 5.16.3 + + + org.apache.activemq + activemq-broker + 5.16.3 + + + org.apache.activemq + activemq-camel + 5.16.3 + + + org.apache.activemq + activemq-client + 5.16.3 + + + org.apache.activemq + activemq-console + 5.16.3 + + + commons-logging + commons-logging + + + + + org.apache.activemq + activemq-http + 5.16.3 + + + org.apache.activemq + activemq-jaas + 5.16.3 + + + org.apache.activemq + activemq-jdbc-store + 5.16.3 + + + org.apache.activemq + activemq-jms-pool + 5.16.3 + + + org.apache.activemq + activemq-kahadb-store + 5.16.3 + + + org.apache.activemq + activemq-karaf + 5.16.3 + + + org.apache.activemq + activemq-leveldb-store + 5.16.3 + + + commons-logging + commons-logging + + + + + org.apache.activemq + activemq-log4j-appender + 5.16.3 + + + org.apache.activemq + activemq-mqtt + 5.16.3 + + + org.apache.activemq + activemq-openwire-generator + 5.16.3 + + + org.apache.activemq + activemq-openwire-legacy + 5.16.3 + + + org.apache.activemq + activemq-osgi + 5.16.3 + + + org.apache.activemq + activemq-partition + 5.16.3 + + + org.apache.activemq + activemq-pool + 5.16.3 + + + org.apache.activemq + activemq-ra + 5.16.3 + + + org.apache.activemq + activemq-run + 5.16.3 + + + org.apache.activemq + activemq-runtime-config + 5.16.3 + + + org.apache.activemq + activemq-shiro + 5.16.3 + + + org.apache.activemq + activemq-spring + 5.16.3 + + + commons-logging + commons-logging + + + + + org.apache.activemq + activemq-stomp + 5.16.3 + + + org.apache.activemq + activemq-web + 5.16.3 + + + antlr + antlr + 2.7.7 + + + com.google.appengine + appengine-api-1.0-sdk + 1.9.93 + + + org.apache.activemq + artemis-amqp-protocol + 2.19.0 + + + org.apache.activemq + artemis-commons + 2.19.0 + + + commons-logging + commons-logging + + + + + org.apache.activemq + artemis-core-client + 2.19.0 + + + geronimo-json_1.0_spec + org.apache.geronimo.specs + + + + + org.apache.activemq + artemis-jms-client + 2.19.0 + + + geronimo-json_1.0_spec + org.apache.geronimo.specs + + + + + org.apache.activemq + artemis-jms-server + 2.19.0 + + + geronimo-json_1.0_spec + org.apache.geronimo.specs + + + + + org.apache.activemq + artemis-journal + 2.19.0 + + + org.apache.activemq + artemis-selector + 2.19.0 + + + org.apache.activemq + artemis-server + 2.19.0 + + + commons-logging + commons-logging + + + geronimo-json_1.0_spec + org.apache.geronimo.specs + + + + + org.apache.activemq + artemis-service-extensions + 2.19.0 + + + org.aspectj + aspectjrt + 1.9.7 + + + org.aspectj + aspectjtools + 1.9.7 + + + org.aspectj + aspectjweaver + 1.9.7 + + + org.assertj + assertj-core + 3.21.0 + + + com.atomikos + transactions-jdbc + 4.0.6 + + + com.atomikos + transactions-jms + 4.0.6 + + + com.atomikos + transactions-jta + 4.0.6 + + + org.awaitility + awaitility + 4.1.1 + + + org.awaitility + awaitility-groovy + 4.1.1 + + + org.awaitility + awaitility-kotlin + 4.1.1 + + + org.awaitility + awaitility-scala + 4.1.1 + + + net.bytebuddy + byte-buddy + 1.11.22 + + + net.bytebuddy + byte-buddy-agent + 1.11.22 + + + com.github.ben-manes.caffeine + caffeine + 2.9.3 + + + com.github.ben-manes.caffeine + guava + 2.9.3 + + + com.github.ben-manes.caffeine + jcache + 2.9.3 + + + com.github.ben-manes.caffeine + simulator + 2.9.3 + + + com.datastax.oss + java-driver-core + 4.13.0 + + + jcl-over-slf4j + org.slf4j + + + + + com.fasterxml + classmate + 1.5.1 + + + commons-codec + commons-codec + 1.15 + + + org.apache.commons + commons-dbcp2 + 2.9.0 + + + commons-logging + commons-logging + + + + + org.apache.commons + commons-lang3 + 3.12.0 + + + commons-pool + commons-pool + 1.6 + + + org.apache.commons + commons-pool2 + 2.11.1 + + + com.couchbase.client + java-client + 3.2.4 + + + com.ibm.db2 + jcc + 11.5.7.0 + + + io.spring.gradle + dependency-management-plugin + 1.0.11.RELEASE + + + org.apache.derby + derby + 10.14.2.0 + + + org.apache.derby + derbyclient + 10.14.2.0 + + + net.sf.ehcache + ehcache + 2.10.9.2 + + + org.ehcache + ehcache + 3.9.9 + + + org.ehcache + ehcache-clustered + 3.9.9 + + + org.ehcache + ehcache-transactions + 3.9.9 + + + org.elasticsearch + elasticsearch + 7.15.2 + + + org.elasticsearch.client + transport + 7.15.2 + + + org.elasticsearch.client + elasticsearch-rest-client + 7.15.2 + + + commons-logging + commons-logging + + + + + org.elasticsearch.client + elasticsearch-rest-client-sniffer + 7.15.2 + + + commons-logging + commons-logging + + + + + org.elasticsearch.client + elasticsearch-rest-high-level-client + 7.15.2 + + + org.elasticsearch.distribution.integ-test-zip + elasticsearch + 7.15.2 + zip + + + org.elasticsearch.plugin + transport-netty4-client + 7.15.2 + + + de.flapdoodle.embed + de.flapdoodle.embed.mongo + 3.0.0 + + + org.flywaydb + flyway-core + 8.0.5 + + + org.freemarker + freemarker + 2.3.31 + + + org.glassfish + jakarta.el + 3.0.4 + + + org.glassfish.jaxb + codemodel + 2.3.5 + + + org.glassfish.jaxb + codemodel-annotation-compiler + 2.3.5 + + + org.glassfish.jaxb + jaxb-jxc + 2.3.5 + + + org.glassfish.jaxb + jaxb-runtime + 2.3.5 + + + org.glassfish.jaxb + jaxb-xjc + 2.3.5 + + + org.glassfish.jaxb + txw2 + 2.3.5 + + + org.glassfish.jaxb + txwc2 + 2.3.5 + + + org.glassfish.jaxb + xsom + 2.3.5 + + + org.glassfish.web + jakarta.servlet.jsp.jstl + 1.2.6 + + + com.google.code.gson + gson + 2.8.9 + + + com.h2database + h2 + 1.4.200 + + + org.hamcrest + hamcrest + 2.2 + + + org.hamcrest + hamcrest-core + 2.2 + + + org.hamcrest + hamcrest-library + 2.2 + + + com.hazelcast + hazelcast + 4.2.4 + + + com.hazelcast + hazelcast-spring + 4.2.4 + + + com.hazelcast + hazelcast-hibernate52 + 2.2.1 + + + com.hazelcast + hazelcast-hibernate53 + 2.2.1 + + + org.hibernate + hibernate-c3p0 + 5.6.3.Final + + + org.hibernate + hibernate-core + 5.6.3.Final + + + org.hibernate + hibernate-ehcache + 5.6.3.Final + + + org.hibernate + hibernate-entitymanager + 5.6.3.Final + + + org.hibernate + hibernate-envers + 5.6.3.Final + + + org.hibernate + hibernate-hikaricp + 5.6.3.Final + + + org.hibernate + hibernate-java8 + 5.6.3.Final + + + org.hibernate + hibernate-jcache + 5.6.3.Final + + + org.hibernate + hibernate-jpamodelgen + 5.6.3.Final + + + org.hibernate + hibernate-micrometer + 5.6.3.Final + + + org.hibernate + hibernate-proxool + 5.6.3.Final + + + org.hibernate + hibernate-spatial + 5.6.3.Final + + + org.hibernate + hibernate-testing + 5.6.3.Final + + + org.hibernate + hibernate-vibur + 5.6.3.Final + + + org.hibernate.validator + hibernate-validator + 6.2.0.Final + + + org.hibernate.validator + hibernate-validator-annotation-processor + 6.2.0.Final + + + com.zaxxer + HikariCP + 4.0.3 + + + org.hsqldb + hsqldb + 2.5.2 + + + net.sourceforge.htmlunit + htmlunit + 2.54.0 + + + commons-logging + commons-logging + + + + + org.apache.httpcomponents + httpasyncclient + 4.1.5 + + + commons-logging + commons-logging + + + + + org.apache.httpcomponents + fluent-hc + 4.5.13 + + + org.apache.httpcomponents + httpclient + 4.5.13 + + + commons-logging + commons-logging + + + + + org.apache.httpcomponents + httpclient-cache + 4.5.13 + + + org.apache.httpcomponents + httpclient-osgi + 4.5.13 + + + org.apache.httpcomponents + httpclient-win + 4.5.13 + + + org.apache.httpcomponents + httpmime + 4.5.13 + + + org.apache.httpcomponents.client5 + httpclient5 + 5.1.2 + + + org.apache.httpcomponents.client5 + httpclient5-cache + 5.1.2 + + + org.apache.httpcomponents.client5 + httpclient5-fluent + 5.1.2 + + + org.apache.httpcomponents.client5 + httpclient5-win + 5.1.2 + + + org.apache.httpcomponents + httpcore + 4.4.15 + + + org.apache.httpcomponents + httpcore-nio + 4.4.15 + + + org.apache.httpcomponents.core5 + httpcore5 + 5.1.2 + + + org.apache.httpcomponents.core5 + httpcore5-h2 + 5.1.2 + + + org.apache.httpcomponents.core5 + httpcore5-reactive + 5.1.2 + + + org.influxdb + influxdb-java + 2.22 + + + com.sun.activation + jakarta.activation + 1.2.2 + + + jakarta.activation + jakarta.activation-api + 1.2.2 + + + jakarta.annotation + jakarta.annotation-api + 1.3.5 + + + jakarta.jms + jakarta.jms-api + 2.0.3 + + + jakarta.json + jakarta.json-api + 1.1.6 + + + jakarta.json.bind + jakarta.json.bind-api + 1.0.2 + + + jakarta.mail + jakarta.mail-api + 1.6.7 + + + jakarta.management.j2ee + jakarta.management.j2ee-api + 1.1.4 + + + jakarta.persistence + jakarta.persistence-api + 2.2.3 + + + jakarta.servlet + jakarta.servlet-api + 4.0.4 + + + jakarta.servlet.jsp.jstl + jakarta.servlet.jsp.jstl-api + 1.2.7 + + + jakarta.transaction + jakarta.transaction-api + 1.3.3 + + + jakarta.validation + jakarta.validation-api + 2.0.2 + + + jakarta.websocket + jakarta.websocket-api + 1.1.2 + + + jakarta.ws.rs + jakarta.ws.rs-api + 2.1.6 + + + jakarta.xml.bind + jakarta.xml.bind-api + 2.3.3 + + + jakarta.xml.soap + jakarta.xml.soap-api + 1.4.2 + + + jakarta.xml.ws + jakarta.xml.ws-api + 2.3.3 + + + org.codehaus.janino + commons-compiler + 3.1.6 + + + org.codehaus.janino + commons-compiler-jdk + 3.1.6 + + + org.codehaus.janino + janino + 3.1.6 + + + javax.activation + javax.activation-api + 1.2.0 + + + javax.annotation + javax.annotation-api + 1.3.2 + + + javax.cache + cache-api + 1.1.1 + + + javax.xml.bind + jaxb-api + 2.3.1 + + + javax.xml.ws + jaxws-api + 2.3.1 + + + javax.jms + javax.jms-api + 2.0.1 + + + javax.json + javax.json-api + 1.1.4 + + + javax.json.bind + javax.json.bind-api + 1.0 + + + javax.mail + javax.mail-api + 1.6.2 + + + javax.money + money-api + 1.1 + + + javax.persistence + javax.persistence-api + 2.2 + + + javax.transaction + javax.transaction-api + 1.3 + + + javax.validation + validation-api + 2.0.1.Final + + + javax.websocket + javax.websocket-api + 1.1 + + + jaxen + jaxen + 1.2.0 + + + org.firebirdsql.jdbc + jaybird + 4.0.4.java8 + + + org.firebirdsql.jdbc + jaybird-jdk18 + 4.0.4.java8 + + + org.jboss.logging + jboss-logging + 3.4.2.Final + + + org.jdom + jdom2 + 2.0.6.1 + + + redis.clients + jedis + 3.7.1 + + + org.mortbay.jasper + apache-el + 9.0.52 + + + org.eclipse.jetty.orbit + javax.servlet.jsp + 2.2.0.v201112011158 + + + org.eclipse.jetty + jetty-reactive-httpclient + 1.1.10 + + + com.samskivert + jmustache + 1.15 + + + org.apache.johnzon + johnzon-core + 1.2.15 + + + org.apache.johnzon + johnzon-jaxrs + 1.2.15 + + + org.apache.johnzon + johnzon-jsonb + 1.2.15 + + + org.apache.johnzon + johnzon-jsonb-extras + 1.2.15 + + + org.apache.johnzon + johnzon-jsonschema + 1.2.15 + + + org.apache.johnzon + johnzon-mapper + 1.2.15 + + + org.apache.johnzon + johnzon-websocket + 1.2.15 + + + org.jolokia + jolokia-core + 1.7.1 + + + org.jooq + jooq + 3.14.15 + + + org.jooq + jooq-codegen + 3.14.15 + + + org.jooq + jooq-kotlin + 3.14.15 + + + org.jooq + jooq-meta + 3.14.15 + + + com.jayway.jsonpath + json-path + 2.6.0 + + + com.jayway.jsonpath + json-path-assert + 2.6.0 + + + net.minidev + json-smart + 2.4.7 + + + org.skyscreamer + jsonassert + 1.5.0 + + + javax.servlet + jstl + 1.2 + + + net.sourceforge.jtds + jtds + 1.3.1 + + + junit + junit + 4.13.2 + + + org.apache.kafka + connect-api + 3.0.0 + + + org.apache.kafka + connect-basic-auth-extension + 3.0.0 + + + org.apache.kafka + connect-file + 3.0.0 + + + org.apache.kafka + connect-json + 3.0.0 + + + org.apache.kafka + connect-runtime + 3.0.0 + + + org.apache.kafka + connect-transforms + 3.0.0 + + + org.apache.kafka + kafka-clients + 3.0.0 + + + org.apache.kafka + kafka-metadata + 3.0.0 + + + org.apache.kafka + kafka-log4j-appender + 3.0.0 + + + org.apache.kafka + kafka-streams + 3.0.0 + + + org.apache.kafka + kafka-streams-scala_2.12 + 3.0.0 + + + org.apache.kafka + kafka-streams-scala_2.13 + 3.0.0 + + + org.apache.kafka + kafka-streams-test-utils + 3.0.0 + + + org.apache.kafka + kafka-tools + 3.0.0 + + + org.apache.kafka + kafka_2.12 + 3.0.0 + + + org.apache.kafka + kafka_2.13 + 3.0.0 + + + io.lettuce + lettuce-core + 6.1.5.RELEASE + + + org.liquibase + liquibase-core + 4.5.0 + + + ch.qos.logback + logback-access + 1.2.9 + + + ch.qos.logback + logback-classic + 1.2.9 + + + ch.qos.logback + logback-core + 1.2.9 + + + org.projectlombok + lombok + 1.18.22 + + + org.mariadb.jdbc + mariadb-java-client + 2.7.4 + + + io.micrometer + micrometer-registry-stackdriver + 1.8.1 + + + javax.annotation-api + javax.annotation + + + + + org.jvnet.mimepull + mimepull + 1.9.15 + + + org.mockito + mockito-core + 4.0.0 + + + org.mockito + mockito-inline + 4.0.0 + + + org.mockito + mockito-junit-jupiter + 4.0.0 + + + org.mongodb + bson + 4.4.0 + + + org.mongodb + mongodb-driver-core + 4.4.0 + + + org.mongodb + mongodb-driver-legacy + 4.4.0 + + + org.mongodb + mongodb-driver-reactivestreams + 4.4.0 + + + org.mongodb + mongodb-driver-sync + 4.4.0 + + + com.microsoft.sqlserver + mssql-jdbc + 9.4.1.jre8 + + + mysql + mysql-connector-java + 8.0.27 + + + protobuf-java + com.google.protobuf + + + + + net.sourceforge.nekohtml + nekohtml + 1.9.22 + + + org.neo4j.driver + neo4j-java-driver + 4.3.6 + + + io.netty + netty-tcnative + 2.0.46.Final + + + io.netty + netty-tcnative-boringssl-static + 2.0.46.Final + + + com.squareup.okhttp3 + logging-interceptor + 3.14.9 + + + com.squareup.okhttp3 + mockwebserver + 3.14.9 + + + com.squareup.okhttp3 + okcurl + 3.14.9 + + + com.squareup.okhttp3 + okhttp + 3.14.9 + + + com.squareup.okhttp3 + okhttp-dnsoverhttps + 3.14.9 + + + com.squareup.okhttp3 + okhttp-sse + 3.14.9 + + + com.squareup.okhttp3 + okhttp-testing-support + 3.14.9 + + + com.squareup.okhttp3 + okhttp-tls + 3.14.9 + + + com.squareup.okhttp3 + okhttp-urlconnection + 3.14.9 + + + org.messaginghub + pooled-jms + 1.2.2 + + + org.postgresql + postgresql + 42.3.1 + + + org.quartz-scheduler + quartz + 2.3.2 + + + c3p0 + com.mchange + + + * + com.zaxxer + + + + + org.quartz-scheduler + quartz-jobs + 2.3.2 + + + com.rabbitmq + amqp-client + 5.13.1 + + + com.rabbitmq + stream-client + 0.4.0 + + + org.reactivestreams + reactive-streams + 1.0.3 + + + io.rest-assured + json-path + 4.4.0 + + + io.rest-assured + json-schema-validator + 4.4.0 + + + io.rest-assured + rest-assured + 4.4.0 + + + io.rest-assured + scala-support + 4.4.0 + + + io.rest-assured + spring-mock-mvc + 4.4.0 + + + io.rest-assured + spring-web-test-client + 4.4.0 + + + io.rest-assured + xml-path + 4.4.0 + + + io.reactivex + rxjava + 1.3.8 + + + io.reactivex + rxjava-reactive-streams + 1.2.1 + + + io.reactivex.rxjava2 + rxjava + 2.2.21 + + + org.springframework.boot + spring-boot + 2.6.2 + + + org.springframework.boot + spring-boot-test + 2.6.2 + + + org.springframework.boot + spring-boot-test-autoconfigure + 2.6.2 + + + org.springframework.boot + spring-boot-actuator + 2.6.2 + + + org.springframework.boot + spring-boot-actuator-autoconfigure + 2.6.2 + + + org.springframework.boot + spring-boot-autoconfigure + 2.6.2 + + + org.springframework.boot + spring-boot-autoconfigure-processor + 2.6.2 + + + org.springframework.boot + spring-boot-buildpack-platform + 2.6.2 + + + org.springframework.boot + spring-boot-configuration-metadata + 2.6.2 + + + org.springframework.boot + spring-boot-configuration-processor + 2.6.2 + + + org.springframework.boot + spring-boot-devtools + 2.6.2 + + + org.springframework.boot + spring-boot-jarmode-layertools + 2.6.2 + + + org.springframework.boot + spring-boot-loader + 2.6.2 + + + org.springframework.boot + spring-boot-loader-tools + 2.6.2 + + + org.springframework.boot + spring-boot-properties-migrator + 2.6.2 + + + org.springframework.boot + spring-boot-starter + 2.6.2 + + + org.springframework.boot + spring-boot-starter-activemq + 2.6.2 + + + org.springframework.boot + spring-boot-starter-actuator + 2.6.2 + + + org.springframework.boot + spring-boot-starter-amqp + 2.6.2 + + + org.springframework.boot + spring-boot-starter-aop + 2.6.2 + + + org.springframework.boot + spring-boot-starter-artemis + 2.6.2 + + + org.springframework.boot + spring-boot-starter-batch + 2.6.2 + + + org.springframework.boot + spring-boot-starter-cache + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-cassandra + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-cassandra-reactive + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-couchbase + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-couchbase-reactive + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-elasticsearch + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-jdbc + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-jpa + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-ldap + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-mongodb + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-mongodb-reactive + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-r2dbc + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-redis + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-redis-reactive + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-neo4j + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-rest + 2.6.2 + + + org.springframework.boot + spring-boot-starter-freemarker + 2.6.2 + + + org.springframework.boot + spring-boot-starter-groovy-templates + 2.6.2 + + + org.springframework.boot + spring-boot-starter-hateoas + 2.6.2 + + + org.springframework.boot + spring-boot-starter-integration + 2.6.2 + + + org.springframework.boot + spring-boot-starter-jdbc + 2.6.2 + + + org.springframework.boot + spring-boot-starter-jersey + 2.6.2 + + + org.springframework.boot + spring-boot-starter-jetty + 2.6.2 + + + org.springframework.boot + spring-boot-starter-jooq + 2.6.2 + + + org.springframework.boot + spring-boot-starter-json + 2.6.2 + + + org.springframework.boot + spring-boot-starter-jta-atomikos + 2.6.2 + + + org.springframework.boot + spring-boot-starter-log4j2 + 2.6.2 + + + org.springframework.boot + spring-boot-starter-logging + 2.6.2 + + + org.springframework.boot + spring-boot-starter-mail + 2.6.2 + + + org.springframework.boot + spring-boot-starter-mustache + 2.6.2 + + + org.springframework.boot + spring-boot-starter-oauth2-client + 2.6.2 + + + org.springframework.boot + spring-boot-starter-oauth2-resource-server + 2.6.2 + + + org.springframework.boot + spring-boot-starter-quartz + 2.6.2 + + + org.springframework.boot + spring-boot-starter-reactor-netty + 2.6.2 + + + org.springframework.boot + spring-boot-starter-rsocket + 2.6.2 + + + org.springframework.boot + spring-boot-starter-security + 2.6.2 + + + org.springframework.boot + spring-boot-starter-test + 2.6.2 + + + org.springframework.boot + spring-boot-starter-thymeleaf + 2.6.2 + + + org.springframework.boot + spring-boot-starter-tomcat + 2.6.2 + + + org.springframework.boot + spring-boot-starter-undertow + 2.6.2 + + + org.springframework.boot + spring-boot-starter-validation + 2.6.2 + + + org.springframework.boot + spring-boot-starter-web + 2.6.2 + + + org.springframework.boot + spring-boot-starter-webflux + 2.6.2 + + + org.springframework.boot + spring-boot-starter-websocket + 2.6.2 + + + org.springframework.boot + spring-boot-starter-web-services + 2.6.2 + + + com.sun.xml.messaging.saaj + saaj-impl + 1.5.3 + + + org.seleniumhq.selenium + selenium-api + 3.141.59 + + + org.seleniumhq.selenium + selenium-chrome-driver + 3.141.59 + + + org.seleniumhq.selenium + selenium-edge-driver + 3.141.59 + + + org.seleniumhq.selenium + selenium-firefox-driver + 3.141.59 + + + org.seleniumhq.selenium + selenium-ie-driver + 3.141.59 + + + org.seleniumhq.selenium + selenium-java + 3.141.59 + + + org.seleniumhq.selenium + selenium-opera-driver + 3.141.59 + + + org.seleniumhq.selenium + selenium-remote-driver + 3.141.59 + + + org.seleniumhq.selenium + selenium-safari-driver + 3.141.59 + + + org.seleniumhq.selenium + selenium-support + 3.141.59 + + + org.seleniumhq.selenium + htmlunit-driver + 2.54.0 + + + com.sendgrid + sendgrid-java + 4.7.6 + + + javax.servlet + javax.servlet-api + 4.0.1 + + + org.slf4j + jcl-over-slf4j + 1.7.32 + + + org.slf4j + jul-to-slf4j + 1.7.32 + + + org.slf4j + log4j-over-slf4j + 1.7.32 + + + org.slf4j + slf4j-api + 1.7.32 + + + org.slf4j + slf4j-ext + 1.7.32 + + + org.slf4j + slf4j-jcl + 1.7.32 + + + org.slf4j + slf4j-jdk14 + 1.7.32 + + + org.slf4j + slf4j-log4j12 + 1.7.32 + + + org.slf4j + slf4j-nop + 1.7.32 + + + org.slf4j + slf4j-simple + 1.7.32 + + + org.yaml + snakeyaml + 1.29 + + + org.apache.solr + solr-analysis-extras + 8.8.2 + + + org.apache.solr + solr-analytics + 8.8.2 + + + org.apache.solr + solr-cell + 8.8.2 + + + org.apache.solr + solr-core + 8.8.2 + + + org.apache.solr + solr-dataimporthandler + 8.8.2 + + + org.apache.solr + solr-dataimporthandler-extras + 8.8.2 + + + org.apache.solr + solr-langid + 8.8.2 + + + org.apache.solr + solr-ltr + 8.8.2 + + + org.apache.solr + solr-solrj + 8.8.2 + + + jcl-over-slf4j + org.slf4j + + + + + org.apache.solr + solr-test-framework + 8.8.2 + + + org.apache.solr + solr-velocity + 8.8.2 + + + org.springframework.amqp + spring-amqp + 2.4.1 + + + org.springframework.amqp + spring-rabbit + 2.4.1 + + + org.springframework.amqp + spring-rabbit-stream + 2.4.1 + + + org.springframework.amqp + spring-rabbit-junit + 2.4.1 + + + org.springframework.amqp + spring-rabbit-test + 2.4.1 + + + org.springframework.batch + spring-batch-core + 4.3.4 + + + org.springframework.batch + spring-batch-infrastructure + 4.3.4 + + + org.springframework.batch + spring-batch-integration + 4.3.4 + + + org.springframework.batch + spring-batch-test + 4.3.4 + + + org.springframework.hateoas + spring-hateoas + 1.4.0 + + + org.springframework.kafka + spring-kafka + 2.8.1 + + + org.springframework.kafka + spring-kafka-test + 2.8.1 + + + org.springframework.ldap + spring-ldap-core + 2.3.5.RELEASE + + + org.springframework.ldap + spring-ldap-core-tiger + 2.3.5.RELEASE + + + org.springframework.ldap + spring-ldap-ldif-batch + 2.3.5.RELEASE + + + org.springframework.ldap + spring-ldap-ldif-core + 2.3.5.RELEASE + + + org.springframework.ldap + spring-ldap-odm + 2.3.5.RELEASE + + + org.springframework.ldap + spring-ldap-test + 2.3.5.RELEASE + + + org.springframework.restdocs + spring-restdocs-asciidoctor + 2.0.5.RELEASE + + + org.springframework.restdocs + spring-restdocs-core + 2.0.5.RELEASE + + + org.springframework.restdocs + spring-restdocs-mockmvc + 2.0.5.RELEASE + + + org.springframework.restdocs + spring-restdocs-restassured + 2.0.5.RELEASE + + + org.springframework.restdocs + spring-restdocs-webtestclient + 2.0.5.RELEASE + + + org.springframework.retry + spring-retry + 1.3.1 + + + org.springframework.ws + spring-ws-core + 3.1.2 + + + org.springframework.ws + spring-ws-security + 3.1.2 + + + org.springframework.ws + spring-ws-support + 3.1.2 + + + org.springframework.ws + spring-ws-test + 3.1.2 + + + org.springframework.ws + spring-xml + 3.1.2 + + + org.xerial + sqlite-jdbc + 3.36.0.3 + + + com.sun.mail + jakarta.mail + 1.6.7 + + + org.thymeleaf + thymeleaf + 3.0.14.RELEASE + + + org.thymeleaf + thymeleaf-spring5 + 3.0.14.RELEASE + + + com.github.mxab.thymeleaf.extras + thymeleaf-extras-data-attribute + 2.0.1 + + + org.thymeleaf.extras + thymeleaf-extras-java8time + 3.0.4.RELEASE + + + org.thymeleaf.extras + thymeleaf-extras-springsecurity5 + 3.0.4.RELEASE + + + nz.net.ultraq.thymeleaf + thymeleaf-layout-dialect + 3.0.0 + + + org.apache.tomcat + tomcat-annotations-api + 9.0.56 + + + org.apache.tomcat + tomcat-jdbc + 9.0.56 + + + org.apache.tomcat + tomcat-jsp-api + 9.0.56 + + + org.apache.tomcat.embed + tomcat-embed-core + 9.0.56 + + + org.apache.tomcat.embed + tomcat-embed-el + 9.0.56 + + + org.apache.tomcat.embed + tomcat-embed-jasper + 9.0.56 + + + org.apache.tomcat.embed + tomcat-embed-websocket + 9.0.56 + + + com.unboundid + unboundid-ldapsdk + 4.0.14 + + + io.undertow + undertow-core + 2.2.14.Final + + + io.undertow + undertow-servlet + 2.2.14.Final + + + io.undertow + undertow-websockets-jsr + 2.2.14.Final + + + org.webjars + webjars-locator-core + 0.48 + + + wsdl4j + wsdl4j + 1.6.3 + + + org.xmlunit + xmlunit-assertj + 2.8.4 + + + org.xmlunit + xmlunit-core + 2.8.4 + + + org.xmlunit + xmlunit-legacy + 2.8.4 + + + org.xmlunit + xmlunit-matchers + 2.8.4 + + + org.xmlunit + xmlunit-placeholders + 2.8.4 + + + com.datastax.oss + java-driver-core-shaded + 4.13.0 + + + com.datastax.oss + java-driver-mapper-processor + 4.13.0 + + + com.datastax.oss + java-driver-mapper-runtime + 4.13.0 + + + com.datastax.oss + java-driver-query-builder + 4.13.0 + + + com.datastax.oss + java-driver-test-infra + 4.13.0 + + + com.datastax.oss + java-driver-metrics-micrometer + 4.13.0 + + + com.datastax.oss + java-driver-metrics-microprofile + 4.13.0 + + + com.datastax.oss + native-protocol + 1.5.0 + + + com.datastax.oss + java-driver-shaded-guava + 25.1-jre-graal-sub-1 + + + io.dropwizard.metrics + metrics-annotation + 4.2.7 + + + io.dropwizard.metrics + metrics-caffeine + 4.2.7 + + + io.dropwizard.metrics + metrics-caffeine3 + 4.2.7 + + + io.dropwizard.metrics + metrics-core + 4.2.7 + + + io.dropwizard.metrics + metrics-collectd + 4.2.7 + + + io.dropwizard.metrics + metrics-ehcache + 4.2.7 + + + io.dropwizard.metrics + metrics-graphite + 4.2.7 + + + io.dropwizard.metrics + metrics-healthchecks + 4.2.7 + + + io.dropwizard.metrics + metrics-httpclient + 4.2.7 + + + io.dropwizard.metrics + metrics-httpclient5 + 4.2.7 + + + io.dropwizard.metrics + metrics-httpasyncclient + 4.2.7 + + + io.dropwizard.metrics + metrics-jakarta-servlet + 4.2.7 + + + io.dropwizard.metrics + metrics-jakarta-servlets + 4.2.7 + + + io.dropwizard.metrics + metrics-jcache + 4.2.7 + + + io.dropwizard.metrics + metrics-jdbi + 4.2.7 + + + io.dropwizard.metrics + metrics-jdbi3 + 4.2.7 + + + io.dropwizard.metrics + metrics-jersey2 + 4.2.7 + + + io.dropwizard.metrics + metrics-jersey3 + 4.2.7 + + + io.dropwizard.metrics + metrics-jetty9 + 4.2.7 + + + io.dropwizard.metrics + metrics-jetty10 + 4.2.7 + + + io.dropwizard.metrics + metrics-jetty11 + 4.2.7 + + + io.dropwizard.metrics + metrics-jmx + 4.2.7 + + + io.dropwizard.metrics + metrics-json + 4.2.7 + + + io.dropwizard.metrics + metrics-jvm + 4.2.7 + + + io.dropwizard.metrics + metrics-log4j2 + 4.2.7 + + + io.dropwizard.metrics + metrics-logback + 4.2.7 + + + io.dropwizard.metrics + metrics-servlet + 4.2.7 + + + io.dropwizard.metrics + metrics-servlets + 4.2.7 + + + org.codehaus.groovy + groovy + 3.0.9 + + + org.codehaus.groovy + groovy-ant + 3.0.9 + + + org.codehaus.groovy + groovy-astbuilder + 3.0.9 + + + org.codehaus.groovy + groovy-bsf + 3.0.9 + + + org.codehaus.groovy + groovy-cli-commons + 3.0.9 + + + org.codehaus.groovy + groovy-cli-picocli + 3.0.9 + + + org.codehaus.groovy + groovy-console + 3.0.9 + + + org.codehaus.groovy + groovy-datetime + 3.0.9 + + + org.codehaus.groovy + groovy-dateutil + 3.0.9 + + + org.codehaus.groovy + groovy-docgenerator + 3.0.9 + + + org.codehaus.groovy + groovy-groovydoc + 3.0.9 + + + org.codehaus.groovy + groovy-groovysh + 3.0.9 + + + org.codehaus.groovy + groovy-jaxb + 3.0.9 + + + org.codehaus.groovy + groovy-jmx + 3.0.9 + + + org.codehaus.groovy + groovy-json + 3.0.9 + + + org.codehaus.groovy + groovy-jsr223 + 3.0.9 + + + org.codehaus.groovy + groovy-macro + 3.0.9 + + + org.codehaus.groovy + groovy-nio + 3.0.9 + + + org.codehaus.groovy + groovy-servlet + 3.0.9 + + + org.codehaus.groovy + groovy-sql + 3.0.9 + + + org.codehaus.groovy + groovy-swing + 3.0.9 + + + org.codehaus.groovy + groovy-templates + 3.0.9 + + + org.codehaus.groovy + groovy-test + 3.0.9 + + + org.codehaus.groovy + groovy-test-junit5 + 3.0.9 + + + org.codehaus.groovy + groovy-testng + 3.0.9 + + + org.codehaus.groovy + groovy-xml + 3.0.9 + + + org.codehaus.groovy + groovy-yaml + 3.0.9 + + + org.infinispan + infinispan-api + 12.1.10.Final + + + org.infinispan + infinispan-cachestore-jdbc + 12.1.10.Final + + + org.infinispan + infinispan-cachestore-jpa + 12.1.10.Final + + + org.infinispan + infinispan-cachestore-remote + 12.1.10.Final + + + org.infinispan + infinispan-cachestore-rocksdb + 12.1.10.Final + + + org.infinispan + infinispan-cdi-common + 12.1.10.Final + + + org.infinispan + infinispan-cdi-embedded + 12.1.10.Final + + + org.infinispan + infinispan-cdi-remote + 12.1.10.Final + + + org.infinispan + infinispan-checkstyle + 12.1.10.Final + + + org.infinispan + infinispan-cli-client + 12.1.10.Final + + + org.infinispan + infinispan-client-hotrod + 12.1.10.Final + + + org.infinispan + infinispan-client-rest + 12.1.10.Final + + + org.infinispan + infinispan-key-value-store-client + 12.1.10.Final + + + org.infinispan + infinispan-clustered-counter + 12.1.10.Final + + + org.infinispan + infinispan-clustered-lock + 12.1.10.Final + + + org.infinispan + infinispan-commons + 12.1.10.Final + + + org.infinispan + infinispan-commons-test + 12.1.10.Final + + + org.infinispan + infinispan-component-annotations + 12.1.10.Final + provided + + + org.infinispan + infinispan-component-processor + 12.1.10.Final + + + org.infinispan + infinispan-core + 12.1.10.Final + + + org.infinispan + infinispan-jboss-marshalling + 12.1.10.Final + + + org.infinispan + infinispan-extended-statistics + 12.1.10.Final + + + org.infinispan + infinispan-hibernate-cache-commons + 12.1.10.Final + + + org.infinispan + infinispan-hibernate-cache-spi + 12.1.10.Final + + + org.infinispan + infinispan-hibernate-cache-v51 + 12.1.10.Final + + + org.infinispan + infinispan-hibernate-cache-v53 + 12.1.10.Final + + + org.infinispan + infinispan-jcache-commons + 12.1.10.Final + + + org.infinispan + infinispan-jcache + 12.1.10.Final + + + org.infinispan + infinispan-jcache-remote + 12.1.10.Final + + + org.infinispan + infinispan-console + 0.14.3.Final + + + org.infinispan + infinispan-marshaller-kryo + 12.1.10.Final + + + org.infinispan + infinispan-marshaller-kryo-bundle + 12.1.10.Final + + + org.infinispan + infinispan-marshaller-protostuff + 12.1.10.Final + + + org.infinispan + infinispan-marshaller-protostuff-bundle + 12.1.10.Final + + + org.infinispan + infinispan-multimap + 12.1.10.Final + + + org.infinispan + infinispan-objectfilter + 12.1.10.Final + + + org.infinispan + infinispan-persistence-soft-index + 12.1.10.Final + + + org.infinispan + infinispan-query-core + 12.1.10.Final + + + org.infinispan + infinispan-query + 12.1.10.Final + + + org.infinispan + infinispan-query-dsl + 12.1.10.Final + + + org.infinispan + infinispan-remote-query-client + 12.1.10.Final + + + org.infinispan + infinispan-remote-query-server + 12.1.10.Final + + + org.infinispan + infinispan-scripting + 12.1.10.Final + + + org.infinispan + infinispan-server-core + 12.1.10.Final + + + org.infinispan + infinispan-server-hotrod + 12.1.10.Final + + + org.infinispan + infinispan-server-memcached + 12.1.10.Final + + + org.infinispan + infinispan-server-rest + 12.1.10.Final + + + org.infinispan + infinispan-server-router + 12.1.10.Final + + + org.infinispan + infinispan-server-runtime + 12.1.10.Final + + + org.infinispan + infinispan-server-testdriver-core + 12.1.10.Final + + + org.infinispan + infinispan-server-testdriver-junit4 + 12.1.10.Final + + + org.infinispan + infinispan-server-testdriver-junit5 + 12.1.10.Final + + + org.infinispan + infinispan-spring5-common + 12.1.10.Final + + + org.infinispan + infinispan-spring5-embedded + 12.1.10.Final + + + org.infinispan + infinispan-spring5-remote + 12.1.10.Final + + + org.infinispan + infinispan-spring-boot-starter-embedded + 12.1.10.Final + + + org.infinispan + infinispan-spring-boot-starter-remote + 12.1.10.Final + + + org.infinispan + infinispan-tasks + 12.1.10.Final + + + org.infinispan + infinispan-tasks-api + 12.1.10.Final + + + org.infinispan + infinispan-tools + 12.1.10.Final + + + org.infinispan + infinispan-anchored-keys + 12.1.10.Final + + + org.infinispan.protostream + protostream + 4.4.1.Final + + + org.infinispan.protostream + protostream-types + 4.4.1.Final + + + org.infinispan.protostream + protostream-processor + 4.4.1.Final + provided + + + org.infinispan + infinispan-cloudevents-integration + 12.1.10.Final + + + com.fasterxml.jackson.core + jackson-annotations + 2.13.1 + + + com.fasterxml.jackson.core + jackson-core + 2.13.1 + + + com.fasterxml.jackson.core + jackson-databind + 2.13.1 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-avro + 2.13.1 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-cbor + 2.13.1 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-csv + 2.13.1 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-ion + 2.13.1 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-properties + 2.13.1 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-protobuf + 2.13.1 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-smile + 2.13.1 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-toml + 2.13.1 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-xml + 2.13.1 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-yaml + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-eclipse-collections + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-guava + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate4 + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate5 + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate5-jakarta + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-hppc + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-jakarta-jsonp + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-jaxrs + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-joda + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-joda-money + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-jdk8 + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-json-org + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-jsr310 + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-jsr353 + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-pcollections + 2.13.1 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-base + 2.13.1 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-cbor-provider + 2.13.1 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-json-provider + 2.13.1 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-smile-provider + 2.13.1 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-xml-provider + 2.13.1 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-yaml-provider + 2.13.1 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-base + 2.13.1 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-cbor-provider + 2.13.1 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-json-provider + 2.13.1 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-smile-provider + 2.13.1 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-xml-provider + 2.13.1 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-yaml-provider + 2.13.1 + + + com.fasterxml.jackson.jr + jackson-jr-all + 2.13.1 + + + com.fasterxml.jackson.jr + jackson-jr-annotation-support + 2.13.1 + + + com.fasterxml.jackson.jr + jackson-jr-objects + 2.13.1 + + + com.fasterxml.jackson.jr + jackson-jr-retrofit2 + 2.13.1 + + + com.fasterxml.jackson.jr + jackson-jr-stree + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-afterburner + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-blackbird + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-guice + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-jaxb-annotations + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-jakarta-xmlbind-annotations + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-jsonSchema + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-kotlin + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-mrbean + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-no-ctor-deser + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-osgi + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-parameter-names + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-paranamer + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-scala_2.11 + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-scala_2.12 + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-scala_2.13 + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-scala_3 + 2.13.1 + + + org.glassfish.jersey.core + jersey-common + 2.35 + + + org.glassfish.jersey.core + jersey-client + 2.35 + + + org.glassfish.jersey.core + jersey-server + 2.35 + + + org.glassfish.jersey.bundles + jaxrs-ri + 2.35 + + + org.glassfish.jersey.connectors + jersey-apache-connector + 2.35 + + + org.glassfish.jersey.connectors + jersey-helidon-connector + 2.35 + + + org.glassfish.jersey.connectors + jersey-grizzly-connector + 2.35 + + + org.glassfish.jersey.connectors + jersey-jetty-connector + 2.35 + + + org.glassfish.jersey.connectors + jersey-jdk-connector + 2.35 + + + org.glassfish.jersey.connectors + jersey-netty-connector + 2.35 + + + org.glassfish.jersey.containers + jersey-container-jetty-http + 2.35 + + + org.glassfish.jersey.containers + jersey-container-grizzly2-http + 2.35 + + + org.glassfish.jersey.containers + jersey-container-grizzly2-servlet + 2.35 + + + org.glassfish.jersey.containers + jersey-container-jetty-servlet + 2.35 + + + org.glassfish.jersey.containers + jersey-container-jdk-http + 2.35 + + + org.glassfish.jersey.containers + jersey-container-netty-http + 2.35 + + + org.glassfish.jersey.containers + jersey-container-servlet + 2.35 + + + org.glassfish.jersey.containers + jersey-container-servlet-core + 2.35 + + + org.glassfish.jersey.containers + jersey-container-simple-http + 2.35 + + + org.glassfish.jersey.containers.glassfish + jersey-gf-ejb + 2.35 + + + org.glassfish.jersey.ext + jersey-bean-validation + 2.35 + + + org.glassfish.jersey.ext + jersey-entity-filtering + 2.35 + + + org.glassfish.jersey.ext + jersey-metainf-services + 2.35 + + + org.glassfish.jersey.ext.microprofile + jersey-mp-config + 2.35 + + + org.glassfish.jersey.ext + jersey-mvc + 2.35 + + + org.glassfish.jersey.ext + jersey-mvc-bean-validation + 2.35 + + + org.glassfish.jersey.ext + jersey-mvc-freemarker + 2.35 + + + org.glassfish.jersey.ext + jersey-mvc-jsp + 2.35 + + + org.glassfish.jersey.ext + jersey-mvc-mustache + 2.35 + + + org.glassfish.jersey.ext + jersey-proxy-client + 2.35 + + + org.glassfish.jersey.ext + jersey-servlet-portability + 2.35 + + + org.glassfish.jersey.ext + jersey-spring4 + 2.35 + + + org.glassfish.jersey.ext + jersey-spring5 + 2.35 + + + org.glassfish.jersey.ext + jersey-declarative-linking + 2.35 + + + org.glassfish.jersey.ext + jersey-wadl-doclet + 2.35 + + + org.glassfish.jersey.ext.cdi + jersey-weld2-se + 2.35 + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x + 2.35 + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x-transaction + 2.35 + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x-validation + 2.35 + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x-servlet + 2.35 + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x-ban-custom-hk2-binding + 2.35 + + + org.glassfish.jersey.ext.cdi + jersey-cdi-rs-inject + 2.35 + + + org.glassfish.jersey.ext.rx + jersey-rx-client-guava + 2.35 + + + org.glassfish.jersey.ext.rx + jersey-rx-client-rxjava + 2.35 + + + org.glassfish.jersey.ext.rx + jersey-rx-client-rxjava2 + 2.35 + + + org.glassfish.jersey.ext.microprofile + jersey-mp-rest-client + 2.35 + + + org.glassfish.jersey.media + jersey-media-jaxb + 2.35 + + + org.glassfish.jersey.media + jersey-media-json-jackson + 2.35 + + + org.glassfish.jersey.media + jersey-media-json-jettison + 2.35 + + + org.glassfish.jersey.media + jersey-media-json-processing + 2.35 + + + org.glassfish.jersey.media + jersey-media-json-binding + 2.35 + + + org.glassfish.jersey.media + jersey-media-kryo + 2.35 + + + org.glassfish.jersey.media + jersey-media-moxy + 2.35 + + + org.glassfish.jersey.media + jersey-media-multipart + 2.35 + + + org.glassfish.jersey.media + jersey-media-sse + 2.35 + + + org.glassfish.jersey.security + oauth1-client + 2.35 + + + org.glassfish.jersey.security + oauth1-server + 2.35 + + + org.glassfish.jersey.security + oauth1-signature + 2.35 + + + org.glassfish.jersey.security + oauth2-client + 2.35 + + + org.glassfish.jersey.inject + jersey-hk2 + 2.35 + + + org.glassfish.jersey.inject + jersey-cdi2-se + 2.35 + + + org.glassfish.jersey.test-framework + jersey-test-framework-core + 2.35 + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-bundle + 2.35 + pom + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-external + 2.35 + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-grizzly2 + 2.35 + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-inmemory + 2.35 + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-jdk-http + 2.35 + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-simple + 2.35 + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-jetty + 2.35 + + + org.glassfish.jersey.test-framework + jersey-test-framework-util + 2.35 + + + org.eclipse.jetty + apache-jsp + 9.4.44.v20210927 + + + org.eclipse.jetty + apache-jstl + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-alpn-client + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-alpn-java-client + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-alpn-java-server + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-alpn-openjdk8-client + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-alpn-openjdk8-server + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-alpn-conscrypt-client + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-alpn-conscrypt-server + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-alpn-server + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-annotations + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-ant + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-client + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-continuation + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-deploy + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-distribution + 9.4.44.v20210927 + zip + + + org.eclipse.jetty + jetty-distribution + 9.4.44.v20210927 + tar.gz + + + org.eclipse.jetty.fcgi + fcgi-client + 9.4.44.v20210927 + + + org.eclipse.jetty.fcgi + fcgi-server + 9.4.44.v20210927 + + + org.eclipse.jetty.gcloud + jetty-gcloud-session-manager + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-home + 9.4.44.v20210927 + zip + + + org.eclipse.jetty + jetty-home + 9.4.44.v20210927 + tar.gz + + + org.eclipse.jetty + jetty-http + 9.4.44.v20210927 + + + org.eclipse.jetty.http2 + http2-client + 9.4.44.v20210927 + + + org.eclipse.jetty.http2 + http2-common + 9.4.44.v20210927 + + + org.eclipse.jetty.http2 + http2-hpack + 9.4.44.v20210927 + + + org.eclipse.jetty.http2 + http2-http-client-transport + 9.4.44.v20210927 + + + org.eclipse.jetty.http2 + http2-server + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-http-spi + 9.4.44.v20210927 + + + org.eclipse.jetty + infinispan-common + 9.4.44.v20210927 + + + org.eclipse.jetty + infinispan-remote-query + 9.4.44.v20210927 + + + org.eclipse.jetty + infinispan-embedded-query + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-hazelcast + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-io + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-jaas + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-jaspi + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-jmx + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-jndi + 9.4.44.v20210927 + + + org.eclipse.jetty.memcached + jetty-memcached-sessions + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-nosql + 9.4.44.v20210927 + + + org.eclipse.jetty.osgi + jetty-osgi-boot + 9.4.44.v20210927 + + + org.eclipse.jetty.osgi + jetty-osgi-boot-jsp + 9.4.44.v20210927 + + + org.eclipse.jetty.osgi + jetty-osgi-boot-warurl + 9.4.44.v20210927 + + + org.eclipse.jetty.osgi + jetty-httpservice + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-plus + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-proxy + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-quickstart + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-rewrite + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-security + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-openid + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-server + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-servlet + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-servlets + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-spring + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-unixsocket + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-util + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-util-ajax + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-webapp + 9.4.44.v20210927 + + + org.eclipse.jetty.websocket + javax-websocket-client-impl + 9.4.44.v20210927 + + + org.eclipse.jetty.websocket + javax-websocket-server-impl + 9.4.44.v20210927 + + + org.eclipse.jetty.websocket + websocket-api + 9.4.44.v20210927 + + + org.eclipse.jetty.websocket + websocket-client + 9.4.44.v20210927 + + + org.eclipse.jetty.websocket + websocket-common + 9.4.44.v20210927 + + + org.eclipse.jetty.websocket + websocket-server + 9.4.44.v20210927 + + + org.eclipse.jetty.websocket + websocket-servlet + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-xml + 9.4.44.v20210927 + + + org.junit.jupiter + junit-jupiter + 5.8.2 + + + org.junit.jupiter + junit-jupiter-api + 5.8.2 + + + org.junit.jupiter + junit-jupiter-engine + 5.8.2 + + + org.junit.jupiter + junit-jupiter-migrationsupport + 5.8.2 + + + org.junit.jupiter + junit-jupiter-params + 5.8.2 + + + org.junit.platform + junit-platform-commons + 1.8.2 + + + org.junit.platform + junit-platform-console + 1.8.2 + + + org.junit.platform + junit-platform-engine + 1.8.2 + + + org.junit.platform + junit-platform-jfr + 1.8.2 + + + org.junit.platform + junit-platform-launcher + 1.8.2 + + + org.junit.platform + junit-platform-reporting + 1.8.2 + + + org.junit.platform + junit-platform-runner + 1.8.2 + + + org.junit.platform + junit-platform-suite + 1.8.2 + + + org.junit.platform + junit-platform-suite-api + 1.8.2 + + + org.junit.platform + junit-platform-suite-commons + 1.8.2 + + + org.junit.platform + junit-platform-suite-engine + 1.8.2 + + + org.junit.platform + junit-platform-testkit + 1.8.2 + + + org.junit.vintage + junit-vintage-engine + 5.8.2 + + + org.jetbrains.kotlin + kotlin-stdlib + 1.6.10 + + + org.jetbrains.kotlin + kotlin-stdlib-jdk7 + 1.6.10 + + + org.jetbrains.kotlin + kotlin-stdlib-jdk8 + 1.6.10 + + + org.jetbrains.kotlin + kotlin-stdlib-js + 1.6.10 + + + org.jetbrains.kotlin + kotlin-stdlib-common + 1.6.10 + + + org.jetbrains.kotlin + kotlin-reflect + 1.6.10 + + + org.jetbrains.kotlin + kotlin-osgi-bundle + 1.6.10 + + + org.jetbrains.kotlin + kotlin-test + 1.6.10 + + + org.jetbrains.kotlin + kotlin-test-junit + 1.6.10 + + + org.jetbrains.kotlin + kotlin-test-junit5 + 1.6.10 + + + org.jetbrains.kotlin + kotlin-test-testng + 1.6.10 + + + org.jetbrains.kotlin + kotlin-test-js + 1.6.10 + + + org.jetbrains.kotlin + kotlin-test-common + 1.6.10 + + + org.jetbrains.kotlin + kotlin-test-annotations-common + 1.6.10 + + + org.jetbrains.kotlin + kotlin-main-kts + 1.6.10 + + + org.jetbrains.kotlin + kotlin-script-runtime + 1.6.10 + + + org.jetbrains.kotlin + kotlin-script-util + 1.6.10 + + + org.jetbrains.kotlin + kotlin-scripting-common + 1.6.10 + + + org.jetbrains.kotlin + kotlin-scripting-jvm + 1.6.10 + + + org.jetbrains.kotlin + kotlin-scripting-jvm-host + 1.6.10 + + + org.jetbrains.kotlin + kotlin-scripting-ide-services + 1.6.10 + + + org.jetbrains.kotlin + kotlin-compiler + 1.6.10 + + + org.jetbrains.kotlin + kotlin-compiler-embeddable + 1.6.10 + + + org.jetbrains.kotlin + kotlin-daemon-client + 1.6.10 + + + org.jetbrains.kotlinx + kotlinx-coroutines-android + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-core-jvm + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-core + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-debug + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-guava + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-javafx + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-jdk8 + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-jdk9 + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-play-services + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-reactive + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-reactor + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-rx2 + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-rx3 + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-slf4j + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-swing + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-test + 1.5.2 + + + org.apache.logging.log4j + log4j-api + 2.17.0 + + + org.apache.logging.log4j + log4j-core + 2.17.0 + + + org.apache.logging.log4j + log4j-layout-template-json + 2.17.0 + + + org.apache.logging.log4j + log4j-1.2-api + 2.17.0 + + + org.apache.logging.log4j + log4j-jcl + 2.17.0 + + + org.apache.logging.log4j + log4j-flume-ng + 2.17.0 + + + org.apache.logging.log4j + log4j-taglib + 2.17.0 + + + org.apache.logging.log4j + log4j-jmx-gui + 2.17.0 + + + org.apache.logging.log4j + log4j-slf4j-impl + 2.17.0 + + + org.apache.logging.log4j + log4j-slf4j18-impl + 2.17.0 + + + org.apache.logging.log4j + log4j-to-slf4j + 2.17.0 + + + org.apache.logging.log4j + log4j-appserver + 2.17.0 + + + org.apache.logging.log4j + log4j-web + 2.17.0 + + + org.apache.logging.log4j + log4j-couchdb + 2.17.0 + + + org.apache.logging.log4j + log4j-mongodb4 + 2.17.0 + + + org.apache.logging.log4j + log4j-mongodb3 + 2.17.0 + + + org.apache.logging.log4j + log4j-cassandra + 2.17.0 + + + org.apache.logging.log4j + log4j-jpa + 2.17.0 + + + org.apache.logging.log4j + log4j-iostreams + 2.17.0 + + + org.apache.logging.log4j + log4j-jul + 2.17.0 + + + org.apache.logging.log4j + log4j-jpl + 2.17.0 + + + org.apache.logging.log4j + log4j-liquibase + 2.17.0 + + + org.apache.logging.log4j + log4j-docker + 2.17.0 + + + org.apache.logging.log4j + log4j-kubernetes + 2.17.0 + + + org.apache.logging.log4j + log4j-spring-boot + 2.17.0 + + + org.apache.logging.log4j + log4j-spring-cloud-config-client + 2.17.0 + + + io.micrometer + micrometer-core + 1.8.1 + + + io.micrometer + micrometer-jersey2 + 1.8.1 + + + io.micrometer + micrometer-registry-appoptics + 1.8.1 + + + io.micrometer + micrometer-registry-atlas + 1.8.1 + + + io.micrometer + micrometer-registry-azure-monitor + 1.8.1 + + + io.micrometer + micrometer-registry-cloudwatch + 1.8.1 + + + io.micrometer + micrometer-registry-cloudwatch2 + 1.8.1 + + + io.micrometer + micrometer-registry-datadog + 1.8.1 + + + io.micrometer + micrometer-registry-dynatrace + 1.8.1 + + + io.micrometer + micrometer-registry-elastic + 1.8.1 + + + io.micrometer + micrometer-registry-ganglia + 1.8.1 + + + io.micrometer + micrometer-registry-graphite + 1.8.1 + + + io.micrometer + micrometer-registry-health + 1.8.1 + + + io.micrometer + micrometer-registry-humio + 1.8.1 + + + io.micrometer + micrometer-registry-influx + 1.8.1 + + + io.micrometer + micrometer-registry-jmx + 1.8.1 + + + io.micrometer + micrometer-registry-kairos + 1.8.1 + + + io.micrometer + micrometer-registry-new-relic + 1.8.1 + + + io.micrometer + micrometer-registry-opentsdb + 1.8.1 + + + io.micrometer + micrometer-registry-prometheus + 1.8.1 + + + io.micrometer + micrometer-registry-signalfx + 1.8.1 + + + io.micrometer + micrometer-registry-statsd + 1.8.1 + + + io.micrometer + micrometer-registry-wavefront + 1.8.1 + + + io.micrometer + micrometer-test + 1.8.1 + + + io.netty + netty-buffer + 4.1.72.Final + + + io.netty + netty-codec + 4.1.72.Final + + + io.netty + netty-codec-dns + 4.1.72.Final + + + io.netty + netty-codec-haproxy + 4.1.72.Final + + + io.netty + netty-codec-http + 4.1.72.Final + + + io.netty + netty-codec-http2 + 4.1.72.Final + + + io.netty + netty-codec-memcache + 4.1.72.Final + + + io.netty + netty-codec-mqtt + 4.1.72.Final + + + io.netty + netty-codec-redis + 4.1.72.Final + + + io.netty + netty-codec-smtp + 4.1.72.Final + + + io.netty + netty-codec-socks + 4.1.72.Final + + + io.netty + netty-codec-stomp + 4.1.72.Final + + + io.netty + netty-codec-xml + 4.1.72.Final + + + io.netty + netty-common + 4.1.72.Final + + + io.netty + netty-dev-tools + 4.1.72.Final + + + io.netty + netty-handler + 4.1.72.Final + + + io.netty + netty-handler-proxy + 4.1.72.Final + + + io.netty + netty-resolver + 4.1.72.Final + + + io.netty + netty-resolver-dns + 4.1.72.Final + + + io.netty + netty-transport + 4.1.72.Final + + + io.netty + netty-transport-rxtx + 4.1.72.Final + + + io.netty + netty-transport-sctp + 4.1.72.Final + + + io.netty + netty-transport-udt + 4.1.72.Final + + + io.netty + netty-example + 4.1.72.Final + + + io.netty + netty-all + 4.1.72.Final + + + io.netty + netty-resolver-dns-classes-macos + 4.1.72.Final + + + io.netty + netty-resolver-dns-native-macos + 4.1.72.Final + + + io.netty + netty-resolver-dns-native-macos + 4.1.72.Final + osx-x86_64 + + + io.netty + netty-resolver-dns-native-macos + 4.1.72.Final + osx-aarch_64 + + + io.netty + netty-transport-native-unix-common + 4.1.72.Final + + + io.netty + netty-transport-native-unix-common + 4.1.72.Final + linux-aarch_64 + + + io.netty + netty-transport-native-unix-common + 4.1.72.Final + linux-x86_64 + + + io.netty + netty-transport-native-unix-common + 4.1.72.Final + osx-x86_64 + + + io.netty + netty-transport-native-unix-common + 4.1.72.Final + osx-aarch_64 + + + io.netty + netty-transport-classes-epoll + 4.1.72.Final + + + io.netty + netty-transport-native-epoll + 4.1.72.Final + + + io.netty + netty-transport-native-epoll + 4.1.72.Final + linux-aarch_64 + + + io.netty + netty-transport-native-epoll + 4.1.72.Final + linux-x86_64 + + + io.netty + netty-transport-classes-kqueue + 4.1.72.Final + + + io.netty + netty-transport-native-kqueue + 4.1.72.Final + + + io.netty + netty-transport-native-kqueue + 4.1.72.Final + osx-x86_64 + + + io.netty + netty-transport-native-kqueue + 4.1.72.Final + osx-aarch_64 + + + io.netty + netty-tcnative-classes + 2.0.46.Final + + + io.netty + netty-tcnative + 2.0.46.Final + linux-x86_64 + + + io.netty + netty-tcnative + 2.0.46.Final + linux-x86_64-fedora + + + io.netty + netty-tcnative + 2.0.46.Final + linux-aarch_64-fedora + + + io.netty + netty-tcnative + 2.0.46.Final + osx-x86_64 + + + io.netty + netty-tcnative-boringssl-static + 2.0.46.Final + linux-x86_64 + + + io.netty + netty-tcnative-boringssl-static + 2.0.46.Final + linux-aarch_64 + + + io.netty + netty-tcnative-boringssl-static + 2.0.46.Final + osx-x86_64 + + + io.netty + netty-tcnative-boringssl-static + 2.0.46.Final + osx-aarch_64 + + + io.netty + netty-tcnative-boringssl-static + 2.0.46.Final + windows-x86_64 + + + com.oracle.database.jdbc + ojdbc11 + 21.3.0.0 + + + com.oracle.database.jdbc + ojdbc8 + 21.3.0.0 + + + com.oracle.database.jdbc + ucp + 21.3.0.0 + + + com.oracle.database.jdbc + ucp11 + 21.3.0.0 + + + com.oracle.database.jdbc + rsi + 21.3.0.0 + + + com.oracle.database.security + oraclepki + 21.3.0.0 + + + com.oracle.database.security + osdt_core + 21.3.0.0 + + + com.oracle.database.security + osdt_cert + 21.3.0.0 + + + com.oracle.database.ha + simplefan + 21.3.0.0 + + + com.oracle.database.ha + ons + 21.3.0.0 + + + com.oracle.database.nls + orai18n + 21.3.0.0 + + + com.oracle.database.xml + xdb + 21.3.0.0 + + + com.oracle.database.xml + xmlparserv2 + 21.3.0.0 + + + com.oracle.database.jdbc.debug + ojdbc11_g + 21.3.0.0 + + + com.oracle.database.jdbc.debug + ojdbc8_g + 21.3.0.0 + + + com.oracle.database.jdbc.debug + ojdbc8dms_g + 21.3.0.0 + + + com.oracle.database.jdbc.debug + ojdbc11dms_g + 21.3.0.0 + + + com.oracle.database.observability + dms + 21.3.0.0 + + + com.oracle.database.observability + ojdbc11dms + 21.3.0.0 + + + com.oracle.database.observability + ojdbc8dms + 21.3.0.0 + + + com.oracle.database.jdbc + ojdbc11-production + 21.3.0.0 + pom + + + com.oracle.database.jdbc + ojdbc8-production + 21.3.0.0 + pom + + + com.oracle.database.observability + ojdbc8-observability + 21.3.0.0 + pom + + + com.oracle.database.observability + ojdbc11-observability + 21.3.0.0 + pom + + + com.oracle.database.jdbc.debug + ojdbc8-debug + 21.3.0.0 + pom + + + com.oracle.database.jdbc.debug + ojdbc11-debug + 21.3.0.0 + pom + + + com.oracle.database.jdbc.debug + ojdbc8-observability-debug + 21.3.0.0 + pom + + + com.oracle.database.jdbc.debug + ojdbc11-observability-debug + 21.3.0.0 + pom + + + io.prometheus + simpleclient + 0.12.0 + + + io.prometheus + simpleclient_caffeine + 0.12.0 + + + io.prometheus + simpleclient_common + 0.12.0 + + + io.prometheus + simpleclient_dropwizard + 0.12.0 + + + io.prometheus + simpleclient_graphite_bridge + 0.12.0 + + + io.prometheus + simpleclient_guava + 0.12.0 + + + io.prometheus + simpleclient_hibernate + 0.12.0 + + + io.prometheus + simpleclient_hotspot + 0.12.0 + + + io.prometheus + simpleclient_httpserver + 0.12.0 + + + io.prometheus + simpleclient_jetty + 0.12.0 + + + io.prometheus + simpleclient_jetty_jdk8 + 0.12.0 + + + io.prometheus + simpleclient_log4j + 0.12.0 + + + io.prometheus + simpleclient_log4j2 + 0.12.0 + + + io.prometheus + simpleclient_logback + 0.12.0 + + + io.prometheus + simpleclient_pushgateway + 0.12.0 + + + io.prometheus + simpleclient_servlet + 0.12.0 + + + io.prometheus + simpleclient_servlet_jakarta + 0.12.0 + + + io.prometheus + simpleclient_spring_boot + 0.12.0 + + + io.prometheus + simpleclient_spring_web + 0.12.0 + + + io.prometheus + simpleclient_tracer_otel + 0.12.0 + + + io.prometheus + simpleclient_tracer_otel_agent + 0.12.0 + + + io.prometheus + simpleclient_vertx + 0.12.0 + + + com.querydsl + querydsl-core + 5.0.0 + + + com.querydsl + querydsl-codegen + 5.0.0 + + + com.querydsl + querydsl-codegen-utils + 5.0.0 + + + com.querydsl + querydsl-spatial + 5.0.0 + + + com.querydsl + querydsl-apt + 5.0.0 + + + com.querydsl + querydsl-collections + 5.0.0 + + + com.querydsl + querydsl-guava + 5.0.0 + + + com.querydsl + querydsl-sql + 5.0.0 + + + com.querydsl + querydsl-sql-spatial + 5.0.0 + + + com.querydsl + querydsl-sql-codegen + 5.0.0 + + + com.querydsl + querydsl-sql-spring + 5.0.0 + + + com.querydsl + querydsl-jpa + 5.0.0 + + + com.querydsl + querydsl-jpa-codegen + 5.0.0 + + + com.querydsl + querydsl-jdo + 5.0.0 + + + com.querydsl + querydsl-kotlin-codegen + 5.0.0 + + + com.querydsl + querydsl-lucene3 + 5.0.0 + + + com.querydsl + querydsl-lucene4 + 5.0.0 + + + com.querydsl + querydsl-lucene5 + 5.0.0 + + + com.querydsl + querydsl-hibernate-search + 5.0.0 + + + com.querydsl + querydsl-mongodb + 5.0.0 + + + com.querydsl + querydsl-scala + 5.0.0 + + + com.querydsl + querydsl-kotlin + 5.0.0 + + + com.google.cloud + cloud-spanner-r2dbc + 0.6.0 + + + com.oracle.database.r2dbc + oracle-r2dbc + 0.1.0 + + + io.r2dbc + r2dbc-h2 + 0.8.4.RELEASE + + + org.mariadb + r2dbc-mariadb + 1.0.2 + + + io.r2dbc + r2dbc-mssql + 0.8.7.RELEASE + + + dev.miku + r2dbc-mysql + 0.8.2.RELEASE + + + io.r2dbc + r2dbc-postgresql + 0.8.10.RELEASE + + + io.r2dbc + r2dbc-pool + 0.8.7.RELEASE + + + io.r2dbc + r2dbc-proxy + 0.8.8.RELEASE + + + io.r2dbc + r2dbc-spi + 0.8.6.RELEASE + + + io.projectreactor + reactor-core + 3.4.13 + + + io.projectreactor + reactor-test + 3.4.13 + + + io.projectreactor + reactor-tools + 3.4.13 + + + io.projectreactor.addons + reactor-extra + 3.4.6 + + + io.projectreactor.addons + reactor-adapter + 3.4.6 + + + io.projectreactor.netty + reactor-netty + 1.0.14 + + + io.projectreactor.netty + reactor-netty-core + 1.0.14 + + + io.projectreactor.netty + reactor-netty-http + 1.0.14 + + + io.projectreactor.netty + reactor-netty-http-brave + 1.0.14 + + + io.projectreactor.addons + reactor-pool + 0.2.7 + + + io.projectreactor.kafka + reactor-kafka + 1.3.8 + + + io.projectreactor.rabbitmq + reactor-rabbitmq + 1.5.4 + + + io.projectreactor.kotlin + reactor-kotlin-extensions + 1.1.5 + + + io.rsocket + rsocket-core + 1.1.1 + + + io.rsocket + rsocket-load-balancer + 1.1.1 + + + io.rsocket + rsocket-micrometer + 1.1.1 + + + io.rsocket + rsocket-test + 1.1.1 + + + io.rsocket + rsocket-transport-local + 1.1.1 + + + io.rsocket + rsocket-transport-netty + 1.1.1 + + + org.springframework.data + spring-data-cassandra + 3.3.0 + + + org.springframework.data + spring-data-commons + 2.6.0 + + + org.springframework.data + spring-data-couchbase + 4.3.0 + + + org.springframework.data + spring-data-elasticsearch + 4.3.0 + + + org.springframework.data + spring-data-geode + 2.6.0 + + + org.springframework.data + spring-data-jdbc + 2.3.0 + + + org.springframework.data + spring-data-relational + 2.3.0 + + + org.springframework.data + spring-data-jpa + 2.6.0 + + + org.springframework.data + spring-data-mongodb + 3.3.0 + + + org.springframework.data + spring-data-neo4j + 6.2.0 + + + org.springframework.data + spring-data-r2dbc + 1.4.0 + + + org.springframework.data + spring-data-redis + 2.6.0 + + + org.springframework.data + spring-data-rest-webmvc + 3.6.0 + + + org.springframework.data + spring-data-rest-core + 3.6.0 + + + org.springframework.data + spring-data-rest-hal-explorer + 3.6.0 + + + org.springframework.data + spring-data-keyvalue + 2.6.0 + + + org.springframework.data + spring-data-envers + 2.6.0 + + + org.springframework.data + spring-data-ldap + 2.6.0 + + + org.springframework + spring-aspects + 5.3.14 + + + org.springframework + spring-context-indexer + 5.3.14 + + + org.springframework + spring-context-support + 5.3.14 + + + org.springframework + spring-core + 5.3.14 + + + org.springframework + spring-instrument + 5.3.14 + + + org.springframework + spring-jcl + 5.3.14 + + + org.springframework + spring-jdbc + 5.3.14 + + + org.springframework + spring-jms + 5.3.14 + + + org.springframework + spring-messaging + 5.3.14 + + + org.springframework + spring-orm + 5.3.14 + + + org.springframework + spring-oxm + 5.3.14 + + + org.springframework + spring-r2dbc + 5.3.14 + + + org.springframework + spring-test + 5.3.14 + + + org.springframework + spring-tx + 5.3.14 + + + org.springframework + spring-web + 5.3.14 + + + org.springframework + spring-webflux + 5.3.14 + + + org.springframework + spring-webmvc + 5.3.14 + + + org.springframework + spring-websocket + 5.3.14 + + + org.springframework.integration + spring-integration-amqp + 5.5.7 + + + org.springframework.integration + spring-integration-core + 5.5.7 + + + org.springframework.integration + spring-integration-event + 5.5.7 + + + org.springframework.integration + spring-integration-feed + 5.5.7 + + + org.springframework.integration + spring-integration-file + 5.5.7 + + + org.springframework.integration + spring-integration-ftp + 5.5.7 + + + org.springframework.integration + spring-integration-gemfire + 5.5.7 + + + org.springframework.integration + spring-integration-groovy + 5.5.7 + + + org.springframework.integration + spring-integration-http + 5.5.7 + + + org.springframework.integration + spring-integration-ip + 5.5.7 + + + org.springframework.integration + spring-integration-jdbc + 5.5.7 + + + org.springframework.integration + spring-integration-jms + 5.5.7 + + + org.springframework.integration + spring-integration-jmx + 5.5.7 + + + org.springframework.integration + spring-integration-jpa + 5.5.7 + + + org.springframework.integration + spring-integration-kafka + 5.5.7 + + + org.springframework.integration + spring-integration-mail + 5.5.7 + + + org.springframework.integration + spring-integration-mongodb + 5.5.7 + + + org.springframework.integration + spring-integration-mqtt + 5.5.7 + + + org.springframework.integration + spring-integration-r2dbc + 5.5.7 + + + org.springframework.integration + spring-integration-redis + 5.5.7 + + + org.springframework.integration + spring-integration-rmi + 5.5.7 + + + org.springframework.integration + spring-integration-rsocket + 5.5.7 + + + org.springframework.integration + spring-integration-scripting + 5.5.7 + + + org.springframework.integration + spring-integration-security + 5.5.7 + + + org.springframework.integration + spring-integration-sftp + 5.5.7 + + + org.springframework.integration + spring-integration-stomp + 5.5.7 + + + org.springframework.integration + spring-integration-stream + 5.5.7 + + + org.springframework.integration + spring-integration-syslog + 5.5.7 + + + org.springframework.integration + spring-integration-test + 5.5.7 + + + org.springframework.integration + spring-integration-test-support + 5.5.7 + + + org.springframework.integration + spring-integration-webflux + 5.5.7 + + + org.springframework.integration + spring-integration-websocket + 5.5.7 + + + org.springframework.integration + spring-integration-ws + 5.5.7 + + + org.springframework.integration + spring-integration-xml + 5.5.7 + + + org.springframework.integration + spring-integration-xmpp + 5.5.7 + + + org.springframework.integration + spring-integration-zeromq + 5.5.7 + + + org.springframework.integration + spring-integration-zookeeper + 5.5.7 + + + org.springframework.security + spring-security-acl + 5.6.1 + + + org.springframework.security + spring-security-aspects + 5.6.1 + + + org.springframework.security + spring-security-cas + 5.6.1 + + + org.springframework.security + spring-security-config + 5.6.1 + + + org.springframework.security + spring-security-core + 5.6.1 + + + org.springframework.security + spring-security-crypto + 5.6.1 + + + org.springframework.security + spring-security-data + 5.6.1 + + + org.springframework.security + spring-security-ldap + 5.6.1 + + + org.springframework.security + spring-security-messaging + 5.6.1 + + + org.springframework.security + spring-security-oauth2-client + 5.6.1 + + + org.springframework.security + spring-security-oauth2-core + 5.6.1 + + + org.springframework.security + spring-security-oauth2-jose + 5.6.1 + + + org.springframework.security + spring-security-oauth2-resource-server + 5.6.1 + + + org.springframework.security + spring-security-openid + 5.6.1 + + + org.springframework.security + spring-security-remoting + 5.6.1 + + + org.springframework.security + spring-security-rsocket + 5.6.1 + + + org.springframework.security + spring-security-saml2-service-provider + 5.6.1 + + + org.springframework.security + spring-security-taglibs + 5.6.1 + + + org.springframework.security + spring-security-test + 5.6.1 + + + org.springframework.security + spring-security-web + 5.6.1 + + + org.springframework.session + spring-session-jdbc + 2.6.1 + + + org.springframework.session + spring-session-data-geode + 2.6.0 + + + org.springframework.session + spring-session-hazelcast + 2.6.1 + + + org.springframework.session + spring-session-data-mongodb + 2.6.1 + + + org.springframework.session + spring-session-core + 2.6.1 + + + org.springframework.session + spring-session-data-redis + 2.6.1 + + + + + + junit + junit + 3.8.1 + test + + + + + + true + + nexus-server@alipay + http://mvn.test.alipay.net:8080/artifactory/repo + + + + true + + central + http://mvn.dev.alipay.net:8080/artifactory/repo + + + + true + never + + snapshots + http://mvn.dev.alipay.net:8080/artifactory/repo + + + alibaba + http://mvnrepo.alibaba-inc.com/mvn/repository + + + + + + false + never + + central + http://mvn.dev.alipay.net:8080/artifactory/repo + + + alibaba + http://mvnrepo.alibaba-inc.com/mvn/repository + + + + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/project04-maven-moduele/src/main/java + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/project04-maven-moduele/src/main/scripts + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/project04-maven-moduele/src/test/java + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/project04-maven-moduele/target/classes + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/project04-maven-moduele/target/test-classes + + + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/project04-maven-moduele/src/main/resources + + + + + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/project04-maven-moduele/src/test/resources + + + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/project04-maven-moduele/target + project04-maven-moduele-0.0.1-snapshot + + + + org.codehaus.mojo + build-helper-maven-plugin + 3.2.0 + + + org.flywaydb + flyway-maven-plugin + 8.0.5 + + + pl.project13.maven + git-commit-id-plugin + 4.9.10 + + + org.apache.johnzon + johnzon-maven-plugin + 1.2.15 + + + org.jooq + jooq-codegen-maven + 3.14.15 + + + org.jetbrains.kotlin + kotlin-maven-plugin + 1.6.10 + + + org.liquibase + liquibase-maven-plugin + 4.5.0 + + + maven-antrun-plugin + 3.0.0 + + + maven-assembly-plugin + 3.3.0 + + + maven-clean-plugin + 3.1.0 + + + maven-compiler-plugin + 3.8.1 + + + maven-dependency-plugin + 3.2.0 + + + maven-release-plugin + 2.5.3 + + + maven-deploy-plugin + 2.8.2 + + + maven-enforcer-plugin + 3.0.0 + + + maven-failsafe-plugin + 2.22.2 + + + maven-help-plugin + 3.2.0 + + + maven-install-plugin + 2.5.2 + + + maven-invoker-plugin + 3.2.2 + + + maven-jar-plugin + 3.2.0 + + + maven-javadoc-plugin + 3.3.1 + + + maven-resources-plugin + 3.2.0 + + + maven-shade-plugin + 3.2.4 + + + maven-source-plugin + 3.2.1 + + + maven-surefire-plugin + 2.22.2 + + + maven-war-plugin + 3.3.2 + + + org.springframework.boot + spring-boot-maven-plugin + 2.6.2 + + + org.codehaus.mojo + versions-maven-plugin + 2.8.1 + + + org.codehaus.mojo + xml-maven-plugin + 1.0.2 + + + + + + maven-clean-plugin + 3.1.0 + + + default-clean + clean + + clean + + + + + + maven-resources-plugin + 3.2.0 + + + default-testResources + process-test-resources + + testResources + + + + default-resources + process-resources + + resources + + + + + + maven-jar-plugin + 3.2.0 + + + default-jar + package + + jar + + + + + + maven-compiler-plugin + 3.8.1 + + + default-compile + compile + + compile + + + + default-testCompile + test-compile + + testCompile + + + + + + maven-surefire-plugin + 2.22.2 + + + default-test + test + + test + + + + + + maven-install-plugin + 2.5.2 + + + default-install + install + + install + + + + + + maven-deploy-plugin + 2.8.2 + + + default-deploy + deploy + + deploy + + + + + + maven-site-plugin + 3.3 + + + default-site + site + + site + + + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/project04-maven-moduele/target/site + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + + + + + default-deploy + site-deploy + + deploy + + + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/project04-maven-moduele/target/site + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + + + + + + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/project04-maven-moduele/target/site + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + + + + + + + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/project04-maven-moduele/target/site + + + + + + + + + + 4.0.0 + + com.ykl + project03-maven-test + 0.0.1-snapshot + + com.ykl + project05-maven-moduele + 0.0.1-snapshot + project05-maven-moduele + Spring Boot Dependencies + http://maven.apache.org + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + + + Pivotal + info@pivotal.io + Pivotal Software, Inc. + https://www.spring.io + + + + https://github.com/spring-projects/spring-boot/project03-maven-test/project05-maven-moduele + + + 5.16.3 + 2.7.7 + 1.9.93 + 2.19.0 + 1.9.7 + 3.21.0 + 4.0.6 + 4.1.1 + 3.2.0 + 1.11.22 + 2.9.3 + 4.13.0 + 1.5.1 + temp + world + 1.15 + 2.9.0 + 3.12.0 + 1.6 + 2.11.1 + 3.2.4 + 11.5.7.0 + 1.0.11.RELEASE + 10.14.2.0 + 4.2.7 + 2.10.9.2 + 3.9.9 + 7.15.2 + 3.0.0 + 8.0.5 + 2.3.31 + 4.9.10 + 3.0.4 + 2.3.5 + 1.2.6 + 3.0.9 + 2.8.9 + 1.4.200 + 2.2 + 2.2.1 + 4.2.4 + 6.2.0.Final + 5.6.3.Final + 4.0.3 + 2.5.2 + 2.54.0 + 4.1.5 + 4.5.13 + 5.1.2 + 4.4.15 + 5.1.2 + 12.1.10.Final + 2.22 + 2.13.1 + 1.2.2 + 1.3.5 + 2.0.3 + 1.0.2 + 1.1.6 + 1.6.7 + 1.1.4 + 2.2.3 + 1.2.7 + 4.0.4 + 1.3.3 + 2.0.2 + 1.1.2 + 2.1.6 + 2.3.3 + 1.4.2 + 2.3.3 + 3.1.6 + 1.2.0 + 1.3.2 + 1.1.1 + 2.3.1 + 2.3.1 + 2.0.1 + 1.1.4 + 1.0 + 1.6.2 + 1.1 + 2.2 + 1.3 + 2.0.1.Final + 1.1 + 1.2.0 + 4.0.4.java8 + 3.4.2.Final + 2.0.6.1 + 3.7.1 + 2.35 + 9.0.52 + 2.2.0.v201112011158 + 1.1.10 + 9.4.44.v20210927 + 1.15 + 1.2.15 + 1.7.1 + 3.14.15 + 2.6.0 + 2.4.7 + 1.5.0 + 1.2 + 1.3.1 + 5.8.2 + 4.13.2 + 3.0.0 + 1.5.2 + 1.6.10 + 6.1.5.RELEASE + 4.5.0 + 2.17.0 + 1.2.9 + 1.18.22 + 2.7.4 + 3.0.0 + 3.3.0 + 3.1.0 + 3.8.1 + 3.2.0 + 2.8.2 + 3.0.0 + 2.22.2 + 3.2.0 + 2.5.2 + 3.2.2 + 3.2.0 + 3.3.1 + 3.2.0 + 3.2.4 + 3.2.1 + 2.22.2 + 3.3.2 + 1.8.1 + 1.9.15 + 4.0.0 + 4.4.0 + 9.4.1.jre8 + 8.0.27 + 1.9.22 + 4.3.6 + 2.0.46.Final + 4.1.72.Final + 3.14.9 + 21.3.0.0 + 1.2.2 + 42.3.1 + 0.12.0 + 2.3.2 + 5.0.0 + Arabba-SR11 + 5.13.1 + 0.4.0 + 1.0.3 + 2020.0.14 + 4.4.0 + 1.1.1 + 1.2.1 + 1.3.8 + 2.2.21 + 1.5.3 + 2.54.0 + 3.141.59 + 4.7.6 + 4.0.1 + 1.7.32 + 1.29 + 8.8.2 + 2.4.1 + 4.3.4 + 2021.1.0 + 5.3.14 + 1.4.0 + 5.5.7 + 2.8.1 + 2.3.5.RELEASE + 2.0.5.RELEASE + 1.3.1 + 5.6.1 + 2021.1.1 + 3.1.2 + 3.36.0.3 + 1.6.7 + 2.0.1 + 3.0.4.RELEASE + 3.0.4.RELEASE + 3.0.0 + 3.0.14.RELEASE + 9.0.56 + 4.0.14 + 2.2.14.Final + 2.8.1 + 0.48 + 1.6.3 + 1.0.2 + 2.8.4 + + + + + org.spingframwork + spring-core + 4.0.0.RELEASE + + + org.springframework + spring-beans + 4.0.0.RELEASE + + + org.springframework + spring-context + 4.0.0.RELEASE + + + org.springframework + spring-expression + 4.0.0.RELEASE + + + org.springframework + spring-aop + 4.0.0.RELEASE + + + org.apache.activemq + activemq-amqp + 5.16.3 + + + org.apache.activemq + activemq-blueprint + 5.16.3 + + + org.apache.activemq + activemq-broker + 5.16.3 + + + org.apache.activemq + activemq-camel + 5.16.3 + + + org.apache.activemq + activemq-client + 5.16.3 + + + org.apache.activemq + activemq-console + 5.16.3 + + + commons-logging + commons-logging + + + + + org.apache.activemq + activemq-http + 5.16.3 + + + org.apache.activemq + activemq-jaas + 5.16.3 + + + org.apache.activemq + activemq-jdbc-store + 5.16.3 + + + org.apache.activemq + activemq-jms-pool + 5.16.3 + + + org.apache.activemq + activemq-kahadb-store + 5.16.3 + + + org.apache.activemq + activemq-karaf + 5.16.3 + + + org.apache.activemq + activemq-leveldb-store + 5.16.3 + + + commons-logging + commons-logging + + + + + org.apache.activemq + activemq-log4j-appender + 5.16.3 + + + org.apache.activemq + activemq-mqtt + 5.16.3 + + + org.apache.activemq + activemq-openwire-generator + 5.16.3 + + + org.apache.activemq + activemq-openwire-legacy + 5.16.3 + + + org.apache.activemq + activemq-osgi + 5.16.3 + + + org.apache.activemq + activemq-partition + 5.16.3 + + + org.apache.activemq + activemq-pool + 5.16.3 + + + org.apache.activemq + activemq-ra + 5.16.3 + + + org.apache.activemq + activemq-run + 5.16.3 + + + org.apache.activemq + activemq-runtime-config + 5.16.3 + + + org.apache.activemq + activemq-shiro + 5.16.3 + + + org.apache.activemq + activemq-spring + 5.16.3 + + + commons-logging + commons-logging + + + + + org.apache.activemq + activemq-stomp + 5.16.3 + + + org.apache.activemq + activemq-web + 5.16.3 + + + antlr + antlr + 2.7.7 + + + com.google.appengine + appengine-api-1.0-sdk + 1.9.93 + + + org.apache.activemq + artemis-amqp-protocol + 2.19.0 + + + org.apache.activemq + artemis-commons + 2.19.0 + + + commons-logging + commons-logging + + + + + org.apache.activemq + artemis-core-client + 2.19.0 + + + geronimo-json_1.0_spec + org.apache.geronimo.specs + + + + + org.apache.activemq + artemis-jms-client + 2.19.0 + + + geronimo-json_1.0_spec + org.apache.geronimo.specs + + + + + org.apache.activemq + artemis-jms-server + 2.19.0 + + + geronimo-json_1.0_spec + org.apache.geronimo.specs + + + + + org.apache.activemq + artemis-journal + 2.19.0 + + + org.apache.activemq + artemis-selector + 2.19.0 + + + org.apache.activemq + artemis-server + 2.19.0 + + + commons-logging + commons-logging + + + geronimo-json_1.0_spec + org.apache.geronimo.specs + + + + + org.apache.activemq + artemis-service-extensions + 2.19.0 + + + org.aspectj + aspectjrt + 1.9.7 + + + org.aspectj + aspectjtools + 1.9.7 + + + org.aspectj + aspectjweaver + 1.9.7 + + + org.assertj + assertj-core + 3.21.0 + + + com.atomikos + transactions-jdbc + 4.0.6 + + + com.atomikos + transactions-jms + 4.0.6 + + + com.atomikos + transactions-jta + 4.0.6 + + + org.awaitility + awaitility + 4.1.1 + + + org.awaitility + awaitility-groovy + 4.1.1 + + + org.awaitility + awaitility-kotlin + 4.1.1 + + + org.awaitility + awaitility-scala + 4.1.1 + + + net.bytebuddy + byte-buddy + 1.11.22 + + + net.bytebuddy + byte-buddy-agent + 1.11.22 + + + com.github.ben-manes.caffeine + caffeine + 2.9.3 + + + com.github.ben-manes.caffeine + guava + 2.9.3 + + + com.github.ben-manes.caffeine + jcache + 2.9.3 + + + com.github.ben-manes.caffeine + simulator + 2.9.3 + + + com.datastax.oss + java-driver-core + 4.13.0 + + + jcl-over-slf4j + org.slf4j + + + + + com.fasterxml + classmate + 1.5.1 + + + commons-codec + commons-codec + 1.15 + + + org.apache.commons + commons-dbcp2 + 2.9.0 + + + commons-logging + commons-logging + + + + + org.apache.commons + commons-lang3 + 3.12.0 + + + commons-pool + commons-pool + 1.6 + + + org.apache.commons + commons-pool2 + 2.11.1 + + + com.couchbase.client + java-client + 3.2.4 + + + com.ibm.db2 + jcc + 11.5.7.0 + + + io.spring.gradle + dependency-management-plugin + 1.0.11.RELEASE + + + org.apache.derby + derby + 10.14.2.0 + + + org.apache.derby + derbyclient + 10.14.2.0 + + + net.sf.ehcache + ehcache + 2.10.9.2 + + + org.ehcache + ehcache + 3.9.9 + + + org.ehcache + ehcache-clustered + 3.9.9 + + + org.ehcache + ehcache-transactions + 3.9.9 + + + org.elasticsearch + elasticsearch + 7.15.2 + + + org.elasticsearch.client + transport + 7.15.2 + + + org.elasticsearch.client + elasticsearch-rest-client + 7.15.2 + + + commons-logging + commons-logging + + + + + org.elasticsearch.client + elasticsearch-rest-client-sniffer + 7.15.2 + + + commons-logging + commons-logging + + + + + org.elasticsearch.client + elasticsearch-rest-high-level-client + 7.15.2 + + + org.elasticsearch.distribution.integ-test-zip + elasticsearch + 7.15.2 + zip + + + org.elasticsearch.plugin + transport-netty4-client + 7.15.2 + + + de.flapdoodle.embed + de.flapdoodle.embed.mongo + 3.0.0 + + + org.flywaydb + flyway-core + 8.0.5 + + + org.freemarker + freemarker + 2.3.31 + + + org.glassfish + jakarta.el + 3.0.4 + + + org.glassfish.jaxb + codemodel + 2.3.5 + + + org.glassfish.jaxb + codemodel-annotation-compiler + 2.3.5 + + + org.glassfish.jaxb + jaxb-jxc + 2.3.5 + + + org.glassfish.jaxb + jaxb-runtime + 2.3.5 + + + org.glassfish.jaxb + jaxb-xjc + 2.3.5 + + + org.glassfish.jaxb + txw2 + 2.3.5 + + + org.glassfish.jaxb + txwc2 + 2.3.5 + + + org.glassfish.jaxb + xsom + 2.3.5 + + + org.glassfish.web + jakarta.servlet.jsp.jstl + 1.2.6 + + + com.google.code.gson + gson + 2.8.9 + + + com.h2database + h2 + 1.4.200 + + + org.hamcrest + hamcrest + 2.2 + + + org.hamcrest + hamcrest-core + 2.2 + + + org.hamcrest + hamcrest-library + 2.2 + + + com.hazelcast + hazelcast + 4.2.4 + + + com.hazelcast + hazelcast-spring + 4.2.4 + + + com.hazelcast + hazelcast-hibernate52 + 2.2.1 + + + com.hazelcast + hazelcast-hibernate53 + 2.2.1 + + + org.hibernate + hibernate-c3p0 + 5.6.3.Final + + + org.hibernate + hibernate-core + 5.6.3.Final + + + org.hibernate + hibernate-ehcache + 5.6.3.Final + + + org.hibernate + hibernate-entitymanager + 5.6.3.Final + + + org.hibernate + hibernate-envers + 5.6.3.Final + + + org.hibernate + hibernate-hikaricp + 5.6.3.Final + + + org.hibernate + hibernate-java8 + 5.6.3.Final + + + org.hibernate + hibernate-jcache + 5.6.3.Final + + + org.hibernate + hibernate-jpamodelgen + 5.6.3.Final + + + org.hibernate + hibernate-micrometer + 5.6.3.Final + + + org.hibernate + hibernate-proxool + 5.6.3.Final + + + org.hibernate + hibernate-spatial + 5.6.3.Final + + + org.hibernate + hibernate-testing + 5.6.3.Final + + + org.hibernate + hibernate-vibur + 5.6.3.Final + + + org.hibernate.validator + hibernate-validator + 6.2.0.Final + + + org.hibernate.validator + hibernate-validator-annotation-processor + 6.2.0.Final + + + com.zaxxer + HikariCP + 4.0.3 + + + org.hsqldb + hsqldb + 2.5.2 + + + net.sourceforge.htmlunit + htmlunit + 2.54.0 + + + commons-logging + commons-logging + + + + + org.apache.httpcomponents + httpasyncclient + 4.1.5 + + + commons-logging + commons-logging + + + + + org.apache.httpcomponents + fluent-hc + 4.5.13 + + + org.apache.httpcomponents + httpclient + 4.5.13 + + + commons-logging + commons-logging + + + + + org.apache.httpcomponents + httpclient-cache + 4.5.13 + + + org.apache.httpcomponents + httpclient-osgi + 4.5.13 + + + org.apache.httpcomponents + httpclient-win + 4.5.13 + + + org.apache.httpcomponents + httpmime + 4.5.13 + + + org.apache.httpcomponents.client5 + httpclient5 + 5.1.2 + + + org.apache.httpcomponents.client5 + httpclient5-cache + 5.1.2 + + + org.apache.httpcomponents.client5 + httpclient5-fluent + 5.1.2 + + + org.apache.httpcomponents.client5 + httpclient5-win + 5.1.2 + + + org.apache.httpcomponents + httpcore + 4.4.15 + + + org.apache.httpcomponents + httpcore-nio + 4.4.15 + + + org.apache.httpcomponents.core5 + httpcore5 + 5.1.2 + + + org.apache.httpcomponents.core5 + httpcore5-h2 + 5.1.2 + + + org.apache.httpcomponents.core5 + httpcore5-reactive + 5.1.2 + + + org.influxdb + influxdb-java + 2.22 + + + com.sun.activation + jakarta.activation + 1.2.2 + + + jakarta.activation + jakarta.activation-api + 1.2.2 + + + jakarta.annotation + jakarta.annotation-api + 1.3.5 + + + jakarta.jms + jakarta.jms-api + 2.0.3 + + + jakarta.json + jakarta.json-api + 1.1.6 + + + jakarta.json.bind + jakarta.json.bind-api + 1.0.2 + + + jakarta.mail + jakarta.mail-api + 1.6.7 + + + jakarta.management.j2ee + jakarta.management.j2ee-api + 1.1.4 + + + jakarta.persistence + jakarta.persistence-api + 2.2.3 + + + jakarta.servlet + jakarta.servlet-api + 4.0.4 + + + jakarta.servlet.jsp.jstl + jakarta.servlet.jsp.jstl-api + 1.2.7 + + + jakarta.transaction + jakarta.transaction-api + 1.3.3 + + + jakarta.validation + jakarta.validation-api + 2.0.2 + + + jakarta.websocket + jakarta.websocket-api + 1.1.2 + + + jakarta.ws.rs + jakarta.ws.rs-api + 2.1.6 + + + jakarta.xml.bind + jakarta.xml.bind-api + 2.3.3 + + + jakarta.xml.soap + jakarta.xml.soap-api + 1.4.2 + + + jakarta.xml.ws + jakarta.xml.ws-api + 2.3.3 + + + org.codehaus.janino + commons-compiler + 3.1.6 + + + org.codehaus.janino + commons-compiler-jdk + 3.1.6 + + + org.codehaus.janino + janino + 3.1.6 + + + javax.activation + javax.activation-api + 1.2.0 + + + javax.annotation + javax.annotation-api + 1.3.2 + + + javax.cache + cache-api + 1.1.1 + + + javax.xml.bind + jaxb-api + 2.3.1 + + + javax.xml.ws + jaxws-api + 2.3.1 + + + javax.jms + javax.jms-api + 2.0.1 + + + javax.json + javax.json-api + 1.1.4 + + + javax.json.bind + javax.json.bind-api + 1.0 + + + javax.mail + javax.mail-api + 1.6.2 + + + javax.money + money-api + 1.1 + + + javax.persistence + javax.persistence-api + 2.2 + + + javax.transaction + javax.transaction-api + 1.3 + + + javax.validation + validation-api + 2.0.1.Final + + + javax.websocket + javax.websocket-api + 1.1 + + + jaxen + jaxen + 1.2.0 + + + org.firebirdsql.jdbc + jaybird + 4.0.4.java8 + + + org.firebirdsql.jdbc + jaybird-jdk18 + 4.0.4.java8 + + + org.jboss.logging + jboss-logging + 3.4.2.Final + + + org.jdom + jdom2 + 2.0.6.1 + + + redis.clients + jedis + 3.7.1 + + + org.mortbay.jasper + apache-el + 9.0.52 + + + org.eclipse.jetty.orbit + javax.servlet.jsp + 2.2.0.v201112011158 + + + org.eclipse.jetty + jetty-reactive-httpclient + 1.1.10 + + + com.samskivert + jmustache + 1.15 + + + org.apache.johnzon + johnzon-core + 1.2.15 + + + org.apache.johnzon + johnzon-jaxrs + 1.2.15 + + + org.apache.johnzon + johnzon-jsonb + 1.2.15 + + + org.apache.johnzon + johnzon-jsonb-extras + 1.2.15 + + + org.apache.johnzon + johnzon-jsonschema + 1.2.15 + + + org.apache.johnzon + johnzon-mapper + 1.2.15 + + + org.apache.johnzon + johnzon-websocket + 1.2.15 + + + org.jolokia + jolokia-core + 1.7.1 + + + org.jooq + jooq + 3.14.15 + + + org.jooq + jooq-codegen + 3.14.15 + + + org.jooq + jooq-kotlin + 3.14.15 + + + org.jooq + jooq-meta + 3.14.15 + + + com.jayway.jsonpath + json-path + 2.6.0 + + + com.jayway.jsonpath + json-path-assert + 2.6.0 + + + net.minidev + json-smart + 2.4.7 + + + org.skyscreamer + jsonassert + 1.5.0 + + + javax.servlet + jstl + 1.2 + + + net.sourceforge.jtds + jtds + 1.3.1 + + + junit + junit + 4.13.2 + + + org.apache.kafka + connect-api + 3.0.0 + + + org.apache.kafka + connect-basic-auth-extension + 3.0.0 + + + org.apache.kafka + connect-file + 3.0.0 + + + org.apache.kafka + connect-json + 3.0.0 + + + org.apache.kafka + connect-runtime + 3.0.0 + + + org.apache.kafka + connect-transforms + 3.0.0 + + + org.apache.kafka + kafka-clients + 3.0.0 + + + org.apache.kafka + kafka-metadata + 3.0.0 + + + org.apache.kafka + kafka-log4j-appender + 3.0.0 + + + org.apache.kafka + kafka-streams + 3.0.0 + + + org.apache.kafka + kafka-streams-scala_2.12 + 3.0.0 + + + org.apache.kafka + kafka-streams-scala_2.13 + 3.0.0 + + + org.apache.kafka + kafka-streams-test-utils + 3.0.0 + + + org.apache.kafka + kafka-tools + 3.0.0 + + + org.apache.kafka + kafka_2.12 + 3.0.0 + + + org.apache.kafka + kafka_2.13 + 3.0.0 + + + io.lettuce + lettuce-core + 6.1.5.RELEASE + + + org.liquibase + liquibase-core + 4.5.0 + + + ch.qos.logback + logback-access + 1.2.9 + + + ch.qos.logback + logback-classic + 1.2.9 + + + ch.qos.logback + logback-core + 1.2.9 + + + org.projectlombok + lombok + 1.18.22 + + + org.mariadb.jdbc + mariadb-java-client + 2.7.4 + + + io.micrometer + micrometer-registry-stackdriver + 1.8.1 + + + javax.annotation-api + javax.annotation + + + + + org.jvnet.mimepull + mimepull + 1.9.15 + + + org.mockito + mockito-core + 4.0.0 + + + org.mockito + mockito-inline + 4.0.0 + + + org.mockito + mockito-junit-jupiter + 4.0.0 + + + org.mongodb + bson + 4.4.0 + + + org.mongodb + mongodb-driver-core + 4.4.0 + + + org.mongodb + mongodb-driver-legacy + 4.4.0 + + + org.mongodb + mongodb-driver-reactivestreams + 4.4.0 + + + org.mongodb + mongodb-driver-sync + 4.4.0 + + + com.microsoft.sqlserver + mssql-jdbc + 9.4.1.jre8 + + + mysql + mysql-connector-java + 8.0.27 + + + protobuf-java + com.google.protobuf + + + + + net.sourceforge.nekohtml + nekohtml + 1.9.22 + + + org.neo4j.driver + neo4j-java-driver + 4.3.6 + + + io.netty + netty-tcnative + 2.0.46.Final + + + io.netty + netty-tcnative-boringssl-static + 2.0.46.Final + + + com.squareup.okhttp3 + logging-interceptor + 3.14.9 + + + com.squareup.okhttp3 + mockwebserver + 3.14.9 + + + com.squareup.okhttp3 + okcurl + 3.14.9 + + + com.squareup.okhttp3 + okhttp + 3.14.9 + + + com.squareup.okhttp3 + okhttp-dnsoverhttps + 3.14.9 + + + com.squareup.okhttp3 + okhttp-sse + 3.14.9 + + + com.squareup.okhttp3 + okhttp-testing-support + 3.14.9 + + + com.squareup.okhttp3 + okhttp-tls + 3.14.9 + + + com.squareup.okhttp3 + okhttp-urlconnection + 3.14.9 + + + org.messaginghub + pooled-jms + 1.2.2 + + + org.postgresql + postgresql + 42.3.1 + + + org.quartz-scheduler + quartz + 2.3.2 + + + c3p0 + com.mchange + + + * + com.zaxxer + + + + + org.quartz-scheduler + quartz-jobs + 2.3.2 + + + com.rabbitmq + amqp-client + 5.13.1 + + + com.rabbitmq + stream-client + 0.4.0 + + + org.reactivestreams + reactive-streams + 1.0.3 + + + io.rest-assured + json-path + 4.4.0 + + + io.rest-assured + json-schema-validator + 4.4.0 + + + io.rest-assured + rest-assured + 4.4.0 + + + io.rest-assured + scala-support + 4.4.0 + + + io.rest-assured + spring-mock-mvc + 4.4.0 + + + io.rest-assured + spring-web-test-client + 4.4.0 + + + io.rest-assured + xml-path + 4.4.0 + + + io.reactivex + rxjava + 1.3.8 + + + io.reactivex + rxjava-reactive-streams + 1.2.1 + + + io.reactivex.rxjava2 + rxjava + 2.2.21 + + + org.springframework.boot + spring-boot + 2.6.2 + + + org.springframework.boot + spring-boot-test + 2.6.2 + + + org.springframework.boot + spring-boot-test-autoconfigure + 2.6.2 + + + org.springframework.boot + spring-boot-actuator + 2.6.2 + + + org.springframework.boot + spring-boot-actuator-autoconfigure + 2.6.2 + + + org.springframework.boot + spring-boot-autoconfigure + 2.6.2 + + + org.springframework.boot + spring-boot-autoconfigure-processor + 2.6.2 + + + org.springframework.boot + spring-boot-buildpack-platform + 2.6.2 + + + org.springframework.boot + spring-boot-configuration-metadata + 2.6.2 + + + org.springframework.boot + spring-boot-configuration-processor + 2.6.2 + + + org.springframework.boot + spring-boot-devtools + 2.6.2 + + + org.springframework.boot + spring-boot-jarmode-layertools + 2.6.2 + + + org.springframework.boot + spring-boot-loader + 2.6.2 + + + org.springframework.boot + spring-boot-loader-tools + 2.6.2 + + + org.springframework.boot + spring-boot-properties-migrator + 2.6.2 + + + org.springframework.boot + spring-boot-starter + 2.6.2 + + + org.springframework.boot + spring-boot-starter-activemq + 2.6.2 + + + org.springframework.boot + spring-boot-starter-actuator + 2.6.2 + + + org.springframework.boot + spring-boot-starter-amqp + 2.6.2 + + + org.springframework.boot + spring-boot-starter-aop + 2.6.2 + + + org.springframework.boot + spring-boot-starter-artemis + 2.6.2 + + + org.springframework.boot + spring-boot-starter-batch + 2.6.2 + + + org.springframework.boot + spring-boot-starter-cache + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-cassandra + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-cassandra-reactive + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-couchbase + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-couchbase-reactive + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-elasticsearch + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-jdbc + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-jpa + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-ldap + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-mongodb + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-mongodb-reactive + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-r2dbc + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-redis + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-redis-reactive + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-neo4j + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-rest + 2.6.2 + + + org.springframework.boot + spring-boot-starter-freemarker + 2.6.2 + + + org.springframework.boot + spring-boot-starter-groovy-templates + 2.6.2 + + + org.springframework.boot + spring-boot-starter-hateoas + 2.6.2 + + + org.springframework.boot + spring-boot-starter-integration + 2.6.2 + + + org.springframework.boot + spring-boot-starter-jdbc + 2.6.2 + + + org.springframework.boot + spring-boot-starter-jersey + 2.6.2 + + + org.springframework.boot + spring-boot-starter-jetty + 2.6.2 + + + org.springframework.boot + spring-boot-starter-jooq + 2.6.2 + + + org.springframework.boot + spring-boot-starter-json + 2.6.2 + + + org.springframework.boot + spring-boot-starter-jta-atomikos + 2.6.2 + + + org.springframework.boot + spring-boot-starter-log4j2 + 2.6.2 + + + org.springframework.boot + spring-boot-starter-logging + 2.6.2 + + + org.springframework.boot + spring-boot-starter-mail + 2.6.2 + + + org.springframework.boot + spring-boot-starter-mustache + 2.6.2 + + + org.springframework.boot + spring-boot-starter-oauth2-client + 2.6.2 + + + org.springframework.boot + spring-boot-starter-oauth2-resource-server + 2.6.2 + + + org.springframework.boot + spring-boot-starter-quartz + 2.6.2 + + + org.springframework.boot + spring-boot-starter-reactor-netty + 2.6.2 + + + org.springframework.boot + spring-boot-starter-rsocket + 2.6.2 + + + org.springframework.boot + spring-boot-starter-security + 2.6.2 + + + org.springframework.boot + spring-boot-starter-test + 2.6.2 + + + org.springframework.boot + spring-boot-starter-thymeleaf + 2.6.2 + + + org.springframework.boot + spring-boot-starter-tomcat + 2.6.2 + + + org.springframework.boot + spring-boot-starter-undertow + 2.6.2 + + + org.springframework.boot + spring-boot-starter-validation + 2.6.2 + + + org.springframework.boot + spring-boot-starter-web + 2.6.2 + + + org.springframework.boot + spring-boot-starter-webflux + 2.6.2 + + + org.springframework.boot + spring-boot-starter-websocket + 2.6.2 + + + org.springframework.boot + spring-boot-starter-web-services + 2.6.2 + + + com.sun.xml.messaging.saaj + saaj-impl + 1.5.3 + + + org.seleniumhq.selenium + selenium-api + 3.141.59 + + + org.seleniumhq.selenium + selenium-chrome-driver + 3.141.59 + + + org.seleniumhq.selenium + selenium-edge-driver + 3.141.59 + + + org.seleniumhq.selenium + selenium-firefox-driver + 3.141.59 + + + org.seleniumhq.selenium + selenium-ie-driver + 3.141.59 + + + org.seleniumhq.selenium + selenium-java + 3.141.59 + + + org.seleniumhq.selenium + selenium-opera-driver + 3.141.59 + + + org.seleniumhq.selenium + selenium-remote-driver + 3.141.59 + + + org.seleniumhq.selenium + selenium-safari-driver + 3.141.59 + + + org.seleniumhq.selenium + selenium-support + 3.141.59 + + + org.seleniumhq.selenium + htmlunit-driver + 2.54.0 + + + com.sendgrid + sendgrid-java + 4.7.6 + + + javax.servlet + javax.servlet-api + 4.0.1 + + + org.slf4j + jcl-over-slf4j + 1.7.32 + + + org.slf4j + jul-to-slf4j + 1.7.32 + + + org.slf4j + log4j-over-slf4j + 1.7.32 + + + org.slf4j + slf4j-api + 1.7.32 + + + org.slf4j + slf4j-ext + 1.7.32 + + + org.slf4j + slf4j-jcl + 1.7.32 + + + org.slf4j + slf4j-jdk14 + 1.7.32 + + + org.slf4j + slf4j-log4j12 + 1.7.32 + + + org.slf4j + slf4j-nop + 1.7.32 + + + org.slf4j + slf4j-simple + 1.7.32 + + + org.yaml + snakeyaml + 1.29 + + + org.apache.solr + solr-analysis-extras + 8.8.2 + + + org.apache.solr + solr-analytics + 8.8.2 + + + org.apache.solr + solr-cell + 8.8.2 + + + org.apache.solr + solr-core + 8.8.2 + + + org.apache.solr + solr-dataimporthandler + 8.8.2 + + + org.apache.solr + solr-dataimporthandler-extras + 8.8.2 + + + org.apache.solr + solr-langid + 8.8.2 + + + org.apache.solr + solr-ltr + 8.8.2 + + + org.apache.solr + solr-solrj + 8.8.2 + + + jcl-over-slf4j + org.slf4j + + + + + org.apache.solr + solr-test-framework + 8.8.2 + + + org.apache.solr + solr-velocity + 8.8.2 + + + org.springframework.amqp + spring-amqp + 2.4.1 + + + org.springframework.amqp + spring-rabbit + 2.4.1 + + + org.springframework.amqp + spring-rabbit-stream + 2.4.1 + + + org.springframework.amqp + spring-rabbit-junit + 2.4.1 + + + org.springframework.amqp + spring-rabbit-test + 2.4.1 + + + org.springframework.batch + spring-batch-core + 4.3.4 + + + org.springframework.batch + spring-batch-infrastructure + 4.3.4 + + + org.springframework.batch + spring-batch-integration + 4.3.4 + + + org.springframework.batch + spring-batch-test + 4.3.4 + + + org.springframework.hateoas + spring-hateoas + 1.4.0 + + + org.springframework.kafka + spring-kafka + 2.8.1 + + + org.springframework.kafka + spring-kafka-test + 2.8.1 + + + org.springframework.ldap + spring-ldap-core + 2.3.5.RELEASE + + + org.springframework.ldap + spring-ldap-core-tiger + 2.3.5.RELEASE + + + org.springframework.ldap + spring-ldap-ldif-batch + 2.3.5.RELEASE + + + org.springframework.ldap + spring-ldap-ldif-core + 2.3.5.RELEASE + + + org.springframework.ldap + spring-ldap-odm + 2.3.5.RELEASE + + + org.springframework.ldap + spring-ldap-test + 2.3.5.RELEASE + + + org.springframework.restdocs + spring-restdocs-asciidoctor + 2.0.5.RELEASE + + + org.springframework.restdocs + spring-restdocs-core + 2.0.5.RELEASE + + + org.springframework.restdocs + spring-restdocs-mockmvc + 2.0.5.RELEASE + + + org.springframework.restdocs + spring-restdocs-restassured + 2.0.5.RELEASE + + + org.springframework.restdocs + spring-restdocs-webtestclient + 2.0.5.RELEASE + + + org.springframework.retry + spring-retry + 1.3.1 + + + org.springframework.ws + spring-ws-core + 3.1.2 + + + org.springframework.ws + spring-ws-security + 3.1.2 + + + org.springframework.ws + spring-ws-support + 3.1.2 + + + org.springframework.ws + spring-ws-test + 3.1.2 + + + org.springframework.ws + spring-xml + 3.1.2 + + + org.xerial + sqlite-jdbc + 3.36.0.3 + + + com.sun.mail + jakarta.mail + 1.6.7 + + + org.thymeleaf + thymeleaf + 3.0.14.RELEASE + + + org.thymeleaf + thymeleaf-spring5 + 3.0.14.RELEASE + + + com.github.mxab.thymeleaf.extras + thymeleaf-extras-data-attribute + 2.0.1 + + + org.thymeleaf.extras + thymeleaf-extras-java8time + 3.0.4.RELEASE + + + org.thymeleaf.extras + thymeleaf-extras-springsecurity5 + 3.0.4.RELEASE + + + nz.net.ultraq.thymeleaf + thymeleaf-layout-dialect + 3.0.0 + + + org.apache.tomcat + tomcat-annotations-api + 9.0.56 + + + org.apache.tomcat + tomcat-jdbc + 9.0.56 + + + org.apache.tomcat + tomcat-jsp-api + 9.0.56 + + + org.apache.tomcat.embed + tomcat-embed-core + 9.0.56 + + + org.apache.tomcat.embed + tomcat-embed-el + 9.0.56 + + + org.apache.tomcat.embed + tomcat-embed-jasper + 9.0.56 + + + org.apache.tomcat.embed + tomcat-embed-websocket + 9.0.56 + + + com.unboundid + unboundid-ldapsdk + 4.0.14 + + + io.undertow + undertow-core + 2.2.14.Final + + + io.undertow + undertow-servlet + 2.2.14.Final + + + io.undertow + undertow-websockets-jsr + 2.2.14.Final + + + org.webjars + webjars-locator-core + 0.48 + + + wsdl4j + wsdl4j + 1.6.3 + + + org.xmlunit + xmlunit-assertj + 2.8.4 + + + org.xmlunit + xmlunit-core + 2.8.4 + + + org.xmlunit + xmlunit-legacy + 2.8.4 + + + org.xmlunit + xmlunit-matchers + 2.8.4 + + + org.xmlunit + xmlunit-placeholders + 2.8.4 + + + com.datastax.oss + java-driver-core-shaded + 4.13.0 + + + com.datastax.oss + java-driver-mapper-processor + 4.13.0 + + + com.datastax.oss + java-driver-mapper-runtime + 4.13.0 + + + com.datastax.oss + java-driver-query-builder + 4.13.0 + + + com.datastax.oss + java-driver-test-infra + 4.13.0 + + + com.datastax.oss + java-driver-metrics-micrometer + 4.13.0 + + + com.datastax.oss + java-driver-metrics-microprofile + 4.13.0 + + + com.datastax.oss + native-protocol + 1.5.0 + + + com.datastax.oss + java-driver-shaded-guava + 25.1-jre-graal-sub-1 + + + io.dropwizard.metrics + metrics-annotation + 4.2.7 + + + io.dropwizard.metrics + metrics-caffeine + 4.2.7 + + + io.dropwizard.metrics + metrics-caffeine3 + 4.2.7 + + + io.dropwizard.metrics + metrics-core + 4.2.7 + + + io.dropwizard.metrics + metrics-collectd + 4.2.7 + + + io.dropwizard.metrics + metrics-ehcache + 4.2.7 + + + io.dropwizard.metrics + metrics-graphite + 4.2.7 + + + io.dropwizard.metrics + metrics-healthchecks + 4.2.7 + + + io.dropwizard.metrics + metrics-httpclient + 4.2.7 + + + io.dropwizard.metrics + metrics-httpclient5 + 4.2.7 + + + io.dropwizard.metrics + metrics-httpasyncclient + 4.2.7 + + + io.dropwizard.metrics + metrics-jakarta-servlet + 4.2.7 + + + io.dropwizard.metrics + metrics-jakarta-servlets + 4.2.7 + + + io.dropwizard.metrics + metrics-jcache + 4.2.7 + + + io.dropwizard.metrics + metrics-jdbi + 4.2.7 + + + io.dropwizard.metrics + metrics-jdbi3 + 4.2.7 + + + io.dropwizard.metrics + metrics-jersey2 + 4.2.7 + + + io.dropwizard.metrics + metrics-jersey3 + 4.2.7 + + + io.dropwizard.metrics + metrics-jetty9 + 4.2.7 + + + io.dropwizard.metrics + metrics-jetty10 + 4.2.7 + + + io.dropwizard.metrics + metrics-jetty11 + 4.2.7 + + + io.dropwizard.metrics + metrics-jmx + 4.2.7 + + + io.dropwizard.metrics + metrics-json + 4.2.7 + + + io.dropwizard.metrics + metrics-jvm + 4.2.7 + + + io.dropwizard.metrics + metrics-log4j2 + 4.2.7 + + + io.dropwizard.metrics + metrics-logback + 4.2.7 + + + io.dropwizard.metrics + metrics-servlet + 4.2.7 + + + io.dropwizard.metrics + metrics-servlets + 4.2.7 + + + org.codehaus.groovy + groovy + 3.0.9 + + + org.codehaus.groovy + groovy-ant + 3.0.9 + + + org.codehaus.groovy + groovy-astbuilder + 3.0.9 + + + org.codehaus.groovy + groovy-bsf + 3.0.9 + + + org.codehaus.groovy + groovy-cli-commons + 3.0.9 + + + org.codehaus.groovy + groovy-cli-picocli + 3.0.9 + + + org.codehaus.groovy + groovy-console + 3.0.9 + + + org.codehaus.groovy + groovy-datetime + 3.0.9 + + + org.codehaus.groovy + groovy-dateutil + 3.0.9 + + + org.codehaus.groovy + groovy-docgenerator + 3.0.9 + + + org.codehaus.groovy + groovy-groovydoc + 3.0.9 + + + org.codehaus.groovy + groovy-groovysh + 3.0.9 + + + org.codehaus.groovy + groovy-jaxb + 3.0.9 + + + org.codehaus.groovy + groovy-jmx + 3.0.9 + + + org.codehaus.groovy + groovy-json + 3.0.9 + + + org.codehaus.groovy + groovy-jsr223 + 3.0.9 + + + org.codehaus.groovy + groovy-macro + 3.0.9 + + + org.codehaus.groovy + groovy-nio + 3.0.9 + + + org.codehaus.groovy + groovy-servlet + 3.0.9 + + + org.codehaus.groovy + groovy-sql + 3.0.9 + + + org.codehaus.groovy + groovy-swing + 3.0.9 + + + org.codehaus.groovy + groovy-templates + 3.0.9 + + + org.codehaus.groovy + groovy-test + 3.0.9 + + + org.codehaus.groovy + groovy-test-junit5 + 3.0.9 + + + org.codehaus.groovy + groovy-testng + 3.0.9 + + + org.codehaus.groovy + groovy-xml + 3.0.9 + + + org.codehaus.groovy + groovy-yaml + 3.0.9 + + + org.infinispan + infinispan-api + 12.1.10.Final + + + org.infinispan + infinispan-cachestore-jdbc + 12.1.10.Final + + + org.infinispan + infinispan-cachestore-jpa + 12.1.10.Final + + + org.infinispan + infinispan-cachestore-remote + 12.1.10.Final + + + org.infinispan + infinispan-cachestore-rocksdb + 12.1.10.Final + + + org.infinispan + infinispan-cdi-common + 12.1.10.Final + + + org.infinispan + infinispan-cdi-embedded + 12.1.10.Final + + + org.infinispan + infinispan-cdi-remote + 12.1.10.Final + + + org.infinispan + infinispan-checkstyle + 12.1.10.Final + + + org.infinispan + infinispan-cli-client + 12.1.10.Final + + + org.infinispan + infinispan-client-hotrod + 12.1.10.Final + + + org.infinispan + infinispan-client-rest + 12.1.10.Final + + + org.infinispan + infinispan-key-value-store-client + 12.1.10.Final + + + org.infinispan + infinispan-clustered-counter + 12.1.10.Final + + + org.infinispan + infinispan-clustered-lock + 12.1.10.Final + + + org.infinispan + infinispan-commons + 12.1.10.Final + + + org.infinispan + infinispan-commons-test + 12.1.10.Final + + + org.infinispan + infinispan-component-annotations + 12.1.10.Final + provided + + + org.infinispan + infinispan-component-processor + 12.1.10.Final + + + org.infinispan + infinispan-core + 12.1.10.Final + + + org.infinispan + infinispan-jboss-marshalling + 12.1.10.Final + + + org.infinispan + infinispan-extended-statistics + 12.1.10.Final + + + org.infinispan + infinispan-hibernate-cache-commons + 12.1.10.Final + + + org.infinispan + infinispan-hibernate-cache-spi + 12.1.10.Final + + + org.infinispan + infinispan-hibernate-cache-v51 + 12.1.10.Final + + + org.infinispan + infinispan-hibernate-cache-v53 + 12.1.10.Final + + + org.infinispan + infinispan-jcache-commons + 12.1.10.Final + + + org.infinispan + infinispan-jcache + 12.1.10.Final + + + org.infinispan + infinispan-jcache-remote + 12.1.10.Final + + + org.infinispan + infinispan-console + 0.14.3.Final + + + org.infinispan + infinispan-marshaller-kryo + 12.1.10.Final + + + org.infinispan + infinispan-marshaller-kryo-bundle + 12.1.10.Final + + + org.infinispan + infinispan-marshaller-protostuff + 12.1.10.Final + + + org.infinispan + infinispan-marshaller-protostuff-bundle + 12.1.10.Final + + + org.infinispan + infinispan-multimap + 12.1.10.Final + + + org.infinispan + infinispan-objectfilter + 12.1.10.Final + + + org.infinispan + infinispan-persistence-soft-index + 12.1.10.Final + + + org.infinispan + infinispan-query-core + 12.1.10.Final + + + org.infinispan + infinispan-query + 12.1.10.Final + + + org.infinispan + infinispan-query-dsl + 12.1.10.Final + + + org.infinispan + infinispan-remote-query-client + 12.1.10.Final + + + org.infinispan + infinispan-remote-query-server + 12.1.10.Final + + + org.infinispan + infinispan-scripting + 12.1.10.Final + + + org.infinispan + infinispan-server-core + 12.1.10.Final + + + org.infinispan + infinispan-server-hotrod + 12.1.10.Final + + + org.infinispan + infinispan-server-memcached + 12.1.10.Final + + + org.infinispan + infinispan-server-rest + 12.1.10.Final + + + org.infinispan + infinispan-server-router + 12.1.10.Final + + + org.infinispan + infinispan-server-runtime + 12.1.10.Final + + + org.infinispan + infinispan-server-testdriver-core + 12.1.10.Final + + + org.infinispan + infinispan-server-testdriver-junit4 + 12.1.10.Final + + + org.infinispan + infinispan-server-testdriver-junit5 + 12.1.10.Final + + + org.infinispan + infinispan-spring5-common + 12.1.10.Final + + + org.infinispan + infinispan-spring5-embedded + 12.1.10.Final + + + org.infinispan + infinispan-spring5-remote + 12.1.10.Final + + + org.infinispan + infinispan-spring-boot-starter-embedded + 12.1.10.Final + + + org.infinispan + infinispan-spring-boot-starter-remote + 12.1.10.Final + + + org.infinispan + infinispan-tasks + 12.1.10.Final + + + org.infinispan + infinispan-tasks-api + 12.1.10.Final + + + org.infinispan + infinispan-tools + 12.1.10.Final + + + org.infinispan + infinispan-anchored-keys + 12.1.10.Final + + + org.infinispan.protostream + protostream + 4.4.1.Final + + + org.infinispan.protostream + protostream-types + 4.4.1.Final + + + org.infinispan.protostream + protostream-processor + 4.4.1.Final + provided + + + org.infinispan + infinispan-cloudevents-integration + 12.1.10.Final + + + com.fasterxml.jackson.core + jackson-annotations + 2.13.1 + + + com.fasterxml.jackson.core + jackson-core + 2.13.1 + + + com.fasterxml.jackson.core + jackson-databind + 2.13.1 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-avro + 2.13.1 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-cbor + 2.13.1 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-csv + 2.13.1 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-ion + 2.13.1 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-properties + 2.13.1 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-protobuf + 2.13.1 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-smile + 2.13.1 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-toml + 2.13.1 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-xml + 2.13.1 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-yaml + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-eclipse-collections + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-guava + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate4 + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate5 + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate5-jakarta + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-hppc + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-jakarta-jsonp + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-jaxrs + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-joda + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-joda-money + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-jdk8 + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-json-org + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-jsr310 + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-jsr353 + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-pcollections + 2.13.1 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-base + 2.13.1 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-cbor-provider + 2.13.1 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-json-provider + 2.13.1 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-smile-provider + 2.13.1 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-xml-provider + 2.13.1 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-yaml-provider + 2.13.1 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-base + 2.13.1 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-cbor-provider + 2.13.1 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-json-provider + 2.13.1 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-smile-provider + 2.13.1 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-xml-provider + 2.13.1 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-yaml-provider + 2.13.1 + + + com.fasterxml.jackson.jr + jackson-jr-all + 2.13.1 + + + com.fasterxml.jackson.jr + jackson-jr-annotation-support + 2.13.1 + + + com.fasterxml.jackson.jr + jackson-jr-objects + 2.13.1 + + + com.fasterxml.jackson.jr + jackson-jr-retrofit2 + 2.13.1 + + + com.fasterxml.jackson.jr + jackson-jr-stree + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-afterburner + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-blackbird + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-guice + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-jaxb-annotations + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-jakarta-xmlbind-annotations + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-jsonSchema + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-kotlin + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-mrbean + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-no-ctor-deser + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-osgi + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-parameter-names + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-paranamer + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-scala_2.11 + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-scala_2.12 + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-scala_2.13 + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-scala_3 + 2.13.1 + + + org.glassfish.jersey.core + jersey-common + 2.35 + + + org.glassfish.jersey.core + jersey-client + 2.35 + + + org.glassfish.jersey.core + jersey-server + 2.35 + + + org.glassfish.jersey.bundles + jaxrs-ri + 2.35 + + + org.glassfish.jersey.connectors + jersey-apache-connector + 2.35 + + + org.glassfish.jersey.connectors + jersey-helidon-connector + 2.35 + + + org.glassfish.jersey.connectors + jersey-grizzly-connector + 2.35 + + + org.glassfish.jersey.connectors + jersey-jetty-connector + 2.35 + + + org.glassfish.jersey.connectors + jersey-jdk-connector + 2.35 + + + org.glassfish.jersey.connectors + jersey-netty-connector + 2.35 + + + org.glassfish.jersey.containers + jersey-container-jetty-http + 2.35 + + + org.glassfish.jersey.containers + jersey-container-grizzly2-http + 2.35 + + + org.glassfish.jersey.containers + jersey-container-grizzly2-servlet + 2.35 + + + org.glassfish.jersey.containers + jersey-container-jetty-servlet + 2.35 + + + org.glassfish.jersey.containers + jersey-container-jdk-http + 2.35 + + + org.glassfish.jersey.containers + jersey-container-netty-http + 2.35 + + + org.glassfish.jersey.containers + jersey-container-servlet + 2.35 + + + org.glassfish.jersey.containers + jersey-container-servlet-core + 2.35 + + + org.glassfish.jersey.containers + jersey-container-simple-http + 2.35 + + + org.glassfish.jersey.containers.glassfish + jersey-gf-ejb + 2.35 + + + org.glassfish.jersey.ext + jersey-bean-validation + 2.35 + + + org.glassfish.jersey.ext + jersey-entity-filtering + 2.35 + + + org.glassfish.jersey.ext + jersey-metainf-services + 2.35 + + + org.glassfish.jersey.ext.microprofile + jersey-mp-config + 2.35 + + + org.glassfish.jersey.ext + jersey-mvc + 2.35 + + + org.glassfish.jersey.ext + jersey-mvc-bean-validation + 2.35 + + + org.glassfish.jersey.ext + jersey-mvc-freemarker + 2.35 + + + org.glassfish.jersey.ext + jersey-mvc-jsp + 2.35 + + + org.glassfish.jersey.ext + jersey-mvc-mustache + 2.35 + + + org.glassfish.jersey.ext + jersey-proxy-client + 2.35 + + + org.glassfish.jersey.ext + jersey-servlet-portability + 2.35 + + + org.glassfish.jersey.ext + jersey-spring4 + 2.35 + + + org.glassfish.jersey.ext + jersey-spring5 + 2.35 + + + org.glassfish.jersey.ext + jersey-declarative-linking + 2.35 + + + org.glassfish.jersey.ext + jersey-wadl-doclet + 2.35 + + + org.glassfish.jersey.ext.cdi + jersey-weld2-se + 2.35 + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x + 2.35 + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x-transaction + 2.35 + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x-validation + 2.35 + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x-servlet + 2.35 + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x-ban-custom-hk2-binding + 2.35 + + + org.glassfish.jersey.ext.cdi + jersey-cdi-rs-inject + 2.35 + + + org.glassfish.jersey.ext.rx + jersey-rx-client-guava + 2.35 + + + org.glassfish.jersey.ext.rx + jersey-rx-client-rxjava + 2.35 + + + org.glassfish.jersey.ext.rx + jersey-rx-client-rxjava2 + 2.35 + + + org.glassfish.jersey.ext.microprofile + jersey-mp-rest-client + 2.35 + + + org.glassfish.jersey.media + jersey-media-jaxb + 2.35 + + + org.glassfish.jersey.media + jersey-media-json-jackson + 2.35 + + + org.glassfish.jersey.media + jersey-media-json-jettison + 2.35 + + + org.glassfish.jersey.media + jersey-media-json-processing + 2.35 + + + org.glassfish.jersey.media + jersey-media-json-binding + 2.35 + + + org.glassfish.jersey.media + jersey-media-kryo + 2.35 + + + org.glassfish.jersey.media + jersey-media-moxy + 2.35 + + + org.glassfish.jersey.media + jersey-media-multipart + 2.35 + + + org.glassfish.jersey.media + jersey-media-sse + 2.35 + + + org.glassfish.jersey.security + oauth1-client + 2.35 + + + org.glassfish.jersey.security + oauth1-server + 2.35 + + + org.glassfish.jersey.security + oauth1-signature + 2.35 + + + org.glassfish.jersey.security + oauth2-client + 2.35 + + + org.glassfish.jersey.inject + jersey-hk2 + 2.35 + + + org.glassfish.jersey.inject + jersey-cdi2-se + 2.35 + + + org.glassfish.jersey.test-framework + jersey-test-framework-core + 2.35 + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-bundle + 2.35 + pom + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-external + 2.35 + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-grizzly2 + 2.35 + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-inmemory + 2.35 + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-jdk-http + 2.35 + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-simple + 2.35 + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-jetty + 2.35 + + + org.glassfish.jersey.test-framework + jersey-test-framework-util + 2.35 + + + org.eclipse.jetty + apache-jsp + 9.4.44.v20210927 + + + org.eclipse.jetty + apache-jstl + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-alpn-client + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-alpn-java-client + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-alpn-java-server + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-alpn-openjdk8-client + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-alpn-openjdk8-server + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-alpn-conscrypt-client + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-alpn-conscrypt-server + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-alpn-server + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-annotations + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-ant + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-client + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-continuation + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-deploy + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-distribution + 9.4.44.v20210927 + zip + + + org.eclipse.jetty + jetty-distribution + 9.4.44.v20210927 + tar.gz + + + org.eclipse.jetty.fcgi + fcgi-client + 9.4.44.v20210927 + + + org.eclipse.jetty.fcgi + fcgi-server + 9.4.44.v20210927 + + + org.eclipse.jetty.gcloud + jetty-gcloud-session-manager + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-home + 9.4.44.v20210927 + zip + + + org.eclipse.jetty + jetty-home + 9.4.44.v20210927 + tar.gz + + + org.eclipse.jetty + jetty-http + 9.4.44.v20210927 + + + org.eclipse.jetty.http2 + http2-client + 9.4.44.v20210927 + + + org.eclipse.jetty.http2 + http2-common + 9.4.44.v20210927 + + + org.eclipse.jetty.http2 + http2-hpack + 9.4.44.v20210927 + + + org.eclipse.jetty.http2 + http2-http-client-transport + 9.4.44.v20210927 + + + org.eclipse.jetty.http2 + http2-server + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-http-spi + 9.4.44.v20210927 + + + org.eclipse.jetty + infinispan-common + 9.4.44.v20210927 + + + org.eclipse.jetty + infinispan-remote-query + 9.4.44.v20210927 + + + org.eclipse.jetty + infinispan-embedded-query + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-hazelcast + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-io + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-jaas + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-jaspi + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-jmx + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-jndi + 9.4.44.v20210927 + + + org.eclipse.jetty.memcached + jetty-memcached-sessions + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-nosql + 9.4.44.v20210927 + + + org.eclipse.jetty.osgi + jetty-osgi-boot + 9.4.44.v20210927 + + + org.eclipse.jetty.osgi + jetty-osgi-boot-jsp + 9.4.44.v20210927 + + + org.eclipse.jetty.osgi + jetty-osgi-boot-warurl + 9.4.44.v20210927 + + + org.eclipse.jetty.osgi + jetty-httpservice + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-plus + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-proxy + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-quickstart + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-rewrite + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-security + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-openid + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-server + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-servlet + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-servlets + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-spring + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-unixsocket + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-util + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-util-ajax + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-webapp + 9.4.44.v20210927 + + + org.eclipse.jetty.websocket + javax-websocket-client-impl + 9.4.44.v20210927 + + + org.eclipse.jetty.websocket + javax-websocket-server-impl + 9.4.44.v20210927 + + + org.eclipse.jetty.websocket + websocket-api + 9.4.44.v20210927 + + + org.eclipse.jetty.websocket + websocket-client + 9.4.44.v20210927 + + + org.eclipse.jetty.websocket + websocket-common + 9.4.44.v20210927 + + + org.eclipse.jetty.websocket + websocket-server + 9.4.44.v20210927 + + + org.eclipse.jetty.websocket + websocket-servlet + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-xml + 9.4.44.v20210927 + + + org.junit.jupiter + junit-jupiter + 5.8.2 + + + org.junit.jupiter + junit-jupiter-api + 5.8.2 + + + org.junit.jupiter + junit-jupiter-engine + 5.8.2 + + + org.junit.jupiter + junit-jupiter-migrationsupport + 5.8.2 + + + org.junit.jupiter + junit-jupiter-params + 5.8.2 + + + org.junit.platform + junit-platform-commons + 1.8.2 + + + org.junit.platform + junit-platform-console + 1.8.2 + + + org.junit.platform + junit-platform-engine + 1.8.2 + + + org.junit.platform + junit-platform-jfr + 1.8.2 + + + org.junit.platform + junit-platform-launcher + 1.8.2 + + + org.junit.platform + junit-platform-reporting + 1.8.2 + + + org.junit.platform + junit-platform-runner + 1.8.2 + + + org.junit.platform + junit-platform-suite + 1.8.2 + + + org.junit.platform + junit-platform-suite-api + 1.8.2 + + + org.junit.platform + junit-platform-suite-commons + 1.8.2 + + + org.junit.platform + junit-platform-suite-engine + 1.8.2 + + + org.junit.platform + junit-platform-testkit + 1.8.2 + + + org.junit.vintage + junit-vintage-engine + 5.8.2 + + + org.jetbrains.kotlin + kotlin-stdlib + 1.6.10 + + + org.jetbrains.kotlin + kotlin-stdlib-jdk7 + 1.6.10 + + + org.jetbrains.kotlin + kotlin-stdlib-jdk8 + 1.6.10 + + + org.jetbrains.kotlin + kotlin-stdlib-js + 1.6.10 + + + org.jetbrains.kotlin + kotlin-stdlib-common + 1.6.10 + + + org.jetbrains.kotlin + kotlin-reflect + 1.6.10 + + + org.jetbrains.kotlin + kotlin-osgi-bundle + 1.6.10 + + + org.jetbrains.kotlin + kotlin-test + 1.6.10 + + + org.jetbrains.kotlin + kotlin-test-junit + 1.6.10 + + + org.jetbrains.kotlin + kotlin-test-junit5 + 1.6.10 + + + org.jetbrains.kotlin + kotlin-test-testng + 1.6.10 + + + org.jetbrains.kotlin + kotlin-test-js + 1.6.10 + + + org.jetbrains.kotlin + kotlin-test-common + 1.6.10 + + + org.jetbrains.kotlin + kotlin-test-annotations-common + 1.6.10 + + + org.jetbrains.kotlin + kotlin-main-kts + 1.6.10 + + + org.jetbrains.kotlin + kotlin-script-runtime + 1.6.10 + + + org.jetbrains.kotlin + kotlin-script-util + 1.6.10 + + + org.jetbrains.kotlin + kotlin-scripting-common + 1.6.10 + + + org.jetbrains.kotlin + kotlin-scripting-jvm + 1.6.10 + + + org.jetbrains.kotlin + kotlin-scripting-jvm-host + 1.6.10 + + + org.jetbrains.kotlin + kotlin-scripting-ide-services + 1.6.10 + + + org.jetbrains.kotlin + kotlin-compiler + 1.6.10 + + + org.jetbrains.kotlin + kotlin-compiler-embeddable + 1.6.10 + + + org.jetbrains.kotlin + kotlin-daemon-client + 1.6.10 + + + org.jetbrains.kotlinx + kotlinx-coroutines-android + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-core-jvm + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-core + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-debug + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-guava + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-javafx + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-jdk8 + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-jdk9 + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-play-services + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-reactive + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-reactor + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-rx2 + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-rx3 + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-slf4j + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-swing + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-test + 1.5.2 + + + org.apache.logging.log4j + log4j-api + 2.17.0 + + + org.apache.logging.log4j + log4j-core + 2.17.0 + + + org.apache.logging.log4j + log4j-layout-template-json + 2.17.0 + + + org.apache.logging.log4j + log4j-1.2-api + 2.17.0 + + + org.apache.logging.log4j + log4j-jcl + 2.17.0 + + + org.apache.logging.log4j + log4j-flume-ng + 2.17.0 + + + org.apache.logging.log4j + log4j-taglib + 2.17.0 + + + org.apache.logging.log4j + log4j-jmx-gui + 2.17.0 + + + org.apache.logging.log4j + log4j-slf4j-impl + 2.17.0 + + + org.apache.logging.log4j + log4j-slf4j18-impl + 2.17.0 + + + org.apache.logging.log4j + log4j-to-slf4j + 2.17.0 + + + org.apache.logging.log4j + log4j-appserver + 2.17.0 + + + org.apache.logging.log4j + log4j-web + 2.17.0 + + + org.apache.logging.log4j + log4j-couchdb + 2.17.0 + + + org.apache.logging.log4j + log4j-mongodb4 + 2.17.0 + + + org.apache.logging.log4j + log4j-mongodb3 + 2.17.0 + + + org.apache.logging.log4j + log4j-cassandra + 2.17.0 + + + org.apache.logging.log4j + log4j-jpa + 2.17.0 + + + org.apache.logging.log4j + log4j-iostreams + 2.17.0 + + + org.apache.logging.log4j + log4j-jul + 2.17.0 + + + org.apache.logging.log4j + log4j-jpl + 2.17.0 + + + org.apache.logging.log4j + log4j-liquibase + 2.17.0 + + + org.apache.logging.log4j + log4j-docker + 2.17.0 + + + org.apache.logging.log4j + log4j-kubernetes + 2.17.0 + + + org.apache.logging.log4j + log4j-spring-boot + 2.17.0 + + + org.apache.logging.log4j + log4j-spring-cloud-config-client + 2.17.0 + + + io.micrometer + micrometer-core + 1.8.1 + + + io.micrometer + micrometer-jersey2 + 1.8.1 + + + io.micrometer + micrometer-registry-appoptics + 1.8.1 + + + io.micrometer + micrometer-registry-atlas + 1.8.1 + + + io.micrometer + micrometer-registry-azure-monitor + 1.8.1 + + + io.micrometer + micrometer-registry-cloudwatch + 1.8.1 + + + io.micrometer + micrometer-registry-cloudwatch2 + 1.8.1 + + + io.micrometer + micrometer-registry-datadog + 1.8.1 + + + io.micrometer + micrometer-registry-dynatrace + 1.8.1 + + + io.micrometer + micrometer-registry-elastic + 1.8.1 + + + io.micrometer + micrometer-registry-ganglia + 1.8.1 + + + io.micrometer + micrometer-registry-graphite + 1.8.1 + + + io.micrometer + micrometer-registry-health + 1.8.1 + + + io.micrometer + micrometer-registry-humio + 1.8.1 + + + io.micrometer + micrometer-registry-influx + 1.8.1 + + + io.micrometer + micrometer-registry-jmx + 1.8.1 + + + io.micrometer + micrometer-registry-kairos + 1.8.1 + + + io.micrometer + micrometer-registry-new-relic + 1.8.1 + + + io.micrometer + micrometer-registry-opentsdb + 1.8.1 + + + io.micrometer + micrometer-registry-prometheus + 1.8.1 + + + io.micrometer + micrometer-registry-signalfx + 1.8.1 + + + io.micrometer + micrometer-registry-statsd + 1.8.1 + + + io.micrometer + micrometer-registry-wavefront + 1.8.1 + + + io.micrometer + micrometer-test + 1.8.1 + + + io.netty + netty-buffer + 4.1.72.Final + + + io.netty + netty-codec + 4.1.72.Final + + + io.netty + netty-codec-dns + 4.1.72.Final + + + io.netty + netty-codec-haproxy + 4.1.72.Final + + + io.netty + netty-codec-http + 4.1.72.Final + + + io.netty + netty-codec-http2 + 4.1.72.Final + + + io.netty + netty-codec-memcache + 4.1.72.Final + + + io.netty + netty-codec-mqtt + 4.1.72.Final + + + io.netty + netty-codec-redis + 4.1.72.Final + + + io.netty + netty-codec-smtp + 4.1.72.Final + + + io.netty + netty-codec-socks + 4.1.72.Final + + + io.netty + netty-codec-stomp + 4.1.72.Final + + + io.netty + netty-codec-xml + 4.1.72.Final + + + io.netty + netty-common + 4.1.72.Final + + + io.netty + netty-dev-tools + 4.1.72.Final + + + io.netty + netty-handler + 4.1.72.Final + + + io.netty + netty-handler-proxy + 4.1.72.Final + + + io.netty + netty-resolver + 4.1.72.Final + + + io.netty + netty-resolver-dns + 4.1.72.Final + + + io.netty + netty-transport + 4.1.72.Final + + + io.netty + netty-transport-rxtx + 4.1.72.Final + + + io.netty + netty-transport-sctp + 4.1.72.Final + + + io.netty + netty-transport-udt + 4.1.72.Final + + + io.netty + netty-example + 4.1.72.Final + + + io.netty + netty-all + 4.1.72.Final + + + io.netty + netty-resolver-dns-classes-macos + 4.1.72.Final + + + io.netty + netty-resolver-dns-native-macos + 4.1.72.Final + + + io.netty + netty-resolver-dns-native-macos + 4.1.72.Final + osx-x86_64 + + + io.netty + netty-resolver-dns-native-macos + 4.1.72.Final + osx-aarch_64 + + + io.netty + netty-transport-native-unix-common + 4.1.72.Final + + + io.netty + netty-transport-native-unix-common + 4.1.72.Final + linux-aarch_64 + + + io.netty + netty-transport-native-unix-common + 4.1.72.Final + linux-x86_64 + + + io.netty + netty-transport-native-unix-common + 4.1.72.Final + osx-x86_64 + + + io.netty + netty-transport-native-unix-common + 4.1.72.Final + osx-aarch_64 + + + io.netty + netty-transport-classes-epoll + 4.1.72.Final + + + io.netty + netty-transport-native-epoll + 4.1.72.Final + + + io.netty + netty-transport-native-epoll + 4.1.72.Final + linux-aarch_64 + + + io.netty + netty-transport-native-epoll + 4.1.72.Final + linux-x86_64 + + + io.netty + netty-transport-classes-kqueue + 4.1.72.Final + + + io.netty + netty-transport-native-kqueue + 4.1.72.Final + + + io.netty + netty-transport-native-kqueue + 4.1.72.Final + osx-x86_64 + + + io.netty + netty-transport-native-kqueue + 4.1.72.Final + osx-aarch_64 + + + io.netty + netty-tcnative-classes + 2.0.46.Final + + + io.netty + netty-tcnative + 2.0.46.Final + linux-x86_64 + + + io.netty + netty-tcnative + 2.0.46.Final + linux-x86_64-fedora + + + io.netty + netty-tcnative + 2.0.46.Final + linux-aarch_64-fedora + + + io.netty + netty-tcnative + 2.0.46.Final + osx-x86_64 + + + io.netty + netty-tcnative-boringssl-static + 2.0.46.Final + linux-x86_64 + + + io.netty + netty-tcnative-boringssl-static + 2.0.46.Final + linux-aarch_64 + + + io.netty + netty-tcnative-boringssl-static + 2.0.46.Final + osx-x86_64 + + + io.netty + netty-tcnative-boringssl-static + 2.0.46.Final + osx-aarch_64 + + + io.netty + netty-tcnative-boringssl-static + 2.0.46.Final + windows-x86_64 + + + com.oracle.database.jdbc + ojdbc11 + 21.3.0.0 + + + com.oracle.database.jdbc + ojdbc8 + 21.3.0.0 + + + com.oracle.database.jdbc + ucp + 21.3.0.0 + + + com.oracle.database.jdbc + ucp11 + 21.3.0.0 + + + com.oracle.database.jdbc + rsi + 21.3.0.0 + + + com.oracle.database.security + oraclepki + 21.3.0.0 + + + com.oracle.database.security + osdt_core + 21.3.0.0 + + + com.oracle.database.security + osdt_cert + 21.3.0.0 + + + com.oracle.database.ha + simplefan + 21.3.0.0 + + + com.oracle.database.ha + ons + 21.3.0.0 + + + com.oracle.database.nls + orai18n + 21.3.0.0 + + + com.oracle.database.xml + xdb + 21.3.0.0 + + + com.oracle.database.xml + xmlparserv2 + 21.3.0.0 + + + com.oracle.database.jdbc.debug + ojdbc11_g + 21.3.0.0 + + + com.oracle.database.jdbc.debug + ojdbc8_g + 21.3.0.0 + + + com.oracle.database.jdbc.debug + ojdbc8dms_g + 21.3.0.0 + + + com.oracle.database.jdbc.debug + ojdbc11dms_g + 21.3.0.0 + + + com.oracle.database.observability + dms + 21.3.0.0 + + + com.oracle.database.observability + ojdbc11dms + 21.3.0.0 + + + com.oracle.database.observability + ojdbc8dms + 21.3.0.0 + + + com.oracle.database.jdbc + ojdbc11-production + 21.3.0.0 + pom + + + com.oracle.database.jdbc + ojdbc8-production + 21.3.0.0 + pom + + + com.oracle.database.observability + ojdbc8-observability + 21.3.0.0 + pom + + + com.oracle.database.observability + ojdbc11-observability + 21.3.0.0 + pom + + + com.oracle.database.jdbc.debug + ojdbc8-debug + 21.3.0.0 + pom + + + com.oracle.database.jdbc.debug + ojdbc11-debug + 21.3.0.0 + pom + + + com.oracle.database.jdbc.debug + ojdbc8-observability-debug + 21.3.0.0 + pom + + + com.oracle.database.jdbc.debug + ojdbc11-observability-debug + 21.3.0.0 + pom + + + io.prometheus + simpleclient + 0.12.0 + + + io.prometheus + simpleclient_caffeine + 0.12.0 + + + io.prometheus + simpleclient_common + 0.12.0 + + + io.prometheus + simpleclient_dropwizard + 0.12.0 + + + io.prometheus + simpleclient_graphite_bridge + 0.12.0 + + + io.prometheus + simpleclient_guava + 0.12.0 + + + io.prometheus + simpleclient_hibernate + 0.12.0 + + + io.prometheus + simpleclient_hotspot + 0.12.0 + + + io.prometheus + simpleclient_httpserver + 0.12.0 + + + io.prometheus + simpleclient_jetty + 0.12.0 + + + io.prometheus + simpleclient_jetty_jdk8 + 0.12.0 + + + io.prometheus + simpleclient_log4j + 0.12.0 + + + io.prometheus + simpleclient_log4j2 + 0.12.0 + + + io.prometheus + simpleclient_logback + 0.12.0 + + + io.prometheus + simpleclient_pushgateway + 0.12.0 + + + io.prometheus + simpleclient_servlet + 0.12.0 + + + io.prometheus + simpleclient_servlet_jakarta + 0.12.0 + + + io.prometheus + simpleclient_spring_boot + 0.12.0 + + + io.prometheus + simpleclient_spring_web + 0.12.0 + + + io.prometheus + simpleclient_tracer_otel + 0.12.0 + + + io.prometheus + simpleclient_tracer_otel_agent + 0.12.0 + + + io.prometheus + simpleclient_vertx + 0.12.0 + + + com.querydsl + querydsl-core + 5.0.0 + + + com.querydsl + querydsl-codegen + 5.0.0 + + + com.querydsl + querydsl-codegen-utils + 5.0.0 + + + com.querydsl + querydsl-spatial + 5.0.0 + + + com.querydsl + querydsl-apt + 5.0.0 + + + com.querydsl + querydsl-collections + 5.0.0 + + + com.querydsl + querydsl-guava + 5.0.0 + + + com.querydsl + querydsl-sql + 5.0.0 + + + com.querydsl + querydsl-sql-spatial + 5.0.0 + + + com.querydsl + querydsl-sql-codegen + 5.0.0 + + + com.querydsl + querydsl-sql-spring + 5.0.0 + + + com.querydsl + querydsl-jpa + 5.0.0 + + + com.querydsl + querydsl-jpa-codegen + 5.0.0 + + + com.querydsl + querydsl-jdo + 5.0.0 + + + com.querydsl + querydsl-kotlin-codegen + 5.0.0 + + + com.querydsl + querydsl-lucene3 + 5.0.0 + + + com.querydsl + querydsl-lucene4 + 5.0.0 + + + com.querydsl + querydsl-lucene5 + 5.0.0 + + + com.querydsl + querydsl-hibernate-search + 5.0.0 + + + com.querydsl + querydsl-mongodb + 5.0.0 + + + com.querydsl + querydsl-scala + 5.0.0 + + + com.querydsl + querydsl-kotlin + 5.0.0 + + + com.google.cloud + cloud-spanner-r2dbc + 0.6.0 + + + com.oracle.database.r2dbc + oracle-r2dbc + 0.1.0 + + + io.r2dbc + r2dbc-h2 + 0.8.4.RELEASE + + + org.mariadb + r2dbc-mariadb + 1.0.2 + + + io.r2dbc + r2dbc-mssql + 0.8.7.RELEASE + + + dev.miku + r2dbc-mysql + 0.8.2.RELEASE + + + io.r2dbc + r2dbc-postgresql + 0.8.10.RELEASE + + + io.r2dbc + r2dbc-pool + 0.8.7.RELEASE + + + io.r2dbc + r2dbc-proxy + 0.8.8.RELEASE + + + io.r2dbc + r2dbc-spi + 0.8.6.RELEASE + + + io.projectreactor + reactor-core + 3.4.13 + + + io.projectreactor + reactor-test + 3.4.13 + + + io.projectreactor + reactor-tools + 3.4.13 + + + io.projectreactor.addons + reactor-extra + 3.4.6 + + + io.projectreactor.addons + reactor-adapter + 3.4.6 + + + io.projectreactor.netty + reactor-netty + 1.0.14 + + + io.projectreactor.netty + reactor-netty-core + 1.0.14 + + + io.projectreactor.netty + reactor-netty-http + 1.0.14 + + + io.projectreactor.netty + reactor-netty-http-brave + 1.0.14 + + + io.projectreactor.addons + reactor-pool + 0.2.7 + + + io.projectreactor.kafka + reactor-kafka + 1.3.8 + + + io.projectreactor.rabbitmq + reactor-rabbitmq + 1.5.4 + + + io.projectreactor.kotlin + reactor-kotlin-extensions + 1.1.5 + + + io.rsocket + rsocket-core + 1.1.1 + + + io.rsocket + rsocket-load-balancer + 1.1.1 + + + io.rsocket + rsocket-micrometer + 1.1.1 + + + io.rsocket + rsocket-test + 1.1.1 + + + io.rsocket + rsocket-transport-local + 1.1.1 + + + io.rsocket + rsocket-transport-netty + 1.1.1 + + + org.springframework.data + spring-data-cassandra + 3.3.0 + + + org.springframework.data + spring-data-commons + 2.6.0 + + + org.springframework.data + spring-data-couchbase + 4.3.0 + + + org.springframework.data + spring-data-elasticsearch + 4.3.0 + + + org.springframework.data + spring-data-geode + 2.6.0 + + + org.springframework.data + spring-data-jdbc + 2.3.0 + + + org.springframework.data + spring-data-relational + 2.3.0 + + + org.springframework.data + spring-data-jpa + 2.6.0 + + + org.springframework.data + spring-data-mongodb + 3.3.0 + + + org.springframework.data + spring-data-neo4j + 6.2.0 + + + org.springframework.data + spring-data-r2dbc + 1.4.0 + + + org.springframework.data + spring-data-redis + 2.6.0 + + + org.springframework.data + spring-data-rest-webmvc + 3.6.0 + + + org.springframework.data + spring-data-rest-core + 3.6.0 + + + org.springframework.data + spring-data-rest-hal-explorer + 3.6.0 + + + org.springframework.data + spring-data-keyvalue + 2.6.0 + + + org.springframework.data + spring-data-envers + 2.6.0 + + + org.springframework.data + spring-data-ldap + 2.6.0 + + + org.springframework + spring-aspects + 5.3.14 + + + org.springframework + spring-context-indexer + 5.3.14 + + + org.springframework + spring-context-support + 5.3.14 + + + org.springframework + spring-core + 5.3.14 + + + org.springframework + spring-instrument + 5.3.14 + + + org.springframework + spring-jcl + 5.3.14 + + + org.springframework + spring-jdbc + 5.3.14 + + + org.springframework + spring-jms + 5.3.14 + + + org.springframework + spring-messaging + 5.3.14 + + + org.springframework + spring-orm + 5.3.14 + + + org.springframework + spring-oxm + 5.3.14 + + + org.springframework + spring-r2dbc + 5.3.14 + + + org.springframework + spring-test + 5.3.14 + + + org.springframework + spring-tx + 5.3.14 + + + org.springframework + spring-web + 5.3.14 + + + org.springframework + spring-webflux + 5.3.14 + + + org.springframework + spring-webmvc + 5.3.14 + + + org.springframework + spring-websocket + 5.3.14 + + + org.springframework.integration + spring-integration-amqp + 5.5.7 + + + org.springframework.integration + spring-integration-core + 5.5.7 + + + org.springframework.integration + spring-integration-event + 5.5.7 + + + org.springframework.integration + spring-integration-feed + 5.5.7 + + + org.springframework.integration + spring-integration-file + 5.5.7 + + + org.springframework.integration + spring-integration-ftp + 5.5.7 + + + org.springframework.integration + spring-integration-gemfire + 5.5.7 + + + org.springframework.integration + spring-integration-groovy + 5.5.7 + + + org.springframework.integration + spring-integration-http + 5.5.7 + + + org.springframework.integration + spring-integration-ip + 5.5.7 + + + org.springframework.integration + spring-integration-jdbc + 5.5.7 + + + org.springframework.integration + spring-integration-jms + 5.5.7 + + + org.springframework.integration + spring-integration-jmx + 5.5.7 + + + org.springframework.integration + spring-integration-jpa + 5.5.7 + + + org.springframework.integration + spring-integration-kafka + 5.5.7 + + + org.springframework.integration + spring-integration-mail + 5.5.7 + + + org.springframework.integration + spring-integration-mongodb + 5.5.7 + + + org.springframework.integration + spring-integration-mqtt + 5.5.7 + + + org.springframework.integration + spring-integration-r2dbc + 5.5.7 + + + org.springframework.integration + spring-integration-redis + 5.5.7 + + + org.springframework.integration + spring-integration-rmi + 5.5.7 + + + org.springframework.integration + spring-integration-rsocket + 5.5.7 + + + org.springframework.integration + spring-integration-scripting + 5.5.7 + + + org.springframework.integration + spring-integration-security + 5.5.7 + + + org.springframework.integration + spring-integration-sftp + 5.5.7 + + + org.springframework.integration + spring-integration-stomp + 5.5.7 + + + org.springframework.integration + spring-integration-stream + 5.5.7 + + + org.springframework.integration + spring-integration-syslog + 5.5.7 + + + org.springframework.integration + spring-integration-test + 5.5.7 + + + org.springframework.integration + spring-integration-test-support + 5.5.7 + + + org.springframework.integration + spring-integration-webflux + 5.5.7 + + + org.springframework.integration + spring-integration-websocket + 5.5.7 + + + org.springframework.integration + spring-integration-ws + 5.5.7 + + + org.springframework.integration + spring-integration-xml + 5.5.7 + + + org.springframework.integration + spring-integration-xmpp + 5.5.7 + + + org.springframework.integration + spring-integration-zeromq + 5.5.7 + + + org.springframework.integration + spring-integration-zookeeper + 5.5.7 + + + org.springframework.security + spring-security-acl + 5.6.1 + + + org.springframework.security + spring-security-aspects + 5.6.1 + + + org.springframework.security + spring-security-cas + 5.6.1 + + + org.springframework.security + spring-security-config + 5.6.1 + + + org.springframework.security + spring-security-core + 5.6.1 + + + org.springframework.security + spring-security-crypto + 5.6.1 + + + org.springframework.security + spring-security-data + 5.6.1 + + + org.springframework.security + spring-security-ldap + 5.6.1 + + + org.springframework.security + spring-security-messaging + 5.6.1 + + + org.springframework.security + spring-security-oauth2-client + 5.6.1 + + + org.springframework.security + spring-security-oauth2-core + 5.6.1 + + + org.springframework.security + spring-security-oauth2-jose + 5.6.1 + + + org.springframework.security + spring-security-oauth2-resource-server + 5.6.1 + + + org.springframework.security + spring-security-openid + 5.6.1 + + + org.springframework.security + spring-security-remoting + 5.6.1 + + + org.springframework.security + spring-security-rsocket + 5.6.1 + + + org.springframework.security + spring-security-saml2-service-provider + 5.6.1 + + + org.springframework.security + spring-security-taglibs + 5.6.1 + + + org.springframework.security + spring-security-test + 5.6.1 + + + org.springframework.security + spring-security-web + 5.6.1 + + + org.springframework.session + spring-session-jdbc + 2.6.1 + + + org.springframework.session + spring-session-data-geode + 2.6.0 + + + org.springframework.session + spring-session-hazelcast + 2.6.1 + + + org.springframework.session + spring-session-data-mongodb + 2.6.1 + + + org.springframework.session + spring-session-core + 2.6.1 + + + org.springframework.session + spring-session-data-redis + 2.6.1 + + + + + + junit + junit + 3.8.1 + test + + + + + + true + + nexus-server@alipay + http://mvn.test.alipay.net:8080/artifactory/repo + + + + true + + central + http://mvn.dev.alipay.net:8080/artifactory/repo + + + + true + never + + snapshots + http://mvn.dev.alipay.net:8080/artifactory/repo + + + alibaba + http://mvnrepo.alibaba-inc.com/mvn/repository + + + + + + false + never + + central + http://mvn.dev.alipay.net:8080/artifactory/repo + + + alibaba + http://mvnrepo.alibaba-inc.com/mvn/repository + + + + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/project05-maven-moduele/src/main/java + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/project05-maven-moduele/src/main/scripts + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/project05-maven-moduele/src/test/java + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/project05-maven-moduele/target/classes + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/project05-maven-moduele/target/test-classes + + + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/project05-maven-moduele/src/main/resources + + + + + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/project05-maven-moduele/src/test/resources + + + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/project05-maven-moduele/target + project05-maven-moduele-0.0.1-snapshot + + + + org.codehaus.mojo + build-helper-maven-plugin + 3.2.0 + + + org.flywaydb + flyway-maven-plugin + 8.0.5 + + + pl.project13.maven + git-commit-id-plugin + 4.9.10 + + + org.apache.johnzon + johnzon-maven-plugin + 1.2.15 + + + org.jooq + jooq-codegen-maven + 3.14.15 + + + org.jetbrains.kotlin + kotlin-maven-plugin + 1.6.10 + + + org.liquibase + liquibase-maven-plugin + 4.5.0 + + + maven-antrun-plugin + 3.0.0 + + + maven-assembly-plugin + 3.3.0 + + + maven-clean-plugin + 3.1.0 + + + maven-compiler-plugin + 3.8.1 + + + maven-dependency-plugin + 3.2.0 + + + maven-release-plugin + 2.5.3 + + + maven-deploy-plugin + 2.8.2 + + + maven-enforcer-plugin + 3.0.0 + + + maven-failsafe-plugin + 2.22.2 + + + maven-help-plugin + 3.2.0 + + + maven-install-plugin + 2.5.2 + + + maven-invoker-plugin + 3.2.2 + + + maven-jar-plugin + 3.2.0 + + + maven-javadoc-plugin + 3.3.1 + + + maven-resources-plugin + 3.2.0 + + + maven-shade-plugin + 3.2.4 + + + maven-source-plugin + 3.2.1 + + + maven-surefire-plugin + 2.22.2 + + + maven-war-plugin + 3.3.2 + + + org.springframework.boot + spring-boot-maven-plugin + 2.6.2 + + + org.codehaus.mojo + versions-maven-plugin + 2.8.1 + + + org.codehaus.mojo + xml-maven-plugin + 1.0.2 + + + + + + maven-clean-plugin + 3.1.0 + + + default-clean + clean + + clean + + + + + + maven-resources-plugin + 3.2.0 + + + default-testResources + process-test-resources + + testResources + + + + default-resources + process-resources + + resources + + + + + + maven-jar-plugin + 3.2.0 + + + default-jar + package + + jar + + + + + + maven-compiler-plugin + 3.8.1 + + + default-compile + compile + + compile + + + + default-testCompile + test-compile + + testCompile + + + + + + maven-surefire-plugin + 2.22.2 + + + default-test + test + + test + + + + + + maven-install-plugin + 2.5.2 + + + default-install + install + + install + + + + + + maven-deploy-plugin + 2.8.2 + + + default-deploy + deploy + + deploy + + + + + + maven-site-plugin + 3.3 + + + default-site + site + + site + + + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/project05-maven-moduele/target/site + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + + + + + default-deploy + site-deploy + + deploy + + + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/project05-maven-moduele/target/site + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + + + + + + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/project05-maven-moduele/target/site + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + + + + + + + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/project05-maven-moduele/target/site + + + + + + + + + + 4.0.0 + + com.ykl + project03-maven-test + 0.0.1-snapshot + + com.ykl + project06-maven-moduele + 0.0.1-snapshot + project06-maven-moduele + Spring Boot Dependencies + http://maven.apache.org + + + Apache License, Version 2.0 + https://www.apache.org/licenses/LICENSE-2.0 + + + + + Pivotal + info@pivotal.io + Pivotal Software, Inc. + https://www.spring.io + + + + https://github.com/spring-projects/spring-boot/project03-maven-test/project06-maven-moduele + + + 5.16.3 + 2.7.7 + 1.9.93 + 2.19.0 + 1.9.7 + 3.21.0 + 4.0.6 + 4.1.1 + 3.2.0 + 1.11.22 + 2.9.3 + 4.13.0 + 1.5.1 + temp + world + 1.15 + 2.9.0 + 3.12.0 + 1.6 + 2.11.1 + 3.2.4 + 11.5.7.0 + 1.0.11.RELEASE + 10.14.2.0 + 4.2.7 + 2.10.9.2 + 3.9.9 + 7.15.2 + 3.0.0 + 8.0.5 + 2.3.31 + 4.9.10 + 3.0.4 + 2.3.5 + 1.2.6 + 3.0.9 + 2.8.9 + 1.4.200 + 2.2 + 2.2.1 + 4.2.4 + 6.2.0.Final + 5.6.3.Final + 4.0.3 + 2.5.2 + 2.54.0 + 4.1.5 + 4.5.13 + 5.1.2 + 4.4.15 + 5.1.2 + 12.1.10.Final + 2.22 + 2.13.1 + 1.2.2 + 1.3.5 + 2.0.3 + 1.0.2 + 1.1.6 + 1.6.7 + 1.1.4 + 2.2.3 + 1.2.7 + 4.0.4 + 1.3.3 + 2.0.2 + 1.1.2 + 2.1.6 + 2.3.3 + 1.4.2 + 2.3.3 + 3.1.6 + 1.2.0 + 1.3.2 + 1.1.1 + 2.3.1 + 2.3.1 + 2.0.1 + 1.1.4 + 1.0 + 1.6.2 + 1.1 + 2.2 + 1.3 + 2.0.1.Final + 1.1 + 1.2.0 + 4.0.4.java8 + 3.4.2.Final + 2.0.6.1 + 3.7.1 + 2.35 + 9.0.52 + 2.2.0.v201112011158 + 1.1.10 + 9.4.44.v20210927 + 1.15 + 1.2.15 + 1.7.1 + 3.14.15 + 2.6.0 + 2.4.7 + 1.5.0 + 1.2 + 1.3.1 + 5.8.2 + 4.13.2 + 3.0.0 + 1.5.2 + 1.6.10 + 6.1.5.RELEASE + 4.5.0 + 2.17.0 + 1.2.9 + 1.18.22 + 2.7.4 + 3.0.0 + 3.3.0 + 3.1.0 + 3.8.1 + 3.2.0 + 2.8.2 + 3.0.0 + 2.22.2 + 3.2.0 + 2.5.2 + 3.2.2 + 3.2.0 + 3.3.1 + 3.2.0 + 3.2.4 + 3.2.1 + 2.22.2 + 3.3.2 + 1.8.1 + 1.9.15 + 4.0.0 + 4.4.0 + 9.4.1.jre8 + 8.0.27 + 1.9.22 + 4.3.6 + 2.0.46.Final + 4.1.72.Final + 3.14.9 + 21.3.0.0 + 1.2.2 + 42.3.1 + 0.12.0 + 2.3.2 + 5.0.0 + Arabba-SR11 + 5.13.1 + 0.4.0 + 1.0.3 + 2020.0.14 + 4.4.0 + 1.1.1 + 1.2.1 + 1.3.8 + 2.2.21 + 1.5.3 + 2.54.0 + 3.141.59 + 4.7.6 + 4.0.1 + 1.7.32 + 1.29 + 8.8.2 + 2.4.1 + 4.3.4 + 2021.1.0 + 5.3.14 + 1.4.0 + 5.5.7 + 2.8.1 + 2.3.5.RELEASE + 2.0.5.RELEASE + 1.3.1 + 5.6.1 + 2021.1.1 + 3.1.2 + 3.36.0.3 + 1.6.7 + 2.0.1 + 3.0.4.RELEASE + 3.0.4.RELEASE + 3.0.0 + 3.0.14.RELEASE + 9.0.56 + 4.0.14 + 2.2.14.Final + 2.8.1 + 0.48 + 1.6.3 + 1.0.2 + 2.8.4 + + + + + org.spingframwork + spring-core + 4.0.0.RELEASE + + + org.springframework + spring-beans + 4.0.0.RELEASE + + + org.springframework + spring-context + 4.0.0.RELEASE + + + org.springframework + spring-expression + 4.0.0.RELEASE + + + org.springframework + spring-aop + 4.0.0.RELEASE + + + org.apache.activemq + activemq-amqp + 5.16.3 + + + org.apache.activemq + activemq-blueprint + 5.16.3 + + + org.apache.activemq + activemq-broker + 5.16.3 + + + org.apache.activemq + activemq-camel + 5.16.3 + + + org.apache.activemq + activemq-client + 5.16.3 + + + org.apache.activemq + activemq-console + 5.16.3 + + + commons-logging + commons-logging + + + + + org.apache.activemq + activemq-http + 5.16.3 + + + org.apache.activemq + activemq-jaas + 5.16.3 + + + org.apache.activemq + activemq-jdbc-store + 5.16.3 + + + org.apache.activemq + activemq-jms-pool + 5.16.3 + + + org.apache.activemq + activemq-kahadb-store + 5.16.3 + + + org.apache.activemq + activemq-karaf + 5.16.3 + + + org.apache.activemq + activemq-leveldb-store + 5.16.3 + + + commons-logging + commons-logging + + + + + org.apache.activemq + activemq-log4j-appender + 5.16.3 + + + org.apache.activemq + activemq-mqtt + 5.16.3 + + + org.apache.activemq + activemq-openwire-generator + 5.16.3 + + + org.apache.activemq + activemq-openwire-legacy + 5.16.3 + + + org.apache.activemq + activemq-osgi + 5.16.3 + + + org.apache.activemq + activemq-partition + 5.16.3 + + + org.apache.activemq + activemq-pool + 5.16.3 + + + org.apache.activemq + activemq-ra + 5.16.3 + + + org.apache.activemq + activemq-run + 5.16.3 + + + org.apache.activemq + activemq-runtime-config + 5.16.3 + + + org.apache.activemq + activemq-shiro + 5.16.3 + + + org.apache.activemq + activemq-spring + 5.16.3 + + + commons-logging + commons-logging + + + + + org.apache.activemq + activemq-stomp + 5.16.3 + + + org.apache.activemq + activemq-web + 5.16.3 + + + antlr + antlr + 2.7.7 + + + com.google.appengine + appengine-api-1.0-sdk + 1.9.93 + + + org.apache.activemq + artemis-amqp-protocol + 2.19.0 + + + org.apache.activemq + artemis-commons + 2.19.0 + + + commons-logging + commons-logging + + + + + org.apache.activemq + artemis-core-client + 2.19.0 + + + geronimo-json_1.0_spec + org.apache.geronimo.specs + + + + + org.apache.activemq + artemis-jms-client + 2.19.0 + + + geronimo-json_1.0_spec + org.apache.geronimo.specs + + + + + org.apache.activemq + artemis-jms-server + 2.19.0 + + + geronimo-json_1.0_spec + org.apache.geronimo.specs + + + + + org.apache.activemq + artemis-journal + 2.19.0 + + + org.apache.activemq + artemis-selector + 2.19.0 + + + org.apache.activemq + artemis-server + 2.19.0 + + + commons-logging + commons-logging + + + geronimo-json_1.0_spec + org.apache.geronimo.specs + + + + + org.apache.activemq + artemis-service-extensions + 2.19.0 + + + org.aspectj + aspectjrt + 1.9.7 + + + org.aspectj + aspectjtools + 1.9.7 + + + org.aspectj + aspectjweaver + 1.9.7 + + + org.assertj + assertj-core + 3.21.0 + + + com.atomikos + transactions-jdbc + 4.0.6 + + + com.atomikos + transactions-jms + 4.0.6 + + + com.atomikos + transactions-jta + 4.0.6 + + + org.awaitility + awaitility + 4.1.1 + + + org.awaitility + awaitility-groovy + 4.1.1 + + + org.awaitility + awaitility-kotlin + 4.1.1 + + + org.awaitility + awaitility-scala + 4.1.1 + + + net.bytebuddy + byte-buddy + 1.11.22 + + + net.bytebuddy + byte-buddy-agent + 1.11.22 + + + com.github.ben-manes.caffeine + caffeine + 2.9.3 + + + com.github.ben-manes.caffeine + guava + 2.9.3 + + + com.github.ben-manes.caffeine + jcache + 2.9.3 + + + com.github.ben-manes.caffeine + simulator + 2.9.3 + + + com.datastax.oss + java-driver-core + 4.13.0 + + + jcl-over-slf4j + org.slf4j + + + + + com.fasterxml + classmate + 1.5.1 + + + commons-codec + commons-codec + 1.15 + + + org.apache.commons + commons-dbcp2 + 2.9.0 + + + commons-logging + commons-logging + + + + + org.apache.commons + commons-lang3 + 3.12.0 + + + commons-pool + commons-pool + 1.6 + + + org.apache.commons + commons-pool2 + 2.11.1 + + + com.couchbase.client + java-client + 3.2.4 + + + com.ibm.db2 + jcc + 11.5.7.0 + + + io.spring.gradle + dependency-management-plugin + 1.0.11.RELEASE + + + org.apache.derby + derby + 10.14.2.0 + + + org.apache.derby + derbyclient + 10.14.2.0 + + + net.sf.ehcache + ehcache + 2.10.9.2 + + + org.ehcache + ehcache + 3.9.9 + + + org.ehcache + ehcache-clustered + 3.9.9 + + + org.ehcache + ehcache-transactions + 3.9.9 + + + org.elasticsearch + elasticsearch + 7.15.2 + + + org.elasticsearch.client + transport + 7.15.2 + + + org.elasticsearch.client + elasticsearch-rest-client + 7.15.2 + + + commons-logging + commons-logging + + + + + org.elasticsearch.client + elasticsearch-rest-client-sniffer + 7.15.2 + + + commons-logging + commons-logging + + + + + org.elasticsearch.client + elasticsearch-rest-high-level-client + 7.15.2 + + + org.elasticsearch.distribution.integ-test-zip + elasticsearch + 7.15.2 + zip + + + org.elasticsearch.plugin + transport-netty4-client + 7.15.2 + + + de.flapdoodle.embed + de.flapdoodle.embed.mongo + 3.0.0 + + + org.flywaydb + flyway-core + 8.0.5 + + + org.freemarker + freemarker + 2.3.31 + + + org.glassfish + jakarta.el + 3.0.4 + + + org.glassfish.jaxb + codemodel + 2.3.5 + + + org.glassfish.jaxb + codemodel-annotation-compiler + 2.3.5 + + + org.glassfish.jaxb + jaxb-jxc + 2.3.5 + + + org.glassfish.jaxb + jaxb-runtime + 2.3.5 + + + org.glassfish.jaxb + jaxb-xjc + 2.3.5 + + + org.glassfish.jaxb + txw2 + 2.3.5 + + + org.glassfish.jaxb + txwc2 + 2.3.5 + + + org.glassfish.jaxb + xsom + 2.3.5 + + + org.glassfish.web + jakarta.servlet.jsp.jstl + 1.2.6 + + + com.google.code.gson + gson + 2.8.9 + + + com.h2database + h2 + 1.4.200 + + + org.hamcrest + hamcrest + 2.2 + + + org.hamcrest + hamcrest-core + 2.2 + + + org.hamcrest + hamcrest-library + 2.2 + + + com.hazelcast + hazelcast + 4.2.4 + + + com.hazelcast + hazelcast-spring + 4.2.4 + + + com.hazelcast + hazelcast-hibernate52 + 2.2.1 + + + com.hazelcast + hazelcast-hibernate53 + 2.2.1 + + + org.hibernate + hibernate-c3p0 + 5.6.3.Final + + + org.hibernate + hibernate-core + 5.6.3.Final + + + org.hibernate + hibernate-ehcache + 5.6.3.Final + + + org.hibernate + hibernate-entitymanager + 5.6.3.Final + + + org.hibernate + hibernate-envers + 5.6.3.Final + + + org.hibernate + hibernate-hikaricp + 5.6.3.Final + + + org.hibernate + hibernate-java8 + 5.6.3.Final + + + org.hibernate + hibernate-jcache + 5.6.3.Final + + + org.hibernate + hibernate-jpamodelgen + 5.6.3.Final + + + org.hibernate + hibernate-micrometer + 5.6.3.Final + + + org.hibernate + hibernate-proxool + 5.6.3.Final + + + org.hibernate + hibernate-spatial + 5.6.3.Final + + + org.hibernate + hibernate-testing + 5.6.3.Final + + + org.hibernate + hibernate-vibur + 5.6.3.Final + + + org.hibernate.validator + hibernate-validator + 6.2.0.Final + + + org.hibernate.validator + hibernate-validator-annotation-processor + 6.2.0.Final + + + com.zaxxer + HikariCP + 4.0.3 + + + org.hsqldb + hsqldb + 2.5.2 + + + net.sourceforge.htmlunit + htmlunit + 2.54.0 + + + commons-logging + commons-logging + + + + + org.apache.httpcomponents + httpasyncclient + 4.1.5 + + + commons-logging + commons-logging + + + + + org.apache.httpcomponents + fluent-hc + 4.5.13 + + + org.apache.httpcomponents + httpclient + 4.5.13 + + + commons-logging + commons-logging + + + + + org.apache.httpcomponents + httpclient-cache + 4.5.13 + + + org.apache.httpcomponents + httpclient-osgi + 4.5.13 + + + org.apache.httpcomponents + httpclient-win + 4.5.13 + + + org.apache.httpcomponents + httpmime + 4.5.13 + + + org.apache.httpcomponents.client5 + httpclient5 + 5.1.2 + + + org.apache.httpcomponents.client5 + httpclient5-cache + 5.1.2 + + + org.apache.httpcomponents.client5 + httpclient5-fluent + 5.1.2 + + + org.apache.httpcomponents.client5 + httpclient5-win + 5.1.2 + + + org.apache.httpcomponents + httpcore + 4.4.15 + + + org.apache.httpcomponents + httpcore-nio + 4.4.15 + + + org.apache.httpcomponents.core5 + httpcore5 + 5.1.2 + + + org.apache.httpcomponents.core5 + httpcore5-h2 + 5.1.2 + + + org.apache.httpcomponents.core5 + httpcore5-reactive + 5.1.2 + + + org.influxdb + influxdb-java + 2.22 + + + com.sun.activation + jakarta.activation + 1.2.2 + + + jakarta.activation + jakarta.activation-api + 1.2.2 + + + jakarta.annotation + jakarta.annotation-api + 1.3.5 + + + jakarta.jms + jakarta.jms-api + 2.0.3 + + + jakarta.json + jakarta.json-api + 1.1.6 + + + jakarta.json.bind + jakarta.json.bind-api + 1.0.2 + + + jakarta.mail + jakarta.mail-api + 1.6.7 + + + jakarta.management.j2ee + jakarta.management.j2ee-api + 1.1.4 + + + jakarta.persistence + jakarta.persistence-api + 2.2.3 + + + jakarta.servlet + jakarta.servlet-api + 4.0.4 + + + jakarta.servlet.jsp.jstl + jakarta.servlet.jsp.jstl-api + 1.2.7 + + + jakarta.transaction + jakarta.transaction-api + 1.3.3 + + + jakarta.validation + jakarta.validation-api + 2.0.2 + + + jakarta.websocket + jakarta.websocket-api + 1.1.2 + + + jakarta.ws.rs + jakarta.ws.rs-api + 2.1.6 + + + jakarta.xml.bind + jakarta.xml.bind-api + 2.3.3 + + + jakarta.xml.soap + jakarta.xml.soap-api + 1.4.2 + + + jakarta.xml.ws + jakarta.xml.ws-api + 2.3.3 + + + org.codehaus.janino + commons-compiler + 3.1.6 + + + org.codehaus.janino + commons-compiler-jdk + 3.1.6 + + + org.codehaus.janino + janino + 3.1.6 + + + javax.activation + javax.activation-api + 1.2.0 + + + javax.annotation + javax.annotation-api + 1.3.2 + + + javax.cache + cache-api + 1.1.1 + + + javax.xml.bind + jaxb-api + 2.3.1 + + + javax.xml.ws + jaxws-api + 2.3.1 + + + javax.jms + javax.jms-api + 2.0.1 + + + javax.json + javax.json-api + 1.1.4 + + + javax.json.bind + javax.json.bind-api + 1.0 + + + javax.mail + javax.mail-api + 1.6.2 + + + javax.money + money-api + 1.1 + + + javax.persistence + javax.persistence-api + 2.2 + + + javax.transaction + javax.transaction-api + 1.3 + + + javax.validation + validation-api + 2.0.1.Final + + + javax.websocket + javax.websocket-api + 1.1 + + + jaxen + jaxen + 1.2.0 + + + org.firebirdsql.jdbc + jaybird + 4.0.4.java8 + + + org.firebirdsql.jdbc + jaybird-jdk18 + 4.0.4.java8 + + + org.jboss.logging + jboss-logging + 3.4.2.Final + + + org.jdom + jdom2 + 2.0.6.1 + + + redis.clients + jedis + 3.7.1 + + + org.mortbay.jasper + apache-el + 9.0.52 + + + org.eclipse.jetty.orbit + javax.servlet.jsp + 2.2.0.v201112011158 + + + org.eclipse.jetty + jetty-reactive-httpclient + 1.1.10 + + + com.samskivert + jmustache + 1.15 + + + org.apache.johnzon + johnzon-core + 1.2.15 + + + org.apache.johnzon + johnzon-jaxrs + 1.2.15 + + + org.apache.johnzon + johnzon-jsonb + 1.2.15 + + + org.apache.johnzon + johnzon-jsonb-extras + 1.2.15 + + + org.apache.johnzon + johnzon-jsonschema + 1.2.15 + + + org.apache.johnzon + johnzon-mapper + 1.2.15 + + + org.apache.johnzon + johnzon-websocket + 1.2.15 + + + org.jolokia + jolokia-core + 1.7.1 + + + org.jooq + jooq + 3.14.15 + + + org.jooq + jooq-codegen + 3.14.15 + + + org.jooq + jooq-kotlin + 3.14.15 + + + org.jooq + jooq-meta + 3.14.15 + + + com.jayway.jsonpath + json-path + 2.6.0 + + + com.jayway.jsonpath + json-path-assert + 2.6.0 + + + net.minidev + json-smart + 2.4.7 + + + org.skyscreamer + jsonassert + 1.5.0 + + + javax.servlet + jstl + 1.2 + + + net.sourceforge.jtds + jtds + 1.3.1 + + + junit + junit + 4.13.2 + + + org.apache.kafka + connect-api + 3.0.0 + + + org.apache.kafka + connect-basic-auth-extension + 3.0.0 + + + org.apache.kafka + connect-file + 3.0.0 + + + org.apache.kafka + connect-json + 3.0.0 + + + org.apache.kafka + connect-runtime + 3.0.0 + + + org.apache.kafka + connect-transforms + 3.0.0 + + + org.apache.kafka + kafka-clients + 3.0.0 + + + org.apache.kafka + kafka-metadata + 3.0.0 + + + org.apache.kafka + kafka-log4j-appender + 3.0.0 + + + org.apache.kafka + kafka-streams + 3.0.0 + + + org.apache.kafka + kafka-streams-scala_2.12 + 3.0.0 + + + org.apache.kafka + kafka-streams-scala_2.13 + 3.0.0 + + + org.apache.kafka + kafka-streams-test-utils + 3.0.0 + + + org.apache.kafka + kafka-tools + 3.0.0 + + + org.apache.kafka + kafka_2.12 + 3.0.0 + + + org.apache.kafka + kafka_2.13 + 3.0.0 + + + io.lettuce + lettuce-core + 6.1.5.RELEASE + + + org.liquibase + liquibase-core + 4.5.0 + + + ch.qos.logback + logback-access + 1.2.9 + + + ch.qos.logback + logback-classic + 1.2.9 + + + ch.qos.logback + logback-core + 1.2.9 + + + org.projectlombok + lombok + 1.18.22 + + + org.mariadb.jdbc + mariadb-java-client + 2.7.4 + + + io.micrometer + micrometer-registry-stackdriver + 1.8.1 + + + javax.annotation-api + javax.annotation + + + + + org.jvnet.mimepull + mimepull + 1.9.15 + + + org.mockito + mockito-core + 4.0.0 + + + org.mockito + mockito-inline + 4.0.0 + + + org.mockito + mockito-junit-jupiter + 4.0.0 + + + org.mongodb + bson + 4.4.0 + + + org.mongodb + mongodb-driver-core + 4.4.0 + + + org.mongodb + mongodb-driver-legacy + 4.4.0 + + + org.mongodb + mongodb-driver-reactivestreams + 4.4.0 + + + org.mongodb + mongodb-driver-sync + 4.4.0 + + + com.microsoft.sqlserver + mssql-jdbc + 9.4.1.jre8 + + + mysql + mysql-connector-java + 8.0.27 + + + protobuf-java + com.google.protobuf + + + + + net.sourceforge.nekohtml + nekohtml + 1.9.22 + + + org.neo4j.driver + neo4j-java-driver + 4.3.6 + + + io.netty + netty-tcnative + 2.0.46.Final + + + io.netty + netty-tcnative-boringssl-static + 2.0.46.Final + + + com.squareup.okhttp3 + logging-interceptor + 3.14.9 + + + com.squareup.okhttp3 + mockwebserver + 3.14.9 + + + com.squareup.okhttp3 + okcurl + 3.14.9 + + + com.squareup.okhttp3 + okhttp + 3.14.9 + + + com.squareup.okhttp3 + okhttp-dnsoverhttps + 3.14.9 + + + com.squareup.okhttp3 + okhttp-sse + 3.14.9 + + + com.squareup.okhttp3 + okhttp-testing-support + 3.14.9 + + + com.squareup.okhttp3 + okhttp-tls + 3.14.9 + + + com.squareup.okhttp3 + okhttp-urlconnection + 3.14.9 + + + org.messaginghub + pooled-jms + 1.2.2 + + + org.postgresql + postgresql + 42.3.1 + + + org.quartz-scheduler + quartz + 2.3.2 + + + c3p0 + com.mchange + + + * + com.zaxxer + + + + + org.quartz-scheduler + quartz-jobs + 2.3.2 + + + com.rabbitmq + amqp-client + 5.13.1 + + + com.rabbitmq + stream-client + 0.4.0 + + + org.reactivestreams + reactive-streams + 1.0.3 + + + io.rest-assured + json-path + 4.4.0 + + + io.rest-assured + json-schema-validator + 4.4.0 + + + io.rest-assured + rest-assured + 4.4.0 + + + io.rest-assured + scala-support + 4.4.0 + + + io.rest-assured + spring-mock-mvc + 4.4.0 + + + io.rest-assured + spring-web-test-client + 4.4.0 + + + io.rest-assured + xml-path + 4.4.0 + + + io.reactivex + rxjava + 1.3.8 + + + io.reactivex + rxjava-reactive-streams + 1.2.1 + + + io.reactivex.rxjava2 + rxjava + 2.2.21 + + + org.springframework.boot + spring-boot + 2.6.2 + + + org.springframework.boot + spring-boot-test + 2.6.2 + + + org.springframework.boot + spring-boot-test-autoconfigure + 2.6.2 + + + org.springframework.boot + spring-boot-actuator + 2.6.2 + + + org.springframework.boot + spring-boot-actuator-autoconfigure + 2.6.2 + + + org.springframework.boot + spring-boot-autoconfigure + 2.6.2 + + + org.springframework.boot + spring-boot-autoconfigure-processor + 2.6.2 + + + org.springframework.boot + spring-boot-buildpack-platform + 2.6.2 + + + org.springframework.boot + spring-boot-configuration-metadata + 2.6.2 + + + org.springframework.boot + spring-boot-configuration-processor + 2.6.2 + + + org.springframework.boot + spring-boot-devtools + 2.6.2 + + + org.springframework.boot + spring-boot-jarmode-layertools + 2.6.2 + + + org.springframework.boot + spring-boot-loader + 2.6.2 + + + org.springframework.boot + spring-boot-loader-tools + 2.6.2 + + + org.springframework.boot + spring-boot-properties-migrator + 2.6.2 + + + org.springframework.boot + spring-boot-starter + 2.6.2 + + + org.springframework.boot + spring-boot-starter-activemq + 2.6.2 + + + org.springframework.boot + spring-boot-starter-actuator + 2.6.2 + + + org.springframework.boot + spring-boot-starter-amqp + 2.6.2 + + + org.springframework.boot + spring-boot-starter-aop + 2.6.2 + + + org.springframework.boot + spring-boot-starter-artemis + 2.6.2 + + + org.springframework.boot + spring-boot-starter-batch + 2.6.2 + + + org.springframework.boot + spring-boot-starter-cache + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-cassandra + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-cassandra-reactive + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-couchbase + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-couchbase-reactive + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-elasticsearch + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-jdbc + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-jpa + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-ldap + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-mongodb + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-mongodb-reactive + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-r2dbc + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-redis + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-redis-reactive + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-neo4j + 2.6.2 + + + org.springframework.boot + spring-boot-starter-data-rest + 2.6.2 + + + org.springframework.boot + spring-boot-starter-freemarker + 2.6.2 + + + org.springframework.boot + spring-boot-starter-groovy-templates + 2.6.2 + + + org.springframework.boot + spring-boot-starter-hateoas + 2.6.2 + + + org.springframework.boot + spring-boot-starter-integration + 2.6.2 + + + org.springframework.boot + spring-boot-starter-jdbc + 2.6.2 + + + org.springframework.boot + spring-boot-starter-jersey + 2.6.2 + + + org.springframework.boot + spring-boot-starter-jetty + 2.6.2 + + + org.springframework.boot + spring-boot-starter-jooq + 2.6.2 + + + org.springframework.boot + spring-boot-starter-json + 2.6.2 + + + org.springframework.boot + spring-boot-starter-jta-atomikos + 2.6.2 + + + org.springframework.boot + spring-boot-starter-log4j2 + 2.6.2 + + + org.springframework.boot + spring-boot-starter-logging + 2.6.2 + + + org.springframework.boot + spring-boot-starter-mail + 2.6.2 + + + org.springframework.boot + spring-boot-starter-mustache + 2.6.2 + + + org.springframework.boot + spring-boot-starter-oauth2-client + 2.6.2 + + + org.springframework.boot + spring-boot-starter-oauth2-resource-server + 2.6.2 + + + org.springframework.boot + spring-boot-starter-quartz + 2.6.2 + + + org.springframework.boot + spring-boot-starter-reactor-netty + 2.6.2 + + + org.springframework.boot + spring-boot-starter-rsocket + 2.6.2 + + + org.springframework.boot + spring-boot-starter-security + 2.6.2 + + + org.springframework.boot + spring-boot-starter-test + 2.6.2 + + + org.springframework.boot + spring-boot-starter-thymeleaf + 2.6.2 + + + org.springframework.boot + spring-boot-starter-tomcat + 2.6.2 + + + org.springframework.boot + spring-boot-starter-undertow + 2.6.2 + + + org.springframework.boot + spring-boot-starter-validation + 2.6.2 + + + org.springframework.boot + spring-boot-starter-web + 2.6.2 + + + org.springframework.boot + spring-boot-starter-webflux + 2.6.2 + + + org.springframework.boot + spring-boot-starter-websocket + 2.6.2 + + + org.springframework.boot + spring-boot-starter-web-services + 2.6.2 + + + com.sun.xml.messaging.saaj + saaj-impl + 1.5.3 + + + org.seleniumhq.selenium + selenium-api + 3.141.59 + + + org.seleniumhq.selenium + selenium-chrome-driver + 3.141.59 + + + org.seleniumhq.selenium + selenium-edge-driver + 3.141.59 + + + org.seleniumhq.selenium + selenium-firefox-driver + 3.141.59 + + + org.seleniumhq.selenium + selenium-ie-driver + 3.141.59 + + + org.seleniumhq.selenium + selenium-java + 3.141.59 + + + org.seleniumhq.selenium + selenium-opera-driver + 3.141.59 + + + org.seleniumhq.selenium + selenium-remote-driver + 3.141.59 + + + org.seleniumhq.selenium + selenium-safari-driver + 3.141.59 + + + org.seleniumhq.selenium + selenium-support + 3.141.59 + + + org.seleniumhq.selenium + htmlunit-driver + 2.54.0 + + + com.sendgrid + sendgrid-java + 4.7.6 + + + javax.servlet + javax.servlet-api + 4.0.1 + + + org.slf4j + jcl-over-slf4j + 1.7.32 + + + org.slf4j + jul-to-slf4j + 1.7.32 + + + org.slf4j + log4j-over-slf4j + 1.7.32 + + + org.slf4j + slf4j-api + 1.7.32 + + + org.slf4j + slf4j-ext + 1.7.32 + + + org.slf4j + slf4j-jcl + 1.7.32 + + + org.slf4j + slf4j-jdk14 + 1.7.32 + + + org.slf4j + slf4j-log4j12 + 1.7.32 + + + org.slf4j + slf4j-nop + 1.7.32 + + + org.slf4j + slf4j-simple + 1.7.32 + + + org.yaml + snakeyaml + 1.29 + + + org.apache.solr + solr-analysis-extras + 8.8.2 + + + org.apache.solr + solr-analytics + 8.8.2 + + + org.apache.solr + solr-cell + 8.8.2 + + + org.apache.solr + solr-core + 8.8.2 + + + org.apache.solr + solr-dataimporthandler + 8.8.2 + + + org.apache.solr + solr-dataimporthandler-extras + 8.8.2 + + + org.apache.solr + solr-langid + 8.8.2 + + + org.apache.solr + solr-ltr + 8.8.2 + + + org.apache.solr + solr-solrj + 8.8.2 + + + jcl-over-slf4j + org.slf4j + + + + + org.apache.solr + solr-test-framework + 8.8.2 + + + org.apache.solr + solr-velocity + 8.8.2 + + + org.springframework.amqp + spring-amqp + 2.4.1 + + + org.springframework.amqp + spring-rabbit + 2.4.1 + + + org.springframework.amqp + spring-rabbit-stream + 2.4.1 + + + org.springframework.amqp + spring-rabbit-junit + 2.4.1 + + + org.springframework.amqp + spring-rabbit-test + 2.4.1 + + + org.springframework.batch + spring-batch-core + 4.3.4 + + + org.springframework.batch + spring-batch-infrastructure + 4.3.4 + + + org.springframework.batch + spring-batch-integration + 4.3.4 + + + org.springframework.batch + spring-batch-test + 4.3.4 + + + org.springframework.hateoas + spring-hateoas + 1.4.0 + + + org.springframework.kafka + spring-kafka + 2.8.1 + + + org.springframework.kafka + spring-kafka-test + 2.8.1 + + + org.springframework.ldap + spring-ldap-core + 2.3.5.RELEASE + + + org.springframework.ldap + spring-ldap-core-tiger + 2.3.5.RELEASE + + + org.springframework.ldap + spring-ldap-ldif-batch + 2.3.5.RELEASE + + + org.springframework.ldap + spring-ldap-ldif-core + 2.3.5.RELEASE + + + org.springframework.ldap + spring-ldap-odm + 2.3.5.RELEASE + + + org.springframework.ldap + spring-ldap-test + 2.3.5.RELEASE + + + org.springframework.restdocs + spring-restdocs-asciidoctor + 2.0.5.RELEASE + + + org.springframework.restdocs + spring-restdocs-core + 2.0.5.RELEASE + + + org.springframework.restdocs + spring-restdocs-mockmvc + 2.0.5.RELEASE + + + org.springframework.restdocs + spring-restdocs-restassured + 2.0.5.RELEASE + + + org.springframework.restdocs + spring-restdocs-webtestclient + 2.0.5.RELEASE + + + org.springframework.retry + spring-retry + 1.3.1 + + + org.springframework.ws + spring-ws-core + 3.1.2 + + + org.springframework.ws + spring-ws-security + 3.1.2 + + + org.springframework.ws + spring-ws-support + 3.1.2 + + + org.springframework.ws + spring-ws-test + 3.1.2 + + + org.springframework.ws + spring-xml + 3.1.2 + + + org.xerial + sqlite-jdbc + 3.36.0.3 + + + com.sun.mail + jakarta.mail + 1.6.7 + + + org.thymeleaf + thymeleaf + 3.0.14.RELEASE + + + org.thymeleaf + thymeleaf-spring5 + 3.0.14.RELEASE + + + com.github.mxab.thymeleaf.extras + thymeleaf-extras-data-attribute + 2.0.1 + + + org.thymeleaf.extras + thymeleaf-extras-java8time + 3.0.4.RELEASE + + + org.thymeleaf.extras + thymeleaf-extras-springsecurity5 + 3.0.4.RELEASE + + + nz.net.ultraq.thymeleaf + thymeleaf-layout-dialect + 3.0.0 + + + org.apache.tomcat + tomcat-annotations-api + 9.0.56 + + + org.apache.tomcat + tomcat-jdbc + 9.0.56 + + + org.apache.tomcat + tomcat-jsp-api + 9.0.56 + + + org.apache.tomcat.embed + tomcat-embed-core + 9.0.56 + + + org.apache.tomcat.embed + tomcat-embed-el + 9.0.56 + + + org.apache.tomcat.embed + tomcat-embed-jasper + 9.0.56 + + + org.apache.tomcat.embed + tomcat-embed-websocket + 9.0.56 + + + com.unboundid + unboundid-ldapsdk + 4.0.14 + + + io.undertow + undertow-core + 2.2.14.Final + + + io.undertow + undertow-servlet + 2.2.14.Final + + + io.undertow + undertow-websockets-jsr + 2.2.14.Final + + + org.webjars + webjars-locator-core + 0.48 + + + wsdl4j + wsdl4j + 1.6.3 + + + org.xmlunit + xmlunit-assertj + 2.8.4 + + + org.xmlunit + xmlunit-core + 2.8.4 + + + org.xmlunit + xmlunit-legacy + 2.8.4 + + + org.xmlunit + xmlunit-matchers + 2.8.4 + + + org.xmlunit + xmlunit-placeholders + 2.8.4 + + + com.datastax.oss + java-driver-core-shaded + 4.13.0 + + + com.datastax.oss + java-driver-mapper-processor + 4.13.0 + + + com.datastax.oss + java-driver-mapper-runtime + 4.13.0 + + + com.datastax.oss + java-driver-query-builder + 4.13.0 + + + com.datastax.oss + java-driver-test-infra + 4.13.0 + + + com.datastax.oss + java-driver-metrics-micrometer + 4.13.0 + + + com.datastax.oss + java-driver-metrics-microprofile + 4.13.0 + + + com.datastax.oss + native-protocol + 1.5.0 + + + com.datastax.oss + java-driver-shaded-guava + 25.1-jre-graal-sub-1 + + + io.dropwizard.metrics + metrics-annotation + 4.2.7 + + + io.dropwizard.metrics + metrics-caffeine + 4.2.7 + + + io.dropwizard.metrics + metrics-caffeine3 + 4.2.7 + + + io.dropwizard.metrics + metrics-core + 4.2.7 + + + io.dropwizard.metrics + metrics-collectd + 4.2.7 + + + io.dropwizard.metrics + metrics-ehcache + 4.2.7 + + + io.dropwizard.metrics + metrics-graphite + 4.2.7 + + + io.dropwizard.metrics + metrics-healthchecks + 4.2.7 + + + io.dropwizard.metrics + metrics-httpclient + 4.2.7 + + + io.dropwizard.metrics + metrics-httpclient5 + 4.2.7 + + + io.dropwizard.metrics + metrics-httpasyncclient + 4.2.7 + + + io.dropwizard.metrics + metrics-jakarta-servlet + 4.2.7 + + + io.dropwizard.metrics + metrics-jakarta-servlets + 4.2.7 + + + io.dropwizard.metrics + metrics-jcache + 4.2.7 + + + io.dropwizard.metrics + metrics-jdbi + 4.2.7 + + + io.dropwizard.metrics + metrics-jdbi3 + 4.2.7 + + + io.dropwizard.metrics + metrics-jersey2 + 4.2.7 + + + io.dropwizard.metrics + metrics-jersey3 + 4.2.7 + + + io.dropwizard.metrics + metrics-jetty9 + 4.2.7 + + + io.dropwizard.metrics + metrics-jetty10 + 4.2.7 + + + io.dropwizard.metrics + metrics-jetty11 + 4.2.7 + + + io.dropwizard.metrics + metrics-jmx + 4.2.7 + + + io.dropwizard.metrics + metrics-json + 4.2.7 + + + io.dropwizard.metrics + metrics-jvm + 4.2.7 + + + io.dropwizard.metrics + metrics-log4j2 + 4.2.7 + + + io.dropwizard.metrics + metrics-logback + 4.2.7 + + + io.dropwizard.metrics + metrics-servlet + 4.2.7 + + + io.dropwizard.metrics + metrics-servlets + 4.2.7 + + + org.codehaus.groovy + groovy + 3.0.9 + + + org.codehaus.groovy + groovy-ant + 3.0.9 + + + org.codehaus.groovy + groovy-astbuilder + 3.0.9 + + + org.codehaus.groovy + groovy-bsf + 3.0.9 + + + org.codehaus.groovy + groovy-cli-commons + 3.0.9 + + + org.codehaus.groovy + groovy-cli-picocli + 3.0.9 + + + org.codehaus.groovy + groovy-console + 3.0.9 + + + org.codehaus.groovy + groovy-datetime + 3.0.9 + + + org.codehaus.groovy + groovy-dateutil + 3.0.9 + + + org.codehaus.groovy + groovy-docgenerator + 3.0.9 + + + org.codehaus.groovy + groovy-groovydoc + 3.0.9 + + + org.codehaus.groovy + groovy-groovysh + 3.0.9 + + + org.codehaus.groovy + groovy-jaxb + 3.0.9 + + + org.codehaus.groovy + groovy-jmx + 3.0.9 + + + org.codehaus.groovy + groovy-json + 3.0.9 + + + org.codehaus.groovy + groovy-jsr223 + 3.0.9 + + + org.codehaus.groovy + groovy-macro + 3.0.9 + + + org.codehaus.groovy + groovy-nio + 3.0.9 + + + org.codehaus.groovy + groovy-servlet + 3.0.9 + + + org.codehaus.groovy + groovy-sql + 3.0.9 + + + org.codehaus.groovy + groovy-swing + 3.0.9 + + + org.codehaus.groovy + groovy-templates + 3.0.9 + + + org.codehaus.groovy + groovy-test + 3.0.9 + + + org.codehaus.groovy + groovy-test-junit5 + 3.0.9 + + + org.codehaus.groovy + groovy-testng + 3.0.9 + + + org.codehaus.groovy + groovy-xml + 3.0.9 + + + org.codehaus.groovy + groovy-yaml + 3.0.9 + + + org.infinispan + infinispan-api + 12.1.10.Final + + + org.infinispan + infinispan-cachestore-jdbc + 12.1.10.Final + + + org.infinispan + infinispan-cachestore-jpa + 12.1.10.Final + + + org.infinispan + infinispan-cachestore-remote + 12.1.10.Final + + + org.infinispan + infinispan-cachestore-rocksdb + 12.1.10.Final + + + org.infinispan + infinispan-cdi-common + 12.1.10.Final + + + org.infinispan + infinispan-cdi-embedded + 12.1.10.Final + + + org.infinispan + infinispan-cdi-remote + 12.1.10.Final + + + org.infinispan + infinispan-checkstyle + 12.1.10.Final + + + org.infinispan + infinispan-cli-client + 12.1.10.Final + + + org.infinispan + infinispan-client-hotrod + 12.1.10.Final + + + org.infinispan + infinispan-client-rest + 12.1.10.Final + + + org.infinispan + infinispan-key-value-store-client + 12.1.10.Final + + + org.infinispan + infinispan-clustered-counter + 12.1.10.Final + + + org.infinispan + infinispan-clustered-lock + 12.1.10.Final + + + org.infinispan + infinispan-commons + 12.1.10.Final + + + org.infinispan + infinispan-commons-test + 12.1.10.Final + + + org.infinispan + infinispan-component-annotations + 12.1.10.Final + provided + + + org.infinispan + infinispan-component-processor + 12.1.10.Final + + + org.infinispan + infinispan-core + 12.1.10.Final + + + org.infinispan + infinispan-jboss-marshalling + 12.1.10.Final + + + org.infinispan + infinispan-extended-statistics + 12.1.10.Final + + + org.infinispan + infinispan-hibernate-cache-commons + 12.1.10.Final + + + org.infinispan + infinispan-hibernate-cache-spi + 12.1.10.Final + + + org.infinispan + infinispan-hibernate-cache-v51 + 12.1.10.Final + + + org.infinispan + infinispan-hibernate-cache-v53 + 12.1.10.Final + + + org.infinispan + infinispan-jcache-commons + 12.1.10.Final + + + org.infinispan + infinispan-jcache + 12.1.10.Final + + + org.infinispan + infinispan-jcache-remote + 12.1.10.Final + + + org.infinispan + infinispan-console + 0.14.3.Final + + + org.infinispan + infinispan-marshaller-kryo + 12.1.10.Final + + + org.infinispan + infinispan-marshaller-kryo-bundle + 12.1.10.Final + + + org.infinispan + infinispan-marshaller-protostuff + 12.1.10.Final + + + org.infinispan + infinispan-marshaller-protostuff-bundle + 12.1.10.Final + + + org.infinispan + infinispan-multimap + 12.1.10.Final + + + org.infinispan + infinispan-objectfilter + 12.1.10.Final + + + org.infinispan + infinispan-persistence-soft-index + 12.1.10.Final + + + org.infinispan + infinispan-query-core + 12.1.10.Final + + + org.infinispan + infinispan-query + 12.1.10.Final + + + org.infinispan + infinispan-query-dsl + 12.1.10.Final + + + org.infinispan + infinispan-remote-query-client + 12.1.10.Final + + + org.infinispan + infinispan-remote-query-server + 12.1.10.Final + + + org.infinispan + infinispan-scripting + 12.1.10.Final + + + org.infinispan + infinispan-server-core + 12.1.10.Final + + + org.infinispan + infinispan-server-hotrod + 12.1.10.Final + + + org.infinispan + infinispan-server-memcached + 12.1.10.Final + + + org.infinispan + infinispan-server-rest + 12.1.10.Final + + + org.infinispan + infinispan-server-router + 12.1.10.Final + + + org.infinispan + infinispan-server-runtime + 12.1.10.Final + + + org.infinispan + infinispan-server-testdriver-core + 12.1.10.Final + + + org.infinispan + infinispan-server-testdriver-junit4 + 12.1.10.Final + + + org.infinispan + infinispan-server-testdriver-junit5 + 12.1.10.Final + + + org.infinispan + infinispan-spring5-common + 12.1.10.Final + + + org.infinispan + infinispan-spring5-embedded + 12.1.10.Final + + + org.infinispan + infinispan-spring5-remote + 12.1.10.Final + + + org.infinispan + infinispan-spring-boot-starter-embedded + 12.1.10.Final + + + org.infinispan + infinispan-spring-boot-starter-remote + 12.1.10.Final + + + org.infinispan + infinispan-tasks + 12.1.10.Final + + + org.infinispan + infinispan-tasks-api + 12.1.10.Final + + + org.infinispan + infinispan-tools + 12.1.10.Final + + + org.infinispan + infinispan-anchored-keys + 12.1.10.Final + + + org.infinispan.protostream + protostream + 4.4.1.Final + + + org.infinispan.protostream + protostream-types + 4.4.1.Final + + + org.infinispan.protostream + protostream-processor + 4.4.1.Final + provided + + + org.infinispan + infinispan-cloudevents-integration + 12.1.10.Final + + + com.fasterxml.jackson.core + jackson-annotations + 2.13.1 + + + com.fasterxml.jackson.core + jackson-core + 2.13.1 + + + com.fasterxml.jackson.core + jackson-databind + 2.13.1 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-avro + 2.13.1 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-cbor + 2.13.1 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-csv + 2.13.1 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-ion + 2.13.1 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-properties + 2.13.1 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-protobuf + 2.13.1 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-smile + 2.13.1 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-toml + 2.13.1 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-xml + 2.13.1 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-yaml + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-eclipse-collections + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-guava + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate4 + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate5 + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate5-jakarta + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-hppc + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-jakarta-jsonp + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-jaxrs + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-joda + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-joda-money + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-jdk8 + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-json-org + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-jsr310 + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-jsr353 + 2.13.1 + + + com.fasterxml.jackson.datatype + jackson-datatype-pcollections + 2.13.1 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-base + 2.13.1 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-cbor-provider + 2.13.1 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-json-provider + 2.13.1 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-smile-provider + 2.13.1 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-xml-provider + 2.13.1 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-yaml-provider + 2.13.1 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-base + 2.13.1 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-cbor-provider + 2.13.1 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-json-provider + 2.13.1 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-smile-provider + 2.13.1 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-xml-provider + 2.13.1 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-yaml-provider + 2.13.1 + + + com.fasterxml.jackson.jr + jackson-jr-all + 2.13.1 + + + com.fasterxml.jackson.jr + jackson-jr-annotation-support + 2.13.1 + + + com.fasterxml.jackson.jr + jackson-jr-objects + 2.13.1 + + + com.fasterxml.jackson.jr + jackson-jr-retrofit2 + 2.13.1 + + + com.fasterxml.jackson.jr + jackson-jr-stree + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-afterburner + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-blackbird + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-guice + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-jaxb-annotations + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-jakarta-xmlbind-annotations + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-jsonSchema + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-kotlin + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-mrbean + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-no-ctor-deser + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-osgi + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-parameter-names + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-paranamer + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-scala_2.11 + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-scala_2.12 + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-scala_2.13 + 2.13.1 + + + com.fasterxml.jackson.module + jackson-module-scala_3 + 2.13.1 + + + org.glassfish.jersey.core + jersey-common + 2.35 + + + org.glassfish.jersey.core + jersey-client + 2.35 + + + org.glassfish.jersey.core + jersey-server + 2.35 + + + org.glassfish.jersey.bundles + jaxrs-ri + 2.35 + + + org.glassfish.jersey.connectors + jersey-apache-connector + 2.35 + + + org.glassfish.jersey.connectors + jersey-helidon-connector + 2.35 + + + org.glassfish.jersey.connectors + jersey-grizzly-connector + 2.35 + + + org.glassfish.jersey.connectors + jersey-jetty-connector + 2.35 + + + org.glassfish.jersey.connectors + jersey-jdk-connector + 2.35 + + + org.glassfish.jersey.connectors + jersey-netty-connector + 2.35 + + + org.glassfish.jersey.containers + jersey-container-jetty-http + 2.35 + + + org.glassfish.jersey.containers + jersey-container-grizzly2-http + 2.35 + + + org.glassfish.jersey.containers + jersey-container-grizzly2-servlet + 2.35 + + + org.glassfish.jersey.containers + jersey-container-jetty-servlet + 2.35 + + + org.glassfish.jersey.containers + jersey-container-jdk-http + 2.35 + + + org.glassfish.jersey.containers + jersey-container-netty-http + 2.35 + + + org.glassfish.jersey.containers + jersey-container-servlet + 2.35 + + + org.glassfish.jersey.containers + jersey-container-servlet-core + 2.35 + + + org.glassfish.jersey.containers + jersey-container-simple-http + 2.35 + + + org.glassfish.jersey.containers.glassfish + jersey-gf-ejb + 2.35 + + + org.glassfish.jersey.ext + jersey-bean-validation + 2.35 + + + org.glassfish.jersey.ext + jersey-entity-filtering + 2.35 + + + org.glassfish.jersey.ext + jersey-metainf-services + 2.35 + + + org.glassfish.jersey.ext.microprofile + jersey-mp-config + 2.35 + + + org.glassfish.jersey.ext + jersey-mvc + 2.35 + + + org.glassfish.jersey.ext + jersey-mvc-bean-validation + 2.35 + + + org.glassfish.jersey.ext + jersey-mvc-freemarker + 2.35 + + + org.glassfish.jersey.ext + jersey-mvc-jsp + 2.35 + + + org.glassfish.jersey.ext + jersey-mvc-mustache + 2.35 + + + org.glassfish.jersey.ext + jersey-proxy-client + 2.35 + + + org.glassfish.jersey.ext + jersey-servlet-portability + 2.35 + + + org.glassfish.jersey.ext + jersey-spring4 + 2.35 + + + org.glassfish.jersey.ext + jersey-spring5 + 2.35 + + + org.glassfish.jersey.ext + jersey-declarative-linking + 2.35 + + + org.glassfish.jersey.ext + jersey-wadl-doclet + 2.35 + + + org.glassfish.jersey.ext.cdi + jersey-weld2-se + 2.35 + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x + 2.35 + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x-transaction + 2.35 + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x-validation + 2.35 + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x-servlet + 2.35 + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x-ban-custom-hk2-binding + 2.35 + + + org.glassfish.jersey.ext.cdi + jersey-cdi-rs-inject + 2.35 + + + org.glassfish.jersey.ext.rx + jersey-rx-client-guava + 2.35 + + + org.glassfish.jersey.ext.rx + jersey-rx-client-rxjava + 2.35 + + + org.glassfish.jersey.ext.rx + jersey-rx-client-rxjava2 + 2.35 + + + org.glassfish.jersey.ext.microprofile + jersey-mp-rest-client + 2.35 + + + org.glassfish.jersey.media + jersey-media-jaxb + 2.35 + + + org.glassfish.jersey.media + jersey-media-json-jackson + 2.35 + + + org.glassfish.jersey.media + jersey-media-json-jettison + 2.35 + + + org.glassfish.jersey.media + jersey-media-json-processing + 2.35 + + + org.glassfish.jersey.media + jersey-media-json-binding + 2.35 + + + org.glassfish.jersey.media + jersey-media-kryo + 2.35 + + + org.glassfish.jersey.media + jersey-media-moxy + 2.35 + + + org.glassfish.jersey.media + jersey-media-multipart + 2.35 + + + org.glassfish.jersey.media + jersey-media-sse + 2.35 + + + org.glassfish.jersey.security + oauth1-client + 2.35 + + + org.glassfish.jersey.security + oauth1-server + 2.35 + + + org.glassfish.jersey.security + oauth1-signature + 2.35 + + + org.glassfish.jersey.security + oauth2-client + 2.35 + + + org.glassfish.jersey.inject + jersey-hk2 + 2.35 + + + org.glassfish.jersey.inject + jersey-cdi2-se + 2.35 + + + org.glassfish.jersey.test-framework + jersey-test-framework-core + 2.35 + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-bundle + 2.35 + pom + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-external + 2.35 + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-grizzly2 + 2.35 + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-inmemory + 2.35 + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-jdk-http + 2.35 + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-simple + 2.35 + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-jetty + 2.35 + + + org.glassfish.jersey.test-framework + jersey-test-framework-util + 2.35 + + + org.eclipse.jetty + apache-jsp + 9.4.44.v20210927 + + + org.eclipse.jetty + apache-jstl + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-alpn-client + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-alpn-java-client + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-alpn-java-server + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-alpn-openjdk8-client + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-alpn-openjdk8-server + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-alpn-conscrypt-client + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-alpn-conscrypt-server + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-alpn-server + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-annotations + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-ant + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-client + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-continuation + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-deploy + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-distribution + 9.4.44.v20210927 + zip + + + org.eclipse.jetty + jetty-distribution + 9.4.44.v20210927 + tar.gz + + + org.eclipse.jetty.fcgi + fcgi-client + 9.4.44.v20210927 + + + org.eclipse.jetty.fcgi + fcgi-server + 9.4.44.v20210927 + + + org.eclipse.jetty.gcloud + jetty-gcloud-session-manager + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-home + 9.4.44.v20210927 + zip + + + org.eclipse.jetty + jetty-home + 9.4.44.v20210927 + tar.gz + + + org.eclipse.jetty + jetty-http + 9.4.44.v20210927 + + + org.eclipse.jetty.http2 + http2-client + 9.4.44.v20210927 + + + org.eclipse.jetty.http2 + http2-common + 9.4.44.v20210927 + + + org.eclipse.jetty.http2 + http2-hpack + 9.4.44.v20210927 + + + org.eclipse.jetty.http2 + http2-http-client-transport + 9.4.44.v20210927 + + + org.eclipse.jetty.http2 + http2-server + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-http-spi + 9.4.44.v20210927 + + + org.eclipse.jetty + infinispan-common + 9.4.44.v20210927 + + + org.eclipse.jetty + infinispan-remote-query + 9.4.44.v20210927 + + + org.eclipse.jetty + infinispan-embedded-query + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-hazelcast + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-io + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-jaas + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-jaspi + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-jmx + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-jndi + 9.4.44.v20210927 + + + org.eclipse.jetty.memcached + jetty-memcached-sessions + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-nosql + 9.4.44.v20210927 + + + org.eclipse.jetty.osgi + jetty-osgi-boot + 9.4.44.v20210927 + + + org.eclipse.jetty.osgi + jetty-osgi-boot-jsp + 9.4.44.v20210927 + + + org.eclipse.jetty.osgi + jetty-osgi-boot-warurl + 9.4.44.v20210927 + + + org.eclipse.jetty.osgi + jetty-httpservice + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-plus + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-proxy + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-quickstart + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-rewrite + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-security + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-openid + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-server + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-servlet + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-servlets + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-spring + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-unixsocket + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-util + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-util-ajax + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-webapp + 9.4.44.v20210927 + + + org.eclipse.jetty.websocket + javax-websocket-client-impl + 9.4.44.v20210927 + + + org.eclipse.jetty.websocket + javax-websocket-server-impl + 9.4.44.v20210927 + + + org.eclipse.jetty.websocket + websocket-api + 9.4.44.v20210927 + + + org.eclipse.jetty.websocket + websocket-client + 9.4.44.v20210927 + + + org.eclipse.jetty.websocket + websocket-common + 9.4.44.v20210927 + + + org.eclipse.jetty.websocket + websocket-server + 9.4.44.v20210927 + + + org.eclipse.jetty.websocket + websocket-servlet + 9.4.44.v20210927 + + + org.eclipse.jetty + jetty-xml + 9.4.44.v20210927 + + + org.junit.jupiter + junit-jupiter + 5.8.2 + + + org.junit.jupiter + junit-jupiter-api + 5.8.2 + + + org.junit.jupiter + junit-jupiter-engine + 5.8.2 + + + org.junit.jupiter + junit-jupiter-migrationsupport + 5.8.2 + + + org.junit.jupiter + junit-jupiter-params + 5.8.2 + + + org.junit.platform + junit-platform-commons + 1.8.2 + + + org.junit.platform + junit-platform-console + 1.8.2 + + + org.junit.platform + junit-platform-engine + 1.8.2 + + + org.junit.platform + junit-platform-jfr + 1.8.2 + + + org.junit.platform + junit-platform-launcher + 1.8.2 + + + org.junit.platform + junit-platform-reporting + 1.8.2 + + + org.junit.platform + junit-platform-runner + 1.8.2 + + + org.junit.platform + junit-platform-suite + 1.8.2 + + + org.junit.platform + junit-platform-suite-api + 1.8.2 + + + org.junit.platform + junit-platform-suite-commons + 1.8.2 + + + org.junit.platform + junit-platform-suite-engine + 1.8.2 + + + org.junit.platform + junit-platform-testkit + 1.8.2 + + + org.junit.vintage + junit-vintage-engine + 5.8.2 + + + org.jetbrains.kotlin + kotlin-stdlib + 1.6.10 + + + org.jetbrains.kotlin + kotlin-stdlib-jdk7 + 1.6.10 + + + org.jetbrains.kotlin + kotlin-stdlib-jdk8 + 1.6.10 + + + org.jetbrains.kotlin + kotlin-stdlib-js + 1.6.10 + + + org.jetbrains.kotlin + kotlin-stdlib-common + 1.6.10 + + + org.jetbrains.kotlin + kotlin-reflect + 1.6.10 + + + org.jetbrains.kotlin + kotlin-osgi-bundle + 1.6.10 + + + org.jetbrains.kotlin + kotlin-test + 1.6.10 + + + org.jetbrains.kotlin + kotlin-test-junit + 1.6.10 + + + org.jetbrains.kotlin + kotlin-test-junit5 + 1.6.10 + + + org.jetbrains.kotlin + kotlin-test-testng + 1.6.10 + + + org.jetbrains.kotlin + kotlin-test-js + 1.6.10 + + + org.jetbrains.kotlin + kotlin-test-common + 1.6.10 + + + org.jetbrains.kotlin + kotlin-test-annotations-common + 1.6.10 + + + org.jetbrains.kotlin + kotlin-main-kts + 1.6.10 + + + org.jetbrains.kotlin + kotlin-script-runtime + 1.6.10 + + + org.jetbrains.kotlin + kotlin-script-util + 1.6.10 + + + org.jetbrains.kotlin + kotlin-scripting-common + 1.6.10 + + + org.jetbrains.kotlin + kotlin-scripting-jvm + 1.6.10 + + + org.jetbrains.kotlin + kotlin-scripting-jvm-host + 1.6.10 + + + org.jetbrains.kotlin + kotlin-scripting-ide-services + 1.6.10 + + + org.jetbrains.kotlin + kotlin-compiler + 1.6.10 + + + org.jetbrains.kotlin + kotlin-compiler-embeddable + 1.6.10 + + + org.jetbrains.kotlin + kotlin-daemon-client + 1.6.10 + + + org.jetbrains.kotlinx + kotlinx-coroutines-android + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-core-jvm + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-core + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-debug + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-guava + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-javafx + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-jdk8 + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-jdk9 + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-play-services + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-reactive + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-reactor + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-rx2 + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-rx3 + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-slf4j + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-swing + 1.5.2 + + + org.jetbrains.kotlinx + kotlinx-coroutines-test + 1.5.2 + + + org.apache.logging.log4j + log4j-api + 2.17.0 + + + org.apache.logging.log4j + log4j-core + 2.17.0 + + + org.apache.logging.log4j + log4j-layout-template-json + 2.17.0 + + + org.apache.logging.log4j + log4j-1.2-api + 2.17.0 + + + org.apache.logging.log4j + log4j-jcl + 2.17.0 + + + org.apache.logging.log4j + log4j-flume-ng + 2.17.0 + + + org.apache.logging.log4j + log4j-taglib + 2.17.0 + + + org.apache.logging.log4j + log4j-jmx-gui + 2.17.0 + + + org.apache.logging.log4j + log4j-slf4j-impl + 2.17.0 + + + org.apache.logging.log4j + log4j-slf4j18-impl + 2.17.0 + + + org.apache.logging.log4j + log4j-to-slf4j + 2.17.0 + + + org.apache.logging.log4j + log4j-appserver + 2.17.0 + + + org.apache.logging.log4j + log4j-web + 2.17.0 + + + org.apache.logging.log4j + log4j-couchdb + 2.17.0 + + + org.apache.logging.log4j + log4j-mongodb4 + 2.17.0 + + + org.apache.logging.log4j + log4j-mongodb3 + 2.17.0 + + + org.apache.logging.log4j + log4j-cassandra + 2.17.0 + + + org.apache.logging.log4j + log4j-jpa + 2.17.0 + + + org.apache.logging.log4j + log4j-iostreams + 2.17.0 + + + org.apache.logging.log4j + log4j-jul + 2.17.0 + + + org.apache.logging.log4j + log4j-jpl + 2.17.0 + + + org.apache.logging.log4j + log4j-liquibase + 2.17.0 + + + org.apache.logging.log4j + log4j-docker + 2.17.0 + + + org.apache.logging.log4j + log4j-kubernetes + 2.17.0 + + + org.apache.logging.log4j + log4j-spring-boot + 2.17.0 + + + org.apache.logging.log4j + log4j-spring-cloud-config-client + 2.17.0 + + + io.micrometer + micrometer-core + 1.8.1 + + + io.micrometer + micrometer-jersey2 + 1.8.1 + + + io.micrometer + micrometer-registry-appoptics + 1.8.1 + + + io.micrometer + micrometer-registry-atlas + 1.8.1 + + + io.micrometer + micrometer-registry-azure-monitor + 1.8.1 + + + io.micrometer + micrometer-registry-cloudwatch + 1.8.1 + + + io.micrometer + micrometer-registry-cloudwatch2 + 1.8.1 + + + io.micrometer + micrometer-registry-datadog + 1.8.1 + + + io.micrometer + micrometer-registry-dynatrace + 1.8.1 + + + io.micrometer + micrometer-registry-elastic + 1.8.1 + + + io.micrometer + micrometer-registry-ganglia + 1.8.1 + + + io.micrometer + micrometer-registry-graphite + 1.8.1 + + + io.micrometer + micrometer-registry-health + 1.8.1 + + + io.micrometer + micrometer-registry-humio + 1.8.1 + + + io.micrometer + micrometer-registry-influx + 1.8.1 + + + io.micrometer + micrometer-registry-jmx + 1.8.1 + + + io.micrometer + micrometer-registry-kairos + 1.8.1 + + + io.micrometer + micrometer-registry-new-relic + 1.8.1 + + + io.micrometer + micrometer-registry-opentsdb + 1.8.1 + + + io.micrometer + micrometer-registry-prometheus + 1.8.1 + + + io.micrometer + micrometer-registry-signalfx + 1.8.1 + + + io.micrometer + micrometer-registry-statsd + 1.8.1 + + + io.micrometer + micrometer-registry-wavefront + 1.8.1 + + + io.micrometer + micrometer-test + 1.8.1 + + + io.netty + netty-buffer + 4.1.72.Final + + + io.netty + netty-codec + 4.1.72.Final + + + io.netty + netty-codec-dns + 4.1.72.Final + + + io.netty + netty-codec-haproxy + 4.1.72.Final + + + io.netty + netty-codec-http + 4.1.72.Final + + + io.netty + netty-codec-http2 + 4.1.72.Final + + + io.netty + netty-codec-memcache + 4.1.72.Final + + + io.netty + netty-codec-mqtt + 4.1.72.Final + + + io.netty + netty-codec-redis + 4.1.72.Final + + + io.netty + netty-codec-smtp + 4.1.72.Final + + + io.netty + netty-codec-socks + 4.1.72.Final + + + io.netty + netty-codec-stomp + 4.1.72.Final + + + io.netty + netty-codec-xml + 4.1.72.Final + + + io.netty + netty-common + 4.1.72.Final + + + io.netty + netty-dev-tools + 4.1.72.Final + + + io.netty + netty-handler + 4.1.72.Final + + + io.netty + netty-handler-proxy + 4.1.72.Final + + + io.netty + netty-resolver + 4.1.72.Final + + + io.netty + netty-resolver-dns + 4.1.72.Final + + + io.netty + netty-transport + 4.1.72.Final + + + io.netty + netty-transport-rxtx + 4.1.72.Final + + + io.netty + netty-transport-sctp + 4.1.72.Final + + + io.netty + netty-transport-udt + 4.1.72.Final + + + io.netty + netty-example + 4.1.72.Final + + + io.netty + netty-all + 4.1.72.Final + + + io.netty + netty-resolver-dns-classes-macos + 4.1.72.Final + + + io.netty + netty-resolver-dns-native-macos + 4.1.72.Final + + + io.netty + netty-resolver-dns-native-macos + 4.1.72.Final + osx-x86_64 + + + io.netty + netty-resolver-dns-native-macos + 4.1.72.Final + osx-aarch_64 + + + io.netty + netty-transport-native-unix-common + 4.1.72.Final + + + io.netty + netty-transport-native-unix-common + 4.1.72.Final + linux-aarch_64 + + + io.netty + netty-transport-native-unix-common + 4.1.72.Final + linux-x86_64 + + + io.netty + netty-transport-native-unix-common + 4.1.72.Final + osx-x86_64 + + + io.netty + netty-transport-native-unix-common + 4.1.72.Final + osx-aarch_64 + + + io.netty + netty-transport-classes-epoll + 4.1.72.Final + + + io.netty + netty-transport-native-epoll + 4.1.72.Final + + + io.netty + netty-transport-native-epoll + 4.1.72.Final + linux-aarch_64 + + + io.netty + netty-transport-native-epoll + 4.1.72.Final + linux-x86_64 + + + io.netty + netty-transport-classes-kqueue + 4.1.72.Final + + + io.netty + netty-transport-native-kqueue + 4.1.72.Final + + + io.netty + netty-transport-native-kqueue + 4.1.72.Final + osx-x86_64 + + + io.netty + netty-transport-native-kqueue + 4.1.72.Final + osx-aarch_64 + + + io.netty + netty-tcnative-classes + 2.0.46.Final + + + io.netty + netty-tcnative + 2.0.46.Final + linux-x86_64 + + + io.netty + netty-tcnative + 2.0.46.Final + linux-x86_64-fedora + + + io.netty + netty-tcnative + 2.0.46.Final + linux-aarch_64-fedora + + + io.netty + netty-tcnative + 2.0.46.Final + osx-x86_64 + + + io.netty + netty-tcnative-boringssl-static + 2.0.46.Final + linux-x86_64 + + + io.netty + netty-tcnative-boringssl-static + 2.0.46.Final + linux-aarch_64 + + + io.netty + netty-tcnative-boringssl-static + 2.0.46.Final + osx-x86_64 + + + io.netty + netty-tcnative-boringssl-static + 2.0.46.Final + osx-aarch_64 + + + io.netty + netty-tcnative-boringssl-static + 2.0.46.Final + windows-x86_64 + + + com.oracle.database.jdbc + ojdbc11 + 21.3.0.0 + + + com.oracle.database.jdbc + ojdbc8 + 21.3.0.0 + + + com.oracle.database.jdbc + ucp + 21.3.0.0 + + + com.oracle.database.jdbc + ucp11 + 21.3.0.0 + + + com.oracle.database.jdbc + rsi + 21.3.0.0 + + + com.oracle.database.security + oraclepki + 21.3.0.0 + + + com.oracle.database.security + osdt_core + 21.3.0.0 + + + com.oracle.database.security + osdt_cert + 21.3.0.0 + + + com.oracle.database.ha + simplefan + 21.3.0.0 + + + com.oracle.database.ha + ons + 21.3.0.0 + + + com.oracle.database.nls + orai18n + 21.3.0.0 + + + com.oracle.database.xml + xdb + 21.3.0.0 + + + com.oracle.database.xml + xmlparserv2 + 21.3.0.0 + + + com.oracle.database.jdbc.debug + ojdbc11_g + 21.3.0.0 + + + com.oracle.database.jdbc.debug + ojdbc8_g + 21.3.0.0 + + + com.oracle.database.jdbc.debug + ojdbc8dms_g + 21.3.0.0 + + + com.oracle.database.jdbc.debug + ojdbc11dms_g + 21.3.0.0 + + + com.oracle.database.observability + dms + 21.3.0.0 + + + com.oracle.database.observability + ojdbc11dms + 21.3.0.0 + + + com.oracle.database.observability + ojdbc8dms + 21.3.0.0 + + + com.oracle.database.jdbc + ojdbc11-production + 21.3.0.0 + pom + + + com.oracle.database.jdbc + ojdbc8-production + 21.3.0.0 + pom + + + com.oracle.database.observability + ojdbc8-observability + 21.3.0.0 + pom + + + com.oracle.database.observability + ojdbc11-observability + 21.3.0.0 + pom + + + com.oracle.database.jdbc.debug + ojdbc8-debug + 21.3.0.0 + pom + + + com.oracle.database.jdbc.debug + ojdbc11-debug + 21.3.0.0 + pom + + + com.oracle.database.jdbc.debug + ojdbc8-observability-debug + 21.3.0.0 + pom + + + com.oracle.database.jdbc.debug + ojdbc11-observability-debug + 21.3.0.0 + pom + + + io.prometheus + simpleclient + 0.12.0 + + + io.prometheus + simpleclient_caffeine + 0.12.0 + + + io.prometheus + simpleclient_common + 0.12.0 + + + io.prometheus + simpleclient_dropwizard + 0.12.0 + + + io.prometheus + simpleclient_graphite_bridge + 0.12.0 + + + io.prometheus + simpleclient_guava + 0.12.0 + + + io.prometheus + simpleclient_hibernate + 0.12.0 + + + io.prometheus + simpleclient_hotspot + 0.12.0 + + + io.prometheus + simpleclient_httpserver + 0.12.0 + + + io.prometheus + simpleclient_jetty + 0.12.0 + + + io.prometheus + simpleclient_jetty_jdk8 + 0.12.0 + + + io.prometheus + simpleclient_log4j + 0.12.0 + + + io.prometheus + simpleclient_log4j2 + 0.12.0 + + + io.prometheus + simpleclient_logback + 0.12.0 + + + io.prometheus + simpleclient_pushgateway + 0.12.0 + + + io.prometheus + simpleclient_servlet + 0.12.0 + + + io.prometheus + simpleclient_servlet_jakarta + 0.12.0 + + + io.prometheus + simpleclient_spring_boot + 0.12.0 + + + io.prometheus + simpleclient_spring_web + 0.12.0 + + + io.prometheus + simpleclient_tracer_otel + 0.12.0 + + + io.prometheus + simpleclient_tracer_otel_agent + 0.12.0 + + + io.prometheus + simpleclient_vertx + 0.12.0 + + + com.querydsl + querydsl-core + 5.0.0 + + + com.querydsl + querydsl-codegen + 5.0.0 + + + com.querydsl + querydsl-codegen-utils + 5.0.0 + + + com.querydsl + querydsl-spatial + 5.0.0 + + + com.querydsl + querydsl-apt + 5.0.0 + + + com.querydsl + querydsl-collections + 5.0.0 + + + com.querydsl + querydsl-guava + 5.0.0 + + + com.querydsl + querydsl-sql + 5.0.0 + + + com.querydsl + querydsl-sql-spatial + 5.0.0 + + + com.querydsl + querydsl-sql-codegen + 5.0.0 + + + com.querydsl + querydsl-sql-spring + 5.0.0 + + + com.querydsl + querydsl-jpa + 5.0.0 + + + com.querydsl + querydsl-jpa-codegen + 5.0.0 + + + com.querydsl + querydsl-jdo + 5.0.0 + + + com.querydsl + querydsl-kotlin-codegen + 5.0.0 + + + com.querydsl + querydsl-lucene3 + 5.0.0 + + + com.querydsl + querydsl-lucene4 + 5.0.0 + + + com.querydsl + querydsl-lucene5 + 5.0.0 + + + com.querydsl + querydsl-hibernate-search + 5.0.0 + + + com.querydsl + querydsl-mongodb + 5.0.0 + + + com.querydsl + querydsl-scala + 5.0.0 + + + com.querydsl + querydsl-kotlin + 5.0.0 + + + com.google.cloud + cloud-spanner-r2dbc + 0.6.0 + + + com.oracle.database.r2dbc + oracle-r2dbc + 0.1.0 + + + io.r2dbc + r2dbc-h2 + 0.8.4.RELEASE + + + org.mariadb + r2dbc-mariadb + 1.0.2 + + + io.r2dbc + r2dbc-mssql + 0.8.7.RELEASE + + + dev.miku + r2dbc-mysql + 0.8.2.RELEASE + + + io.r2dbc + r2dbc-postgresql + 0.8.10.RELEASE + + + io.r2dbc + r2dbc-pool + 0.8.7.RELEASE + + + io.r2dbc + r2dbc-proxy + 0.8.8.RELEASE + + + io.r2dbc + r2dbc-spi + 0.8.6.RELEASE + + + io.projectreactor + reactor-core + 3.4.13 + + + io.projectreactor + reactor-test + 3.4.13 + + + io.projectreactor + reactor-tools + 3.4.13 + + + io.projectreactor.addons + reactor-extra + 3.4.6 + + + io.projectreactor.addons + reactor-adapter + 3.4.6 + + + io.projectreactor.netty + reactor-netty + 1.0.14 + + + io.projectreactor.netty + reactor-netty-core + 1.0.14 + + + io.projectreactor.netty + reactor-netty-http + 1.0.14 + + + io.projectreactor.netty + reactor-netty-http-brave + 1.0.14 + + + io.projectreactor.addons + reactor-pool + 0.2.7 + + + io.projectreactor.kafka + reactor-kafka + 1.3.8 + + + io.projectreactor.rabbitmq + reactor-rabbitmq + 1.5.4 + + + io.projectreactor.kotlin + reactor-kotlin-extensions + 1.1.5 + + + io.rsocket + rsocket-core + 1.1.1 + + + io.rsocket + rsocket-load-balancer + 1.1.1 + + + io.rsocket + rsocket-micrometer + 1.1.1 + + + io.rsocket + rsocket-test + 1.1.1 + + + io.rsocket + rsocket-transport-local + 1.1.1 + + + io.rsocket + rsocket-transport-netty + 1.1.1 + + + org.springframework.data + spring-data-cassandra + 3.3.0 + + + org.springframework.data + spring-data-commons + 2.6.0 + + + org.springframework.data + spring-data-couchbase + 4.3.0 + + + org.springframework.data + spring-data-elasticsearch + 4.3.0 + + + org.springframework.data + spring-data-geode + 2.6.0 + + + org.springframework.data + spring-data-jdbc + 2.3.0 + + + org.springframework.data + spring-data-relational + 2.3.0 + + + org.springframework.data + spring-data-jpa + 2.6.0 + + + org.springframework.data + spring-data-mongodb + 3.3.0 + + + org.springframework.data + spring-data-neo4j + 6.2.0 + + + org.springframework.data + spring-data-r2dbc + 1.4.0 + + + org.springframework.data + spring-data-redis + 2.6.0 + + + org.springframework.data + spring-data-rest-webmvc + 3.6.0 + + + org.springframework.data + spring-data-rest-core + 3.6.0 + + + org.springframework.data + spring-data-rest-hal-explorer + 3.6.0 + + + org.springframework.data + spring-data-keyvalue + 2.6.0 + + + org.springframework.data + spring-data-envers + 2.6.0 + + + org.springframework.data + spring-data-ldap + 2.6.0 + + + org.springframework + spring-aspects + 5.3.14 + + + org.springframework + spring-context-indexer + 5.3.14 + + + org.springframework + spring-context-support + 5.3.14 + + + org.springframework + spring-core + 5.3.14 + + + org.springframework + spring-instrument + 5.3.14 + + + org.springframework + spring-jcl + 5.3.14 + + + org.springframework + spring-jdbc + 5.3.14 + + + org.springframework + spring-jms + 5.3.14 + + + org.springframework + spring-messaging + 5.3.14 + + + org.springframework + spring-orm + 5.3.14 + + + org.springframework + spring-oxm + 5.3.14 + + + org.springframework + spring-r2dbc + 5.3.14 + + + org.springframework + spring-test + 5.3.14 + + + org.springframework + spring-tx + 5.3.14 + + + org.springframework + spring-web + 5.3.14 + + + org.springframework + spring-webflux + 5.3.14 + + + org.springframework + spring-webmvc + 5.3.14 + + + org.springframework + spring-websocket + 5.3.14 + + + org.springframework.integration + spring-integration-amqp + 5.5.7 + + + org.springframework.integration + spring-integration-core + 5.5.7 + + + org.springframework.integration + spring-integration-event + 5.5.7 + + + org.springframework.integration + spring-integration-feed + 5.5.7 + + + org.springframework.integration + spring-integration-file + 5.5.7 + + + org.springframework.integration + spring-integration-ftp + 5.5.7 + + + org.springframework.integration + spring-integration-gemfire + 5.5.7 + + + org.springframework.integration + spring-integration-groovy + 5.5.7 + + + org.springframework.integration + spring-integration-http + 5.5.7 + + + org.springframework.integration + spring-integration-ip + 5.5.7 + + + org.springframework.integration + spring-integration-jdbc + 5.5.7 + + + org.springframework.integration + spring-integration-jms + 5.5.7 + + + org.springframework.integration + spring-integration-jmx + 5.5.7 + + + org.springframework.integration + spring-integration-jpa + 5.5.7 + + + org.springframework.integration + spring-integration-kafka + 5.5.7 + + + org.springframework.integration + spring-integration-mail + 5.5.7 + + + org.springframework.integration + spring-integration-mongodb + 5.5.7 + + + org.springframework.integration + spring-integration-mqtt + 5.5.7 + + + org.springframework.integration + spring-integration-r2dbc + 5.5.7 + + + org.springframework.integration + spring-integration-redis + 5.5.7 + + + org.springframework.integration + spring-integration-rmi + 5.5.7 + + + org.springframework.integration + spring-integration-rsocket + 5.5.7 + + + org.springframework.integration + spring-integration-scripting + 5.5.7 + + + org.springframework.integration + spring-integration-security + 5.5.7 + + + org.springframework.integration + spring-integration-sftp + 5.5.7 + + + org.springframework.integration + spring-integration-stomp + 5.5.7 + + + org.springframework.integration + spring-integration-stream + 5.5.7 + + + org.springframework.integration + spring-integration-syslog + 5.5.7 + + + org.springframework.integration + spring-integration-test + 5.5.7 + + + org.springframework.integration + spring-integration-test-support + 5.5.7 + + + org.springframework.integration + spring-integration-webflux + 5.5.7 + + + org.springframework.integration + spring-integration-websocket + 5.5.7 + + + org.springframework.integration + spring-integration-ws + 5.5.7 + + + org.springframework.integration + spring-integration-xml + 5.5.7 + + + org.springframework.integration + spring-integration-xmpp + 5.5.7 + + + org.springframework.integration + spring-integration-zeromq + 5.5.7 + + + org.springframework.integration + spring-integration-zookeeper + 5.5.7 + + + org.springframework.security + spring-security-acl + 5.6.1 + + + org.springframework.security + spring-security-aspects + 5.6.1 + + + org.springframework.security + spring-security-cas + 5.6.1 + + + org.springframework.security + spring-security-config + 5.6.1 + + + org.springframework.security + spring-security-core + 5.6.1 + + + org.springframework.security + spring-security-crypto + 5.6.1 + + + org.springframework.security + spring-security-data + 5.6.1 + + + org.springframework.security + spring-security-ldap + 5.6.1 + + + org.springframework.security + spring-security-messaging + 5.6.1 + + + org.springframework.security + spring-security-oauth2-client + 5.6.1 + + + org.springframework.security + spring-security-oauth2-core + 5.6.1 + + + org.springframework.security + spring-security-oauth2-jose + 5.6.1 + + + org.springframework.security + spring-security-oauth2-resource-server + 5.6.1 + + + org.springframework.security + spring-security-openid + 5.6.1 + + + org.springframework.security + spring-security-remoting + 5.6.1 + + + org.springframework.security + spring-security-rsocket + 5.6.1 + + + org.springframework.security + spring-security-saml2-service-provider + 5.6.1 + + + org.springframework.security + spring-security-taglibs + 5.6.1 + + + org.springframework.security + spring-security-test + 5.6.1 + + + org.springframework.security + spring-security-web + 5.6.1 + + + org.springframework.session + spring-session-jdbc + 2.6.1 + + + org.springframework.session + spring-session-data-geode + 2.6.0 + + + org.springframework.session + spring-session-hazelcast + 2.6.1 + + + org.springframework.session + spring-session-data-mongodb + 2.6.1 + + + org.springframework.session + spring-session-core + 2.6.1 + + + org.springframework.session + spring-session-data-redis + 2.6.1 + + + + + + junit + junit + 3.8.1 + test + + + org.springframework + spring-expression + 4.0.0.RELEASE + compile + + + org.springframework + spring-aop + 4.0.0.RELEASE + compile + + + + + + true + + nexus-server@alipay + http://mvn.test.alipay.net:8080/artifactory/repo + + + + true + + central + http://mvn.dev.alipay.net:8080/artifactory/repo + + + + true + never + + snapshots + http://mvn.dev.alipay.net:8080/artifactory/repo + + + alibaba + http://mvnrepo.alibaba-inc.com/mvn/repository + + + + + + false + never + + central + http://mvn.dev.alipay.net:8080/artifactory/repo + + + alibaba + http://mvnrepo.alibaba-inc.com/mvn/repository + + + + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/project06-maven-moduele/src/main/java + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/project06-maven-moduele/src/main/scripts + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/project06-maven-moduele/src/test/java + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/project06-maven-moduele/target/classes + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/project06-maven-moduele/target/test-classes + + + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/project06-maven-moduele/src/main/resources + + + + + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/project06-maven-moduele/src/test/resources + + + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/project06-maven-moduele/target + project06-maven-moduele-0.0.1-snapshot + + + + org.codehaus.mojo + build-helper-maven-plugin + 3.2.0 + + + org.flywaydb + flyway-maven-plugin + 8.0.5 + + + pl.project13.maven + git-commit-id-plugin + 4.9.10 + + + org.apache.johnzon + johnzon-maven-plugin + 1.2.15 + + + org.jooq + jooq-codegen-maven + 3.14.15 + + + org.jetbrains.kotlin + kotlin-maven-plugin + 1.6.10 + + + org.liquibase + liquibase-maven-plugin + 4.5.0 + + + maven-antrun-plugin + 3.0.0 + + + maven-assembly-plugin + 3.3.0 + + + maven-clean-plugin + 3.1.0 + + + maven-compiler-plugin + 3.8.1 + + + maven-dependency-plugin + 3.2.0 + + + maven-release-plugin + 2.5.3 + + + maven-deploy-plugin + 2.8.2 + + + maven-enforcer-plugin + 3.0.0 + + + maven-failsafe-plugin + 2.22.2 + + + maven-help-plugin + 3.2.0 + + + maven-install-plugin + 2.5.2 + + + maven-invoker-plugin + 3.2.2 + + + maven-jar-plugin + 3.2.0 + + + maven-javadoc-plugin + 3.3.1 + + + maven-resources-plugin + 3.2.0 + + + maven-shade-plugin + 3.2.4 + + + maven-source-plugin + 3.2.1 + + + maven-surefire-plugin + 2.22.2 + + + maven-war-plugin + 3.3.2 + + + org.springframework.boot + spring-boot-maven-plugin + 2.6.2 + + + org.codehaus.mojo + versions-maven-plugin + 2.8.1 + + + org.codehaus.mojo + xml-maven-plugin + 1.0.2 + + + + + + maven-clean-plugin + 3.1.0 + + + default-clean + clean + + clean + + + + + + maven-resources-plugin + 3.2.0 + + + default-testResources + process-test-resources + + testResources + + + + default-resources + process-resources + + resources + + + + + + maven-jar-plugin + 3.2.0 + + + default-jar + package + + jar + + + + + + maven-compiler-plugin + 3.8.1 + + + default-compile + compile + + compile + + + + default-testCompile + test-compile + + testCompile + + + + + + maven-surefire-plugin + 2.22.2 + + + default-test + test + + test + + + + + + maven-install-plugin + 2.5.2 + + + default-install + install + + install + + + + + + maven-deploy-plugin + 2.8.2 + + + default-deploy + deploy + + deploy + + + + + + maven-site-plugin + 3.3 + + + default-site + site + + site + + + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/project06-maven-moduele/target/site + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + + + + + default-deploy + site-deploy + + deploy + + + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/project06-maven-moduele/target/site + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + + + + + + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/project06-maven-moduele/target/site + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + + + + + + + /Users/yinkanglong/work/notes/maven/maven源码/project03-maven-test/project06-maven-moduele/target/site + + + + + +[INFO] ------------------------------------------------------------------------ +[INFO] Reactor Summary for project03-maven-test 0.0.1-snapshot: +[INFO] +[INFO] project03-maven-test ............................... SUCCESS [ 9.580 s] +[INFO] project04-maven-moduele ............................ SKIPPED +[INFO] project05-maven-moduele ............................ SKIPPED +[INFO] project06-maven-moduele ............................ SKIPPED +[INFO] ------------------------------------------------------------------------ +[INFO] BUILD SUCCESS +[INFO] ------------------------------------------------------------------------ +[INFO] Total time: 14.342 s +[INFO] Finished at: 2022-11-06T11:15:02+08:00 +[INFO] ------------------------------------------------------------------------ diff --git a/maven/maven源码/project03-maven-test/pom.xml b/maven/maven源码/project03-maven-test/pom.xml new file mode 100644 index 00000000..e368c325 --- /dev/null +++ b/maven/maven源码/project03-maven-test/pom.xml @@ -0,0 +1,68 @@ + + + 4.0.0 + + + org.springframework.boot + spring-boot-dependencies + 2.6.2 + + com.ykl + project03-maven-test + 0.0.1-snapshot + + + pom + project03-maven-test + http://maven.apache.org + + + + junit + junit + 3.8.1 + test + + + + + project04-maven-moduele + project05-maven-moduele + project06-maven-moduele + + + + temp + world + + + + + + org.spingframwork + spring-core + 4.0.0.RELEASE + + + org.springframework + spring-beans + 4.0.0.RELEASE + + + spring-context + org.springframework + 4.0.0.RELEASE + + + org.springframework + spring-expression + 4.0.0.RELEASE + + + org.springframework + spring-aop + 4.0.0.RELEASE + + + + \ No newline at end of file diff --git a/maven/maven源码/project03-maven-test/project04-maven-moduele/pom.xml b/maven/maven源码/project03-maven-test/project04-maven-moduele/pom.xml new file mode 100644 index 00000000..ef9c969b --- /dev/null +++ b/maven/maven源码/project03-maven-test/project04-maven-moduele/pom.xml @@ -0,0 +1,24 @@ + + + 4.0.0 + + + com.ykl + project03-maven-test + 0.0.1-snapshot + + com.ykl + project04-maven-moduele + 0.0.1-snapshot + project04-maven-moduele + http://maven.apache.org + + + junit + junit + 3.8.1 + test + + + diff --git a/maven/maven源码/project03-maven-test/project04-maven-moduele/src/main/java/com/ykl/App.java b/maven/maven源码/project03-maven-test/project04-maven-moduele/src/main/java/com/ykl/App.java new file mode 100644 index 00000000..0afe0348 --- /dev/null +++ b/maven/maven源码/project03-maven-test/project04-maven-moduele/src/main/java/com/ykl/App.java @@ -0,0 +1,13 @@ +package com.ykl; + +/** + * Hello world! + * + */ +public class App +{ + public static void main( String[] args ) + { + System.out.println( "Hello World!" ); + } +} diff --git a/maven/maven源码/project03-maven-test/project04-maven-moduele/src/test/java/com/ykl/AppTest.java b/maven/maven源码/project03-maven-test/project04-maven-moduele/src/test/java/com/ykl/AppTest.java new file mode 100644 index 00000000..c4faece7 --- /dev/null +++ b/maven/maven源码/project03-maven-test/project04-maven-moduele/src/test/java/com/ykl/AppTest.java @@ -0,0 +1,38 @@ +package com.ykl; + +import junit.framework.Test; +import junit.framework.TestCase; +import junit.framework.TestSuite; + +/** + * Unit test for simple App. + */ +public class AppTest + extends TestCase +{ + /** + * Create the test case + * + * @param testName name of the test case + */ + public AppTest( String testName ) + { + super( testName ); + } + + /** + * @return the suite of tests being tested + */ + public static Test suite() + { + return new TestSuite( AppTest.class ); + } + + /** + * Rigourous Test :-) + */ + public void testApp() + { + assertTrue( true ); + } +} diff --git a/maven/maven源码/project03-maven-test/project05-maven-moduele/pom.xml b/maven/maven源码/project03-maven-test/project05-maven-moduele/pom.xml new file mode 100644 index 00000000..e7f36b36 --- /dev/null +++ b/maven/maven源码/project03-maven-test/project05-maven-moduele/pom.xml @@ -0,0 +1,23 @@ + + + 4.0.0 + + com.ykl + project03-maven-test + 0.0.1-snapshot + + com.ykl + project05-maven-moduele + 0.0.1-snapshot + project05-maven-moduele + http://maven.apache.org + + + junit + junit + 3.8.1 + test + + + diff --git a/maven/maven源码/project03-maven-test/project05-maven-moduele/src/main/java/com/ykl/App.java b/maven/maven源码/project03-maven-test/project05-maven-moduele/src/main/java/com/ykl/App.java new file mode 100644 index 00000000..0afe0348 --- /dev/null +++ b/maven/maven源码/project03-maven-test/project05-maven-moduele/src/main/java/com/ykl/App.java @@ -0,0 +1,13 @@ +package com.ykl; + +/** + * Hello world! + * + */ +public class App +{ + public static void main( String[] args ) + { + System.out.println( "Hello World!" ); + } +} diff --git a/maven/maven源码/project03-maven-test/project05-maven-moduele/src/test/java/com/ykl/AppTest.java b/maven/maven源码/project03-maven-test/project05-maven-moduele/src/test/java/com/ykl/AppTest.java new file mode 100644 index 00000000..c4faece7 --- /dev/null +++ b/maven/maven源码/project03-maven-test/project05-maven-moduele/src/test/java/com/ykl/AppTest.java @@ -0,0 +1,38 @@ +package com.ykl; + +import junit.framework.Test; +import junit.framework.TestCase; +import junit.framework.TestSuite; + +/** + * Unit test for simple App. + */ +public class AppTest + extends TestCase +{ + /** + * Create the test case + * + * @param testName name of the test case + */ + public AppTest( String testName ) + { + super( testName ); + } + + /** + * @return the suite of tests being tested + */ + public static Test suite() + { + return new TestSuite( AppTest.class ); + } + + /** + * Rigourous Test :-) + */ + public void testApp() + { + assertTrue( true ); + } +} diff --git a/maven/maven源码/project03-maven-test/project06-maven-moduele/pom.xml b/maven/maven源码/project03-maven-test/project06-maven-moduele/pom.xml new file mode 100644 index 00000000..bf6e18f1 --- /dev/null +++ b/maven/maven源码/project03-maven-test/project06-maven-moduele/pom.xml @@ -0,0 +1,33 @@ + + + 4.0.0 + + com.ykl + project03-maven-test + 0.0.1-snapshot + + com.ykl + project06-maven-moduele + 0.0.1-snapshot + project06-maven-moduele + http://maven.apache.org + + + junit + junit + 3.8.1 + test + + + org.springframework + spring-expression + 4.0.0.RELEASE + + + org.springframework + spring-aop + 4.0.0.RELEASE + + + diff --git a/maven/maven源码/project03-maven-test/project06-maven-moduele/src/main/java/com/ykl/App.java b/maven/maven源码/project03-maven-test/project06-maven-moduele/src/main/java/com/ykl/App.java new file mode 100644 index 00000000..06989b4a --- /dev/null +++ b/maven/maven源码/project03-maven-test/project06-maven-moduele/src/main/java/com/ykl/App.java @@ -0,0 +1,14 @@ +package com.ykl; + +/** + * Hello world! + * + */ +public class App +{ + public static void main( String[] args ) + { + System.out.println( "Hello World!" ); + + } +} diff --git a/maven/maven源码/project03-maven-test/project06-maven-moduele/src/test/java/com/ykl/AppTest.java b/maven/maven源码/project03-maven-test/project06-maven-moduele/src/test/java/com/ykl/AppTest.java new file mode 100644 index 00000000..c4faece7 --- /dev/null +++ b/maven/maven源码/project03-maven-test/project06-maven-moduele/src/test/java/com/ykl/AppTest.java @@ -0,0 +1,38 @@ +package com.ykl; + +import junit.framework.Test; +import junit.framework.TestCase; +import junit.framework.TestSuite; + +/** + * Unit test for simple App. + */ +public class AppTest + extends TestCase +{ + /** + * Create the test case + * + * @param testName name of the test case + */ + public AppTest( String testName ) + { + super( testName ); + } + + /** + * @return the suite of tests being tested + */ + public static Test suite() + { + return new TestSuite( AppTest.class ); + } + + /** + * Rigourous Test :-) + */ + public void testApp() + { + assertTrue( true ); + } +} diff --git a/maven/maven源码/project03-maven-test/src/main/java/com/ykl/App.java b/maven/maven源码/project03-maven-test/src/main/java/com/ykl/App.java new file mode 100644 index 00000000..0afe0348 --- /dev/null +++ b/maven/maven源码/project03-maven-test/src/main/java/com/ykl/App.java @@ -0,0 +1,13 @@ +package com.ykl; + +/** + * Hello world! + * + */ +public class App +{ + public static void main( String[] args ) + { + System.out.println( "Hello World!" ); + } +} diff --git a/maven/maven源码/project03-maven-test/src/test/java/com/ykl/AppTest.java b/maven/maven源码/project03-maven-test/src/test/java/com/ykl/AppTest.java new file mode 100644 index 00000000..c4faece7 --- /dev/null +++ b/maven/maven源码/project03-maven-test/src/test/java/com/ykl/AppTest.java @@ -0,0 +1,38 @@ +package com.ykl; + +import junit.framework.Test; +import junit.framework.TestCase; +import junit.framework.TestSuite; + +/** + * Unit test for simple App. + */ +public class AppTest + extends TestCase +{ + /** + * Create the test case + * + * @param testName name of the test case + */ + public AppTest( String testName ) + { + super( testName ); + } + + /** + * @return the suite of tests being tested + */ + public static Test suite() + { + return new TestSuite( AppTest.class ); + } + + /** + * Rigourous Test :-) + */ + public void testApp() + { + assertTrue( true ); + } +} diff --git a/maven/maven源码/project04-maven-import/pom.xml b/maven/maven源码/project04-maven-import/pom.xml new file mode 100644 index 00000000..16766e50 --- /dev/null +++ b/maven/maven源码/project04-maven-import/pom.xml @@ -0,0 +1,23 @@ + + 4.0.0 + com.ykl + project04-maven-import + jar + 0.0.1-snapshot + project04-maven-import + http://maven.apache.org + + + junit + junit + 3.8.1 + test + + + com.ykl + java-main-project + 1 + + + diff --git a/maven/maven源码/project04-maven-import/purejavamoudle/src/com/ykl/Main.java b/maven/maven源码/project04-maven-import/purejavamoudle/src/com/ykl/Main.java new file mode 100644 index 00000000..99626cc7 --- /dev/null +++ b/maven/maven源码/project04-maven-import/purejavamoudle/src/com/ykl/Main.java @@ -0,0 +1,6 @@ +package com.ykl; +public class Main{ + public static void main(String[] args){ + System.out.println("hello world!"); + } +} diff --git a/maven/maven源码/project04-maven-import/purejavamoudle/src/out/MANIFEST.MF b/maven/maven源码/project04-maven-import/purejavamoudle/src/out/MANIFEST.MF new file mode 100644 index 00000000..cbf21e8d --- /dev/null +++ b/maven/maven源码/project04-maven-import/purejavamoudle/src/out/MANIFEST.MF @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +Main-Class: com.ykl.Main + diff --git a/maven/maven源码/project04-maven-import/purejavamoudle/src/out/com/ykl/MANIFEST.MF b/maven/maven源码/project04-maven-import/purejavamoudle/src/out/com/ykl/MANIFEST.MF new file mode 100644 index 00000000..cbf21e8d --- /dev/null +++ b/maven/maven源码/project04-maven-import/purejavamoudle/src/out/com/ykl/MANIFEST.MF @@ -0,0 +1,3 @@ +Manifest-Version: 1.0 +Main-Class: com.ykl.Main + diff --git a/maven/maven源码/project04-maven-import/purejavamoudle/src/out/com/ykl/hello.jar b/maven/maven源码/project04-maven-import/purejavamoudle/src/out/com/ykl/hello.jar new file mode 100644 index 00000000..85a9b600 Binary files /dev/null and b/maven/maven源码/project04-maven-import/purejavamoudle/src/out/com/ykl/hello.jar differ diff --git a/maven/maven源码/project04-maven-import/purejavamoudle/src/out/hello.jar b/maven/maven源码/project04-maven-import/purejavamoudle/src/out/hello.jar new file mode 100644 index 00000000..d5c253b4 Binary files /dev/null and b/maven/maven源码/project04-maven-import/purejavamoudle/src/out/hello.jar differ diff --git a/maven/maven源码/project04-maven-import/src/main/java/com/ykl/App.java b/maven/maven源码/project04-maven-import/src/main/java/com/ykl/App.java new file mode 100644 index 00000000..5f517fa9 --- /dev/null +++ b/maven/maven源码/project04-maven-import/src/main/java/com/ykl/App.java @@ -0,0 +1,14 @@ +package com.ykl; +import com.ykl.Main; +/** + * Hello world! + * + */ +public class App +{ + public static void main( String[] args ) + { + System.out.println( "Hello World!" ); + Main.main( args ); + } +} diff --git a/maven/maven源码/project04-maven-import/src/test/java/com/ykl/AppTest.java b/maven/maven源码/project04-maven-import/src/test/java/com/ykl/AppTest.java new file mode 100644 index 00000000..c4faece7 --- /dev/null +++ b/maven/maven源码/project04-maven-import/src/test/java/com/ykl/AppTest.java @@ -0,0 +1,38 @@ +package com.ykl; + +import junit.framework.Test; +import junit.framework.TestCase; +import junit.framework.TestSuite; + +/** + * Unit test for simple App. + */ +public class AppTest + extends TestCase +{ + /** + * Create the test case + * + * @param testName name of the test case + */ + public AppTest( String testName ) + { + super( testName ); + } + + /** + * @return the suite of tests being tested + */ + public static Test suite() + { + return new TestSuite( AppTest.class ); + } + + /** + * Rigourous Test :-) + */ + public void testApp() + { + assertTrue( true ); + } +} diff --git a/maven/maven源码/project05-maven-plugin/.idea/compiler.xml b/maven/maven源码/project05-maven-plugin/.idea/compiler.xml index d2d4adc3..87863a66 100644 --- a/maven/maven源码/project05-maven-plugin/.idea/compiler.xml +++ b/maven/maven源码/project05-maven-plugin/.idea/compiler.xml @@ -6,7 +6,7 @@ - + diff --git a/maven/maven源码/project05-maven-plugin/pom.xml b/maven/maven源码/project05-maven-plugin/pom.xml new file mode 100644 index 00000000..d790b79c --- /dev/null +++ b/maven/maven源码/project05-maven-plugin/pom.xml @@ -0,0 +1,30 @@ + + 4.0.0 + + com.ykl + hello-maven-plugin + 0.0.1-snapshot + + maven-plugin + hello-maven-plugin + http://maven.apache.org + + + junit + junit + 3.8.1 + test + + + org.apache.maven + maven-plugin-api + 3.5.2 + + + org.apache.maven.plugin-tools + maven-plugin-annotations + 3.5.2 + + + diff --git a/.test.log.swp b/maven/maven源码/project05-maven-plugin/src/main/java/com/.DS_Store similarity index 65% rename from .test.log.swp rename to maven/maven源码/project05-maven-plugin/src/main/java/com/.DS_Store index 6c329891..2f8eddbc 100644 Binary files a/.test.log.swp and b/maven/maven源码/project05-maven-plugin/src/main/java/com/.DS_Store differ diff --git a/maven/maven源码/project05-maven-plugin/src/main/java/com/ykl/App.java b/maven/maven源码/project05-maven-plugin/src/main/java/com/ykl/App.java new file mode 100644 index 00000000..0afe0348 --- /dev/null +++ b/maven/maven源码/project05-maven-plugin/src/main/java/com/ykl/App.java @@ -0,0 +1,13 @@ +package com.ykl; + +/** + * Hello world! + * + */ +public class App +{ + public static void main( String[] args ) + { + System.out.println( "Hello World!" ); + } +} diff --git a/maven/maven源码/project05-maven-plugin/src/main/java/com/ykl/MyPlugin.java b/maven/maven源码/project05-maven-plugin/src/main/java/com/ykl/MyPlugin.java new file mode 100644 index 00000000..e1791ee1 --- /dev/null +++ b/maven/maven源码/project05-maven-plugin/src/main/java/com/ykl/MyPlugin.java @@ -0,0 +1,17 @@ +package com.ykl; + +import org.apache.maven.plugin.AbstractMojo; +import org.apache.maven.plugin.MojoExecutionException; +import org.apache.maven.plugin.MojoFailureException; +import org.apache.maven.plugins.annotations.Mojo; + +/** + * @goal sayhello + */ +//@Mojo(name = "sayhello2") +public class MyPlugin extends AbstractMojo { + + public void execute() throws MojoExecutionException, MojoFailureException { + getLog().info("---> This is my first maven plugin. <---"); + } +} diff --git a/maven/maven源码/project05-maven-plugin/src/test/java/com/ykl/AppTest.java b/maven/maven源码/project05-maven-plugin/src/test/java/com/ykl/AppTest.java new file mode 100644 index 00000000..c4faece7 --- /dev/null +++ b/maven/maven源码/project05-maven-plugin/src/test/java/com/ykl/AppTest.java @@ -0,0 +1,38 @@ +package com.ykl; + +import junit.framework.Test; +import junit.framework.TestCase; +import junit.framework.TestSuite; + +/** + * Unit test for simple App. + */ +public class AppTest + extends TestCase +{ + /** + * Create the test case + * + * @param testName name of the test case + */ + public AppTest( String testName ) + { + super( testName ); + } + + /** + * @return the suite of tests being tested + */ + public static Test suite() + { + return new TestSuite( AppTest.class ); + } + + /** + * Rigourous Test :-) + */ + public void testApp() + { + assertTrue( true ); + } +}