From 8d74f5cc2d723c0bcef7d1b47aaf05c0b842da9c Mon Sep 17 00:00:00 2001 From: Jagruti Date: Thu, 1 Jun 2023 22:25:26 +0530 Subject: [PATCH 01/46] Started with writing test cases for the probe --- .../ThirdPartyRepositoryDetectionProbe.java | 33 ++++ ...hirdPartyRepositoryDetectionProbeTest.java | 55 ++++++ .../resources/fake-test-directory/pom.xml | 174 ++++++++++++++++++ 3 files changed, 262 insertions(+) create mode 100644 core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java create mode 100644 core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java create mode 100644 core/src/test/resources/fake-test-directory/pom.xml diff --git a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java new file mode 100644 index 000000000..62675673c --- /dev/null +++ b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java @@ -0,0 +1,33 @@ +package io.jenkins.pluginhealth.scoring.probes; + +import io.jenkins.pluginhealth.scoring.model.Plugin; +import io.jenkins.pluginhealth.scoring.model.ProbeResult; + +import org.slf4j.Logger; +import org.slf4j.LoggerFactory; +import org.springframework.core.annotation.Order; +import org.springframework.stereotype.Component; + +@Component +@Order(value = ThirdPartyRepositoryDetectionProbe.ORDER) +public class ThirdPartyRepositoryDetectionProbe extends Probe{ + + private static final Logger LOGGER = LoggerFactory.getLogger(ThirdPartyRepositoryDetectionProbe.class); + public static final int ORDER = SCMLinkValidationProbe.ORDER + 100; + public static final String KEY = "third-party-repository-detection-probe"; + + @Override + protected ProbeResult doApply(Plugin plugin, ProbeContext context) { + return null; + } + + @Override + public String key() { + return null; + } + + @Override + public String getDescription() { + return null; + } +} diff --git a/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java b/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java new file mode 100644 index 000000000..bd6832eed --- /dev/null +++ b/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java @@ -0,0 +1,55 @@ +package io.jenkins.pluginhealth.scoring.probes; + +import static org.assertj.core.api.Assertions.assertThat; +import static org.mockito.ArgumentMatchers.any; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.spy; +import static org.mockito.Mockito.verify; + +import java.io.File; + +import io.jenkins.pluginhealth.scoring.model.Plugin; +import io.jenkins.pluginhealth.scoring.model.ProbeResult; + +import org.junit.jupiter.api.Test; + +public class ThirdPartyRepositoryDetectionProbeTest extends AbstractProbeTest { + @Override + ThirdPartyRepositoryDetectionProbe getSpy() { + return spy(ThirdPartyRepositoryDetectionProbe.class); + } + + @Test + void shouldFailIfThirdPartRepositoriesDetected() { + + final Plugin plugin = mock(Plugin.class); + final ProbeContext ctx = mock(ProbeContext.class); + final ThirdPartyRepositoryDetectionProbe probe = getSpy(); + + ClassLoader classLoader = getClass().getClassLoader(); + File file = new File(classLoader.getResource("fake-test-directory/pom.xml").getFile()); + + assertThat(probe.apply(plugin, ctx)) + .usingRecursiveComparison() + .comparingOnlyFields("id", "message", "status") + .isEqualTo(ProbeResult.failure(ThirdPartyRepositoryDetectionProbe.KEY, "Third party repository detected in the plugin")); + verify(probe).doApply(any(Plugin.class), any(ProbeContext.class)); + + } + + @Test + void shouldPassIfNoThirdPartyRepositoriesDetected() { + final Plugin plugin = mock(Plugin.class); + final ProbeContext ctx = mock(ProbeContext.class); + final ThirdPartyRepositoryDetectionProbe probe = getSpy(); + + assertThat(probe.apply(plugin, ctx)) + .usingRecursiveComparison() + .comparingOnlyFields("id", "message", "status") + .isEqualTo(ProbeResult.failure(ThirdPartyRepositoryDetectionProbe.KEY, "The plugin has no third party repositories")); + verify(probe).doApply(any(Plugin.class), any(ProbeContext.class)); + + } + + +} diff --git a/core/src/test/resources/fake-test-directory/pom.xml b/core/src/test/resources/fake-test-directory/pom.xml new file mode 100644 index 000000000..67ae801a2 --- /dev/null +++ b/core/src/test/resources/fake-test-directory/pom.xml @@ -0,0 +1,174 @@ + + + + + 4.0.0 + + org.jenkins-ci.plugins + plugin + 4.58 + + + + + 9999-SNAPSHOT + 2.361.4 + jenkinsci/${project.artifactId}-plugin + false + + false + + + + confluence-publisher + Confluence Publisher + Publish build artifacts to an Atlassian Confluence wiki + ${changelist} + hpi + https://github.com/jenkinsci/${project.artifactId}-plugin + + + MeetMe, Inc. + http://www.meetme.com/ + + + + + The Apache Software License, Version 2.0 + http://www.apache.org/licenses/LICENSE-2.0.txt + manual + + Copyright 2011-2012 Insider Guides, Inc. + Copyright 2012 MeetMe, Inc. + + + + + + + jhansche + Joe Hansche + jhansche@myyearbook.com + + author + + + + jetersen + Joseph Petersen + jetersen@github + + maintainer + + + + + + + + io.jenkins.tools.bom + bom-2.361.x + 1968.vb_14a_29e76128 + import + pom + + + com.atlassian.plugins + atlassian-plugins-core + 7.1.6 + + + + + + + org.jenkins-ci.plugins.workflow + workflow-cps + + + org.jenkins-ci.plugins + structs + + + com.atlassian.confluence + confluence-rest-client + 7.14.0 + + + com.google.errorprone + error_prone_annotations + + + com.google.j2objc + j2objc-annotations + + + org.checkerframework + checker-qual + + + + + io.jenkins.plugins + jaxb + + + org.jenkins-ci.plugins + credentials + + + org.jenkins-ci.plugins + plain-credentials + + + junit + junit + test + + + org.mockito + mockito-core + test + + + + + scm:git:https://github.com/${gitHubRepo} + scm:git:https://github.com/${gitHubRepo} + https://github.com/${gitHubRepo} + ${scmTag} + + + + + repo.jenkins-ci.org + https://repo.jenkins-ci.org/public/ + + + releases-repo.jenkins-ci.org + https://repo.jenkins-ci.org/releases/ + + + atlassian-public + https://packages.atlassian.com/mvn/maven-external/ + + true + never + warn + + + true + warn + + + + + + + repo.jenkins-ci.org + https://repo.jenkins-ci.org/public/ + + + From 7d6207680170de289a8e738a91b62481e94e331c Mon Sep 17 00:00:00 2001 From: Jagruti Tiwari Date: Fri, 2 Jun 2023 20:19:39 +0530 Subject: [PATCH 02/46] Removing unwanted details from test pom file. Co-authored-by: Adrien Lecharpentier --- .../resources/fake-test-directory/pom.xml | 116 ------------------ 1 file changed, 116 deletions(-) diff --git a/core/src/test/resources/fake-test-directory/pom.xml b/core/src/test/resources/fake-test-directory/pom.xml index 67ae801a2..2eaba3fca 100644 --- a/core/src/test/resources/fake-test-directory/pom.xml +++ b/core/src/test/resources/fake-test-directory/pom.xml @@ -15,10 +15,6 @@ 9999-SNAPSHOT 2.361.4 - jenkinsci/${project.artifactId}-plugin - false - - false @@ -29,118 +25,6 @@ hpi https://github.com/jenkinsci/${project.artifactId}-plugin - - MeetMe, Inc. - http://www.meetme.com/ - - - - - The Apache Software License, Version 2.0 - http://www.apache.org/licenses/LICENSE-2.0.txt - manual - - Copyright 2011-2012 Insider Guides, Inc. - Copyright 2012 MeetMe, Inc. - - - - - - - jhansche - Joe Hansche - jhansche@myyearbook.com - - author - - - - jetersen - Joseph Petersen - jetersen@github - - maintainer - - - - - - - - io.jenkins.tools.bom - bom-2.361.x - 1968.vb_14a_29e76128 - import - pom - - - com.atlassian.plugins - atlassian-plugins-core - 7.1.6 - - - - - - - org.jenkins-ci.plugins.workflow - workflow-cps - - - org.jenkins-ci.plugins - structs - - - com.atlassian.confluence - confluence-rest-client - 7.14.0 - - - com.google.errorprone - error_prone_annotations - - - com.google.j2objc - j2objc-annotations - - - org.checkerframework - checker-qual - - - - - io.jenkins.plugins - jaxb - - - org.jenkins-ci.plugins - credentials - - - org.jenkins-ci.plugins - plain-credentials - - - junit - junit - test - - - org.mockito - mockito-core - test - - - - - scm:git:https://github.com/${gitHubRepo} - scm:git:https://github.com/${gitHubRepo} - https://github.com/${gitHubRepo} - ${scmTag} - - repo.jenkins-ci.org From 4286ff4a00675ef4e0c473371be46ff8bdff50a3 Mon Sep 17 00:00:00 2001 From: Jagruti Date: Fri, 2 Jun 2023 20:44:25 +0530 Subject: [PATCH 03/46] Adding dummy to pom test files --- .../pom.xml | 0 .../pom-test-only-correct-path/pom.xml | 45 +++++++++++++++++++ .../pom-test-only-incorrect-path/pom.xml | 43 ++++++++++++++++++ 3 files changed, 88 insertions(+) rename core/src/test/resources/{fake-test-directory => pom-test-both-paths}/pom.xml (100%) create mode 100644 core/src/test/resources/pom-test-only-correct-path/pom.xml create mode 100644 core/src/test/resources/pom-test-only-incorrect-path/pom.xml diff --git a/core/src/test/resources/fake-test-directory/pom.xml b/core/src/test/resources/pom-test-both-paths/pom.xml similarity index 100% rename from core/src/test/resources/fake-test-directory/pom.xml rename to core/src/test/resources/pom-test-both-paths/pom.xml diff --git a/core/src/test/resources/pom-test-only-correct-path/pom.xml b/core/src/test/resources/pom-test-only-correct-path/pom.xml new file mode 100644 index 000000000..1da91583d --- /dev/null +++ b/core/src/test/resources/pom-test-only-correct-path/pom.xml @@ -0,0 +1,45 @@ + + + + + 4.0.0 + + not-a-real-group-id + plugin + 4.58 + + + + + 9999-SNAPSHOT + 2.361.4 + + + + not-a-real-publisher + Fake Publisher + For testing purpose + ${changelist} + hpi + https://test.com/test/${project.artifactId}-plugin + + + + repo.jenkins-ci.org + https://repo.jenkins-ci.org/public/ + + + releases-repo.jenkins-ci.org + https://repo.jenkins-ci.org/releases/ + + + + + + repo.jenkins-ci.org + https://repo.jenkins-ci.org/public/ + + + diff --git a/core/src/test/resources/pom-test-only-incorrect-path/pom.xml b/core/src/test/resources/pom-test-only-incorrect-path/pom.xml new file mode 100644 index 000000000..e1d50afbe --- /dev/null +++ b/core/src/test/resources/pom-test-only-incorrect-path/pom.xml @@ -0,0 +1,43 @@ + + + + + 4.0.0 + + not-a-real-group-id + plugin + 4.58 + + + + + 9999-SNAPSHOT + 2.361.4 + + + + not-a-real-publisher + Fake Publisher + For testing purpose + ${changelist} + hpi + https://test.com/test/${project.artifactId}-plugin + + + + atlassian-public + https://packages.atlassian.com/mvn/maven-external/ + + true + never + warn + + + true + warn + + + + From f4126574dade908eeec0cf12a0bb712f48091470 Mon Sep 17 00:00:00 2001 From: Jagruti Date: Fri, 2 Jun 2023 20:52:17 +0530 Subject: [PATCH 04/46] Adding dummy values to pom test files --- core/src/test/resources/pom-test-both-paths/pom.xml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/core/src/test/resources/pom-test-both-paths/pom.xml b/core/src/test/resources/pom-test-both-paths/pom.xml index 2eaba3fca..b479fb92d 100644 --- a/core/src/test/resources/pom-test-both-paths/pom.xml +++ b/core/src/test/resources/pom-test-both-paths/pom.xml @@ -6,7 +6,7 @@ 4.0.0 - org.jenkins-ci.plugins + not-a-real-group-id plugin 4.58 @@ -18,12 +18,12 @@ - confluence-publisher - Confluence Publisher - Publish build artifacts to an Atlassian Confluence wiki + not-a-real-publisher + Fake Publisher + For testing purpose ${changelist} hpi - https://github.com/jenkinsci/${project.artifactId}-plugin + https://test.com/test/${project.artifactId}-plugin From 537d68ac9735b197d318d67a3c0ed7a5fc6106f9 Mon Sep 17 00:00:00 2001 From: Jagruti Date: Fri, 2 Jun 2023 21:00:16 +0530 Subject: [PATCH 05/46] Restoring valuable test data --- core/src/test/resources/pom-test-both-paths/pom.xml | 2 +- core/src/test/resources/pom-test-only-correct-path/pom.xml | 2 +- core/src/test/resources/pom-test-only-incorrect-path/pom.xml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/core/src/test/resources/pom-test-both-paths/pom.xml b/core/src/test/resources/pom-test-both-paths/pom.xml index b479fb92d..8294ed368 100644 --- a/core/src/test/resources/pom-test-both-paths/pom.xml +++ b/core/src/test/resources/pom-test-both-paths/pom.xml @@ -6,7 +6,7 @@ 4.0.0 - not-a-real-group-id + org.jenkins-ci.plugins plugin 4.58 diff --git a/core/src/test/resources/pom-test-only-correct-path/pom.xml b/core/src/test/resources/pom-test-only-correct-path/pom.xml index 1da91583d..7ba2f3185 100644 --- a/core/src/test/resources/pom-test-only-correct-path/pom.xml +++ b/core/src/test/resources/pom-test-only-correct-path/pom.xml @@ -6,7 +6,7 @@ 4.0.0 - not-a-real-group-id + org.jenkins-ci.plugins plugin 4.58 diff --git a/core/src/test/resources/pom-test-only-incorrect-path/pom.xml b/core/src/test/resources/pom-test-only-incorrect-path/pom.xml index e1d50afbe..b4430cbea 100644 --- a/core/src/test/resources/pom-test-only-incorrect-path/pom.xml +++ b/core/src/test/resources/pom-test-only-incorrect-path/pom.xml @@ -6,7 +6,7 @@ 4.0.0 - not-a-real-group-id + org.jenkins-ci.plugins plugin 4.58 From 491d16d497a8dcd91cb3dc2618e85eab05d1f93f Mon Sep 17 00:00:00 2001 From: Jagruti Date: Sat, 3 Jun 2023 20:29:23 +0530 Subject: [PATCH 06/46] Updating the code and test cases --- .gitignore | 4 +++ core/pom.xml | 5 +++ .../ThirdPartyRepositoryDetectionProbe.java | 36 +++++++++++++++++-- ...hirdPartyRepositoryDetectionProbeTest.java | 33 +++++++++++------ pom.xml | 5 +++ 5 files changed, 70 insertions(+), 13 deletions(-) diff --git a/.gitignore b/.gitignore index 8cd8cc125..7417606fa 100644 --- a/.gitignore +++ b/.gitignore @@ -21,3 +21,7 @@ node_modules/ !.yarn/releases !.yarn/sdks !.yarn/versions + +### IDE +*.iml +*.idea diff --git a/core/pom.xml b/core/pom.xml index 633e775f5..f670417f3 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -102,5 +102,10 @@ postgresql test + + org.apache.maven + maven-model + 3.8.6 + diff --git a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java index 62675673c..a996fbc20 100644 --- a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java +++ b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java @@ -2,12 +2,20 @@ import io.jenkins.pluginhealth.scoring.model.Plugin; import io.jenkins.pluginhealth.scoring.model.ProbeResult; - +import org.apache.maven.model.Model; +import org.apache.maven.model.Repository; +import org.apache.maven.model.io.xpp3.MavenXpp3Reader; +import org.codehaus.plexus.util.xml.pull.XmlPullParserException; import org.slf4j.Logger; import org.slf4j.LoggerFactory; import org.springframework.core.annotation.Order; import org.springframework.stereotype.Component; +import java.io.FileNotFoundException; +import java.io.FileReader; +import java.io.IOException; +import java.util.List; + @Component @Order(value = ThirdPartyRepositoryDetectionProbe.ORDER) public class ThirdPartyRepositoryDetectionProbe extends Probe{ @@ -18,7 +26,31 @@ public class ThirdPartyRepositoryDetectionProbe extends Probe{ @Override protected ProbeResult doApply(Plugin plugin, ProbeContext context) { - return null; + final String path = "https://repo.jenkins-ci.org"; + MavenXpp3Reader mavenReader = new MavenXpp3Reader(); + try { + Model model = mavenReader.read(new FileReader(plugin.getScm()+"/pom.xml")); + for (Repository repository : getRepositories(model)) { + if(repository.getUrl().startsWith(path)) { + return ProbeResult.failure(KEY, "Third party repository detected in the plugin"); + } + } + } catch (FileNotFoundException e) { + System.out.println("ex 1"); + return ProbeResult.error(KEY, e.getMessage()); + } catch (XmlPullParserException e) { + System.out.println("ex 2"); + return ProbeResult.error(KEY, e.getMessage()); + } catch (IOException e) { + System.out.println("ex 3"); + return ProbeResult.error(KEY, e.getMessage()); + + } + return ProbeResult.success(KEY, "The plugin has no third party repositories"); + } + + private static List getRepositories(Model model) { + return model.getRepositories(); } @Override diff --git a/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java b/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java index bd6832eed..7648f4668 100644 --- a/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java +++ b/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java @@ -2,15 +2,24 @@ import static org.assertj.core.api.Assertions.assertThat; import static org.mockito.ArgumentMatchers.any; -import static org.mockito.Mockito.mock; -import static org.mockito.Mockito.spy; -import static org.mockito.Mockito.verify; +import static org.mockito.Mockito.*; +import static org.mockito.Mockito.when; -import java.io.File; +import java.io.*; +import java.nio.file.Files; +import java.nio.file.Path; +import java.time.ZonedDateTime; +import java.util.List; +import java.util.Map; import io.jenkins.pluginhealth.scoring.model.Plugin; import io.jenkins.pluginhealth.scoring.model.ProbeResult; +import org.apache.commons.io.FileUtils; +import org.apache.maven.model.Model; +import org.apache.maven.model.Repository; +import org.apache.maven.model.io.xpp3.MavenXpp3Reader; +import org.codehaus.plexus.util.xml.pull.XmlPullParserException; import org.junit.jupiter.api.Test; public class ThirdPartyRepositoryDetectionProbeTest extends AbstractProbeTest { @@ -20,21 +29,23 @@ ThirdPartyRepositoryDetectionProbe getSpy() { } @Test - void shouldFailIfThirdPartRepositoriesDetected() { - + void shouldFailIfThirdPartRepositoriesDetected() throws IOException, XmlPullParserException { final Plugin plugin = mock(Plugin.class); final ProbeContext ctx = mock(ProbeContext.class); - final ThirdPartyRepositoryDetectionProbe probe = getSpy(); - ClassLoader classLoader = getClass().getClassLoader(); - File file = new File(classLoader.getResource("fake-test-directory/pom.xml").getFile()); + InputStream inputStream = getClass().getClassLoader().getResourceAsStream("pom-test-both-paths/pom.xml"); + + MavenXpp3Reader mavenReader = mock(MavenXpp3Reader.class); + Model mockModel = mock(Model.class); + List repositoryList = mavenReader.read(inputStream).getRepositories(); + when(mockModel.getRepositories()).thenReturn(repositoryList); + + final ThirdPartyRepositoryDetectionProbe probe = getSpy(); assertThat(probe.apply(plugin, ctx)) .usingRecursiveComparison() .comparingOnlyFields("id", "message", "status") .isEqualTo(ProbeResult.failure(ThirdPartyRepositoryDetectionProbe.KEY, "Third party repository detected in the plugin")); - verify(probe).doApply(any(Plugin.class), any(ProbeContext.class)); - } @Test diff --git a/pom.xml b/pom.xml index 594b6c921..625536d5c 100644 --- a/pom.xml +++ b/pom.xml @@ -137,6 +137,11 @@ github-api 1.314 + + org.apache.maven + maven-model + 3.9.2 + From 3f593a439dc68b66e58cf1e5daa831f52dd2b4a7 Mon Sep 17 00:00:00 2001 From: Jagruti Date: Sat, 3 Jun 2023 20:32:48 +0530 Subject: [PATCH 07/46] Removing unused imports --- .../probes/ThirdPartyRepositoryDetectionProbe.java | 10 +++++----- .../probes/ThirdPartyRepositoryDetectionProbeTest.java | 5 ----- 2 files changed, 5 insertions(+), 10 deletions(-) diff --git a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java index a996fbc20..1806f233b 100644 --- a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java +++ b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java @@ -1,5 +1,10 @@ package io.jenkins.pluginhealth.scoring.probes; +import java.io.FileNotFoundException; +import java.io.FileReader; +import java.io.IOException; +import java.util.List; + import io.jenkins.pluginhealth.scoring.model.Plugin; import io.jenkins.pluginhealth.scoring.model.ProbeResult; import org.apache.maven.model.Model; @@ -11,11 +16,6 @@ import org.springframework.core.annotation.Order; import org.springframework.stereotype.Component; -import java.io.FileNotFoundException; -import java.io.FileReader; -import java.io.IOException; -import java.util.List; - @Component @Order(value = ThirdPartyRepositoryDetectionProbe.ORDER) public class ThirdPartyRepositoryDetectionProbe extends Probe{ diff --git a/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java b/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java index 7648f4668..52999a45a 100644 --- a/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java +++ b/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java @@ -6,16 +6,11 @@ import static org.mockito.Mockito.when; import java.io.*; -import java.nio.file.Files; -import java.nio.file.Path; -import java.time.ZonedDateTime; import java.util.List; -import java.util.Map; import io.jenkins.pluginhealth.scoring.model.Plugin; import io.jenkins.pluginhealth.scoring.model.ProbeResult; -import org.apache.commons.io.FileUtils; import org.apache.maven.model.Model; import org.apache.maven.model.Repository; import org.apache.maven.model.io.xpp3.MavenXpp3Reader; From 365db47501db9964a6b4aaf225a78003e0fb8d4d Mon Sep 17 00:00:00 2001 From: Jagruti Date: Sat, 3 Jun 2023 20:37:03 +0530 Subject: [PATCH 08/46] Fixing code --- .../scoring/probes/ThirdPartyRepositoryDetectionProbe.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java index 1806f233b..99dbd4d97 100644 --- a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java +++ b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java @@ -31,7 +31,7 @@ protected ProbeResult doApply(Plugin plugin, ProbeContext context) { try { Model model = mavenReader.read(new FileReader(plugin.getScm()+"/pom.xml")); for (Repository repository : getRepositories(model)) { - if(repository.getUrl().startsWith(path)) { + if(!(repository.getUrl().startsWith(path))) { return ProbeResult.failure(KEY, "Third party repository detected in the plugin"); } } From 3bb27f54c6afcdfd49fe6d7da02d089f5ef1e6ce Mon Sep 17 00:00:00 2001 From: Jagruti Date: Sat, 3 Jun 2023 20:53:19 +0530 Subject: [PATCH 09/46] Undid irrelevant change --- .gitignore | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/.gitignore b/.gitignore index 7417606fa..1db43b4ca 100644 --- a/.gitignore +++ b/.gitignore @@ -20,8 +20,4 @@ node_modules/ !.yarn/plugins !.yarn/releases !.yarn/sdks -!.yarn/versions - -### IDE -*.iml -*.idea +!.yarn/versions \ No newline at end of file From 99a137980f37fa56bcab03d3d69a12f74ae6e31e Mon Sep 17 00:00:00 2001 From: Jagruti Tiwari Date: Sat, 3 Jun 2023 21:08:34 +0530 Subject: [PATCH 10/46] Apply suggestions from code review Co-authored-by: Adrien Lecharpentier --- core/pom.xml | 1 - .../scoring/probes/ThirdPartyRepositoryDetectionProbe.java | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/core/pom.xml b/core/pom.xml index f670417f3..78ad3b596 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -105,7 +105,6 @@ org.apache.maven maven-model - 3.8.6 diff --git a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java index 99dbd4d97..25ed8a369 100644 --- a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java +++ b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java @@ -19,8 +19,8 @@ @Component @Order(value = ThirdPartyRepositoryDetectionProbe.ORDER) public class ThirdPartyRepositoryDetectionProbe extends Probe{ - private static final Logger LOGGER = LoggerFactory.getLogger(ThirdPartyRepositoryDetectionProbe.class); + public static final int ORDER = SCMLinkValidationProbe.ORDER + 100; public static final String KEY = "third-party-repository-detection-probe"; From e050c24e38060f1e5052b303dc30bd639da86b44 Mon Sep 17 00:00:00 2001 From: Jagruti Date: Sat, 3 Jun 2023 21:46:41 +0530 Subject: [PATCH 11/46] Restoring .gitignore --- .gitignore | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 1db43b4ca..8cd8cc125 100644 --- a/.gitignore +++ b/.gitignore @@ -20,4 +20,4 @@ node_modules/ !.yarn/plugins !.yarn/releases !.yarn/sdks -!.yarn/versions \ No newline at end of file +!.yarn/versions From fda43ae1926037f6b868e41f2456c8905c608ad1 Mon Sep 17 00:00:00 2001 From: Jagruti Date: Sat, 3 Jun 2023 22:34:34 +0530 Subject: [PATCH 12/46] Updated the code and the test case --- .../ThirdPartyRepositoryDetectionProbe.java | 11 ++-- ...hirdPartyRepositoryDetectionProbeTest.java | 56 ++++++++++++++++--- 2 files changed, 52 insertions(+), 15 deletions(-) diff --git a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java index 25ed8a369..888ae4769 100644 --- a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java +++ b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java @@ -29,20 +29,17 @@ protected ProbeResult doApply(Plugin plugin, ProbeContext context) { final String path = "https://repo.jenkins-ci.org"; MavenXpp3Reader mavenReader = new MavenXpp3Reader(); try { - Model model = mavenReader.read(new FileReader(plugin.getScm()+"/pom.xml")); + Model model = mavenReader.read(new FileReader(context.getScmRepository()+"/pom.xml")); for (Repository repository : getRepositories(model)) { if(!(repository.getUrl().startsWith(path))) { - return ProbeResult.failure(KEY, "Third party repository detected in the plugin"); + return ProbeResult.failure(KEY, "Third party repositories detected in the plugin"); } } } catch (FileNotFoundException e) { - System.out.println("ex 1"); return ProbeResult.error(KEY, e.getMessage()); } catch (XmlPullParserException e) { - System.out.println("ex 2"); return ProbeResult.error(KEY, e.getMessage()); } catch (IOException e) { - System.out.println("ex 3"); return ProbeResult.error(KEY, e.getMessage()); } @@ -55,11 +52,11 @@ private static List getRepositories(Model model) { @Override public String key() { - return null; + return KEY; } @Override public String getDescription() { - return null; + return "Detects third-party repositories in a plugin."; } } diff --git a/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java b/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java index 52999a45a..4b646e0a0 100644 --- a/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java +++ b/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java @@ -6,6 +6,8 @@ import static org.mockito.Mockito.when; import java.io.*; +import java.nio.file.Path; +import java.nio.file.Paths; import java.util.List; import io.jenkins.pluginhealth.scoring.model.Plugin; @@ -28,33 +30,71 @@ void shouldFailIfThirdPartRepositoriesDetected() throws IOException, XmlPullPars final Plugin plugin = mock(Plugin.class); final ProbeContext ctx = mock(ProbeContext.class); - InputStream inputStream = getClass().getClassLoader().getResourceAsStream("pom-test-both-paths/pom.xml"); - - MavenXpp3Reader mavenReader = mock(MavenXpp3Reader.class); - Model mockModel = mock(Model.class); - List repositoryList = mavenReader.read(inputStream).getRepositories(); - when(mockModel.getRepositories()).thenReturn(repositoryList); + Path resourceDirectory = Paths.get("src","test","resources","pom-test-both-paths"); + String absolutePath = resourceDirectory.toFile().getAbsolutePath(); + when(ctx.getScmRepository()).thenReturn(Path.of(absolutePath)); final ThirdPartyRepositoryDetectionProbe probe = getSpy(); assertThat(probe.apply(plugin, ctx)) .usingRecursiveComparison() .comparingOnlyFields("id", "message", "status") - .isEqualTo(ProbeResult.failure(ThirdPartyRepositoryDetectionProbe.KEY, "Third party repository detected in the plugin")); + .isEqualTo(ProbeResult.failure(ThirdPartyRepositoryDetectionProbe.KEY, "Third party repositories detected in the plugin")); + verify(probe).doApply(any(Plugin.class), any(ProbeContext.class)); } @Test void shouldPassIfNoThirdPartyRepositoriesDetected() { final Plugin plugin = mock(Plugin.class); final ProbeContext ctx = mock(ProbeContext.class); + + Path resourceDirectory = Paths.get("src","test","resources","pom-test-only-correct-path"); + String absolutePath = resourceDirectory.toFile().getAbsolutePath(); + when(ctx.getScmRepository()).thenReturn(Path.of(absolutePath)); + final ThirdPartyRepositoryDetectionProbe probe = getSpy(); assertThat(probe.apply(plugin, ctx)) .usingRecursiveComparison() .comparingOnlyFields("id", "message", "status") - .isEqualTo(ProbeResult.failure(ThirdPartyRepositoryDetectionProbe.KEY, "The plugin has no third party repositories")); + .isEqualTo(ProbeResult.success(ThirdPartyRepositoryDetectionProbe.KEY, "The plugin has no third party repositories")); verify(probe).doApply(any(Plugin.class), any(ProbeContext.class)); + } + @Test + void shouldFailIfOnlyThirdPartyRepositoriesDetected() { + final Plugin plugin = mock(Plugin.class); + final ProbeContext ctx = mock(ProbeContext.class); + + Path resourceDirectory = Paths.get("src","test","resources","pom-test-only-incorrect-path"); + String absolutePath = resourceDirectory.toFile().getAbsolutePath(); + when(ctx.getScmRepository()).thenReturn(Path.of(absolutePath)); + + final ThirdPartyRepositoryDetectionProbe probe = getSpy(); + + assertThat(probe.apply(plugin, ctx)) + .usingRecursiveComparison() + .comparingOnlyFields("id", "message", "status") + .isEqualTo(ProbeResult.failure(ThirdPartyRepositoryDetectionProbe.KEY, "Third party repositories detected in the plugin")); + verify(probe).doApply(any(Plugin.class), any(ProbeContext.class)); + } + + @Test + void shouldPassIfNoRepositoriesDetected() { + final Plugin plugin = mock(Plugin.class); + final ProbeContext ctx = mock(ProbeContext.class); + + Path resourceDirectory = Paths.get("src","test","resources","pom-test-no-repository-tag"); + String absolutePath = resourceDirectory.toFile().getAbsolutePath(); + when(ctx.getScmRepository()).thenReturn(Path.of(absolutePath)); + + final ThirdPartyRepositoryDetectionProbe probe = getSpy(); + + assertThat(probe.apply(plugin, ctx)) + .usingRecursiveComparison() + .comparingOnlyFields("id", "message", "status") + .isEqualTo(ProbeResult.success(ThirdPartyRepositoryDetectionProbe.KEY, "The plugin has no third party repositories")); + verify(probe).doApply(any(Plugin.class), any(ProbeContext.class)); } From c5c3530ddf5aba91ecb2c94268e5824f6a9aea96 Mon Sep 17 00:00:00 2001 From: Jagruti Date: Sat, 3 Jun 2023 22:37:18 +0530 Subject: [PATCH 13/46] Updating the test case --- .../pom-test-no-repository-tag/pom.xml | 28 +++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 core/src/test/resources/pom-test-no-repository-tag/pom.xml diff --git a/core/src/test/resources/pom-test-no-repository-tag/pom.xml b/core/src/test/resources/pom-test-no-repository-tag/pom.xml new file mode 100644 index 000000000..217f9651b --- /dev/null +++ b/core/src/test/resources/pom-test-no-repository-tag/pom.xml @@ -0,0 +1,28 @@ + + + + + 4.0.0 + + org.jenkins-ci.plugins + plugin + 4.58 + + + + + 9999-SNAPSHOT + 2.361.4 + + + + not-a-real-publisher + Fake Publisher + For testing purpose + ${changelist} + hpi + https://test.com/test/${project.artifactId}-plugin + + From 5dfd1ed993514027a7ee41904df2b3d27ef4a8a2 Mon Sep 17 00:00:00 2001 From: Jagruti Date: Sun, 4 Jun 2023 14:06:28 +0530 Subject: [PATCH 14/46] updating the code and revamping the test cases --- .../ThirdPartyRepositoryDetectionProbe.java | 9 +++ ...hirdPartyRepositoryDetectionProbeTest.java | 64 +++++++++++++------ 2 files changed, 52 insertions(+), 21 deletions(-) diff --git a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java index 888ae4769..25c436c2f 100644 --- a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java +++ b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java @@ -4,6 +4,7 @@ import java.io.FileReader; import java.io.IOException; import java.util.List; +import java.util.regex.Matcher; import io.jenkins.pluginhealth.scoring.model.Plugin; import io.jenkins.pluginhealth.scoring.model.ProbeResult; @@ -36,10 +37,13 @@ protected ProbeResult doApply(Plugin plugin, ProbeContext context) { } } } catch (FileNotFoundException e) { + LOGGER.error("File not found at {}", plugin.getName()); return ProbeResult.error(KEY, e.getMessage()); } catch (XmlPullParserException e) { + LOGGER.error("Pom file could not be parsed at {}", plugin.getName()); return ProbeResult.error(KEY, e.getMessage()); } catch (IOException e) { + LOGGER.error("File reading exception at {}", plugin.getName()); return ProbeResult.error(KEY, e.getMessage()); } @@ -59,4 +63,9 @@ public String key() { public String getDescription() { return "Detects third-party repositories in a plugin."; } + + @Override + public String[] getProbeResultRequirement() { + return new String[] { SCMLinkValidationProbe.KEY}; + } } diff --git a/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java b/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java index 4b646e0a0..dd2c5de7e 100644 --- a/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java +++ b/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java @@ -1,6 +1,7 @@ package io.jenkins.pluginhealth.scoring.probes; import static org.assertj.core.api.Assertions.assertThat; +import static org.junit.jupiter.params.provider.Arguments.arguments; import static org.mockito.ArgumentMatchers.any; import static org.mockito.Mockito.*; import static org.mockito.Mockito.when; @@ -8,16 +9,16 @@ import java.io.*; import java.nio.file.Path; import java.nio.file.Paths; -import java.util.List; +import java.util.Map; +import java.util.stream.Stream; import io.jenkins.pluginhealth.scoring.model.Plugin; import io.jenkins.pluginhealth.scoring.model.ProbeResult; -import org.apache.maven.model.Model; -import org.apache.maven.model.Repository; -import org.apache.maven.model.io.xpp3.MavenXpp3Reader; -import org.codehaus.plexus.util.xml.pull.XmlPullParserException; import org.junit.jupiter.api.Test; +import org.junit.jupiter.params.ParameterizedTest; +import org.junit.jupiter.params.provider.Arguments; +import org.junit.jupiter.params.provider.MethodSource; public class ThirdPartyRepositoryDetectionProbeTest extends AbstractProbeTest { @Override @@ -25,28 +26,45 @@ ThirdPartyRepositoryDetectionProbe getSpy() { return spy(ThirdPartyRepositoryDetectionProbe.class); } + static Stream pomPathAndProbeResults() { + return Stream.of( + arguments( + Paths.get("src","test","resources","pom-test-both-paths"), + "test-foo-bar", + new String[]{SCMLinkValidationProbe.KEY}, + Map.of(ThirdPartyRepositoryDetectionProbe.KEY, ProbeResult.failure(ThirdPartyRepositoryDetectionProbe.KEY, "Third party repositories detected in the plugin")) + ), + arguments( + Paths.get("src","test","resources","pom-test-only-incorrect-path"), + "test-foo-bar", + new String[]{SCMLinkValidationProbe.KEY}, + Map.of(ThirdPartyRepositoryDetectionProbe.KEY, ProbeResult.failure(ThirdPartyRepositoryDetectionProbe.KEY, "Third party repositories detected in the plugin")) + ) + ); + } @Test - void shouldFailIfThirdPartRepositoriesDetected() throws IOException, XmlPullParserException { + void shouldBeExecutedAfterSCMLinkValidationProbeProbe() { final Plugin plugin = mock(Plugin.class); final ProbeContext ctx = mock(ProbeContext.class); - - Path resourceDirectory = Paths.get("src","test","resources","pom-test-both-paths"); - String absolutePath = resourceDirectory.toFile().getAbsolutePath(); - when(ctx.getScmRepository()).thenReturn(Path.of(absolutePath)); - final ThirdPartyRepositoryDetectionProbe probe = getSpy(); + when(plugin.getName()).thenReturn("foo-bar"); + assertThat(probe.apply(plugin, ctx)) .usingRecursiveComparison() - .comparingOnlyFields("id", "message", "status") - .isEqualTo(ProbeResult.failure(ThirdPartyRepositoryDetectionProbe.KEY, "Third party repositories detected in the plugin")); - verify(probe).doApply(any(Plugin.class), any(ProbeContext.class)); + .comparingOnlyFields("id", "status") + .isEqualTo(ProbeResult.error(ThirdPartyRepositoryDetectionProbe.KEY, "")); + verify(probe, never()).doApply(plugin, ctx); } @Test void shouldPassIfNoThirdPartyRepositoriesDetected() { final Plugin plugin = mock(Plugin.class); final ProbeContext ctx = mock(ProbeContext.class); + final String scmLink = "https://test-server/jenkinsci/test-repo"; + final String pluginName = "test-plugin"; + when(plugin.getName()).thenReturn(pluginName); + when(plugin.getScm()).thenReturn(scmLink); Path resourceDirectory = Paths.get("src","test","resources","pom-test-only-correct-path"); String absolutePath = resourceDirectory.toFile().getAbsolutePath(); @@ -62,11 +80,11 @@ void shouldPassIfNoThirdPartyRepositoriesDetected() { } @Test - void shouldFailIfOnlyThirdPartyRepositoriesDetected() { + void shouldPassIfNoRepositoriesDetected() { final Plugin plugin = mock(Plugin.class); final ProbeContext ctx = mock(ProbeContext.class); - Path resourceDirectory = Paths.get("src","test","resources","pom-test-only-incorrect-path"); + Path resourceDirectory = Paths.get("src","test","resources","pom-test-no-repository-tag"); String absolutePath = resourceDirectory.toFile().getAbsolutePath(); when(ctx.getScmRepository()).thenReturn(Path.of(absolutePath)); @@ -75,25 +93,29 @@ void shouldFailIfOnlyThirdPartyRepositoriesDetected() { assertThat(probe.apply(plugin, ctx)) .usingRecursiveComparison() .comparingOnlyFields("id", "message", "status") - .isEqualTo(ProbeResult.failure(ThirdPartyRepositoryDetectionProbe.KEY, "Third party repositories detected in the plugin")); + .isEqualTo(ProbeResult.success(ThirdPartyRepositoryDetectionProbe.KEY, "The plugin has no third party repositories")); verify(probe).doApply(any(Plugin.class), any(ProbeContext.class)); } - @Test - void shouldPassIfNoRepositoriesDetected() { + @ParameterizedTest + @MethodSource("pomPathAndProbeResults") + void shouldFailIfThirdPartRepositoriesDetected(Path resourceDirectory, String pluginName, String[] probeResultRequirement, Map details) { final Plugin plugin = mock(Plugin.class); final ProbeContext ctx = mock(ProbeContext.class); + when(plugin.getDetails()).thenReturn(details); - Path resourceDirectory = Paths.get("src","test","resources","pom-test-no-repository-tag"); String absolutePath = resourceDirectory.toFile().getAbsolutePath(); when(ctx.getScmRepository()).thenReturn(Path.of(absolutePath)); + when(plugin.getName()).thenReturn(pluginName); final ThirdPartyRepositoryDetectionProbe probe = getSpy(); + when(probe.getProbeResultRequirement()).thenReturn(probeResultRequirement); + assertThat(probe.apply(plugin, ctx)) .usingRecursiveComparison() .comparingOnlyFields("id", "message", "status") - .isEqualTo(ProbeResult.success(ThirdPartyRepositoryDetectionProbe.KEY, "The plugin has no third party repositories")); + .isEqualTo(ProbeResult.failure(ThirdPartyRepositoryDetectionProbe.KEY, "Third party repositories detected in the plugin")); verify(probe).doApply(any(Plugin.class), any(ProbeContext.class)); } From 9b246d4e3f9fe6582fa056980b3099e9b378821f Mon Sep 17 00:00:00 2001 From: Jagruti Date: Sun, 4 Jun 2023 17:48:29 +0530 Subject: [PATCH 15/46] Updating the test cases --- ...hirdPartyRepositoryDetectionProbeTest.java | 33 +++++++++++++------ 1 file changed, 23 insertions(+), 10 deletions(-) diff --git a/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java b/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java index dd2c5de7e..ade237ff9 100644 --- a/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java +++ b/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java @@ -6,7 +6,6 @@ import static org.mockito.Mockito.*; import static org.mockito.Mockito.when; -import java.io.*; import java.nio.file.Path; import java.nio.file.Paths; import java.util.Map; @@ -26,19 +25,31 @@ ThirdPartyRepositoryDetectionProbe getSpy() { return spy(ThirdPartyRepositoryDetectionProbe.class); } - static Stream pomPathAndProbeResults() { + static Stream pomPathAndProbeSuccessTestParameters() { + return Stream.of( + arguments( + Paths.get("src","test","resources","pom-test-only-correct-path"), + new String[]{SCMLinkValidationProbe.KEY}, + Map.of(SCMLinkValidationProbe.KEY, ProbeResult.success(SCMLinkValidationProbe.KEY, "")) + ), + arguments( + Paths.get("src","test","resources","pom-test-no-repository-tag"), + new String[]{SCMLinkValidationProbe.KEY}, + Map.of(SCMLinkValidationProbe.KEY, ProbeResult.success(SCMLinkValidationProbe.KEY, "")) + ) + ); + } + static Stream pomPathAndProbeFailureTestParameters() { return Stream.of( arguments( Paths.get("src","test","resources","pom-test-both-paths"), - "test-foo-bar", new String[]{SCMLinkValidationProbe.KEY}, - Map.of(ThirdPartyRepositoryDetectionProbe.KEY, ProbeResult.failure(ThirdPartyRepositoryDetectionProbe.KEY, "Third party repositories detected in the plugin")) + Map.of(SCMLinkValidationProbe.KEY, ProbeResult.success(SCMLinkValidationProbe.KEY, "")) ), arguments( Paths.get("src","test","resources","pom-test-only-incorrect-path"), - "test-foo-bar", new String[]{SCMLinkValidationProbe.KEY}, - Map.of(ThirdPartyRepositoryDetectionProbe.KEY, ProbeResult.failure(ThirdPartyRepositoryDetectionProbe.KEY, "Third party repositories detected in the plugin")) + Map.of(SCMLinkValidationProbe.KEY, ProbeResult.success(SCMLinkValidationProbe.KEY, "")) ) ); } @@ -71,6 +82,8 @@ void shouldPassIfNoThirdPartyRepositoriesDetected() { when(ctx.getScmRepository()).thenReturn(Path.of(absolutePath)); final ThirdPartyRepositoryDetectionProbe probe = getSpy(); + when(plugin.getDetails()).thenReturn(Map.of(SCMLinkValidationProbe.KEY, ProbeResult.success(SCMLinkValidationProbe.KEY, ""))); + when(probe.getProbeResultRequirement()).thenReturn(new String [] {SCMLinkValidationProbe.KEY}); assertThat(probe.apply(plugin, ctx)) .usingRecursiveComparison() @@ -89,6 +102,8 @@ void shouldPassIfNoRepositoriesDetected() { when(ctx.getScmRepository()).thenReturn(Path.of(absolutePath)); final ThirdPartyRepositoryDetectionProbe probe = getSpy(); + when(plugin.getDetails()).thenReturn(Map.of(SCMLinkValidationProbe.KEY, ProbeResult.success(SCMLinkValidationProbe.KEY, ""))); + when(probe.getProbeResultRequirement()).thenReturn(new String [] {SCMLinkValidationProbe.KEY}); assertThat(probe.apply(plugin, ctx)) .usingRecursiveComparison() @@ -98,20 +113,18 @@ void shouldPassIfNoRepositoriesDetected() { } @ParameterizedTest - @MethodSource("pomPathAndProbeResults") - void shouldFailIfThirdPartRepositoriesDetected(Path resourceDirectory, String pluginName, String[] probeResultRequirement, Map details) { + @MethodSource("pomPathAndProbeFailureTestParameters") + void shouldFailIfThirdPartRepositoriesDetected(Path resourceDirectory, String[] probeResultRequirement, Map details) { final Plugin plugin = mock(Plugin.class); final ProbeContext ctx = mock(ProbeContext.class); when(plugin.getDetails()).thenReturn(details); String absolutePath = resourceDirectory.toFile().getAbsolutePath(); when(ctx.getScmRepository()).thenReturn(Path.of(absolutePath)); - when(plugin.getName()).thenReturn(pluginName); final ThirdPartyRepositoryDetectionProbe probe = getSpy(); when(probe.getProbeResultRequirement()).thenReturn(probeResultRequirement); - assertThat(probe.apply(plugin, ctx)) .usingRecursiveComparison() .comparingOnlyFields("id", "message", "status") From 00340f82c014d525677c98c964e98ef4bd9c7013 Mon Sep 17 00:00:00 2001 From: Jagruti Date: Sun, 4 Jun 2023 18:04:26 +0530 Subject: [PATCH 16/46] Updated the success to be parameterized --- ...hirdPartyRepositoryDetectionProbeTest.java | 34 +++---------------- 1 file changed, 5 insertions(+), 29 deletions(-) diff --git a/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java b/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java index ade237ff9..a9ea6cbcc 100644 --- a/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java +++ b/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java @@ -68,42 +68,18 @@ void shouldBeExecutedAfterSCMLinkValidationProbeProbe() { verify(probe, never()).doApply(plugin, ctx); } - @Test - void shouldPassIfNoThirdPartyRepositoriesDetected() { - final Plugin plugin = mock(Plugin.class); - final ProbeContext ctx = mock(ProbeContext.class); - final String scmLink = "https://test-server/jenkinsci/test-repo"; - final String pluginName = "test-plugin"; - when(plugin.getName()).thenReturn(pluginName); - when(plugin.getScm()).thenReturn(scmLink); - - Path resourceDirectory = Paths.get("src","test","resources","pom-test-only-correct-path"); - String absolutePath = resourceDirectory.toFile().getAbsolutePath(); - when(ctx.getScmRepository()).thenReturn(Path.of(absolutePath)); - - final ThirdPartyRepositoryDetectionProbe probe = getSpy(); - when(plugin.getDetails()).thenReturn(Map.of(SCMLinkValidationProbe.KEY, ProbeResult.success(SCMLinkValidationProbe.KEY, ""))); - when(probe.getProbeResultRequirement()).thenReturn(new String [] {SCMLinkValidationProbe.KEY}); - - assertThat(probe.apply(plugin, ctx)) - .usingRecursiveComparison() - .comparingOnlyFields("id", "message", "status") - .isEqualTo(ProbeResult.success(ThirdPartyRepositoryDetectionProbe.KEY, "The plugin has no third party repositories")); - verify(probe).doApply(any(Plugin.class), any(ProbeContext.class)); - } - - @Test - void shouldPassIfNoRepositoriesDetected() { + @ParameterizedTest + @MethodSource("pomPathAndProbeSuccessTestParameters") + void shouldPassIfNoThirdPartyRepositoriesDetected(Path resourceDirectory, String[] probeResultRequirement, Map details) { final Plugin plugin = mock(Plugin.class); final ProbeContext ctx = mock(ProbeContext.class); - Path resourceDirectory = Paths.get("src","test","resources","pom-test-no-repository-tag"); String absolutePath = resourceDirectory.toFile().getAbsolutePath(); when(ctx.getScmRepository()).thenReturn(Path.of(absolutePath)); final ThirdPartyRepositoryDetectionProbe probe = getSpy(); - when(plugin.getDetails()).thenReturn(Map.of(SCMLinkValidationProbe.KEY, ProbeResult.success(SCMLinkValidationProbe.KEY, ""))); - when(probe.getProbeResultRequirement()).thenReturn(new String [] {SCMLinkValidationProbe.KEY}); + when(plugin.getDetails()).thenReturn(details); + when(probe.getProbeResultRequirement()).thenReturn(probeResultRequirement); assertThat(probe.apply(plugin, ctx)) .usingRecursiveComparison() From a39e24eafb04c4d0883e0562532ff2ac1fac64b5 Mon Sep 17 00:00:00 2001 From: Jagruti Tiwari Date: Sun, 4 Jun 2023 18:44:55 +0530 Subject: [PATCH 17/46] Apply suggestions from code review Co-authored-by: Adrien Lecharpentier --- .../ThirdPartyRepositoryDetectionProbeTest.java | 12 ++---------- 1 file changed, 2 insertions(+), 10 deletions(-) diff --git a/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java b/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java index a9ea6cbcc..b65713fb6 100644 --- a/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java +++ b/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java @@ -29,12 +29,10 @@ static Stream pomPathAndProbeSuccessTestParameters() { return Stream.of( arguments( Paths.get("src","test","resources","pom-test-only-correct-path"), - new String[]{SCMLinkValidationProbe.KEY}, Map.of(SCMLinkValidationProbe.KEY, ProbeResult.success(SCMLinkValidationProbe.KEY, "")) ), arguments( Paths.get("src","test","resources","pom-test-no-repository-tag"), - new String[]{SCMLinkValidationProbe.KEY}, Map.of(SCMLinkValidationProbe.KEY, ProbeResult.success(SCMLinkValidationProbe.KEY, "")) ) ); @@ -43,13 +41,10 @@ static Stream pomPathAndProbeFailureTestParameters() { return Stream.of( arguments( Paths.get("src","test","resources","pom-test-both-paths"), - new String[]{SCMLinkValidationProbe.KEY}, Map.of(SCMLinkValidationProbe.KEY, ProbeResult.success(SCMLinkValidationProbe.KEY, "")) ), arguments( Paths.get("src","test","resources","pom-test-only-incorrect-path"), - new String[]{SCMLinkValidationProbe.KEY}, - Map.of(SCMLinkValidationProbe.KEY, ProbeResult.success(SCMLinkValidationProbe.KEY, "")) ) ); } @@ -68,9 +63,8 @@ void shouldBeExecutedAfterSCMLinkValidationProbeProbe() { verify(probe, never()).doApply(plugin, ctx); } - @ParameterizedTest - @MethodSource("pomPathAndProbeSuccessTestParameters") - void shouldPassIfNoThirdPartyRepositoriesDetected(Path resourceDirectory, String[] probeResultRequirement, Map details) { + @Test + void shouldPassIfNoThirdPartyRepositoriesDetected() { final Plugin plugin = mock(Plugin.class); final ProbeContext ctx = mock(ProbeContext.class); @@ -79,7 +73,6 @@ void shouldPassIfNoThirdPartyRepositoriesDetected(Path resourceDirectory, String final ThirdPartyRepositoryDetectionProbe probe = getSpy(); when(plugin.getDetails()).thenReturn(details); - when(probe.getProbeResultRequirement()).thenReturn(probeResultRequirement); assertThat(probe.apply(plugin, ctx)) .usingRecursiveComparison() @@ -99,7 +92,6 @@ void shouldFailIfThirdPartRepositoriesDetected(Path resourceDirectory, String[] when(ctx.getScmRepository()).thenReturn(Path.of(absolutePath)); final ThirdPartyRepositoryDetectionProbe probe = getSpy(); - when(probe.getProbeResultRequirement()).thenReturn(probeResultRequirement); assertThat(probe.apply(plugin, ctx)) .usingRecursiveComparison() From 008065de25d53945f478e4abbc6dce7622d03c6f Mon Sep 17 00:00:00 2001 From: Jagruti Date: Sun, 4 Jun 2023 19:07:42 +0530 Subject: [PATCH 18/46] Fixed the test cases --- ...hirdPartyRepositoryDetectionProbeTest.java | 49 +++++++++++-------- 1 file changed, 29 insertions(+), 20 deletions(-) diff --git a/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java b/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java index b65713fb6..6bbfe7f01 100644 --- a/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java +++ b/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java @@ -25,26 +25,13 @@ ThirdPartyRepositoryDetectionProbe getSpy() { return spy(ThirdPartyRepositoryDetectionProbe.class); } - static Stream pomPathAndProbeSuccessTestParameters() { - return Stream.of( - arguments( - Paths.get("src","test","resources","pom-test-only-correct-path"), - Map.of(SCMLinkValidationProbe.KEY, ProbeResult.success(SCMLinkValidationProbe.KEY, "")) - ), - arguments( - Paths.get("src","test","resources","pom-test-no-repository-tag"), - Map.of(SCMLinkValidationProbe.KEY, ProbeResult.success(SCMLinkValidationProbe.KEY, "")) - ) - ); - } static Stream pomPathAndProbeFailureTestParameters() { return Stream.of( arguments( - Paths.get("src","test","resources","pom-test-both-paths"), - Map.of(SCMLinkValidationProbe.KEY, ProbeResult.success(SCMLinkValidationProbe.KEY, "")) + Paths.get("src","test","resources","pom-test-both-paths") ), arguments( - Paths.get("src","test","resources","pom-test-only-incorrect-path"), + Paths.get("src","test","resources","pom-test-only-incorrect-path") ) ); } @@ -55,7 +42,6 @@ void shouldBeExecutedAfterSCMLinkValidationProbeProbe() { final ThirdPartyRepositoryDetectionProbe probe = getSpy(); when(plugin.getName()).thenReturn("foo-bar"); - assertThat(probe.apply(plugin, ctx)) .usingRecursiveComparison() .comparingOnlyFields("id", "status") @@ -68,12 +54,34 @@ void shouldPassIfNoThirdPartyRepositoriesDetected() { final Plugin plugin = mock(Plugin.class); final ProbeContext ctx = mock(ProbeContext.class); + Path resourceDirectory = Paths.get("src","test","resources","pom-test-only-correct-path"); String absolutePath = resourceDirectory.toFile().getAbsolutePath(); when(ctx.getScmRepository()).thenReturn(Path.of(absolutePath)); final ThirdPartyRepositoryDetectionProbe probe = getSpy(); - when(plugin.getDetails()).thenReturn(details); + when(plugin.getDetails()).thenReturn(Map.of( + SCMLinkValidationProbe.KEY, ProbeResult.success(SCMLinkValidationProbe.KEY, "") + )); + assertThat(probe.apply(plugin, ctx)) + .usingRecursiveComparison() + .comparingOnlyFields("id", "message", "status") + .isEqualTo(ProbeResult.success(ThirdPartyRepositoryDetectionProbe.KEY, "The plugin has no third party repositories")); + verify(probe).doApply(any(Plugin.class), any(ProbeContext.class)); + } + + @Test + void shouldPassIfNoRepositoriesDetected() { + final Plugin plugin = mock(Plugin.class); + final ProbeContext ctx = mock(ProbeContext.class); + Path resourceDirectory = Paths.get("src","test","resources","pom-test-no-repository-tag"); + String absolutePath = resourceDirectory.toFile().getAbsolutePath(); + when(ctx.getScmRepository()).thenReturn(Path.of(absolutePath)); + + final ThirdPartyRepositoryDetectionProbe probe = getSpy(); + when(plugin.getDetails()).thenReturn(Map.of( + SCMLinkValidationProbe.KEY, ProbeResult.success(SCMLinkValidationProbe.KEY, "") + )); assertThat(probe.apply(plugin, ctx)) .usingRecursiveComparison() .comparingOnlyFields("id", "message", "status") @@ -83,16 +91,17 @@ void shouldPassIfNoThirdPartyRepositoriesDetected() { @ParameterizedTest @MethodSource("pomPathAndProbeFailureTestParameters") - void shouldFailIfThirdPartRepositoriesDetected(Path resourceDirectory, String[] probeResultRequirement, Map details) { + void shouldFailIfThirdPartRepositoriesDetected(Path resourceDirectory) { final Plugin plugin = mock(Plugin.class); final ProbeContext ctx = mock(ProbeContext.class); - when(plugin.getDetails()).thenReturn(details); String absolutePath = resourceDirectory.toFile().getAbsolutePath(); when(ctx.getScmRepository()).thenReturn(Path.of(absolutePath)); final ThirdPartyRepositoryDetectionProbe probe = getSpy(); - + when(plugin.getDetails()).thenReturn(Map.of( + SCMLinkValidationProbe.KEY, ProbeResult.success(SCMLinkValidationProbe.KEY, "") + )); assertThat(probe.apply(plugin, ctx)) .usingRecursiveComparison() .comparingOnlyFields("id", "message", "status") From c565cb4df076553152fbb72ed1090c28f4386be2 Mon Sep 17 00:00:00 2001 From: Jagruti Date: Sun, 4 Jun 2023 19:10:52 +0530 Subject: [PATCH 19/46] Updated the test cases --- .../probes/ThirdPartyRepositoryDetectionProbeTest.java | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java b/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java index 6bbfe7f01..726836042 100644 --- a/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java +++ b/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java @@ -25,7 +25,7 @@ ThirdPartyRepositoryDetectionProbe getSpy() { return spy(ThirdPartyRepositoryDetectionProbe.class); } - static Stream pomPathAndProbeFailureTestParameters() { + static Stream pomPathFailureTestParameters() { return Stream.of( arguments( Paths.get("src","test","resources","pom-test-both-paths") @@ -40,7 +40,6 @@ void shouldBeExecutedAfterSCMLinkValidationProbeProbe() { final Plugin plugin = mock(Plugin.class); final ProbeContext ctx = mock(ProbeContext.class); final ThirdPartyRepositoryDetectionProbe probe = getSpy(); - when(plugin.getName()).thenReturn("foo-bar"); assertThat(probe.apply(plugin, ctx)) .usingRecursiveComparison() @@ -53,7 +52,6 @@ void shouldBeExecutedAfterSCMLinkValidationProbeProbe() { void shouldPassIfNoThirdPartyRepositoriesDetected() { final Plugin plugin = mock(Plugin.class); final ProbeContext ctx = mock(ProbeContext.class); - Path resourceDirectory = Paths.get("src","test","resources","pom-test-only-correct-path"); String absolutePath = resourceDirectory.toFile().getAbsolutePath(); when(ctx.getScmRepository()).thenReturn(Path.of(absolutePath)); @@ -73,7 +71,6 @@ void shouldPassIfNoThirdPartyRepositoriesDetected() { void shouldPassIfNoRepositoriesDetected() { final Plugin plugin = mock(Plugin.class); final ProbeContext ctx = mock(ProbeContext.class); - Path resourceDirectory = Paths.get("src","test","resources","pom-test-no-repository-tag"); String absolutePath = resourceDirectory.toFile().getAbsolutePath(); when(ctx.getScmRepository()).thenReturn(Path.of(absolutePath)); @@ -90,11 +87,10 @@ void shouldPassIfNoRepositoriesDetected() { } @ParameterizedTest - @MethodSource("pomPathAndProbeFailureTestParameters") + @MethodSource("pomPathFailureTestParameters") void shouldFailIfThirdPartRepositoriesDetected(Path resourceDirectory) { final Plugin plugin = mock(Plugin.class); final ProbeContext ctx = mock(ProbeContext.class); - String absolutePath = resourceDirectory.toFile().getAbsolutePath(); when(ctx.getScmRepository()).thenReturn(Path.of(absolutePath)); From 2cb30486aeb4ec81321b54b02f7513c1d8c98026 Mon Sep 17 00:00:00 2001 From: Jagruti Date: Mon, 5 Jun 2023 20:11:12 +0530 Subject: [PATCH 20/46] Updating code and tests to check for pluginRespositories --- .../ThirdPartyRepositoryDetectionProbe.java | 20 ++++++++++--------- .../resources/pom-test-both-paths/pom.xml | 4 ++++ .../pom-test-only-incorrect-path/pom.xml | 7 +++++++ 3 files changed, 22 insertions(+), 9 deletions(-) diff --git a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java index 25c436c2f..bea7e874a 100644 --- a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java +++ b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java @@ -3,7 +3,10 @@ import java.io.FileNotFoundException; import java.io.FileReader; import java.io.IOException; +import java.util.ArrayList; +import java.util.HashSet; import java.util.List; +import java.util.Set; import java.util.regex.Matcher; import io.jenkins.pluginhealth.scoring.model.Plugin; @@ -19,9 +22,7 @@ @Component @Order(value = ThirdPartyRepositoryDetectionProbe.ORDER) -public class ThirdPartyRepositoryDetectionProbe extends Probe{ - private static final Logger LOGGER = LoggerFactory.getLogger(ThirdPartyRepositoryDetectionProbe.class); - +public class ThirdPartyRepositoryDetectionProbe extends Probe{ private static final Logger LOGGER = LoggerFactory.getLogger(ThirdPartyRepositoryDetectionProbe.class); public static final int ORDER = SCMLinkValidationProbe.ORDER + 100; public static final String KEY = "third-party-repository-detection-probe"; @@ -31,11 +32,16 @@ protected ProbeResult doApply(Plugin plugin, ProbeContext context) { MavenXpp3Reader mavenReader = new MavenXpp3Reader(); try { Model model = mavenReader.read(new FileReader(context.getScmRepository()+"/pom.xml")); - for (Repository repository : getRepositories(model)) { - if(!(repository.getUrl().startsWith(path))) { + Set allRepositories = new HashSet<>(); + allRepositories.addAll(model.getRepositories()); + allRepositories.addAll(model.getPluginRepositories()); + + for (Repository repository : allRepositories) { + if (!repository.getUrl().startsWith(path)) { return ProbeResult.failure(KEY, "Third party repositories detected in the plugin"); } } + } catch (FileNotFoundException e) { LOGGER.error("File not found at {}", plugin.getName()); return ProbeResult.error(KEY, e.getMessage()); @@ -50,10 +56,6 @@ protected ProbeResult doApply(Plugin plugin, ProbeContext context) { return ProbeResult.success(KEY, "The plugin has no third party repositories"); } - private static List getRepositories(Model model) { - return model.getRepositories(); - } - @Override public String key() { return KEY; diff --git a/core/src/test/resources/pom-test-both-paths/pom.xml b/core/src/test/resources/pom-test-both-paths/pom.xml index 8294ed368..1fd95f85b 100644 --- a/core/src/test/resources/pom-test-both-paths/pom.xml +++ b/core/src/test/resources/pom-test-both-paths/pom.xml @@ -54,5 +54,9 @@ repo.jenkins-ci.org https://repo.jenkins-ci.org/public/ + + repo.jenkins-ci.org + https://packages.atlassian.com/mvn/maven-external/ + diff --git a/core/src/test/resources/pom-test-only-incorrect-path/pom.xml b/core/src/test/resources/pom-test-only-incorrect-path/pom.xml index b4430cbea..65bbf4f89 100644 --- a/core/src/test/resources/pom-test-only-incorrect-path/pom.xml +++ b/core/src/test/resources/pom-test-only-incorrect-path/pom.xml @@ -40,4 +40,11 @@ + + + + repo.jenkins-ci.org + https://packages.atlassian.com/mvn/maven-external/ + + From b1b525747364e17b243d055e69f6dbcdbe7f274a Mon Sep 17 00:00:00 2001 From: Jagruti Date: Mon, 5 Jun 2023 20:13:07 +0530 Subject: [PATCH 21/46] Removing unused import --- .../scoring/probes/ThirdPartyRepositoryDetectionProbe.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java index bea7e874a..91700b949 100644 --- a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java +++ b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java @@ -3,11 +3,8 @@ import java.io.FileNotFoundException; import java.io.FileReader; import java.io.IOException; -import java.util.ArrayList; import java.util.HashSet; -import java.util.List; import java.util.Set; -import java.util.regex.Matcher; import io.jenkins.pluginhealth.scoring.model.Plugin; import io.jenkins.pluginhealth.scoring.model.ProbeResult; From d812c81a3b743cff2391f2538ac15c724b3a250c Mon Sep 17 00:00:00 2001 From: Jagruti Date: Mon, 5 Jun 2023 20:39:18 +0530 Subject: [PATCH 22/46] FIxing minor syntaxes --- .../scoring/probes/ThirdPartyRepositoryDetectionProbe.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java index 91700b949..e67b36104 100644 --- a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java +++ b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java @@ -25,7 +25,7 @@ public class ThirdPartyRepositoryDetectionProbe extends Probe{ private static @Override protected ProbeResult doApply(Plugin plugin, ProbeContext context) { - final String path = "https://repo.jenkins-ci.org"; + final String hostName = "https://repo.jenkins-ci.org"; MavenXpp3Reader mavenReader = new MavenXpp3Reader(); try { Model model = mavenReader.read(new FileReader(context.getScmRepository()+"/pom.xml")); @@ -34,7 +34,7 @@ protected ProbeResult doApply(Plugin plugin, ProbeContext context) { allRepositories.addAll(model.getPluginRepositories()); for (Repository repository : allRepositories) { - if (!repository.getUrl().startsWith(path)) { + if (!repository.getUrl().startsWith(hostName)) { return ProbeResult.failure(KEY, "Third party repositories detected in the plugin"); } } From 355d923d691624e0630d3f19e6a800e43ff28405 Mon Sep 17 00:00:00 2001 From: Jagruti Date: Mon, 5 Jun 2023 20:45:17 +0530 Subject: [PATCH 23/46] Fixed minor syntaxes --- .../scoring/probes/ThirdPartyRepositoryDetectionProbe.java | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java index e67b36104..a87cdab00 100644 --- a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java +++ b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java @@ -22,10 +22,11 @@ public class ThirdPartyRepositoryDetectionProbe extends Probe{ private static final Logger LOGGER = LoggerFactory.getLogger(ThirdPartyRepositoryDetectionProbe.class); public static final int ORDER = SCMLinkValidationProbe.ORDER + 100; public static final String KEY = "third-party-repository-detection-probe"; + final String hostName = "https://repo.jenkins-ci.org"; + @Override protected ProbeResult doApply(Plugin plugin, ProbeContext context) { - final String hostName = "https://repo.jenkins-ci.org"; MavenXpp3Reader mavenReader = new MavenXpp3Reader(); try { Model model = mavenReader.read(new FileReader(context.getScmRepository()+"/pom.xml")); From 6d7b31c2ab3d0671c9d17149c537f35877adea71 Mon Sep 17 00:00:00 2001 From: Jagruti Tiwari Date: Tue, 6 Jun 2023 10:00:33 +0530 Subject: [PATCH 24/46] Apply suggestions from code review Co-authored-by: Adrien Lecharpentier --- ...hirdPartyRepositoryDetectionProbeTest.java | 64 +++++++++++++------ .../resources/pom-test-both-paths/pom.xml | 9 --- .../pom-test-only-incorrect-path/pom.xml | 9 --- 3 files changed, 43 insertions(+), 39 deletions(-) diff --git a/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java b/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java index 726836042..0ce0bcd4c 100644 --- a/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java +++ b/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java @@ -25,16 +25,6 @@ ThirdPartyRepositoryDetectionProbe getSpy() { return spy(ThirdPartyRepositoryDetectionProbe.class); } - static Stream pomPathFailureTestParameters() { - return Stream.of( - arguments( - Paths.get("src","test","resources","pom-test-both-paths") - ), - arguments( - Paths.get("src","test","resources","pom-test-only-incorrect-path") - ) - ); - } @Test void shouldBeExecutedAfterSCMLinkValidationProbeProbe() { final Plugin plugin = mock(Plugin.class); @@ -48,18 +38,32 @@ void shouldBeExecutedAfterSCMLinkValidationProbeProbe() { verify(probe, never()).doApply(plugin, ctx); } - @Test - void shouldPassIfNoThirdPartyRepositoriesDetected() { + private static Stream successes() { + return Stream.of( + arguments( + Paths.get("src", "test", "resources", "pom-test-only-correct-path"), + "https://github.com/jenkinsci/test-plugin" + ), + arguments( + Paths.get("src", "test", "resources", "pom-test-no-repository-tag"), + "https://github.com/jenkinsci/test-plugin" + ) + ); + } + + @ParameterizedTest + @MethodSource("successes") + void shouldPassIfNoThirdPartyRepositoriesDetected(Path resourceDirectory, String scm) { final Plugin plugin = mock(Plugin.class); final ProbeContext ctx = mock(ProbeContext.class); - Path resourceDirectory = Paths.get("src","test","resources","pom-test-only-correct-path"); - String absolutePath = resourceDirectory.toFile().getAbsolutePath(); - when(ctx.getScmRepository()).thenReturn(Path.of(absolutePath)); - final ThirdPartyRepositoryDetectionProbe probe = getSpy(); + when(ctx.getScmRepository()).thenReturn(resourceDirectory); when(plugin.getDetails()).thenReturn(Map.of( SCMLinkValidationProbe.KEY, ProbeResult.success(SCMLinkValidationProbe.KEY, "") )); + when(plugin.getScm()).thenReturn(scm); + + final ThirdPartyRepositoryDetectionProbe probe = getSpy(); assertThat(probe.apply(plugin, ctx)) .usingRecursiveComparison() .comparingOnlyFields("id", "message", "status") @@ -86,18 +90,36 @@ void shouldPassIfNoRepositoriesDetected() { verify(probe).doApply(any(Plugin.class), any(ProbeContext.class)); } + private static Stream failures() { + return Stream.of( + arguments( + Paths.get("src", "test", "resources", "pom-test-both-paths"), + "https://github.com/jenkinsci/test-plugin" + ), + arguments( + Paths.get("src", "test", "resources", "pom-test-only-incorrect-path"), + "https://github.com/jenkinsci/test-plugin" + ), + arguments( + Paths.get("src", "test", "resources", "pom-test-correct-repository-incorrect-pluginRepository"), + "https://github.com/jenkinsci/test-plugin/plugin" + ) + ); + } + @ParameterizedTest - @MethodSource("pomPathFailureTestParameters") - void shouldFailIfThirdPartRepositoriesDetected(Path resourceDirectory) { + @MethodSource("failures") + void shouldFailIfThirdPartRepositoriesDetected(Path resourceDirectory, String scm) { final Plugin plugin = mock(Plugin.class); final ProbeContext ctx = mock(ProbeContext.class); - String absolutePath = resourceDirectory.toFile().getAbsolutePath(); - when(ctx.getScmRepository()).thenReturn(Path.of(absolutePath)); - final ThirdPartyRepositoryDetectionProbe probe = getSpy(); + when(ctx.getScmRepository()).thenReturn(resourceDirectory); when(plugin.getDetails()).thenReturn(Map.of( SCMLinkValidationProbe.KEY, ProbeResult.success(SCMLinkValidationProbe.KEY, "") )); + when(plugin.getScm()).thenReturn(scm); + + final ThirdPartyRepositoryDetectionProbe probe = getSpy(); assertThat(probe.apply(plugin, ctx)) .usingRecursiveComparison() .comparingOnlyFields("id", "message", "status") diff --git a/core/src/test/resources/pom-test-both-paths/pom.xml b/core/src/test/resources/pom-test-both-paths/pom.xml index 1fd95f85b..77b18d6ee 100644 --- a/core/src/test/resources/pom-test-both-paths/pom.xml +++ b/core/src/test/resources/pom-test-both-paths/pom.xml @@ -37,15 +37,6 @@ atlassian-public https://packages.atlassian.com/mvn/maven-external/ - - true - never - warn - - - true - warn - diff --git a/core/src/test/resources/pom-test-only-incorrect-path/pom.xml b/core/src/test/resources/pom-test-only-incorrect-path/pom.xml index 65bbf4f89..c7a182b7a 100644 --- a/core/src/test/resources/pom-test-only-incorrect-path/pom.xml +++ b/core/src/test/resources/pom-test-only-incorrect-path/pom.xml @@ -29,15 +29,6 @@ atlassian-public https://packages.atlassian.com/mvn/maven-external/ - - true - never - warn - - - true - warn - From 1b3ad71ed7472c6cc36358994097ffe8fa0ec955 Mon Sep 17 00:00:00 2001 From: Jagruti Tiwari Date: Tue, 6 Jun 2023 11:33:58 +0530 Subject: [PATCH 25/46] Apply suggestions from code review Co-authored-by: Adrien Lecharpentier --- ...hirdPartyRepositoryDetectionProbeTest.java | 19 ------------------- 1 file changed, 19 deletions(-) diff --git a/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java b/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java index 0ce0bcd4c..7e8da4e69 100644 --- a/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java +++ b/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java @@ -71,25 +71,6 @@ void shouldPassIfNoThirdPartyRepositoriesDetected(Path resourceDirectory, String verify(probe).doApply(any(Plugin.class), any(ProbeContext.class)); } - @Test - void shouldPassIfNoRepositoriesDetected() { - final Plugin plugin = mock(Plugin.class); - final ProbeContext ctx = mock(ProbeContext.class); - Path resourceDirectory = Paths.get("src","test","resources","pom-test-no-repository-tag"); - String absolutePath = resourceDirectory.toFile().getAbsolutePath(); - when(ctx.getScmRepository()).thenReturn(Path.of(absolutePath)); - - final ThirdPartyRepositoryDetectionProbe probe = getSpy(); - when(plugin.getDetails()).thenReturn(Map.of( - SCMLinkValidationProbe.KEY, ProbeResult.success(SCMLinkValidationProbe.KEY, "") - )); - assertThat(probe.apply(plugin, ctx)) - .usingRecursiveComparison() - .comparingOnlyFields("id", "message", "status") - .isEqualTo(ProbeResult.success(ThirdPartyRepositoryDetectionProbe.KEY, "The plugin has no third party repositories")); - verify(probe).doApply(any(Plugin.class), any(ProbeContext.class)); - } - private static Stream failures() { return Stream.of( arguments( From dbdfe6f083bab3f103cba7502307d5e53c6dce2f Mon Sep 17 00:00:00 2001 From: Jagruti Date: Tue, 6 Jun 2023 13:32:24 +0530 Subject: [PATCH 26/46] Adding pom test files --- .../plugin/pom.xml | 28 +++++++++++++++++++ .../pom.xml | 17 +++++++++++ 2 files changed, 45 insertions(+) create mode 100644 core/src/test/resources/pom-test-correct-repository-incorrect-pluginRepository/plugin/pom.xml create mode 100644 core/src/test/resources/pom-test-correct-repository-incorrect-pluginRepository/pom.xml diff --git a/core/src/test/resources/pom-test-correct-repository-incorrect-pluginRepository/plugin/pom.xml b/core/src/test/resources/pom-test-correct-repository-incorrect-pluginRepository/plugin/pom.xml new file mode 100644 index 000000000..e8b3401a3 --- /dev/null +++ b/core/src/test/resources/pom-test-correct-repository-incorrect-pluginRepository/plugin/pom.xml @@ -0,0 +1,28 @@ + + + + + 4.0.0 + + org.jenkins-ci.plugins + plugin + 4.58 + ../pom.xml + + + + 9999-SNAPSHOT + 2.361.4 + + + + not-a-real-publisher + Fake Publisher + For testing purpose + ${changelist} + hpi + https://test.com/test/${project.artifactId}-plugin + + diff --git a/core/src/test/resources/pom-test-correct-repository-incorrect-pluginRepository/pom.xml b/core/src/test/resources/pom-test-correct-repository-incorrect-pluginRepository/pom.xml new file mode 100644 index 000000000..914de7593 --- /dev/null +++ b/core/src/test/resources/pom-test-correct-repository-incorrect-pluginRepository/pom.xml @@ -0,0 +1,17 @@ + + + + + 4.0.0 + org.jenkins-ci.plugins + plugin + 4.58 + + + 9999-SNAPSHOT + 2.361.4 + + + From 53fb1345484c3be23c4669a7ecc43071d3e5b974 Mon Sep 17 00:00:00 2001 From: Jagruti Tiwari Date: Tue, 6 Jun 2023 19:57:01 +0530 Subject: [PATCH 27/46] Apply suggestions from code review Co-authored-by: Adrien Lecharpentier --- .../scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java b/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java index 7e8da4e69..39c5b457e 100644 --- a/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java +++ b/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java @@ -19,7 +19,7 @@ import org.junit.jupiter.params.provider.Arguments; import org.junit.jupiter.params.provider.MethodSource; -public class ThirdPartyRepositoryDetectionProbeTest extends AbstractProbeTest { +class ThirdPartyRepositoryDetectionProbeTest extends AbstractProbeTest { @Override ThirdPartyRepositoryDetectionProbe getSpy() { return spy(ThirdPartyRepositoryDetectionProbe.class); From ed123c5ea9f3559fda129ddbfd2cabd0c42c5d87 Mon Sep 17 00:00:00 2001 From: Jagruti Date: Tue, 6 Jun 2023 21:59:33 +0530 Subject: [PATCH 28/46] Updating code for the tests to fail when no repositories detected --- .../probes/ThirdPartyRepositoryDetectionProbe.java | 11 +++++++---- .../ThirdPartyRepositoryDetectionProbeTest.java | 5 ++++- 2 files changed, 11 insertions(+), 5 deletions(-) diff --git a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java index a87cdab00..a1ee4bd7d 100644 --- a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java +++ b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java @@ -8,6 +8,7 @@ import io.jenkins.pluginhealth.scoring.model.Plugin; import io.jenkins.pluginhealth.scoring.model.ProbeResult; + import org.apache.maven.model.Model; import org.apache.maven.model.Repository; import org.apache.maven.model.io.xpp3.MavenXpp3Reader; @@ -19,7 +20,8 @@ @Component @Order(value = ThirdPartyRepositoryDetectionProbe.ORDER) -public class ThirdPartyRepositoryDetectionProbe extends Probe{ private static final Logger LOGGER = LoggerFactory.getLogger(ThirdPartyRepositoryDetectionProbe.class); +public class ThirdPartyRepositoryDetectionProbe extends Probe { + private static final Logger LOGGER = LoggerFactory.getLogger(ThirdPartyRepositoryDetectionProbe.class); public static final int ORDER = SCMLinkValidationProbe.ORDER + 100; public static final String KEY = "third-party-repository-detection-probe"; final String hostName = "https://repo.jenkins-ci.org"; @@ -28,9 +30,9 @@ public class ThirdPartyRepositoryDetectionProbe extends Probe{ private static @Override protected ProbeResult doApply(Plugin plugin, ProbeContext context) { MavenXpp3Reader mavenReader = new MavenXpp3Reader(); + Set allRepositories = new HashSet<>(); try { - Model model = mavenReader.read(new FileReader(context.getScmRepository()+"/pom.xml")); - Set allRepositories = new HashSet<>(); + Model model = mavenReader.read(new FileReader(context.getScmRepository() + "/pom.xml")); allRepositories.addAll(model.getRepositories()); allRepositories.addAll(model.getPluginRepositories()); @@ -51,7 +53,8 @@ protected ProbeResult doApply(Plugin plugin, ProbeContext context) { return ProbeResult.error(KEY, e.getMessage()); } - return ProbeResult.success(KEY, "The plugin has no third party repositories"); + return allRepositories.size()>0 ? ProbeResult.success(KEY, "The plugin has no third party repositories") + : ProbeResult.failure(KEY, "No repositories detected"); } @Override diff --git a/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java b/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java index 7e8da4e69..a37c35e91 100644 --- a/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java +++ b/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java @@ -3,7 +3,10 @@ import static org.assertj.core.api.Assertions.assertThat; import static org.junit.jupiter.params.provider.Arguments.arguments; import static org.mockito.ArgumentMatchers.any; -import static org.mockito.Mockito.*; +import static org.mockito.Mockito.mock; +import static org.mockito.Mockito.never; +import static org.mockito.Mockito.spy; +import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; import java.nio.file.Path; From 9f7ab30b6a52418e28a99f1d81e942e1ec7ac98d Mon Sep 17 00:00:00 2001 From: Jagruti Date: Tue, 6 Jun 2023 22:26:36 +0530 Subject: [PATCH 29/46] Updated test case and test files --- ...hirdPartyRepositoryDetectionProbeTest.java | 26 ++++++++++++++++--- .../plugin/pom.xml | 6 ++--- .../pom.xml | 11 +++++--- 3 files changed, 33 insertions(+), 10 deletions(-) diff --git a/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java b/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java index a532cdd81..be346dea5 100644 --- a/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java +++ b/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java @@ -46,10 +46,6 @@ private static Stream successes() { arguments( Paths.get("src", "test", "resources", "pom-test-only-correct-path"), "https://github.com/jenkinsci/test-plugin" - ), - arguments( - Paths.get("src", "test", "resources", "pom-test-no-repository-tag"), - "https://github.com/jenkinsci/test-plugin" ) ); } @@ -111,5 +107,27 @@ void shouldFailIfThirdPartRepositoriesDetected(Path resourceDirectory, String sc verify(probe).doApply(any(Plugin.class), any(ProbeContext.class)); } + @Test + void shouldFailWhenNoRepositoriesDetected() { + final Plugin plugin = mock(Plugin.class); + final ProbeContext ctx = mock(ProbeContext.class); + String scm = "https://github.com/jenkinsci/test-plugin/plugin"; + + Path resourceDirectory = Paths.get("src","test","resources","pom-test-only-correct-path"); + String absolutePath = resourceDirectory.toFile().getAbsolutePath(); + when(ctx.getScmRepository()).thenReturn(Path.of(absolutePath)); + when(plugin.getDetails()).thenReturn(Map.of( + SCMLinkValidationProbe.KEY, ProbeResult.success(SCMLinkValidationProbe.KEY, "") + )); + when(plugin.getScm()).thenReturn(scm); + + final ThirdPartyRepositoryDetectionProbe probe = getSpy(); + assertThat(probe.apply(plugin, ctx)) + .usingRecursiveComparison() + .comparingOnlyFields("id", "message", "status") + .isEqualTo(ProbeResult.failure(ThirdPartyRepositoryDetectionProbe.KEY, "No repositories detected")); + verify(probe).doApply(any(Plugin.class), any(ProbeContext.class)); + } + } diff --git a/core/src/test/resources/pom-test-correct-repository-incorrect-pluginRepository/plugin/pom.xml b/core/src/test/resources/pom-test-correct-repository-incorrect-pluginRepository/plugin/pom.xml index e8b3401a3..2e6758275 100644 --- a/core/src/test/resources/pom-test-correct-repository-incorrect-pluginRepository/plugin/pom.xml +++ b/core/src/test/resources/pom-test-correct-repository-incorrect-pluginRepository/plugin/pom.xml @@ -6,9 +6,9 @@ 4.0.0 - org.jenkins-ci.plugins - plugin - 4.58 + test-group-id + test-plugin + 1.0.1 ../pom.xml diff --git a/core/src/test/resources/pom-test-correct-repository-incorrect-pluginRepository/pom.xml b/core/src/test/resources/pom-test-correct-repository-incorrect-pluginRepository/pom.xml index 914de7593..4285d41ae 100644 --- a/core/src/test/resources/pom-test-correct-repository-incorrect-pluginRepository/pom.xml +++ b/core/src/test/resources/pom-test-correct-repository-incorrect-pluginRepository/pom.xml @@ -5,9 +5,14 @@ 4.0.0 - org.jenkins-ci.plugins - plugin - 4.58 + test-parent-plugin + + + org.jenkins-ci.plugins + plugin + 4.58 + + 9999-SNAPSHOT From eba72e742639432b67196f3f2927afddeff4000f Mon Sep 17 00:00:00 2001 From: Jagruti Date: Wed, 7 Jun 2023 21:50:05 +0530 Subject: [PATCH 30/46] Upating test case and test pom files --- ...hirdPartyRepositoryDetectionProbeTest.java | 4 +- .../pom.xml | 22 ---------- .../plugin/pom.xml | 5 ++- .../resources/pom-test-parent-pom/pom.xml | 40 +++++++++++++++++++ 4 files changed, 45 insertions(+), 26 deletions(-) delete mode 100644 core/src/test/resources/pom-test-correct-repository-incorrect-pluginRepository/pom.xml rename core/src/test/resources/{pom-test-correct-repository-incorrect-pluginRepository => pom-test-parent-pom}/plugin/pom.xml (90%) create mode 100644 core/src/test/resources/pom-test-parent-pom/pom.xml diff --git a/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java b/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java index be346dea5..416cfc39a 100644 --- a/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java +++ b/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java @@ -81,7 +81,7 @@ private static Stream failures() { "https://github.com/jenkinsci/test-plugin" ), arguments( - Paths.get("src", "test", "resources", "pom-test-correct-repository-incorrect-pluginRepository"), + Paths.get("src", "test", "resources", "pom-test-parent-pom"), "https://github.com/jenkinsci/test-plugin/plugin" ) ); @@ -113,7 +113,7 @@ void shouldFailWhenNoRepositoriesDetected() { final ProbeContext ctx = mock(ProbeContext.class); String scm = "https://github.com/jenkinsci/test-plugin/plugin"; - Path resourceDirectory = Paths.get("src","test","resources","pom-test-only-correct-path"); + Path resourceDirectory = Paths.get("src", "test", "resources", "pom-test-no-repository-tag"); String absolutePath = resourceDirectory.toFile().getAbsolutePath(); when(ctx.getScmRepository()).thenReturn(Path.of(absolutePath)); when(plugin.getDetails()).thenReturn(Map.of( diff --git a/core/src/test/resources/pom-test-correct-repository-incorrect-pluginRepository/pom.xml b/core/src/test/resources/pom-test-correct-repository-incorrect-pluginRepository/pom.xml deleted file mode 100644 index 4285d41ae..000000000 --- a/core/src/test/resources/pom-test-correct-repository-incorrect-pluginRepository/pom.xml +++ /dev/null @@ -1,22 +0,0 @@ - - - - - 4.0.0 - test-parent-plugin - - - org.jenkins-ci.plugins - plugin - 4.58 - - - - - 9999-SNAPSHOT - 2.361.4 - - - diff --git a/core/src/test/resources/pom-test-correct-repository-incorrect-pluginRepository/plugin/pom.xml b/core/src/test/resources/pom-test-parent-pom/plugin/pom.xml similarity index 90% rename from core/src/test/resources/pom-test-correct-repository-incorrect-pluginRepository/plugin/pom.xml rename to core/src/test/resources/pom-test-parent-pom/plugin/pom.xml index 2e6758275..c8f2b3416 100644 --- a/core/src/test/resources/pom-test-correct-repository-incorrect-pluginRepository/plugin/pom.xml +++ b/core/src/test/resources/pom-test-parent-pom/plugin/pom.xml @@ -5,9 +5,10 @@ 4.0.0 + - test-group-id - test-plugin + test.pom.group-id + test-pom-artifact 1.0.1 ../pom.xml diff --git a/core/src/test/resources/pom-test-parent-pom/pom.xml b/core/src/test/resources/pom-test-parent-pom/pom.xml new file mode 100644 index 000000000..63961c3e3 --- /dev/null +++ b/core/src/test/resources/pom-test-parent-pom/pom.xml @@ -0,0 +1,40 @@ + + + + + 4.0.0 + test.pom.group-id + test-pom-artifact + 1 + + + + central + Jenkins Repository + https://github.com/jenkinsci/plugin-pom + + + + + + central + Test Repository + https://repo.maven.apache.org/maven2 + default + + false + + + never + + + + + + 9999-SNAPSHOT + 2.361.4 + + + From d5f40701c7af5503f67da2cb26327e9355512c9b Mon Sep 17 00:00:00 2001 From: Jagruti Date: Wed, 7 Jun 2023 22:09:34 +0530 Subject: [PATCH 31/46] Fixing checkstyle issues --- .../scoring/probes/ThirdPartyRepositoryDetectionProbe.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java index a1ee4bd7d..f3d0a6fae 100644 --- a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java +++ b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java @@ -53,7 +53,7 @@ protected ProbeResult doApply(Plugin plugin, ProbeContext context) { return ProbeResult.error(KEY, e.getMessage()); } - return allRepositories.size()>0 ? ProbeResult.success(KEY, "The plugin has no third party repositories") + return allRepositories.size() > 0 ? ProbeResult.success(KEY, "The plugin has no third party repositories") : ProbeResult.failure(KEY, "No repositories detected"); } From 4833c9b6cf34f3b97efa462f2d73c799e346dc45 Mon Sep 17 00:00:00 2001 From: Jagruti Date: Sat, 10 Jun 2023 16:40:25 +0530 Subject: [PATCH 32/46] Modifying test cases and code --- .editorconfig | 2 +- .../ThirdPartyRepositoryDetectionProbe.java | 35 +- ...hirdPartyRepositoryDetectionProbeTest.java | 9 +- .../pom-test-parent-pom/plugin/pom.xml | 29 - .../resources/pom-test-parent-pom/pom.xml | 40 - .../plugin/pom.xml | 45 + .../pom.xml | 25 + .../plugin/pom.xml | 30 + .../pom.xml | 44 + effective-pom.xml | 29509 ++++++++++++++++ 10 files changed, 29691 insertions(+), 77 deletions(-) delete mode 100644 core/src/test/resources/pom-test-parent-pom/plugin/pom.xml delete mode 100644 core/src/test/resources/pom-test-parent-pom/pom.xml create mode 100644 core/src/test/resources/pom-test-third-party-probe-in-child-fail/plugin/pom.xml create mode 100644 core/src/test/resources/pom-test-third-party-probe-in-child-fail/pom.xml create mode 100644 core/src/test/resources/pom-test-third-party-probe-in-parent-fail/plugin/pom.xml create mode 100644 core/src/test/resources/pom-test-third-party-probe-in-parent-fail/pom.xml create mode 100644 effective-pom.xml diff --git a/.editorconfig b/.editorconfig index 476d62b41..e23fc265f 100644 --- a/.editorconfig +++ b/.editorconfig @@ -7,7 +7,7 @@ indent_style = space insert_final_newline = true tab_width = 2 -[pom.xml] +[`l] indent_style = tab indent_size = 2 diff --git a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java index f3d0a6fae..b17208e13 100644 --- a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java +++ b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java @@ -1,8 +1,9 @@ package io.jenkins.pluginhealth.scoring.probes; -import java.io.FileNotFoundException; -import java.io.FileReader; -import java.io.IOException; +import java.io.*; +import java.net.URL; +import java.nio.file.Path; +import java.nio.file.Paths; import java.util.HashSet; import java.util.Set; @@ -25,23 +26,29 @@ public class ThirdPartyRepositoryDetectionProbe extends Probe { public static final int ORDER = SCMLinkValidationProbe.ORDER + 100; public static final String KEY = "third-party-repository-detection-probe"; final String hostName = "https://repo.jenkins-ci.org"; - +// final String parentPom = "https://raw.githubusercontent.com/jenkinsci/plugin-pom/master/pom.xml"; + final String parentPom = "https://github.com/jenkinsci/plugin-pom/blob/master/pom.xml"; @Override protected ProbeResult doApply(Plugin plugin, ProbeContext context) { MavenXpp3Reader mavenReader = new MavenXpp3Reader(); Set allRepositories = new HashSet<>(); + try { Model model = mavenReader.read(new FileReader(context.getScmRepository() + "/pom.xml")); allRepositories.addAll(model.getRepositories()); allRepositories.addAll(model.getPluginRepositories()); + if (! model.getParent().getRelativePath().isBlank()) { + Model parentPomModel = parsePomFromUrl(model.getParent().getRelativePath()); + allRepositories.addAll(parentPomModel.getRepositories()); + allRepositories.addAll(parentPomModel.getPluginRepositories()); + } for (Repository repository : allRepositories) { if (!repository.getUrl().startsWith(hostName)) { return ProbeResult.failure(KEY, "Third party repositories detected in the plugin"); } } - } catch (FileNotFoundException e) { LOGGER.error("File not found at {}", plugin.getName()); return ProbeResult.error(KEY, e.getMessage()); @@ -52,6 +59,8 @@ protected ProbeResult doApply(Plugin plugin, ProbeContext context) { LOGGER.error("File reading exception at {}", plugin.getName()); return ProbeResult.error(KEY, e.getMessage()); + } catch (Exception e) { + throw new RuntimeException(e); } return allRepositories.size() > 0 ? ProbeResult.success(KEY, "The plugin has no third party repositories") : ProbeResult.failure(KEY, "No repositories detected"); @@ -71,4 +80,20 @@ public String getDescription() { public String[] getProbeResultRequirement() { return new String[] { SCMLinkValidationProbe.KEY}; } + + public Model parsePomFromUrl(String pomUrl) throws IOException, XmlPullParserException { + if(pomUrl.startsWith(("https"))) { + URL url = new URL(pomUrl); + try (InputStream inputStream = url.openStream()) { + MavenXpp3Reader reader = new MavenXpp3Reader(); + return reader.read(inputStream); + } + } + else { + // for test cases + Path absolutePath = Paths.get(pomUrl).toAbsolutePath().normalize(); + Model model = new MavenXpp3Reader().read(new FileReader(absolutePath.toString())); + return model; + } + } } diff --git a/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java b/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java index 416cfc39a..e8cd2083c 100644 --- a/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java +++ b/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java @@ -9,6 +9,7 @@ import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; +import java.net.MalformedURLException; import java.nio.file.Path; import java.nio.file.Paths; import java.util.Map; @@ -81,7 +82,11 @@ private static Stream failures() { "https://github.com/jenkinsci/test-plugin" ), arguments( - Paths.get("src", "test", "resources", "pom-test-parent-pom"), + Paths.get("src", "test", "resources", "pom-test-third-party-probe-in-parent-fail/plugin"), + "https://github.com/jenkinsci/test-plugin/plugin" + ), + arguments( + Paths.get("src", "test", "resources", "pom-test-third-party-probe-in-child-fail/plugin"), "https://github.com/jenkinsci/test-plugin/plugin" ) ); @@ -89,7 +94,7 @@ private static Stream failures() { @ParameterizedTest @MethodSource("failures") - void shouldFailIfThirdPartRepositoriesDetected(Path resourceDirectory, String scm) { + void shouldFailIfThirdPartRepositoriesDetected(Path resourceDirectory, String scm) throws MalformedURLException { final Plugin plugin = mock(Plugin.class); final ProbeContext ctx = mock(ProbeContext.class); diff --git a/core/src/test/resources/pom-test-parent-pom/plugin/pom.xml b/core/src/test/resources/pom-test-parent-pom/plugin/pom.xml deleted file mode 100644 index c8f2b3416..000000000 --- a/core/src/test/resources/pom-test-parent-pom/plugin/pom.xml +++ /dev/null @@ -1,29 +0,0 @@ - - - - - 4.0.0 - - - test.pom.group-id - test-pom-artifact - 1.0.1 - ../pom.xml - - - - 9999-SNAPSHOT - 2.361.4 - - - - not-a-real-publisher - Fake Publisher - For testing purpose - ${changelist} - hpi - https://test.com/test/${project.artifactId}-plugin - - diff --git a/core/src/test/resources/pom-test-parent-pom/pom.xml b/core/src/test/resources/pom-test-parent-pom/pom.xml deleted file mode 100644 index 63961c3e3..000000000 --- a/core/src/test/resources/pom-test-parent-pom/pom.xml +++ /dev/null @@ -1,40 +0,0 @@ - - - - - 4.0.0 - test.pom.group-id - test-pom-artifact - 1 - - - - central - Jenkins Repository - https://github.com/jenkinsci/plugin-pom - - - - - - central - Test Repository - https://repo.maven.apache.org/maven2 - default - - false - - - never - - - - - - 9999-SNAPSHOT - 2.361.4 - - - diff --git a/core/src/test/resources/pom-test-third-party-probe-in-child-fail/plugin/pom.xml b/core/src/test/resources/pom-test-third-party-probe-in-child-fail/plugin/pom.xml new file mode 100644 index 000000000..0c8f3e5f8 --- /dev/null +++ b/core/src/test/resources/pom-test-third-party-probe-in-child-fail/plugin/pom.xml @@ -0,0 +1,45 @@ + + + + + 4.0.0 + + + test.pom.group-id + test-pom-artifact + 1.0.1 + src/test/resources/pom-test-third-party-probe-in-child-fail/pom.xml + + + + 9999-SNAPSHOT + 2.361.4 + + + + + central + Test Repository + https://repo.maven.apache.org/maven2 + default + + false + + + never + + + + + + not-a-real-publisher + Fake Publisher + For testing purpose + ${changelist} + hpi + https://test.com/test/${project.artifactId}-plugin + + diff --git a/core/src/test/resources/pom-test-third-party-probe-in-child-fail/pom.xml b/core/src/test/resources/pom-test-third-party-probe-in-child-fail/pom.xml new file mode 100644 index 000000000..4eb7c461a --- /dev/null +++ b/core/src/test/resources/pom-test-third-party-probe-in-child-fail/pom.xml @@ -0,0 +1,25 @@ + + + + + 4.0.0 + test.pom.group-id + test-pom-artifact + 1.0.1 + + + + repo.jenkins-ci.org + https://repo.jenkins-ci.org/public/ + + + + + 9999-SNAPSHOT + 2.361.4 + + + diff --git a/core/src/test/resources/pom-test-third-party-probe-in-parent-fail/plugin/pom.xml b/core/src/test/resources/pom-test-third-party-probe-in-parent-fail/plugin/pom.xml new file mode 100644 index 000000000..4c8dd4efd --- /dev/null +++ b/core/src/test/resources/pom-test-third-party-probe-in-parent-fail/plugin/pom.xml @@ -0,0 +1,30 @@ + + + + + 4.0.0 + + + test.pom.group-id + test-pom-artifact + 1 + src/test/resources/pom-test-third-party-probe-in-parent-fail/pom.xml + + + + 9999-SNAPSHOT + 2.361.4 + + + + not-a-real-publisher + Fake Publisher + For testing purpose + ${changelist} + hpi + https://test.com/test/${project.artifactId}-plugin + + diff --git a/core/src/test/resources/pom-test-third-party-probe-in-parent-fail/pom.xml b/core/src/test/resources/pom-test-third-party-probe-in-parent-fail/pom.xml new file mode 100644 index 000000000..fc4e339ac --- /dev/null +++ b/core/src/test/resources/pom-test-third-party-probe-in-parent-fail/pom.xml @@ -0,0 +1,44 @@ + + + + + 4.0.0 + test.pom.group-id + test-pom-artifact + 1 + + + + repo.jenkins-ci.org + https://repo.jenkins-ci.org/public/ + + + atlassian-public + https://packages.atlassian.com/mvn/maven-external/ + + + + + + central + Test Repository + https://repo.maven.apache.org/maven2 + default + + false + + + never + + + + + + 9999-SNAPSHOT + 2.361.4 + + + diff --git a/effective-pom.xml b/effective-pom.xml new file mode 100644 index 000000000..6b6f15473 --- /dev/null +++ b/effective-pom.xml @@ -0,0 +1,29509 @@ + + + + + + + + + + + + + + + + 4.0.0 + io.jenkins.pluginhealth.scoring + plugin-health-scoring-parent + 2.4.3-SNAPSHOT + pom + Plugin Health Scoring :: Parent + Build and provide health indicators on plugins of the Jenkins ecosystem + 2022 + + Jenkins Infra + https://github.com/jenkins-infra + + + + The MIT license + https://opensource.org/licenses/MIT + repo + + + + + adi10hero + Aditya Srivastava + + + alecharp + Adrien Lecharpentier + + + dheerajodha + Dheeraj Singh Jodha + + + jleon33 + Jake Leon + + + + test + core + war + + + scm:git:https://github.com/jenkins-infra/plugin-health-scoring.git + scm:git:git@github.com:jenkins-infra/plugin-health-scoring.git + https://github.com/jenkins-infra/plugin-health-scoring + + + + false + maven.jenkins-ci.org + https://repo.jenkins-ci.org/releases/ + + + maven.jenkins-ci.org + https://repo.jenkins-ci.org/snapshots/ + + + + 17 + 0.11.5 + 17 + 17 + 18.10.0 + UTF-8 + UTF-8 + UTF-8 + 3.1.0 + 1.18.3 + ca1a380d840c676152fbf8635a82d838113fe77e1665466699a4e106df4930d2 + 3.2.4 + false + 1.22.19 + + + + + io.jenkins.pluginhealth.scoring + plugin-health-scoring-core + 2.4.3-SNAPSHOT + + + io.jenkins.pluginhealth.scoring + plugin-health-scoring-test + 2.4.3-SNAPSHOT + + + org.kohsuke + github-api + 1.315 + + + io.jsonwebtoken + jjwt-api + 0.11.5 + + + io.jsonwebtoken + jjwt-impl + 0.11.5 + + + io.jsonwebtoken + jjwt-jackson + 0.11.5 + + + org.apache.maven + maven-model + 3.9.2 + + + org.testcontainers + azure + 1.18.3 + + + org.testcontainers + cassandra + 1.18.3 + + + org.testcontainers + clickhouse + 1.18.3 + + + org.testcontainers + cockroachdb + 1.18.3 + + + org.testcontainers + consul + 1.18.3 + + + org.testcontainers + couchbase + 1.18.3 + + + org.testcontainers + cratedb + 1.18.3 + + + org.testcontainers + database-commons + 1.18.3 + + + org.testcontainers + db2 + 1.18.3 + + + org.testcontainers + dynalite + 1.18.3 + + + org.testcontainers + elasticsearch + 1.18.3 + + + org.testcontainers + gcloud + 1.18.3 + + + org.testcontainers + hivemq + 1.18.3 + + + org.testcontainers + influxdb + 1.18.3 + + + org.testcontainers + jdbc + 1.18.3 + + + org.testcontainers + junit-jupiter + 1.18.3 + + + org.testcontainers + k3s + 1.18.3 + + + org.testcontainers + kafka + 1.18.3 + + + org.testcontainers + localstack + 1.18.3 + + + org.testcontainers + mariadb + 1.18.3 + + + org.testcontainers + mockserver + 1.18.3 + + + org.testcontainers + mongodb + 1.18.3 + + + org.testcontainers + mssqlserver + 1.18.3 + + + org.testcontainers + mysql + 1.18.3 + + + org.testcontainers + neo4j + 1.18.3 + + + org.testcontainers + nginx + 1.18.3 + + + org.testcontainers + oracle-xe + 1.18.3 + + + org.testcontainers + orientdb + 1.18.3 + + + org.testcontainers + postgresql + 1.18.3 + + + org.testcontainers + presto + 1.18.3 + + + org.testcontainers + pulsar + 1.18.3 + + + org.testcontainers + questdb + 1.18.3 + + + org.testcontainers + r2dbc + 1.18.3 + + + org.testcontainers + rabbitmq + 1.18.3 + + + org.testcontainers + redpanda + 1.18.3 + + + org.testcontainers + selenium + 1.18.3 + + + org.testcontainers + solace + 1.18.3 + + + org.testcontainers + solr + 1.18.3 + + + org.testcontainers + spock + 1.18.3 + + + org.testcontainers + testcontainers + 1.18.3 + + + org.testcontainers + tidb + 1.18.3 + + + org.testcontainers + toxiproxy + 1.18.3 + + + org.testcontainers + trino + 1.18.3 + + + org.testcontainers + vault + 1.18.3 + + + org.testcontainers + yugabytedb + 1.18.3 + + + org.apache.activemq + activemq-amqp + 5.18.1 + + + org.apache.activemq + activemq-blueprint + 5.18.1 + + + org.apache.activemq + activemq-broker + 5.18.1 + + + org.apache.activemq + activemq-client + 5.18.1 + + + org.apache.activemq + activemq-client-jakarta + 5.18.1 + + + org.apache.activemq + activemq-console + 5.18.1 + + + commons-logging + commons-logging + + + + + org.apache.activemq + activemq-http + 5.18.1 + + + org.apache.activemq + activemq-jaas + 5.18.1 + + + org.apache.activemq + activemq-jdbc-store + 5.18.1 + + + org.apache.activemq + activemq-jms-pool + 5.18.1 + + + org.apache.activemq + activemq-kahadb-store + 5.18.1 + + + org.apache.activemq + activemq-karaf + 5.18.1 + + + org.apache.activemq + activemq-log4j-appender + 5.18.1 + + + org.apache.activemq + activemq-mqtt + 5.18.1 + + + org.apache.activemq + activemq-openwire-generator + 5.18.1 + + + org.apache.activemq + activemq-openwire-legacy + 5.18.1 + + + org.apache.activemq + activemq-osgi + 5.18.1 + + + org.apache.activemq + activemq-partition + 5.18.1 + + + org.apache.activemq + activemq-pool + 5.18.1 + + + org.apache.activemq + activemq-ra + 5.18.1 + + + org.apache.activemq + activemq-run + 5.18.1 + + + org.apache.activemq + activemq-runtime-config + 5.18.1 + + + org.apache.activemq + activemq-shiro + 5.18.1 + + + org.apache.activemq + activemq-spring + 5.18.1 + + + commons-logging + commons-logging + + + + + org.apache.activemq + activemq-stomp + 5.18.1 + + + org.apache.activemq + activemq-web + 5.18.1 + + + org.eclipse.angus + angus-core + 1.1.0 + + + org.eclipse.angus + angus-mail + 1.1.0 + + + org.eclipse.angus + dsn + 1.1.0 + + + org.eclipse.angus + gimap + 1.1.0 + + + org.eclipse.angus + imap + 1.1.0 + + + org.eclipse.angus + jakarta.mail + 1.1.0 + + + org.eclipse.angus + logging-mailhandler + 1.1.0 + + + org.eclipse.angus + pop3 + 1.1.0 + + + org.eclipse.angus + smtp + 1.1.0 + + + org.apache.activemq + artemis-amqp-protocol + 2.28.0 + + + org.apache.activemq + artemis-commons + 2.28.0 + + + org.apache.activemq + artemis-core-client + 2.28.0 + + + org.apache.activemq + artemis-jakarta-client + 2.28.0 + + + org.apache.activemq + artemis-jakarta-server + 2.28.0 + + + org.apache.activemq + artemis-jakarta-service-extensions + 2.28.0 + + + org.apache.activemq + artemis-jdbc-store + 2.28.0 + + + org.apache.activemq + artemis-journal + 2.28.0 + + + org.apache.activemq + artemis-quorum-api + 2.28.0 + + + org.apache.activemq + artemis-selector + 2.28.0 + + + org.apache.activemq + artemis-server + 2.28.0 + + + org.apache.activemq + artemis-service-extensions + 2.28.0 + + + org.aspectj + aspectjrt + 1.9.19 + + + org.aspectj + aspectjtools + 1.9.19 + + + org.aspectj + aspectjweaver + 1.9.19 + + + org.awaitility + awaitility + 4.2.0 + + + org.awaitility + awaitility-groovy + 4.2.0 + + + org.awaitility + awaitility-kotlin + 4.2.0 + + + org.awaitility + awaitility-scala + 4.2.0 + + + net.bytebuddy + byte-buddy + 1.14.4 + + + net.bytebuddy + byte-buddy-agent + 1.14.4 + + + org.cache2k + cache2k-api + 2.6.1.Final + + + org.cache2k + cache2k-config + 2.6.1.Final + + + org.cache2k + cache2k-core + 2.6.1.Final + + + org.cache2k + cache2k-jcache + 2.6.1.Final + + + org.cache2k + cache2k-micrometer + 2.6.1.Final + + + org.cache2k + cache2k-spring + 2.6.1.Final + + + com.github.ben-manes.caffeine + caffeine + 3.1.6 + + + com.github.ben-manes.caffeine + guava + 3.1.6 + + + com.github.ben-manes.caffeine + jcache + 3.1.6 + + + com.github.ben-manes.caffeine + simulator + 3.1.6 + + + com.datastax.oss + java-driver-core + 4.15.0 + + + org.slf4j + jcl-over-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.4.6 + + + com.ibm.db2 + jcc + 11.5.8.0 + + + io.spring.gradle + dependency-management-plugin + 1.1.0 + + + org.apache.derby + derby + 10.16.1.1 + + + org.apache.derby + derbyclient + 10.16.1.1 + + + org.apache.derby + derbynet + 10.16.1.1 + + + org.apache.derby + derbyoptionaltools + 10.16.1.1 + + + org.apache.derby + derbyshared + 10.16.1.1 + + + org.apache.derby + derbytools + 10.16.1.1 + + + org.ehcache + ehcache + 3.10.8 + jakarta + + + org.ehcache + ehcache-clustered + 3.10.8 + + + org.ehcache + ehcache-transactions + 3.10.8 + jakarta + + + org.elasticsearch.client + elasticsearch-rest-client + 8.7.1 + + + commons-logging + commons-logging + + + + + org.elasticsearch.client + elasticsearch-rest-client-sniffer + 8.7.1 + + + commons-logging + commons-logging + + + + + co.elastic.clients + elasticsearch-java + 8.7.1 + + + org.flywaydb + flyway-core + 9.16.3 + + + org.flywaydb + flyway-firebird + 9.16.3 + + + org.flywaydb + flyway-mysql + 9.16.3 + + + org.flywaydb + flyway-sqlserver + 9.16.3 + + + org.freemarker + freemarker + 2.3.32 + + + org.glassfish.web + jakarta.servlet.jsp.jstl + 3.0.1 + + + com.graphql-java + graphql-java + 20.2 + + + com.google.code.gson + gson + 2.10.1 + + + com.h2database + h2 + 2.1.214 + + + org.hamcrest + hamcrest + 2.2 + + + org.hamcrest + hamcrest-core + 2.2 + + + org.hamcrest + hamcrest-library + 2.2 + + + com.hazelcast + hazelcast + 5.2.3 + + + com.hazelcast + hazelcast-spring + 5.2.3 + + + org.hibernate.orm + hibernate-agroal + 6.2.2.Final + + + org.hibernate.orm + hibernate-ant + 6.2.2.Final + + + org.hibernate.orm + hibernate-c3p0 + 6.2.2.Final + + + org.hibernate.orm + hibernate-community-dialects + 6.2.2.Final + + + org.hibernate.orm + hibernate-core + 6.2.2.Final + + + org.hibernate.orm + hibernate-envers + 6.2.2.Final + + + org.hibernate.orm + hibernate-graalvm + 6.2.2.Final + + + org.hibernate.orm + hibernate-hikaricp + 6.2.2.Final + + + org.hibernate.orm + hibernate-jcache + 6.2.2.Final + + + org.hibernate.orm + hibernate-jpamodelgen + 6.2.2.Final + + + org.hibernate.orm + hibernate-micrometer + 6.2.2.Final + + + org.hibernate.orm + hibernate-proxool + 6.2.2.Final + + + org.hibernate.orm + hibernate-spatial + 6.2.2.Final + + + org.hibernate.orm + hibernate-testing + 6.2.2.Final + + + org.hibernate.orm + hibernate-vibur + 6.2.2.Final + + + org.hibernate.validator + hibernate-validator + 8.0.0.Final + + + org.hibernate.validator + hibernate-validator-annotation-processor + 8.0.0.Final + + + com.zaxxer + HikariCP + 5.0.1 + + + org.hsqldb + hsqldb + 2.7.1 + + + net.sourceforge.htmlunit + htmlunit + 2.70.0 + + + commons-logging + commons-logging + + + + + org.apache.httpcomponents + httpasyncclient + 4.1.5 + + + commons-logging + commons-logging + + + + + org.apache.httpcomponents.client5 + httpclient5 + 5.2.1 + + + org.apache.httpcomponents.client5 + httpclient5-cache + 5.2.1 + + + org.apache.httpcomponents.client5 + httpclient5-fluent + 5.2.1 + + + org.apache.httpcomponents.client5 + httpclient5-win + 5.2.1 + + + org.apache.httpcomponents + httpcore + 4.4.16 + + + org.apache.httpcomponents + httpcore-nio + 4.4.16 + + + org.apache.httpcomponents.core5 + httpcore5 + 5.2.1 + + + org.apache.httpcomponents.core5 + httpcore5-h2 + 5.2.1 + + + org.apache.httpcomponents.core5 + httpcore5-reactive + 5.2.1 + + + org.influxdb + influxdb-java + 2.23 + + + jakarta.activation + jakarta.activation-api + 2.1.2 + + + jakarta.annotation + jakarta.annotation-api + 2.1.1 + + + jakarta.jms + jakarta.jms-api + 3.1.0 + + + jakarta.json + jakarta.json-api + 2.1.1 + + + jakarta.json.bind + jakarta.json.bind-api + 3.0.0 + + + jakarta.mail + jakarta.mail-api + 2.1.1 + + + jakarta.management.j2ee + jakarta.management.j2ee-api + 1.1.4 + + + jakarta.persistence + jakarta.persistence-api + 3.1.0 + + + jakarta.servlet + jakarta.servlet-api + 6.0.0 + + + jakarta.servlet.jsp.jstl + jakarta.servlet.jsp.jstl-api + 3.0.0 + + + jakarta.transaction + jakarta.transaction-api + 2.0.1 + + + jakarta.validation + jakarta.validation-api + 3.0.2 + + + jakarta.websocket + jakarta.websocket-api + 2.1.0 + + + jakarta.websocket + jakarta.websocket-client-api + 2.1.0 + + + jakarta.ws.rs + jakarta.ws.rs-api + 3.1.0 + + + jakarta.xml.bind + jakarta.xml.bind-api + 4.0.0 + + + jakarta.xml.soap + jakarta.xml.soap-api + 3.0.0 + + + jakarta.xml.ws + jakarta.xml.ws-api + 4.0.0 + + + org.codehaus.janino + commons-compiler + 3.1.9 + + + org.codehaus.janino + commons-compiler-jdk + 3.1.9 + + + org.codehaus.janino + janino + 3.1.9 + + + javax.cache + cache-api + 1.1.1 + + + javax.money + money-api + 1.1 + + + jaxen + jaxen + 2.0.0 + + + org.firebirdsql.jdbc + jaybird + 5.0.1.java11 + + + org.jboss.logging + jboss-logging + 3.5.0.Final + + + org.jdom + jdom2 + 2.0.6.1 + + + redis.clients + jedis + 4.3.2 + + + org.eclipse.jetty + jetty-reactive-httpclient + 3.0.8 + + + com.samskivert + jmustache + 1.15 + + + org.jooq + jooq + 3.18.4 + + + org.jooq + jooq-codegen + 3.18.4 + + + org.jooq + jooq-kotlin + 3.18.4 + + + org.jooq + jooq-meta + 3.18.4 + + + com.jayway.jsonpath + json-path + 2.8.0 + + + com.jayway.jsonpath + json-path-assert + 2.8.0 + + + net.minidev + json-smart + 2.4.10 + + + org.skyscreamer + jsonassert + 1.5.1 + + + net.sourceforge.jtds + jtds + 1.3.1 + + + junit + junit + 4.13.2 + + + org.apache.kafka + connect + 3.4.0 + + + org.apache.kafka + connect-api + 3.4.0 + + + org.apache.kafka + connect-basic-auth-extension + 3.4.0 + + + org.apache.kafka + connect-file + 3.4.0 + + + org.apache.kafka + connect-json + 3.4.0 + + + org.apache.kafka + connect-mirror + 3.4.0 + + + org.apache.kafka + connect-mirror-client + 3.4.0 + + + org.apache.kafka + connect-runtime + 3.4.0 + + + org.apache.kafka + connect-transforms + 3.4.0 + + + org.apache.kafka + generator + 3.4.0 + + + org.apache.kafka + kafka-clients + 3.4.0 + + + org.apache.kafka + kafka-clients + 3.4.0 + test + + + org.apache.kafka + kafka-log4j-appender + 3.4.0 + + + org.apache.kafka + kafka-metadata + 3.4.0 + + + org.apache.kafka + kafka-raft + 3.4.0 + + + org.apache.kafka + kafka-server-common + 3.4.0 + + + org.apache.kafka + kafka-shell + 3.4.0 + + + org.apache.kafka + kafka-storage + 3.4.0 + + + org.apache.kafka + kafka-storage-api + 3.4.0 + + + org.apache.kafka + kafka-streams + 3.4.0 + + + org.apache.kafka + kafka-streams-scala_2.12 + 3.4.0 + + + org.apache.kafka + kafka-streams-scala_2.13 + 3.4.0 + + + org.apache.kafka + kafka-streams-test-utils + 3.4.0 + + + org.apache.kafka + kafka-tools + 3.4.0 + + + org.apache.kafka + kafka_2.12 + 3.4.0 + + + org.apache.kafka + kafka_2.12 + 3.4.0 + test + + + org.apache.kafka + kafka_2.13 + 3.4.0 + + + org.apache.kafka + kafka_2.13 + 3.4.0 + test + + + org.apache.kafka + trogdor + 3.4.0 + + + io.lettuce + lettuce-core + 6.2.4.RELEASE + + + org.liquibase + liquibase-cdi + 4.20.0 + + + org.liquibase + liquibase-core + 4.20.0 + + + ch.qos.logback + logback-access + 1.4.7 + + + ch.qos.logback + logback-classic + 1.4.7 + + + ch.qos.logback + logback-core + 1.4.7 + + + org.projectlombok + lombok + 1.18.26 + + + org.mariadb.jdbc + mariadb-java-client + 3.1.4 + + + io.micrometer + micrometer-registry-stackdriver + 1.11.0 + + + javax.annotation + javax.annotation-api + + + + + org.mongodb + bson + 4.9.1 + + + org.mongodb + bson-record-codec + 4.9.1 + + + org.mongodb + mongodb-driver-core + 4.9.1 + + + org.mongodb + mongodb-driver-legacy + 4.9.1 + + + org.mongodb + mongodb-driver-reactivestreams + 4.9.1 + + + org.mongodb + mongodb-driver-sync + 4.9.1 + + + com.microsoft.sqlserver + mssql-jdbc + 11.2.3.jre17 + + + com.mysql + mysql-connector-j + 8.0.33 + + + com.google.protobuf + protobuf-java + + + + + net.sourceforge.nekohtml + nekohtml + 1.9.22 + + + org.neo4j.driver + neo4j-java-driver + 5.8.0 + + + com.oracle.database.r2dbc + oracle-r2dbc + 1.1.1 + + + org.messaginghub + pooled-jms + 3.1.0 + + + org.postgresql + postgresql + 42.6.0 + + + org.quartz-scheduler + quartz + 2.3.2 + + + com.mchange + c3p0 + + + com.zaxxer + * + + + + + org.quartz-scheduler + quartz-jobs + 2.3.2 + + + io.r2dbc + r2dbc-h2 + 1.0.0.RELEASE + + + org.mariadb + r2dbc-mariadb + 1.1.4 + + + io.r2dbc + r2dbc-mssql + 1.0.0.RELEASE + + + io.asyncer + r2dbc-mysql + 1.0.1 + + + io.r2dbc + r2dbc-pool + 1.0.0.RELEASE + + + org.postgresql + r2dbc-postgresql + 1.0.1.RELEASE + + + io.r2dbc + r2dbc-proxy + 1.1.0.RELEASE + + + io.r2dbc + r2dbc-spi + 1.0.0.RELEASE + + + com.rabbitmq + amqp-client + 5.17.0 + + + com.rabbitmq + stream-client + 0.9.0 + + + org.reactivestreams + reactive-streams + 1.0.4 + + + io.reactivex.rxjava3 + rxjava + 3.1.6 + + + org.springframework.boot + spring-boot + 3.1.0 + + + org.springframework.boot + spring-boot-test + 3.1.0 + + + org.springframework.boot + spring-boot-test-autoconfigure + 3.1.0 + + + org.springframework.boot + spring-boot-testcontainers + 3.1.0 + + + org.springframework.boot + spring-boot-actuator + 3.1.0 + + + org.springframework.boot + spring-boot-actuator-autoconfigure + 3.1.0 + + + org.springframework.boot + spring-boot-autoconfigure + 3.1.0 + + + org.springframework.boot + spring-boot-autoconfigure-processor + 3.1.0 + + + org.springframework.boot + spring-boot-buildpack-platform + 3.1.0 + + + org.springframework.boot + spring-boot-configuration-metadata + 3.1.0 + + + org.springframework.boot + spring-boot-configuration-processor + 3.1.0 + + + org.springframework.boot + spring-boot-devtools + 3.1.0 + + + org.springframework.boot + spring-boot-docker-compose + 3.1.0 + + + org.springframework.boot + spring-boot-jarmode-layertools + 3.1.0 + + + org.springframework.boot + spring-boot-loader + 3.1.0 + + + org.springframework.boot + spring-boot-loader-tools + 3.1.0 + + + org.springframework.boot + spring-boot-properties-migrator + 3.1.0 + + + org.springframework.boot + spring-boot-starter + 3.1.0 + + + org.springframework.boot + spring-boot-starter-activemq + 3.1.0 + + + org.springframework.boot + spring-boot-starter-actuator + 3.1.0 + + + org.springframework.boot + spring-boot-starter-amqp + 3.1.0 + + + org.springframework.boot + spring-boot-starter-aop + 3.1.0 + + + org.springframework.boot + spring-boot-starter-artemis + 3.1.0 + + + org.springframework.boot + spring-boot-starter-batch + 3.1.0 + + + org.springframework.boot + spring-boot-starter-cache + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-cassandra + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-cassandra-reactive + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-couchbase + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-couchbase-reactive + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-elasticsearch + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-jdbc + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-jpa + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-ldap + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-mongodb + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-mongodb-reactive + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-r2dbc + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-redis + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-redis-reactive + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-neo4j + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-rest + 3.1.0 + + + org.springframework.boot + spring-boot-starter-freemarker + 3.1.0 + + + org.springframework.boot + spring-boot-starter-graphql + 3.1.0 + + + org.springframework.boot + spring-boot-starter-groovy-templates + 3.1.0 + + + org.springframework.boot + spring-boot-starter-hateoas + 3.1.0 + + + org.springframework.boot + spring-boot-starter-integration + 3.1.0 + + + org.springframework.boot + spring-boot-starter-jdbc + 3.1.0 + + + org.springframework.boot + spring-boot-starter-jersey + 3.1.0 + + + org.springframework.boot + spring-boot-starter-jetty + 3.1.0 + + + org.springframework.boot + spring-boot-starter-jooq + 3.1.0 + + + org.springframework.boot + spring-boot-starter-json + 3.1.0 + + + org.springframework.boot + spring-boot-starter-log4j2 + 3.1.0 + + + org.springframework.boot + spring-boot-starter-logging + 3.1.0 + + + org.springframework.boot + spring-boot-starter-mail + 3.1.0 + + + org.springframework.boot + spring-boot-starter-mustache + 3.1.0 + + + org.springframework.boot + spring-boot-starter-oauth2-authorization-server + 3.1.0 + + + org.springframework.boot + spring-boot-starter-oauth2-client + 3.1.0 + + + org.springframework.boot + spring-boot-starter-oauth2-resource-server + 3.1.0 + + + org.springframework.boot + spring-boot-starter-quartz + 3.1.0 + + + org.springframework.boot + spring-boot-starter-reactor-netty + 3.1.0 + + + org.springframework.boot + spring-boot-starter-rsocket + 3.1.0 + + + org.springframework.boot + spring-boot-starter-security + 3.1.0 + + + org.springframework.boot + spring-boot-starter-test + 3.1.0 + + + org.springframework.boot + spring-boot-starter-thymeleaf + 3.1.0 + + + org.springframework.boot + spring-boot-starter-tomcat + 3.1.0 + + + org.springframework.boot + spring-boot-starter-undertow + 3.1.0 + + + org.springframework.boot + spring-boot-starter-validation + 3.1.0 + + + org.springframework.boot + spring-boot-starter-web + 3.1.0 + + + org.springframework.boot + spring-boot-starter-webflux + 3.1.0 + + + org.springframework.boot + spring-boot-starter-websocket + 3.1.0 + + + org.springframework.boot + spring-boot-starter-web-services + 3.1.0 + + + com.sun.xml.messaging.saaj + saaj-impl + 3.0.2 + + + org.seleniumhq.selenium + lift + 4.8.3 + + + org.seleniumhq.selenium + selenium-api + 4.8.3 + + + org.seleniumhq.selenium + selenium-chrome-driver + 4.8.3 + + + org.seleniumhq.selenium + selenium-chromium-driver + 4.8.3 + + + org.seleniumhq.selenium + selenium-devtools-v108 + 4.8.3 + + + org.seleniumhq.selenium + selenium-devtools-v109 + 4.8.3 + + + org.seleniumhq.selenium + selenium-devtools-v110 + 4.8.3 + + + org.seleniumhq.selenium + selenium-devtools-v85 + 4.8.3 + + + org.seleniumhq.selenium + selenium-edge-driver + 4.8.3 + + + org.seleniumhq.selenium + selenium-firefox-driver + 4.8.3 + + + org.seleniumhq.selenium + selenium-grid + 4.8.3 + + + org.seleniumhq.selenium + selenium-http + 4.8.3 + + + org.seleniumhq.selenium + selenium-http-jdk-client + 4.8.3 + + + org.seleniumhq.selenium + selenium-ie-driver + 4.8.3 + + + org.seleniumhq.selenium + selenium-java + 4.8.3 + + + org.seleniumhq.selenium + selenium-json + 4.8.3 + + + org.seleniumhq.selenium + selenium-manager + 4.8.3 + + + org.seleniumhq.selenium + selenium-remote-driver + 4.8.3 + + + org.seleniumhq.selenium + selenium-safari-driver + 4.8.3 + + + org.seleniumhq.selenium + selenium-session-map-jdbc + 4.8.3 + + + org.seleniumhq.selenium + selenium-session-map-redis + 4.8.3 + + + org.seleniumhq.selenium + selenium-support + 4.8.3 + + + org.seleniumhq.selenium + htmlunit-driver + 4.8.3 + + + com.sendgrid + sendgrid-java + 4.9.3 + + + org.slf4j + jcl-over-slf4j + 2.0.7 + + + org.slf4j + jul-to-slf4j + 2.0.7 + + + org.slf4j + log4j-over-slf4j + 2.0.7 + + + org.slf4j + slf4j-api + 2.0.7 + + + org.slf4j + slf4j-ext + 2.0.7 + + + org.slf4j + slf4j-jdk-platform-logging + 2.0.7 + + + org.slf4j + slf4j-jdk14 + 2.0.7 + + + org.slf4j + slf4j-log4j12 + 2.0.7 + + + org.slf4j + slf4j-nop + 2.0.7 + + + org.slf4j + slf4j-reload4j + 2.0.7 + + + org.slf4j + slf4j-simple + 2.0.7 + + + org.yaml + snakeyaml + 1.33 + + + org.springframework.amqp + spring-amqp + 3.0.4 + + + org.springframework.amqp + spring-rabbit + 3.0.4 + + + org.springframework.amqp + spring-rabbit-stream + 3.0.4 + + + org.springframework.amqp + spring-rabbit-junit + 3.0.4 + + + org.springframework.amqp + spring-rabbit-test + 3.0.4 + + + org.springframework.security + spring-security-oauth2-authorization-server + 1.1.0 + + + org.springframework.graphql + spring-graphql + 1.2.0 + + + org.springframework.graphql + spring-graphql-test + 1.2.0 + + + org.springframework.hateoas + spring-hateoas + 2.1.0 + + + org.springframework.kafka + spring-kafka + 3.0.7 + + + org.springframework.kafka + spring-kafka-test + 3.0.7 + + + org.springframework.ldap + spring-ldap-core + 3.1.0 + + + org.springframework.ldap + spring-ldap-ldif-core + 3.1.0 + + + org.springframework.ldap + spring-ldap-odm + 3.1.0 + + + org.springframework.ldap + spring-ldap-test + 3.1.0 + + + org.springframework.retry + spring-retry + 2.0.1 + + + org.xerial + sqlite-jdbc + 3.41.2.1 + + + org.thymeleaf + thymeleaf + 3.1.1.RELEASE + + + org.thymeleaf + thymeleaf-spring6 + 3.1.1.RELEASE + + + com.github.mxab.thymeleaf.extras + thymeleaf-extras-data-attribute + 2.0.1 + + + org.thymeleaf.extras + thymeleaf-extras-springsecurity6 + 3.1.1.RELEASE + + + nz.net.ultraq.thymeleaf + thymeleaf-layout-dialect + 3.2.1 + + + org.apache.tomcat + tomcat-annotations-api + 10.1.8 + + + org.apache.tomcat + tomcat-jdbc + 10.1.8 + + + org.apache.tomcat + tomcat-jsp-api + 10.1.8 + + + org.apache.tomcat.embed + tomcat-embed-core + 10.1.8 + + + org.apache.tomcat.embed + tomcat-embed-el + 10.1.8 + + + org.apache.tomcat.embed + tomcat-embed-jasper + 10.1.8 + + + org.apache.tomcat.embed + tomcat-embed-websocket + 10.1.8 + + + com.unboundid + unboundid-ldapsdk + 6.0.8 + + + io.undertow + undertow-core + 2.3.6.Final + + + io.undertow + undertow-servlet + 2.3.6.Final + + + io.undertow + undertow-websockets-jsr + 2.3.6.Final + + + org.webjars + webjars-locator-core + 0.52 + + + wsdl4j + wsdl4j + 1.6.3 + + + org.xmlunit + xmlunit-assertj + 2.9.1 + + + org.xmlunit + xmlunit-assertj3 + 2.9.1 + + + org.xmlunit + xmlunit-core + 2.9.1 + + + org.xmlunit + xmlunit-jakarta-jaxb-impl + 2.9.1 + + + org.xmlunit + xmlunit-legacy + 2.9.1 + + + org.xmlunit + xmlunit-matchers + 2.9.1 + + + org.xmlunit + xmlunit-placeholders + 2.9.1 + + + org.eclipse + yasson + 3.0.3 + + + org.assertj + assertj-core + 3.24.2 + + + org.assertj + assertj-guava + 3.24.2 + + + io.zipkin.zipkin2 + zipkin + 2.23.2 + + + io.zipkin.brave + brave + 5.15.1 + + + io.zipkin.brave + brave-tests + 5.15.1 + + + io.zipkin.brave + brave-context-jfr + 5.15.1 + + + io.zipkin.brave + brave-context-log4j2 + 5.15.1 + + + io.zipkin.brave + brave-context-log4j12 + 5.15.1 + + + io.zipkin.brave + brave-context-slf4j + 5.15.1 + + + io.zipkin.brave + brave-context-rxjava2 + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-dubbo + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-dubbo-rpc + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-grpc + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-http + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-http-tests + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-httpasyncclient + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-httpclient + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-jaxrs2 + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-jersey-server + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-jms + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-jms-jakarta + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-kafka-clients + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-kafka-streams + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-messaging + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-mongodb + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-mysql + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-mysql6 + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-mysql8 + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-netty-codec-http + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-okhttp3 + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-p6spy + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-rpc + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-servlet + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-servlet-jakarta + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-sparkjava + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-spring-rabbit + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-spring-web + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-spring-webmvc + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-vertx-web + 5.15.1 + + + io.zipkin.brave + brave-spring-beans + 5.15.1 + + + io.zipkin.proto3 + zipkin-proto3 + 1.0.0 + + + io.zipkin.reporter2 + zipkin-reporter + 2.16.3 + + + io.zipkin.reporter2 + zipkin-sender-okhttp3 + 2.16.3 + + + io.zipkin.reporter2 + zipkin-sender-libthrift + 2.16.3 + + + io.zipkin.reporter2 + zipkin-sender-urlconnection + 2.16.3 + + + io.zipkin.reporter2 + zipkin-sender-kafka08 + 2.16.3 + + + io.zipkin.reporter2 + zipkin-sender-kafka + 2.16.3 + + + io.zipkin.reporter2 + zipkin-sender-amqp-client + 2.16.3 + + + io.zipkin.reporter2 + zipkin-sender-activemq-client + 2.16.3 + + + io.zipkin.reporter2 + zipkin-reporter-spring-beans + 2.16.3 + + + io.zipkin.reporter2 + zipkin-reporter-brave + 2.16.3 + + + io.zipkin.reporter2 + zipkin-reporter-metrics-micrometer + 2.16.3 + + + com.datastax.oss + java-driver-core-shaded + 4.15.0 + + + com.datastax.oss + java-driver-mapper-processor + 4.15.0 + + + com.datastax.oss + java-driver-mapper-runtime + 4.15.0 + + + com.datastax.oss + java-driver-query-builder + 4.15.0 + + + com.datastax.oss + java-driver-test-infra + 4.15.0 + + + com.datastax.oss + java-driver-metrics-micrometer + 4.15.0 + + + com.datastax.oss + java-driver-metrics-microprofile + 4.15.0 + + + com.datastax.oss + native-protocol + 1.5.1 + + + com.datastax.oss + java-driver-shaded-guava + 25.1-jre-graal-sub-1 + + + io.dropwizard.metrics + metrics-annotation + 4.2.18 + + + io.dropwizard.metrics + metrics-caffeine + 4.2.18 + + + io.dropwizard.metrics + metrics-caffeine3 + 4.2.18 + + + io.dropwizard.metrics + metrics-core + 4.2.18 + + + io.dropwizard.metrics + metrics-collectd + 4.2.18 + + + io.dropwizard.metrics + metrics-ehcache + 4.2.18 + + + io.dropwizard.metrics + metrics-graphite + 4.2.18 + + + io.dropwizard.metrics + metrics-healthchecks + 4.2.18 + + + io.dropwizard.metrics + metrics-httpclient + 4.2.18 + + + io.dropwizard.metrics + metrics-httpclient5 + 4.2.18 + + + io.dropwizard.metrics + metrics-httpasyncclient + 4.2.18 + + + io.dropwizard.metrics + metrics-jakarta-servlet + 4.2.18 + + + io.dropwizard.metrics + metrics-jakarta-servlets + 4.2.18 + + + io.dropwizard.metrics + metrics-jcache + 4.2.18 + + + io.dropwizard.metrics + metrics-jdbi + 4.2.18 + + + io.dropwizard.metrics + metrics-jdbi3 + 4.2.18 + + + io.dropwizard.metrics + metrics-jersey2 + 4.2.18 + + + io.dropwizard.metrics + metrics-jersey3 + 4.2.18 + + + io.dropwizard.metrics + metrics-jersey31 + 4.2.18 + + + io.dropwizard.metrics + metrics-jetty9 + 4.2.18 + + + io.dropwizard.metrics + metrics-jetty10 + 4.2.18 + + + io.dropwizard.metrics + metrics-jetty11 + 4.2.18 + + + io.dropwizard.metrics + metrics-jmx + 4.2.18 + + + io.dropwizard.metrics + metrics-json + 4.2.18 + + + io.dropwizard.metrics + metrics-jvm + 4.2.18 + + + io.dropwizard.metrics + metrics-log4j2 + 4.2.18 + + + io.dropwizard.metrics + metrics-logback + 4.2.18 + + + io.dropwizard.metrics + metrics-logback13 + 4.2.18 + + + io.dropwizard.metrics + metrics-logback14 + 4.2.18 + + + io.dropwizard.metrics + metrics-servlet + 4.2.18 + + + io.dropwizard.metrics + metrics-servlets + 4.2.18 + + + org.glassfish.jaxb + jaxb-runtime + 4.0.2 + sources + + + org.glassfish.jaxb + jaxb-core + 4.0.2 + sources + + + org.glassfish.jaxb + jaxb-xjc + 4.0.2 + sources + + + org.glassfish.jaxb + jaxb-jxc + 4.0.2 + sources + + + org.glassfish.jaxb + codemodel + 4.0.2 + sources + + + org.glassfish.jaxb + txw2 + 4.0.2 + sources + + + org.glassfish.jaxb + xsom + 4.0.2 + sources + + + com.sun.xml.bind + jaxb-impl + 4.0.2 + sources + + + com.sun.xml.bind + jaxb-core + 4.0.2 + sources + + + com.sun.xml.bind + jaxb-xjc + 4.0.2 + sources + + + com.sun.xml.bind + jaxb-jxc + 4.0.2 + sources + + + jakarta.xml.bind + jakarta.xml.bind-api + 4.0.0 + sources + + + org.jvnet.staxex + stax-ex + 2.1.0 + sources + + + jakarta.activation + jakarta.activation-api + + + + + com.sun.xml.fastinfoset + FastInfoset + 2.1.0 + sources + + + org.glassfish.jaxb + jaxb-runtime + 4.0.2 + + + org.glassfish.jaxb + jaxb-core + 4.0.2 + + + org.glassfish.jaxb + jaxb-xjc + 4.0.2 + + + org.glassfish.jaxb + jaxb-jxc + 4.0.2 + + + org.glassfish.jaxb + codemodel + 4.0.2 + + + org.glassfish.jaxb + txw2 + 4.0.2 + + + org.glassfish.jaxb + xsom + 4.0.2 + + + com.sun.xml.bind + jaxb-impl + 4.0.2 + + + com.sun.xml.bind + jaxb-core + 4.0.2 + + + com.sun.xml.bind + jaxb-xjc + 4.0.2 + + + com.sun.xml.bind + jaxb-jxc + 4.0.2 + + + com.sun.xml.bind + jaxb-osgi + 4.0.2 + + + com.sun.istack + istack-commons-runtime + 4.1.1 + + + com.sun.xml.fastinfoset + FastInfoset + 2.1.0 + + + org.jvnet.staxex + stax-ex + 2.1.0 + + + org.eclipse.angus + angus-activation + 2.0.0 + + + org.apache.groovy + groovy + 4.0.12 + + + org.apache.groovy + groovy-ant + 4.0.12 + + + org.apache.groovy + groovy-astbuilder + 4.0.12 + + + org.apache.groovy + groovy-cli-commons + 4.0.12 + + + org.apache.groovy + groovy-cli-picocli + 4.0.12 + + + org.apache.groovy + groovy-console + 4.0.12 + + + org.apache.groovy + groovy-contracts + 4.0.12 + + + org.apache.groovy + groovy-datetime + 4.0.12 + + + org.apache.groovy + groovy-dateutil + 4.0.12 + + + org.apache.groovy + groovy-docgenerator + 4.0.12 + + + org.apache.groovy + groovy-ginq + 4.0.12 + + + org.apache.groovy + groovy-groovydoc + 4.0.12 + + + org.apache.groovy + groovy-groovysh + 4.0.12 + + + org.apache.groovy + groovy-jmx + 4.0.12 + + + org.apache.groovy + groovy-json + 4.0.12 + + + org.apache.groovy + groovy-jsr223 + 4.0.12 + + + org.apache.groovy + groovy-macro + 4.0.12 + + + org.apache.groovy + groovy-macro-library + 4.0.12 + + + org.apache.groovy + groovy-nio + 4.0.12 + + + org.apache.groovy + groovy-servlet + 4.0.12 + + + org.apache.groovy + groovy-sql + 4.0.12 + + + org.apache.groovy + groovy-swing + 4.0.12 + + + org.apache.groovy + groovy-templates + 4.0.12 + + + org.apache.groovy + groovy-test + 4.0.12 + + + org.apache.groovy + groovy-test-junit5 + 4.0.12 + + + org.apache.groovy + groovy-testng + 4.0.12 + + + org.apache.groovy + groovy-toml + 4.0.12 + + + org.apache.groovy + groovy-typecheckers + 4.0.12 + + + org.apache.groovy + groovy-xml + 4.0.12 + + + org.apache.groovy + groovy-yaml + 4.0.12 + + + org.infinispan + infinispan-api + 14.0.9.Final + + + org.infinispan + infinispan-cachestore-jdbc + 14.0.9.Final + + + org.infinispan + infinispan-cachestore-jdbc-jakarta + 14.0.9.Final + + + org.infinispan + infinispan-cachestore-jdbc-common + 14.0.9.Final + + + org.infinispan + infinispan-cachestore-jdbc-common-jakarta + 14.0.9.Final + + + org.infinispan + infinispan-cachestore-sql + 14.0.9.Final + + + org.infinispan + infinispan-cachestore-remote + 14.0.9.Final + + + org.infinispan + infinispan-cachestore-rocksdb + 14.0.9.Final + + + org.infinispan + infinispan-cdi-common + 14.0.9.Final + + + org.infinispan + infinispan-cdi-common-jakarta + 14.0.9.Final + + + org.infinispan + infinispan-cdi-embedded + 14.0.9.Final + + + org.infinispan + infinispan-cdi-embedded-jakarta + 14.0.9.Final + + + org.infinispan + infinispan-cdi-remote + 14.0.9.Final + + + org.infinispan + infinispan-cdi-remote-jakarta + 14.0.9.Final + + + org.infinispan + infinispan-checkstyle + 14.0.9.Final + + + org.infinispan + infinispan-cli-client + 14.0.9.Final + + + org.infinispan + infinispan-hotrod + 14.0.9.Final + + + org.infinispan + infinispan-hotrod-jakarta + 14.0.9.Final + + + org.infinispan + infinispan-client-hotrod + 14.0.9.Final + + + org.infinispan + infinispan-client-hotrod-jakarta + 14.0.9.Final + + + org.infinispan + infinispan-client-rest + 14.0.9.Final + + + org.infinispan + infinispan-key-value-store-client + 14.0.9.Final + + + org.infinispan + infinispan-clustered-counter + 14.0.9.Final + + + org.infinispan + infinispan-clustered-lock + 14.0.9.Final + + + org.infinispan + infinispan-commons + 14.0.9.Final + + + org.infinispan + infinispan-commons-jakarta + 14.0.9.Final + + + org.infinispan + infinispan-commons-test + 14.0.9.Final + + + org.infinispan + infinispan-component-annotations + 14.0.9.Final + provided + + + org.infinispan + infinispan-component-processor + 14.0.9.Final + + + org.infinispan + infinispan-core + 14.0.9.Final + + + org.infinispan + infinispan-core-jakarta + 14.0.9.Final + + + org.infinispan + infinispan-jboss-marshalling + 14.0.9.Final + + + org.infinispan + infinispan-extended-statistics + 14.0.9.Final + + + org.infinispan + infinispan-hibernate-cache-commons + 14.0.9.Final + + + org.infinispan + infinispan-hibernate-cache-spi + 14.0.9.Final + + + org.infinispan + infinispan-hibernate-cache-v60 + 14.0.9.Final + + + org.infinispan + infinispan-jcache-commons + 14.0.9.Final + + + org.infinispan + infinispan-jcache + 14.0.9.Final + + + org.infinispan + infinispan-jcache-remote + 14.0.9.Final + + + org.infinispan + infinispan-console + 14.0.8.Final + + + org.infinispan + infinispan-multimap + 14.0.9.Final + + + org.infinispan + infinispan-objectfilter + 14.0.9.Final + + + org.infinispan + infinispan-query-core + 14.0.9.Final + + + org.infinispan + infinispan-query + 14.0.9.Final + + + org.infinispan + infinispan-query-jakarta + 14.0.9.Final + + + org.infinispan + infinispan-query-dsl + 14.0.9.Final + + + org.infinispan + infinispan-remote-query-client + 14.0.9.Final + + + org.infinispan + infinispan-remote-query-server + 14.0.9.Final + + + org.infinispan + infinispan-scripting + 14.0.9.Final + + + org.infinispan + infinispan-server-core + 14.0.9.Final + + + org.infinispan + infinispan-server-hotrod + 14.0.9.Final + + + org.infinispan + infinispan-server-hotrod-jakarta + 14.0.9.Final + + + org.infinispan + infinispan-server-memcached + 14.0.9.Final + + + org.infinispan + infinispan-server-resp + 14.0.9.Final + + + org.infinispan + infinispan-server-rest + 14.0.9.Final + + + org.infinispan + infinispan-server-router + 14.0.9.Final + + + org.infinispan + infinispan-server-runtime + 14.0.9.Final + + + org.infinispan + infinispan-server-runtime + 14.0.9.Final + loader + + + org.infinispan + infinispan-server-testdriver-core + 14.0.9.Final + + + org.infinispan + infinispan-server-testdriver-junit4 + 14.0.9.Final + + + org.infinispan + infinispan-server-testdriver-junit5 + 14.0.9.Final + + + org.infinispan + infinispan-spring5-common + 14.0.9.Final + + + org.infinispan + infinispan-spring5-embedded + 14.0.9.Final + + + org.infinispan + infinispan-spring5-remote + 14.0.9.Final + + + org.infinispan + infinispan-spring-boot-starter-embedded + 14.0.9.Final + + + org.infinispan + infinispan-spring-boot-starter-remote + 14.0.9.Final + + + org.infinispan + infinispan-spring6-common + 14.0.9.Final + + + org.infinispan + infinispan-spring6-embedded + 14.0.9.Final + + + org.infinispan + infinispan-spring6-remote + 14.0.9.Final + + + org.infinispan + infinispan-spring-boot3-starter-embedded + 14.0.9.Final + + + org.infinispan + infinispan-spring-boot3-starter-remote + 14.0.9.Final + + + org.infinispan + infinispan-tasks + 14.0.9.Final + + + org.infinispan + infinispan-tasks-api + 14.0.9.Final + + + org.infinispan + infinispan-tools + 14.0.9.Final + + + org.infinispan + infinispan-tools-jakarta + 14.0.9.Final + + + org.infinispan + infinispan-anchored-keys + 14.0.9.Final + + + org.infinispan.protostream + protostream + 4.6.2.Final + + + org.infinispan.protostream + protostream-types + 4.6.2.Final + + + org.infinispan.protostream + protostream-processor + 4.6.2.Final + provided + + + org.infinispan + infinispan-cloudevents-integration + 14.0.9.Final + + + org.infinispan + infinispan-marshaller-kryo + 14.0.9.Final + + + org.infinispan + infinispan-marshaller-kryo-bundle + 14.0.9.Final + + + org.infinispan + infinispan-marshaller-protostuff + 14.0.9.Final + + + org.infinispan + infinispan-marshaller-protostuff-bundle + 14.0.9.Final + + + com.fasterxml.jackson.core + jackson-annotations + 2.15.0 + + + com.fasterxml.jackson.core + jackson-core + 2.15.0 + + + com.fasterxml.jackson.core + jackson-databind + 2.15.0 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-avro + 2.15.0 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-cbor + 2.15.0 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-csv + 2.15.0 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-ion + 2.15.0 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-properties + 2.15.0 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-protobuf + 2.15.0 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-smile + 2.15.0 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-toml + 2.15.0 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-xml + 2.15.0 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-yaml + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-eclipse-collections + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-guava + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate4 + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate5 + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate5-jakarta + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate6 + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-hppc + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-jakarta-jsonp + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-jaxrs + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-joda + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-joda-money + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-jdk8 + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-json-org + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-jsr310 + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-jsr353 + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-pcollections + 2.15.0 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-base + 2.15.0 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-cbor-provider + 2.15.0 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-json-provider + 2.15.0 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-smile-provider + 2.15.0 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-xml-provider + 2.15.0 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-yaml-provider + 2.15.0 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-base + 2.15.0 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-cbor-provider + 2.15.0 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-json-provider + 2.15.0 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-smile-provider + 2.15.0 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-xml-provider + 2.15.0 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-yaml-provider + 2.15.0 + + + com.fasterxml.jackson.jr + jackson-jr-all + 2.15.0 + + + com.fasterxml.jackson.jr + jackson-jr-annotation-support + 2.15.0 + + + com.fasterxml.jackson.jr + jackson-jr-objects + 2.15.0 + + + com.fasterxml.jackson.jr + jackson-jr-retrofit2 + 2.15.0 + + + com.fasterxml.jackson.jr + jackson-jr-stree + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-afterburner + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-blackbird + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-guice + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-jaxb-annotations + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-jakarta-xmlbind-annotations + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-jsonSchema + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-jsonSchema-jakarta + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-kotlin + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-mrbean + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-no-ctor-deser + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-osgi + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-parameter-names + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-paranamer + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-scala_2.11 + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-scala_2.12 + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-scala_2.13 + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-scala_3 + 2.15.0 + + + org.glassfish.jersey.core + jersey-common + 3.1.1 + + + org.glassfish.jersey.core + jersey-client + 3.1.1 + + + org.glassfish.jersey.core + jersey-server + 3.1.1 + + + org.glassfish.jersey.bundles + jaxrs-ri + 3.1.1 + + + org.glassfish.jersey.connectors + jersey-apache-connector + 3.1.1 + + + org.glassfish.jersey.connectors + jersey-apache5-connector + 3.1.1 + + + org.glassfish.jersey.connectors + jersey-helidon-connector + 3.1.1 + + + org.glassfish.jersey.connectors + jersey-grizzly-connector + 3.1.1 + + + org.glassfish.jersey.connectors + jersey-jnh-connector + 3.1.1 + + + org.glassfish.jersey.connectors + jersey-jetty-connector + 3.1.1 + + + org.glassfish.jersey.connectors + jersey-jdk-connector + 3.1.1 + + + org.glassfish.jersey.connectors + jersey-netty-connector + 3.1.1 + + + org.glassfish.jersey.containers + jersey-container-jetty-http + 3.1.1 + + + org.glassfish.jersey.containers + jersey-container-grizzly2-http + 3.1.1 + + + org.glassfish.jersey.containers + jersey-container-grizzly2-servlet + 3.1.1 + + + org.glassfish.jersey.containers + jersey-container-jetty-servlet + 3.1.1 + + + org.glassfish.jersey.containers + jersey-container-jdk-http + 3.1.1 + + + org.glassfish.jersey.containers + jersey-container-netty-http + 3.1.1 + + + org.glassfish.jersey.containers + jersey-container-servlet + 3.1.1 + + + org.glassfish.jersey.containers + jersey-container-servlet-core + 3.1.1 + + + org.glassfish.jersey.containers + jersey-container-simple-http + 3.1.1 + + + org.glassfish.jersey.containers.glassfish + jersey-gf-ejb + 3.1.1 + + + org.glassfish.jersey.ext + jersey-bean-validation + 3.1.1 + + + org.glassfish.jersey.ext + jersey-entity-filtering + 3.1.1 + + + org.glassfish.jersey.ext + jersey-metainf-services + 3.1.1 + + + org.glassfish.jersey.ext.microprofile + jersey-mp-config + 3.1.1 + + + org.glassfish.jersey.ext + jersey-mvc + 3.1.1 + + + org.glassfish.jersey.ext + jersey-mvc-bean-validation + 3.1.1 + + + org.glassfish.jersey.ext + jersey-mvc-freemarker + 3.1.1 + + + org.glassfish.jersey.ext + jersey-mvc-jsp + 3.1.1 + + + org.glassfish.jersey.ext + jersey-mvc-mustache + 3.1.1 + + + org.glassfish.jersey.ext + jersey-proxy-client + 3.1.1 + + + org.glassfish.jersey.ext + jersey-spring6 + 3.1.1 + + + org.glassfish.jersey.ext + jersey-declarative-linking + 3.1.1 + + + org.glassfish.jersey.ext + jersey-wadl-doclet + 3.1.1 + + + org.glassfish.jersey.ext.cdi + jersey-weld2-se + 3.1.1 + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x + 3.1.1 + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x-transaction + 3.1.1 + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x-validation + 3.1.1 + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x-servlet + 3.1.1 + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x-ban-custom-hk2-binding + 3.1.1 + + + org.glassfish.jersey.ext.cdi + jersey-cdi-rs-inject + 3.1.1 + + + org.glassfish.jersey.ext.rx + jersey-rx-client-guava + 3.1.1 + + + org.glassfish.jersey.ext.rx + jersey-rx-client-rxjava + 3.1.1 + + + org.glassfish.jersey.ext.rx + jersey-rx-client-rxjava2 + 3.1.1 + + + org.glassfish.jersey.ext.microprofile + jersey-mp-rest-client + 3.1.1 + + + org.glassfish.jersey.media + jersey-media-jaxb + 3.1.1 + + + org.glassfish.jersey.media + jersey-media-json-jackson + 3.1.1 + + + org.glassfish.jersey.media + jersey-media-json-jettison + 3.1.1 + + + org.glassfish.jersey.media + jersey-media-json-processing + 3.1.1 + + + org.glassfish.jersey.media + jersey-media-json-gson + 3.1.1 + + + org.glassfish.jersey.media + jersey-media-json-binding + 3.1.1 + + + org.glassfish.jersey.media + jersey-media-kryo + 3.1.1 + + + org.glassfish.jersey.media + jersey-media-moxy + 3.1.1 + + + org.glassfish.jersey.media + jersey-media-multipart + 3.1.1 + + + org.glassfish.jersey.media + jersey-media-sse + 3.1.1 + + + org.glassfish.jersey.security + oauth1-client + 3.1.1 + + + org.glassfish.jersey.security + oauth1-server + 3.1.1 + + + org.glassfish.jersey.security + oauth1-signature + 3.1.1 + + + org.glassfish.jersey.security + oauth2-client + 3.1.1 + + + org.glassfish.jersey.inject + jersey-hk2 + 3.1.1 + + + org.glassfish.jersey.inject + jersey-cdi2-se + 3.1.1 + + + org.glassfish.jersey.test-framework + jersey-test-framework-core + 3.1.1 + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-bundle + 3.1.1 + pom + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-external + 3.1.1 + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-grizzly2 + 3.1.1 + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-inmemory + 3.1.1 + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-jdk-http + 3.1.1 + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-simple + 3.1.1 + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-jetty + 3.1.1 + + + org.glassfish.jersey.test-framework + jersey-test-framework-util + 3.1.1 + + + org.eclipse.jetty + apache-jsp + 11.0.15 + + + org.eclipse.jetty + glassfish-jstl + 11.0.15 + + + org.eclipse.jetty + jetty-alpn-client + 11.0.15 + + + org.eclipse.jetty + jetty-alpn-java-client + 11.0.15 + + + org.eclipse.jetty + jetty-alpn-java-server + 11.0.15 + + + org.eclipse.jetty + jetty-alpn-conscrypt-client + 11.0.15 + + + org.eclipse.jetty + jetty-alpn-conscrypt-server + 11.0.15 + + + org.eclipse.jetty + jetty-alpn-server + 11.0.15 + + + org.eclipse.jetty + jetty-annotations + 11.0.15 + + + org.eclipse.jetty + jetty-ant + 11.0.15 + + + org.eclipse.jetty + jetty-client + 11.0.15 + + + org.eclipse.jetty + jetty-cdi + 11.0.15 + + + org.eclipse.jetty + jetty-deploy + 11.0.15 + + + org.eclipse.jetty.fcgi + fcgi-client + 11.0.15 + + + org.eclipse.jetty.fcgi + fcgi-server + 11.0.15 + + + org.eclipse.jetty.gcloud + jetty-gcloud-session-manager + 11.0.15 + + + org.eclipse.jetty + jetty-home + 11.0.15 + zip + + + org.eclipse.jetty + jetty-home + 11.0.15 + tar.gz + + + org.eclipse.jetty + jetty-http + 11.0.15 + + + org.eclipse.jetty.http2 + http2-client + 11.0.15 + + + org.eclipse.jetty.http2 + http2-common + 11.0.15 + + + org.eclipse.jetty.http2 + http2-hpack + 11.0.15 + + + org.eclipse.jetty.http2 + http2-http-client-transport + 11.0.15 + + + org.eclipse.jetty.http2 + http2-server + 11.0.15 + + + org.eclipse.jetty.http3 + http3-client + 11.0.15 + + + org.eclipse.jetty.http3 + http3-common + 11.0.15 + + + org.eclipse.jetty.http3 + http3-http-client-transport + 11.0.15 + + + org.eclipse.jetty.http3 + http3-qpack + 11.0.15 + + + org.eclipse.jetty.http3 + http3-server + 11.0.15 + + + org.eclipse.jetty + jetty-http-spi + 11.0.15 + + + org.eclipse.jetty + infinispan-common + 11.0.15 + + + org.eclipse.jetty + infinispan-remote-query + 11.0.15 + + + org.eclipse.jetty + infinispan-embedded-query + 11.0.15 + + + org.eclipse.jetty + jetty-hazelcast + 11.0.15 + + + org.eclipse.jetty + jetty-io + 11.0.15 + + + org.eclipse.jetty + jetty-jaas + 11.0.15 + + + org.eclipse.jetty + jetty-jaspi + 11.0.15 + + + org.eclipse.jetty + jetty-jmx + 11.0.15 + + + org.eclipse.jetty + jetty-jndi + 11.0.15 + + + org.eclipse.jetty + jetty-keystore + 11.0.15 + + + org.eclipse.jetty.memcached + jetty-memcached-sessions + 11.0.15 + + + org.eclipse.jetty + jetty-nosql + 11.0.15 + + + org.eclipse.jetty.osgi + jetty-osgi-alpn + 11.0.15 + + + org.eclipse.jetty.osgi + jetty-osgi-boot + 11.0.15 + + + org.eclipse.jetty.osgi + jetty-osgi-boot-jsp + 11.0.15 + + + org.eclipse.jetty.osgi + jetty-osgi-boot-warurl + 11.0.15 + + + org.eclipse.jetty.quic + quic-client + 11.0.15 + + + org.eclipse.jetty.quic + quic-common + 11.0.15 + + + org.eclipse.jetty.quic + quic-quiche-common + 11.0.15 + + + org.eclipse.jetty.quic + quic-quiche-jna + 11.0.15 + + + org.eclipse.jetty.quic + quic-server + 11.0.15 + + + org.eclipse.jetty.osgi + jetty-httpservice + 11.0.15 + + + org.eclipse.jetty + jetty-plus + 11.0.15 + + + org.eclipse.jetty + jetty-proxy + 11.0.15 + + + org.eclipse.jetty + jetty-quickstart + 11.0.15 + + + org.eclipse.jetty + jetty-rewrite + 11.0.15 + + + org.eclipse.jetty + jetty-security + 11.0.15 + + + org.eclipse.jetty + jetty-openid + 11.0.15 + + + org.eclipse.jetty + jetty-server + 11.0.15 + + + org.eclipse.jetty + jetty-servlet + 11.0.15 + + + org.eclipse.jetty + jetty-servlets + 11.0.15 + + + org.eclipse.jetty + jetty-slf4j-impl + 11.0.15 + + + org.eclipse.jetty + jetty-unixdomain-server + 11.0.15 + + + org.eclipse.jetty + jetty-unixsocket-common + 11.0.15 + + + org.eclipse.jetty + jetty-unixsocket-client + 11.0.15 + + + org.eclipse.jetty + jetty-unixsocket-server + 11.0.15 + + + org.eclipse.jetty + jetty-util + 11.0.15 + + + org.eclipse.jetty + jetty-util-ajax + 11.0.15 + + + org.eclipse.jetty + jetty-webapp + 11.0.15 + + + org.eclipse.jetty.websocket + websocket-jakarta-client + 11.0.15 + + + org.eclipse.jetty.websocket + websocket-jakarta-server + 11.0.15 + + + org.eclipse.jetty.websocket + websocket-jakarta-common + 11.0.15 + + + org.eclipse.jetty.websocket + websocket-jetty-api + 11.0.15 + + + org.eclipse.jetty.websocket + websocket-jetty-client + 11.0.15 + + + org.eclipse.jetty.websocket + websocket-jetty-common + 11.0.15 + + + org.eclipse.jetty.websocket + websocket-jetty-server + 11.0.15 + + + org.eclipse.jetty.websocket + websocket-servlet + 11.0.15 + + + org.eclipse.jetty.websocket + websocket-core-common + 11.0.15 + + + org.eclipse.jetty.websocket + websocket-core-client + 11.0.15 + + + org.eclipse.jetty.websocket + websocket-core-server + 11.0.15 + + + org.eclipse.jetty + jetty-xml + 11.0.15 + + + org.junit.jupiter + junit-jupiter + 5.9.3 + + + org.junit.jupiter + junit-jupiter-api + 5.9.3 + + + org.junit.jupiter + junit-jupiter-engine + 5.9.3 + + + org.junit.jupiter + junit-jupiter-migrationsupport + 5.9.3 + + + org.junit.jupiter + junit-jupiter-params + 5.9.3 + + + org.junit.platform + junit-platform-commons + 1.9.3 + + + org.junit.platform + junit-platform-console + 1.9.3 + + + org.junit.platform + junit-platform-engine + 1.9.3 + + + org.junit.platform + junit-platform-jfr + 1.9.3 + + + org.junit.platform + junit-platform-launcher + 1.9.3 + + + org.junit.platform + junit-platform-reporting + 1.9.3 + + + org.junit.platform + junit-platform-runner + 1.9.3 + + + org.junit.platform + junit-platform-suite + 1.9.3 + + + org.junit.platform + junit-platform-suite-api + 1.9.3 + + + org.junit.platform + junit-platform-suite-commons + 1.9.3 + + + org.junit.platform + junit-platform-suite-engine + 1.9.3 + + + org.junit.platform + junit-platform-testkit + 1.9.3 + + + org.junit.vintage + junit-vintage-engine + 5.9.3 + + + org.jetbrains.kotlin + kotlin-stdlib + 1.8.21 + + + org.jetbrains.kotlin + kotlin-stdlib-jdk7 + 1.8.21 + + + org.jetbrains.kotlin + kotlin-stdlib-jdk8 + 1.8.21 + + + org.jetbrains.kotlin + kotlin-stdlib-js + 1.8.21 + + + org.jetbrains.kotlin + kotlin-stdlib-common + 1.8.21 + + + org.jetbrains.kotlin + kotlin-reflect + 1.8.21 + + + org.jetbrains.kotlin + kotlin-osgi-bundle + 1.8.21 + + + org.jetbrains.kotlin + kotlin-test + 1.8.21 + + + org.jetbrains.kotlin + kotlin-test-junit + 1.8.21 + + + org.jetbrains.kotlin + kotlin-test-junit5 + 1.8.21 + + + org.jetbrains.kotlin + kotlin-test-testng + 1.8.21 + + + org.jetbrains.kotlin + kotlin-test-js + 1.8.21 + + + org.jetbrains.kotlin + kotlin-test-common + 1.8.21 + + + org.jetbrains.kotlin + kotlin-test-annotations-common + 1.8.21 + + + org.jetbrains.kotlin + kotlin-main-kts + 1.8.21 + + + org.jetbrains.kotlin + kotlin-script-runtime + 1.8.21 + + + org.jetbrains.kotlin + kotlin-script-util + 1.8.21 + + + org.jetbrains.kotlin + kotlin-scripting-common + 1.8.21 + + + org.jetbrains.kotlin + kotlin-scripting-jvm + 1.8.21 + + + org.jetbrains.kotlin + kotlin-scripting-jvm-host + 1.8.21 + + + org.jetbrains.kotlin + kotlin-scripting-ide-services + 1.8.21 + + + org.jetbrains.kotlin + kotlin-compiler + 1.8.21 + + + org.jetbrains.kotlin + kotlin-compiler-embeddable + 1.8.21 + + + org.jetbrains.kotlin + kotlin-daemon-client + 1.8.21 + + + org.jetbrains.kotlinx + kotlinx-coroutines-android + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-core-jvm + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-core + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-debug + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-guava + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-javafx + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-jdk8 + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-jdk9 + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-play-services + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-reactive + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-reactor + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-rx2 + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-rx3 + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-slf4j + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-swing + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-test-jvm + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-test + 1.6.4 + + + org.apache.logging.log4j + log4j-1.2-api + 2.20.0 + + + org.apache.logging.log4j + log4j-api + 2.20.0 + + + org.apache.logging.log4j + log4j-api-test + 2.20.0 + + + org.apache.logging.log4j + log4j-appserver + 2.20.0 + + + org.apache.logging.log4j + log4j-cassandra + 2.20.0 + + + org.apache.logging.log4j + log4j-core + 2.20.0 + + + org.apache.logging.log4j + log4j-core-test + 2.20.0 + + + org.apache.logging.log4j + log4j-couchdb + 2.20.0 + + + org.apache.logging.log4j + log4j-docker + 2.20.0 + + + org.apache.logging.log4j + log4j-flume-ng + 2.20.0 + + + org.apache.logging.log4j + log4j-iostreams + 2.20.0 + + + org.apache.logging.log4j + log4j-jakarta-smtp + 2.20.0 + + + org.apache.logging.log4j + log4j-jakarta-web + 2.20.0 + + + org.apache.logging.log4j + log4j-jcl + 2.20.0 + + + org.apache.logging.log4j + log4j-jmx-gui + 2.20.0 + + + org.apache.logging.log4j + log4j-jpa + 2.20.0 + + + org.apache.logging.log4j + log4j-jpl + 2.20.0 + + + org.apache.logging.log4j + log4j-jul + 2.20.0 + + + org.apache.logging.log4j + log4j-kubernetes + 2.20.0 + + + org.apache.logging.log4j + log4j-layout-template-json + 2.20.0 + + + org.apache.logging.log4j + log4j-layout-template-json-test + 2.20.0 + + + org.apache.logging.log4j + log4j-mongodb3 + 2.20.0 + + + org.apache.logging.log4j + log4j-mongodb4 + 2.20.0 + + + org.apache.logging.log4j + log4j-slf4j2-impl + 2.20.0 + + + org.apache.logging.log4j + log4j-slf4j-impl + 2.20.0 + + + org.apache.logging.log4j + log4j-spring-boot + 2.20.0 + + + org.apache.logging.log4j + log4j-spring-cloud-config-client + 2.20.0 + + + org.apache.logging.log4j + log4j-taglib + 2.20.0 + + + org.apache.logging.log4j + log4j-to-jul + 2.20.0 + + + org.apache.logging.log4j + log4j-to-slf4j + 2.20.0 + + + org.apache.logging.log4j + log4j-web + 2.20.0 + + + org.apache.maven.plugin-tools + maven-plugin-annotations + 3.6.4 + + + io.micrometer + micrometer-commons + 1.11.0 + + + io.micrometer + micrometer-core + 1.11.0 + + + io.micrometer + micrometer-jetty11 + 1.11.0 + + + io.micrometer + micrometer-observation + 1.11.0 + + + io.micrometer + micrometer-observation-test + 1.11.0 + + + io.micrometer + micrometer-osgi-test + 1.11.0 + + + io.micrometer + micrometer-registry-appoptics + 1.11.0 + + + io.micrometer + micrometer-registry-atlas + 1.11.0 + + + io.micrometer + micrometer-registry-azure-monitor + 1.11.0 + + + io.micrometer + micrometer-registry-cloudwatch + 1.11.0 + + + io.micrometer + micrometer-registry-cloudwatch2 + 1.11.0 + + + io.micrometer + micrometer-registry-datadog + 1.11.0 + + + io.micrometer + micrometer-registry-dynatrace + 1.11.0 + + + io.micrometer + micrometer-registry-elastic + 1.11.0 + + + io.micrometer + micrometer-registry-ganglia + 1.11.0 + + + io.micrometer + micrometer-registry-graphite + 1.11.0 + + + io.micrometer + micrometer-registry-health + 1.11.0 + + + io.micrometer + micrometer-registry-humio + 1.11.0 + + + io.micrometer + micrometer-registry-influx + 1.11.0 + + + io.micrometer + micrometer-registry-jmx + 1.11.0 + + + io.micrometer + micrometer-registry-kairos + 1.11.0 + + + io.micrometer + micrometer-registry-new-relic + 1.11.0 + + + io.micrometer + micrometer-registry-opentsdb + 1.11.0 + + + io.micrometer + micrometer-registry-otlp + 1.11.0 + + + io.micrometer + micrometer-registry-prometheus + 1.11.0 + + + io.micrometer + micrometer-registry-signalfx + 1.11.0 + + + io.micrometer + micrometer-registry-statsd + 1.11.0 + + + io.micrometer + micrometer-registry-wavefront + 1.11.0 + + + io.micrometer + micrometer-test + 1.11.0 + + + io.micrometer + micrometer-tracing + 1.1.1 + + + io.micrometer + micrometer-tracing-bridge-brave + 1.1.1 + + + io.micrometer + micrometer-tracing-bridge-otel + 1.1.1 + + + io.micrometer + micrometer-tracing-integration-test + 1.1.1 + + + io.micrometer + micrometer-tracing-reporter-wavefront + 1.1.1 + + + io.micrometer + micrometer-tracing-test + 1.1.1 + + + org.mockito + mockito-core + 5.3.1 + + + org.mockito + mockito-android + 5.3.1 + + + org.mockito + mockito-errorprone + 5.3.1 + + + org.mockito + mockito-junit-jupiter + 5.3.1 + + + org.mockito + mockito-proxy + 5.3.1 + + + org.mockito + mockito-subclass + 5.3.1 + + + io.netty + netty-buffer + 4.1.92.Final + + + io.netty + netty-codec + 4.1.92.Final + + + io.netty + netty-codec-dns + 4.1.92.Final + + + io.netty + netty-codec-haproxy + 4.1.92.Final + + + io.netty + netty-codec-http + 4.1.92.Final + + + io.netty + netty-codec-http2 + 4.1.92.Final + + + io.netty + netty-codec-memcache + 4.1.92.Final + + + io.netty + netty-codec-mqtt + 4.1.92.Final + + + io.netty + netty-codec-redis + 4.1.92.Final + + + io.netty + netty-codec-smtp + 4.1.92.Final + + + io.netty + netty-codec-socks + 4.1.92.Final + + + io.netty + netty-codec-stomp + 4.1.92.Final + + + io.netty + netty-codec-xml + 4.1.92.Final + + + io.netty + netty-common + 4.1.92.Final + + + io.netty + netty-dev-tools + 4.1.92.Final + + + io.netty + netty-handler + 4.1.92.Final + + + io.netty + netty-handler-proxy + 4.1.92.Final + + + io.netty + netty-handler-ssl-ocsp + 4.1.92.Final + + + io.netty + netty-resolver + 4.1.92.Final + + + io.netty + netty-resolver-dns + 4.1.92.Final + + + io.netty + netty-transport + 4.1.92.Final + + + io.netty + netty-transport-rxtx + 4.1.92.Final + + + io.netty + netty-transport-sctp + 4.1.92.Final + + + io.netty + netty-transport-udt + 4.1.92.Final + + + io.netty + netty-example + 4.1.92.Final + + + io.netty + netty-all + 4.1.92.Final + + + io.netty + netty-resolver-dns-classes-macos + 4.1.92.Final + + + io.netty + netty-resolver-dns-native-macos + 4.1.92.Final + + + io.netty + netty-resolver-dns-native-macos + 4.1.92.Final + osx-x86_64 + + + io.netty + netty-resolver-dns-native-macos + 4.1.92.Final + osx-aarch_64 + + + io.netty + netty-transport-native-unix-common + 4.1.92.Final + + + io.netty + netty-transport-native-unix-common + 4.1.92.Final + linux-aarch_64 + + + io.netty + netty-transport-native-unix-common + 4.1.92.Final + linux-x86_64 + + + io.netty + netty-transport-native-unix-common + 4.1.92.Final + osx-x86_64 + + + io.netty + netty-transport-native-unix-common + 4.1.92.Final + osx-aarch_64 + + + io.netty + netty-transport-classes-epoll + 4.1.92.Final + + + io.netty + netty-transport-native-epoll + 4.1.92.Final + + + io.netty + netty-transport-native-epoll + 4.1.92.Final + linux-aarch_64 + + + io.netty + netty-transport-native-epoll + 4.1.92.Final + linux-x86_64 + + + io.netty + netty-transport-classes-kqueue + 4.1.92.Final + + + io.netty + netty-transport-native-kqueue + 4.1.92.Final + + + io.netty + netty-transport-native-kqueue + 4.1.92.Final + osx-x86_64 + + + io.netty + netty-transport-native-kqueue + 4.1.92.Final + osx-aarch_64 + + + io.netty + netty-tcnative-classes + 2.0.60.Final + + + io.netty + netty-tcnative + 2.0.60.Final + linux-x86_64 + + + io.netty + netty-tcnative + 2.0.60.Final + linux-x86_64-fedora + + + io.netty + netty-tcnative + 2.0.60.Final + linux-aarch_64-fedora + + + io.netty + netty-tcnative + 2.0.60.Final + osx-x86_64 + + + io.netty + netty-tcnative-boringssl-static + 2.0.60.Final + + + io.netty + netty-tcnative-boringssl-static + 2.0.60.Final + linux-x86_64 + + + io.netty + netty-tcnative-boringssl-static + 2.0.60.Final + linux-aarch_64 + + + io.netty + netty-tcnative-boringssl-static + 2.0.60.Final + osx-x86_64 + + + io.netty + netty-tcnative-boringssl-static + 2.0.60.Final + osx-aarch_64 + + + io.netty + netty-tcnative-boringssl-static + 2.0.60.Final + windows-x86_64 + + + com.squareup.okhttp3 + mockwebserver + 4.10.0 + + + com.squareup.okhttp3 + okcurl + 4.10.0 + + + com.squareup.okhttp3 + okhttp + 4.10.0 + + + com.squareup.okhttp3 + okhttp-brotli + 4.10.0 + + + com.squareup.okhttp3 + okhttp-dnsoverhttps + 4.10.0 + + + com.squareup.okhttp3 + logging-interceptor + 4.10.0 + + + com.squareup.okhttp3 + okhttp-sse + 4.10.0 + + + com.squareup.okhttp3 + okhttp-tls + 4.10.0 + + + com.squareup.okhttp3 + okhttp-urlconnection + 4.10.0 + + + io.opentelemetry + opentelemetry-context + 1.25.0 + + + io.opentelemetry + opentelemetry-api + 1.25.0 + + + io.opentelemetry + opentelemetry-exporter-common + 1.25.0 + + + io.opentelemetry + opentelemetry-exporter-jaeger + 1.25.0 + + + io.opentelemetry + opentelemetry-exporter-jaeger-thrift + 1.25.0 + + + io.opentelemetry + opentelemetry-exporter-logging + 1.25.0 + + + io.opentelemetry + opentelemetry-exporter-logging-otlp + 1.25.0 + + + io.opentelemetry + opentelemetry-exporter-zipkin + 1.25.0 + + + io.opentelemetry + opentelemetry-extension-kotlin + 1.25.0 + + + io.opentelemetry + opentelemetry-extension-trace-propagators + 1.25.0 + + + io.opentelemetry + opentelemetry-sdk + 1.25.0 + + + io.opentelemetry + opentelemetry-sdk-common + 1.25.0 + + + io.opentelemetry + opentelemetry-sdk-metrics + 1.25.0 + + + io.opentelemetry + opentelemetry-sdk-testing + 1.25.0 + + + io.opentelemetry + opentelemetry-sdk-trace + 1.25.0 + + + io.opentelemetry + opentelemetry-sdk-extension-autoconfigure-spi + 1.25.0 + + + io.opentelemetry + opentelemetry-sdk-extension-jaeger-remote-sampler + 1.25.0 + + + io.opentelemetry + opentelemetry-exporter-otlp + 1.25.0 + + + io.opentelemetry + opentelemetry-exporter-otlp-common + 1.25.0 + + + io.opentelemetry + opentelemetry-sdk-extension-aws + 1.19.0 + + + io.opentelemetry + opentelemetry-exporter-jaeger-proto + 1.17.0 + + + io.opentelemetry + opentelemetry-extension-annotations + 1.18.0 + + + io.opentelemetry + opentelemetry-sdk-extension-resources + 1.19.0 + + + io.opentelemetry + opentelemetry-extension-aws + 1.20.1 + + + com.oracle.database.jdbc + ojdbc11 + 21.9.0.0 + + + com.oracle.database.jdbc + ojdbc8 + 21.9.0.0 + + + com.oracle.database.jdbc + ucp + 21.9.0.0 + + + com.oracle.database.jdbc + ucp11 + 21.9.0.0 + + + com.oracle.database.jdbc + rsi + 21.9.0.0 + + + com.oracle.database.security + oraclepki + 21.9.0.0 + + + com.oracle.database.security + osdt_core + 21.9.0.0 + + + com.oracle.database.security + osdt_cert + 21.9.0.0 + + + com.oracle.database.ha + simplefan + 21.9.0.0 + + + com.oracle.database.ha + ons + 21.9.0.0 + + + com.oracle.database.nls + orai18n + 21.9.0.0 + + + com.oracle.database.xml + xdb + 21.9.0.0 + + + com.oracle.database.xml + xmlparserv2 + 21.9.0.0 + + + com.oracle.database.jdbc.debug + ojdbc11_g + 21.9.0.0 + + + com.oracle.database.jdbc.debug + ojdbc8_g + 21.9.0.0 + + + com.oracle.database.jdbc.debug + ojdbc8dms_g + 21.9.0.0 + + + com.oracle.database.jdbc.debug + ojdbc11dms_g + 21.9.0.0 + + + com.oracle.database.observability + dms + 21.9.0.0 + + + com.oracle.database.observability + ojdbc11dms + 21.9.0.0 + + + com.oracle.database.observability + ojdbc8dms + 21.9.0.0 + + + com.oracle.database.jdbc + ojdbc11-production + 21.9.0.0 + pom + + + com.oracle.database.jdbc + ojdbc8-production + 21.9.0.0 + pom + + + com.oracle.database.observability + ojdbc8-observability + 21.9.0.0 + pom + + + com.oracle.database.observability + ojdbc11-observability + 21.9.0.0 + pom + + + com.oracle.database.jdbc.debug + ojdbc8-debug + 21.9.0.0 + pom + + + com.oracle.database.jdbc.debug + ojdbc11-debug + 21.9.0.0 + pom + + + com.oracle.database.jdbc.debug + ojdbc8-observability-debug + 21.9.0.0 + pom + + + com.oracle.database.jdbc.debug + ojdbc11-observability-debug + 21.9.0.0 + pom + + + io.prometheus + simpleclient + 0.16.0 + + + io.prometheus + simpleclient_caffeine + 0.16.0 + + + io.prometheus + simpleclient_common + 0.16.0 + + + io.prometheus + simpleclient_dropwizard + 0.16.0 + + + io.prometheus + simpleclient_graphite_bridge + 0.16.0 + + + io.prometheus + simpleclient_guava + 0.16.0 + + + io.prometheus + simpleclient_hibernate + 0.16.0 + + + io.prometheus + simpleclient_hotspot + 0.16.0 + + + io.prometheus + simpleclient_httpserver + 0.16.0 + + + io.prometheus + simpleclient_tracer_common + 0.16.0 + + + io.prometheus + simpleclient_jetty + 0.16.0 + + + io.prometheus + simpleclient_jetty_jdk8 + 0.16.0 + + + io.prometheus + simpleclient_log4j + 0.16.0 + + + io.prometheus + simpleclient_log4j2 + 0.16.0 + + + io.prometheus + simpleclient_logback + 0.16.0 + + + io.prometheus + simpleclient_pushgateway + 0.16.0 + + + io.prometheus + simpleclient_servlet + 0.16.0 + + + io.prometheus + simpleclient_servlet_jakarta + 0.16.0 + + + io.prometheus + simpleclient_spring_boot + 0.16.0 + + + io.prometheus + simpleclient_spring_web + 0.16.0 + + + io.prometheus + simpleclient_tracer_otel + 0.16.0 + + + io.prometheus + simpleclient_tracer_otel_agent + 0.16.0 + + + io.prometheus + simpleclient_vertx + 0.16.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 + + + io.projectreactor + reactor-core + 3.5.6 + + + io.projectreactor + reactor-test + 3.5.6 + + + io.projectreactor + reactor-tools + 3.5.6 + + + io.projectreactor + reactor-core-micrometer + 1.0.6 + + + io.projectreactor.addons + reactor-extra + 3.5.1 + + + io.projectreactor.addons + reactor-adapter + 3.5.1 + + + io.projectreactor.netty + reactor-netty + 1.1.7 + + + io.projectreactor.netty + reactor-netty-core + 1.1.7 + + + io.projectreactor.netty + reactor-netty-http + 1.1.7 + + + io.projectreactor.netty + reactor-netty-http-brave + 1.1.7 + + + io.projectreactor.addons + reactor-pool + 1.0.0 + + + io.projectreactor.addons + reactor-pool-micrometer + 0.1.0 + + + io.projectreactor.kotlin + reactor-kotlin-extensions + 1.2.2 + + + io.projectreactor.kafka + reactor-kafka + 1.3.18 + + + io.rest-assured + json-schema-validator + 5.3.0 + + + io.rest-assured + rest-assured-common + 5.3.0 + + + io.rest-assured + json-path + 5.3.0 + + + io.rest-assured + xml-path + 5.3.0 + + + io.rest-assured + rest-assured + 5.3.0 + + + io.rest-assured + spring-commons + 5.3.0 + + + io.rest-assured + spring-mock-mvc + 5.3.0 + + + io.rest-assured + scala-support + 5.3.0 + + + io.rest-assured + spring-web-test-client + 5.3.0 + + + io.rest-assured + kotlin-extensions + 5.3.0 + + + io.rest-assured + spring-mock-mvc-kotlin-extensions + 5.3.0 + + + io.rest-assured + rest-assured-all + 5.3.0 + + + io.rsocket + rsocket-core + 1.1.3 + + + io.rsocket + rsocket-load-balancer + 1.1.3 + + + io.rsocket + rsocket-micrometer + 1.1.3 + + + io.rsocket + rsocket-test + 1.1.3 + + + io.rsocket + rsocket-transport-local + 1.1.3 + + + io.rsocket + rsocket-transport-netty + 1.1.3 + + + org.springframework.batch + spring-batch-core + 5.0.2 + + + org.springframework.batch + spring-batch-infrastructure + 5.0.2 + + + org.springframework.batch + spring-batch-integration + 5.0.2 + + + org.springframework.batch + spring-batch-test + 5.0.2 + + + org.springframework.data + spring-data-cassandra + 4.1.0 + + + org.springframework.data + spring-data-commons + 3.1.0 + + + org.springframework.data + spring-data-couchbase + 5.1.0 + + + org.springframework.data + spring-data-elasticsearch + 5.1.0 + + + org.springframework.data + spring-data-jdbc + 3.1.0 + + + org.springframework.data + spring-data-r2dbc + 3.1.0 + + + org.springframework.data + spring-data-relational + 3.1.0 + + + org.springframework.data + spring-data-jpa + 3.1.0 + + + org.springframework.data + spring-data-envers + 3.1.0 + + + org.springframework.data + spring-data-mongodb + 4.1.0 + + + org.springframework.data + spring-data-neo4j + 7.1.0 + + + org.springframework.data + spring-data-redis + 3.1.0 + + + org.springframework.data + spring-data-rest-webmvc + 4.1.0 + + + org.springframework.data + spring-data-rest-core + 4.1.0 + + + org.springframework.data + spring-data-rest-hal-explorer + 4.1.0 + + + org.springframework.data + spring-data-keyvalue + 3.1.0 + + + org.springframework.data + spring-data-ldap + 3.1.0 + + + org.springframework + spring-aop + 6.0.9 + + + org.springframework + spring-aspects + 6.0.9 + + + org.springframework + spring-beans + 6.0.9 + + + org.springframework + spring-context + 6.0.9 + + + org.springframework + spring-context-indexer + 6.0.9 + + + org.springframework + spring-context-support + 6.0.9 + + + org.springframework + spring-core + 6.0.9 + + + org.springframework + spring-core-test + 6.0.9 + + + org.springframework + spring-expression + 6.0.9 + + + org.springframework + spring-instrument + 6.0.9 + + + org.springframework + spring-jcl + 6.0.9 + + + org.springframework + spring-jdbc + 6.0.9 + + + org.springframework + spring-jms + 6.0.9 + + + org.springframework + spring-messaging + 6.0.9 + + + org.springframework + spring-orm + 6.0.9 + + + org.springframework + spring-oxm + 6.0.9 + + + org.springframework + spring-r2dbc + 6.0.9 + + + org.springframework + spring-test + 6.0.9 + + + org.springframework + spring-tx + 6.0.9 + + + org.springframework + spring-web + 6.0.9 + + + org.springframework + spring-webflux + 6.0.9 + + + org.springframework + spring-webmvc + 6.0.9 + + + org.springframework + spring-websocket + 6.0.9 + + + org.springframework.integration + spring-integration-amqp + 6.1.0 + + + org.springframework.integration + spring-integration-camel + 6.1.0 + + + org.springframework.integration + spring-integration-cassandra + 6.1.0 + + + org.springframework.integration + spring-integration-core + 6.1.0 + + + org.springframework.integration + spring-integration-event + 6.1.0 + + + org.springframework.integration + spring-integration-feed + 6.1.0 + + + org.springframework.integration + spring-integration-file + 6.1.0 + + + org.springframework.integration + spring-integration-ftp + 6.1.0 + + + org.springframework.integration + spring-integration-graphql + 6.1.0 + + + org.springframework.integration + spring-integration-groovy + 6.1.0 + + + org.springframework.integration + spring-integration-hazelcast + 6.1.0 + + + org.springframework.integration + spring-integration-http + 6.1.0 + + + org.springframework.integration + spring-integration-ip + 6.1.0 + + + org.springframework.integration + spring-integration-jdbc + 6.1.0 + + + org.springframework.integration + spring-integration-jms + 6.1.0 + + + org.springframework.integration + spring-integration-jmx + 6.1.0 + + + org.springframework.integration + spring-integration-jpa + 6.1.0 + + + org.springframework.integration + spring-integration-kafka + 6.1.0 + + + org.springframework.integration + spring-integration-mail + 6.1.0 + + + org.springframework.integration + spring-integration-mongodb + 6.1.0 + + + org.springframework.integration + spring-integration-mqtt + 6.1.0 + + + org.springframework.integration + spring-integration-r2dbc + 6.1.0 + + + org.springframework.integration + spring-integration-redis + 6.1.0 + + + org.springframework.integration + spring-integration-rsocket + 6.1.0 + + + org.springframework.integration + spring-integration-scripting + 6.1.0 + + + org.springframework.integration + spring-integration-security + 6.1.0 + + + org.springframework.integration + spring-integration-sftp + 6.1.0 + + + org.springframework.integration + spring-integration-smb + 6.1.0 + + + org.springframework.integration + spring-integration-stomp + 6.1.0 + + + org.springframework.integration + spring-integration-stream + 6.1.0 + + + org.springframework.integration + spring-integration-syslog + 6.1.0 + + + org.springframework.integration + spring-integration-test + 6.1.0 + + + org.springframework.integration + spring-integration-test-support + 6.1.0 + + + org.springframework.integration + spring-integration-webflux + 6.1.0 + + + org.springframework.integration + spring-integration-websocket + 6.1.0 + + + org.springframework.integration + spring-integration-ws + 6.1.0 + + + org.springframework.integration + spring-integration-xml + 6.1.0 + + + org.springframework.integration + spring-integration-xmpp + 6.1.0 + + + org.springframework.integration + spring-integration-zeromq + 6.1.0 + + + org.springframework.integration + spring-integration-zip + 6.1.0 + + + org.springframework.integration + spring-integration-zookeeper + 6.1.0 + + + org.springframework.restdocs + spring-restdocs-asciidoctor + 3.0.0 + + + org.springframework.restdocs + spring-restdocs-core + 3.0.0 + + + org.springframework.restdocs + spring-restdocs-mockmvc + 3.0.0 + + + org.springframework.restdocs + spring-restdocs-restassured + 3.0.0 + + + org.springframework.restdocs + spring-restdocs-webtestclient + 3.0.0 + + + org.springframework.security + spring-security-acl + 6.1.0 + + + org.springframework.security + spring-security-aspects + 6.1.0 + + + org.springframework.security + spring-security-cas + 6.1.0 + + + org.springframework.security + spring-security-config + 6.1.0 + + + org.springframework.security + spring-security-core + 6.1.0 + + + org.springframework.security + spring-security-crypto + 6.1.0 + + + org.springframework.security + spring-security-data + 6.1.0 + + + org.springframework.security + spring-security-ldap + 6.1.0 + + + org.springframework.security + spring-security-messaging + 6.1.0 + + + org.springframework.security + spring-security-oauth2-client + 6.1.0 + + + org.springframework.security + spring-security-oauth2-core + 6.1.0 + + + org.springframework.security + spring-security-oauth2-jose + 6.1.0 + + + org.springframework.security + spring-security-oauth2-resource-server + 6.1.0 + + + org.springframework.security + spring-security-rsocket + 6.1.0 + + + org.springframework.security + spring-security-saml2-service-provider + 6.1.0 + + + org.springframework.security + spring-security-taglibs + 6.1.0 + + + org.springframework.security + spring-security-test + 6.1.0 + + + org.springframework.security + spring-security-web + 6.1.0 + + + org.springframework.session + spring-session-core + 3.1.0 + + + org.springframework.session + spring-session-data-mongodb + 3.1.0 + + + org.springframework.session + spring-session-data-redis + 3.1.0 + + + org.springframework.session + spring-session-hazelcast + 3.1.0 + + + org.springframework.session + spring-session-jdbc + 3.1.0 + + + org.springframework.ws + spring-ws-core + 4.0.4 + + + org.springframework.ws + spring-ws-security + 4.0.4 + + + org.springframework.ws + spring-ws-support + 4.0.4 + + + org.springframework.ws + spring-ws-test + 4.0.4 + + + org.springframework.ws + spring-xml + 4.0.4 + + + + + + repo.jenkins-ci.org + https://repo.jenkins-ci.org/public/ + + + + false + + central + Central Repository + https://repo.maven.apache.org/maven2 + + + + + repo.jenkins-ci.org + https://repo.jenkins-ci.org/public/ + + + + never + + + false + + central + Central Repository + https://repo.maven.apache.org/maven2 + + + + D:\jenkins-oss\plugin-health-scoring\src\main\java + D:\jenkins-oss\plugin-health-scoring\src\main\scripts + D:\jenkins-oss\plugin-health-scoring\src\test\java + D:\jenkins-oss\plugin-health-scoring\target\classes + D:\jenkins-oss\plugin-health-scoring\target\test-classes + + + D:\jenkins-oss\plugin-health-scoring\src\main\resources + + + + + D:\jenkins-oss\plugin-health-scoring\src\test\resources + + + D:\jenkins-oss\plugin-health-scoring\target + plugin-health-scoring-parent-2.4.3-SNAPSHOT + + + + maven-antrun-plugin + 1.3 + + + maven-assembly-plugin + 2.2-beta-5 + + + maven-dependency-plugin + 2.8 + + + maven-checkstyle-plugin + 3.3.0 + + + com.puppycrawl.tools + checkstyle + 10.12.0 + + + + false + true + analytics/checkstyle-configuration.xml + + + + maven-compiler-plugin + 3.11.0 + + 17 + + -parameters + + + + + maven-failsafe-plugin + 3.1.0 + + + + integration-test + verify + + + D:\jenkins-oss\plugin-health-scoring\target\classes + + + + + D:\jenkins-oss\plugin-health-scoring\target\classes + + + + maven-release-plugin + 3.0.1 + + verify + true + v@{project.version} + + + + maven-surefire-plugin + 3.1.0 + + + com.github.spotbugs + spotbugs-maven-plugin + 4.7.3.4 + + analytics/spotbugs-exclude.xml + Max + + + + org.jacoco + jacoco-maven-plugin + 0.8.10 + + + XML + + + + + + + + maven-failsafe-plugin + 3.1.0 + + + + integration-test + verify + + + D:\jenkins-oss\plugin-health-scoring\target\classes + + + + + D:\jenkins-oss\plugin-health-scoring\target\classes + + + + org.jacoco + jacoco-maven-plugin + 0.8.10 + + + default-prepare-agent + + prepare-agent + + + + XML + + + + + default-prepare-agent-integration + + prepare-agent-integration + + + + XML + + + + + merge-data-files + post-integration-test + + merge + + + + + D:\jenkins-oss\plugin-health-scoring\target + + jacoco.exec + jacoco-it.exec + + + + D:\jenkins-oss\plugin-health-scoring\target/jacoco-merged.exec + + XML + + + + + merged-report + post-integration-test + + report + + + D:\jenkins-oss\plugin-health-scoring\target/jacoco-merged.exec + + XML + + + + + + + XML + + + + + org.codehaus.mojo + tidy-maven-plugin + 1.2.0 + + + tidy-pom + validate + + pom + + + + + + maven-clean-plugin + 2.5 + + + default-clean + clean + + clean + + + + + + maven-install-plugin + 2.4 + + + default-install + install + + install + + + + + + maven-deploy-plugin + 2.7 + + + default-deploy + deploy + + deploy + + + + + + maven-site-plugin + 3.3 + + + default-site + site + + site + + + D:\jenkins-oss\plugin-health-scoring\target\site + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + + + + + default-deploy + site-deploy + + deploy + + + D:\jenkins-oss\plugin-health-scoring\target\site + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + + + + + + D:\jenkins-oss\plugin-health-scoring\target\site + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + + + + + + + D:\jenkins-oss\plugin-health-scoring\target\site + + + + + + + + + + 4.0.0 + + io.jenkins.pluginhealth.scoring + plugin-health-scoring-parent + 2.4.3-SNAPSHOT + ../ + + io.jenkins.pluginhealth.scoring + plugin-health-scoring-test + 2.4.3-SNAPSHOT + Plugin Health Scoring :: Test + Build and provide health indicators on plugins of the Jenkins ecosystem + 2022 + + Jenkins Infra + https://github.com/jenkins-infra + + + + The MIT license + https://opensource.org/licenses/MIT + repo + + + + + adi10hero + Aditya Srivastava + + + alecharp + Adrien Lecharpentier + + + dheerajodha + Dheeraj Singh Jodha + + + jleon33 + Jake Leon + + + + scm:git:https://github.com/jenkins-infra/plugin-health-scoring.git/plugin-health-scoring-test + scm:git:git@github.com:jenkins-infra/plugin-health-scoring.git/plugin-health-scoring-test + https://github.com/jenkins-infra/plugin-health-scoring/plugin-health-scoring-test + + + + maven.jenkins-ci.org + https://repo.jenkins-ci.org/releases/ + + + maven.jenkins-ci.org + https://repo.jenkins-ci.org/snapshots/ + + + + 17 + 0.11.5 + 17 + 17 + 18.10.0 + UTF-8 + UTF-8 + UTF-8 + 3.1.0 + 1.18.3 + ca1a380d840c676152fbf8635a82d838113fe77e1665466699a4e106df4930d2 + 3.2.4 + false + 1.22.19 + + + + + io.jenkins.pluginhealth.scoring + plugin-health-scoring-core + 2.4.3-SNAPSHOT + + + io.jenkins.pluginhealth.scoring + plugin-health-scoring-test + 2.4.3-SNAPSHOT + + + org.kohsuke + github-api + 1.315 + + + io.jsonwebtoken + jjwt-api + 0.11.5 + + + io.jsonwebtoken + jjwt-impl + 0.11.5 + + + io.jsonwebtoken + jjwt-jackson + 0.11.5 + + + org.apache.maven + maven-model + 3.9.2 + + + org.testcontainers + azure + 1.18.3 + + + org.testcontainers + cassandra + 1.18.3 + + + org.testcontainers + clickhouse + 1.18.3 + + + org.testcontainers + cockroachdb + 1.18.3 + + + org.testcontainers + consul + 1.18.3 + + + org.testcontainers + couchbase + 1.18.3 + + + org.testcontainers + cratedb + 1.18.3 + + + org.testcontainers + database-commons + 1.18.3 + + + org.testcontainers + db2 + 1.18.3 + + + org.testcontainers + dynalite + 1.18.3 + + + org.testcontainers + elasticsearch + 1.18.3 + + + org.testcontainers + gcloud + 1.18.3 + + + org.testcontainers + hivemq + 1.18.3 + + + org.testcontainers + influxdb + 1.18.3 + + + org.testcontainers + jdbc + 1.18.3 + + + org.testcontainers + junit-jupiter + 1.18.3 + + + org.testcontainers + k3s + 1.18.3 + + + org.testcontainers + kafka + 1.18.3 + + + org.testcontainers + localstack + 1.18.3 + + + org.testcontainers + mariadb + 1.18.3 + + + org.testcontainers + mockserver + 1.18.3 + + + org.testcontainers + mongodb + 1.18.3 + + + org.testcontainers + mssqlserver + 1.18.3 + + + org.testcontainers + mysql + 1.18.3 + + + org.testcontainers + neo4j + 1.18.3 + + + org.testcontainers + nginx + 1.18.3 + + + org.testcontainers + oracle-xe + 1.18.3 + + + org.testcontainers + orientdb + 1.18.3 + + + org.testcontainers + postgresql + 1.18.3 + + + org.testcontainers + presto + 1.18.3 + + + org.testcontainers + pulsar + 1.18.3 + + + org.testcontainers + questdb + 1.18.3 + + + org.testcontainers + r2dbc + 1.18.3 + + + org.testcontainers + rabbitmq + 1.18.3 + + + org.testcontainers + redpanda + 1.18.3 + + + org.testcontainers + selenium + 1.18.3 + + + org.testcontainers + solace + 1.18.3 + + + org.testcontainers + solr + 1.18.3 + + + org.testcontainers + spock + 1.18.3 + + + org.testcontainers + testcontainers + 1.18.3 + + + org.testcontainers + tidb + 1.18.3 + + + org.testcontainers + toxiproxy + 1.18.3 + + + org.testcontainers + trino + 1.18.3 + + + org.testcontainers + vault + 1.18.3 + + + org.testcontainers + yugabytedb + 1.18.3 + + + org.apache.activemq + activemq-amqp + 5.18.1 + + + org.apache.activemq + activemq-blueprint + 5.18.1 + + + org.apache.activemq + activemq-broker + 5.18.1 + + + org.apache.activemq + activemq-client + 5.18.1 + + + org.apache.activemq + activemq-client-jakarta + 5.18.1 + + + org.apache.activemq + activemq-console + 5.18.1 + + + commons-logging + commons-logging + + + + + org.apache.activemq + activemq-http + 5.18.1 + + + org.apache.activemq + activemq-jaas + 5.18.1 + + + org.apache.activemq + activemq-jdbc-store + 5.18.1 + + + org.apache.activemq + activemq-jms-pool + 5.18.1 + + + org.apache.activemq + activemq-kahadb-store + 5.18.1 + + + org.apache.activemq + activemq-karaf + 5.18.1 + + + org.apache.activemq + activemq-log4j-appender + 5.18.1 + + + org.apache.activemq + activemq-mqtt + 5.18.1 + + + org.apache.activemq + activemq-openwire-generator + 5.18.1 + + + org.apache.activemq + activemq-openwire-legacy + 5.18.1 + + + org.apache.activemq + activemq-osgi + 5.18.1 + + + org.apache.activemq + activemq-partition + 5.18.1 + + + org.apache.activemq + activemq-pool + 5.18.1 + + + org.apache.activemq + activemq-ra + 5.18.1 + + + org.apache.activemq + activemq-run + 5.18.1 + + + org.apache.activemq + activemq-runtime-config + 5.18.1 + + + org.apache.activemq + activemq-shiro + 5.18.1 + + + org.apache.activemq + activemq-spring + 5.18.1 + + + commons-logging + commons-logging + + + + + org.apache.activemq + activemq-stomp + 5.18.1 + + + org.apache.activemq + activemq-web + 5.18.1 + + + org.eclipse.angus + angus-core + 1.1.0 + + + org.eclipse.angus + angus-mail + 1.1.0 + + + org.eclipse.angus + dsn + 1.1.0 + + + org.eclipse.angus + gimap + 1.1.0 + + + org.eclipse.angus + imap + 1.1.0 + + + org.eclipse.angus + jakarta.mail + 1.1.0 + + + org.eclipse.angus + logging-mailhandler + 1.1.0 + + + org.eclipse.angus + pop3 + 1.1.0 + + + org.eclipse.angus + smtp + 1.1.0 + + + org.apache.activemq + artemis-amqp-protocol + 2.28.0 + + + org.apache.activemq + artemis-commons + 2.28.0 + + + org.apache.activemq + artemis-core-client + 2.28.0 + + + org.apache.activemq + artemis-jakarta-client + 2.28.0 + + + org.apache.activemq + artemis-jakarta-server + 2.28.0 + + + org.apache.activemq + artemis-jakarta-service-extensions + 2.28.0 + + + org.apache.activemq + artemis-jdbc-store + 2.28.0 + + + org.apache.activemq + artemis-journal + 2.28.0 + + + org.apache.activemq + artemis-quorum-api + 2.28.0 + + + org.apache.activemq + artemis-selector + 2.28.0 + + + org.apache.activemq + artemis-server + 2.28.0 + + + org.apache.activemq + artemis-service-extensions + 2.28.0 + + + org.aspectj + aspectjrt + 1.9.19 + + + org.aspectj + aspectjtools + 1.9.19 + + + org.aspectj + aspectjweaver + 1.9.19 + + + org.awaitility + awaitility + 4.2.0 + + + org.awaitility + awaitility-groovy + 4.2.0 + + + org.awaitility + awaitility-kotlin + 4.2.0 + + + org.awaitility + awaitility-scala + 4.2.0 + + + net.bytebuddy + byte-buddy + 1.14.4 + + + net.bytebuddy + byte-buddy-agent + 1.14.4 + + + org.cache2k + cache2k-api + 2.6.1.Final + + + org.cache2k + cache2k-config + 2.6.1.Final + + + org.cache2k + cache2k-core + 2.6.1.Final + + + org.cache2k + cache2k-jcache + 2.6.1.Final + + + org.cache2k + cache2k-micrometer + 2.6.1.Final + + + org.cache2k + cache2k-spring + 2.6.1.Final + + + com.github.ben-manes.caffeine + caffeine + 3.1.6 + + + com.github.ben-manes.caffeine + guava + 3.1.6 + + + com.github.ben-manes.caffeine + jcache + 3.1.6 + + + com.github.ben-manes.caffeine + simulator + 3.1.6 + + + com.datastax.oss + java-driver-core + 4.15.0 + + + org.slf4j + jcl-over-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.4.6 + + + com.ibm.db2 + jcc + 11.5.8.0 + + + io.spring.gradle + dependency-management-plugin + 1.1.0 + + + org.apache.derby + derby + 10.16.1.1 + + + org.apache.derby + derbyclient + 10.16.1.1 + + + org.apache.derby + derbynet + 10.16.1.1 + + + org.apache.derby + derbyoptionaltools + 10.16.1.1 + + + org.apache.derby + derbyshared + 10.16.1.1 + + + org.apache.derby + derbytools + 10.16.1.1 + + + org.ehcache + ehcache + 3.10.8 + jakarta + + + org.ehcache + ehcache-clustered + 3.10.8 + + + org.ehcache + ehcache-transactions + 3.10.8 + jakarta + + + org.elasticsearch.client + elasticsearch-rest-client + 8.7.1 + + + commons-logging + commons-logging + + + + + org.elasticsearch.client + elasticsearch-rest-client-sniffer + 8.7.1 + + + commons-logging + commons-logging + + + + + co.elastic.clients + elasticsearch-java + 8.7.1 + + + org.flywaydb + flyway-core + 9.16.3 + + + org.flywaydb + flyway-firebird + 9.16.3 + + + org.flywaydb + flyway-mysql + 9.16.3 + + + org.flywaydb + flyway-sqlserver + 9.16.3 + + + org.freemarker + freemarker + 2.3.32 + + + org.glassfish.web + jakarta.servlet.jsp.jstl + 3.0.1 + + + com.graphql-java + graphql-java + 20.2 + + + com.google.code.gson + gson + 2.10.1 + + + com.h2database + h2 + 2.1.214 + + + org.hamcrest + hamcrest + 2.2 + + + org.hamcrest + hamcrest-core + 2.2 + + + org.hamcrest + hamcrest-library + 2.2 + + + com.hazelcast + hazelcast + 5.2.3 + + + com.hazelcast + hazelcast-spring + 5.2.3 + + + org.hibernate.orm + hibernate-agroal + 6.2.2.Final + + + org.hibernate.orm + hibernate-ant + 6.2.2.Final + + + org.hibernate.orm + hibernate-c3p0 + 6.2.2.Final + + + org.hibernate.orm + hibernate-community-dialects + 6.2.2.Final + + + org.hibernate.orm + hibernate-core + 6.2.2.Final + + + org.hibernate.orm + hibernate-envers + 6.2.2.Final + + + org.hibernate.orm + hibernate-graalvm + 6.2.2.Final + + + org.hibernate.orm + hibernate-hikaricp + 6.2.2.Final + + + org.hibernate.orm + hibernate-jcache + 6.2.2.Final + + + org.hibernate.orm + hibernate-jpamodelgen + 6.2.2.Final + + + org.hibernate.orm + hibernate-micrometer + 6.2.2.Final + + + org.hibernate.orm + hibernate-proxool + 6.2.2.Final + + + org.hibernate.orm + hibernate-spatial + 6.2.2.Final + + + org.hibernate.orm + hibernate-testing + 6.2.2.Final + + + org.hibernate.orm + hibernate-vibur + 6.2.2.Final + + + org.hibernate.validator + hibernate-validator + 8.0.0.Final + + + org.hibernate.validator + hibernate-validator-annotation-processor + 8.0.0.Final + + + com.zaxxer + HikariCP + 5.0.1 + + + org.hsqldb + hsqldb + 2.7.1 + + + net.sourceforge.htmlunit + htmlunit + 2.70.0 + + + commons-logging + commons-logging + + + + + org.apache.httpcomponents + httpasyncclient + 4.1.5 + + + commons-logging + commons-logging + + + + + org.apache.httpcomponents.client5 + httpclient5 + 5.2.1 + + + org.apache.httpcomponents.client5 + httpclient5-cache + 5.2.1 + + + org.apache.httpcomponents.client5 + httpclient5-fluent + 5.2.1 + + + org.apache.httpcomponents.client5 + httpclient5-win + 5.2.1 + + + org.apache.httpcomponents + httpcore + 4.4.16 + + + org.apache.httpcomponents + httpcore-nio + 4.4.16 + + + org.apache.httpcomponents.core5 + httpcore5 + 5.2.1 + + + org.apache.httpcomponents.core5 + httpcore5-h2 + 5.2.1 + + + org.apache.httpcomponents.core5 + httpcore5-reactive + 5.2.1 + + + org.influxdb + influxdb-java + 2.23 + + + jakarta.activation + jakarta.activation-api + 2.1.2 + + + jakarta.annotation + jakarta.annotation-api + 2.1.1 + + + jakarta.jms + jakarta.jms-api + 3.1.0 + + + jakarta.json + jakarta.json-api + 2.1.1 + + + jakarta.json.bind + jakarta.json.bind-api + 3.0.0 + + + jakarta.mail + jakarta.mail-api + 2.1.1 + + + jakarta.management.j2ee + jakarta.management.j2ee-api + 1.1.4 + + + jakarta.persistence + jakarta.persistence-api + 3.1.0 + + + jakarta.servlet + jakarta.servlet-api + 6.0.0 + + + jakarta.servlet.jsp.jstl + jakarta.servlet.jsp.jstl-api + 3.0.0 + + + jakarta.transaction + jakarta.transaction-api + 2.0.1 + + + jakarta.validation + jakarta.validation-api + 3.0.2 + + + jakarta.websocket + jakarta.websocket-api + 2.1.0 + + + jakarta.websocket + jakarta.websocket-client-api + 2.1.0 + + + jakarta.ws.rs + jakarta.ws.rs-api + 3.1.0 + + + jakarta.xml.bind + jakarta.xml.bind-api + 4.0.0 + + + jakarta.xml.soap + jakarta.xml.soap-api + 3.0.0 + + + jakarta.xml.ws + jakarta.xml.ws-api + 4.0.0 + + + org.codehaus.janino + commons-compiler + 3.1.9 + + + org.codehaus.janino + commons-compiler-jdk + 3.1.9 + + + org.codehaus.janino + janino + 3.1.9 + + + javax.cache + cache-api + 1.1.1 + + + javax.money + money-api + 1.1 + + + jaxen + jaxen + 2.0.0 + + + org.firebirdsql.jdbc + jaybird + 5.0.1.java11 + + + org.jboss.logging + jboss-logging + 3.5.0.Final + + + org.jdom + jdom2 + 2.0.6.1 + + + redis.clients + jedis + 4.3.2 + + + org.eclipse.jetty + jetty-reactive-httpclient + 3.0.8 + + + com.samskivert + jmustache + 1.15 + + + org.jooq + jooq + 3.18.4 + + + org.jooq + jooq-codegen + 3.18.4 + + + org.jooq + jooq-kotlin + 3.18.4 + + + org.jooq + jooq-meta + 3.18.4 + + + com.jayway.jsonpath + json-path + 2.8.0 + + + com.jayway.jsonpath + json-path-assert + 2.8.0 + + + net.minidev + json-smart + 2.4.10 + + + org.skyscreamer + jsonassert + 1.5.1 + + + net.sourceforge.jtds + jtds + 1.3.1 + + + junit + junit + 4.13.2 + + + org.apache.kafka + connect + 3.4.0 + + + org.apache.kafka + connect-api + 3.4.0 + + + org.apache.kafka + connect-basic-auth-extension + 3.4.0 + + + org.apache.kafka + connect-file + 3.4.0 + + + org.apache.kafka + connect-json + 3.4.0 + + + org.apache.kafka + connect-mirror + 3.4.0 + + + org.apache.kafka + connect-mirror-client + 3.4.0 + + + org.apache.kafka + connect-runtime + 3.4.0 + + + org.apache.kafka + connect-transforms + 3.4.0 + + + org.apache.kafka + generator + 3.4.0 + + + org.apache.kafka + kafka-clients + 3.4.0 + + + org.apache.kafka + kafka-clients + 3.4.0 + test + + + org.apache.kafka + kafka-log4j-appender + 3.4.0 + + + org.apache.kafka + kafka-metadata + 3.4.0 + + + org.apache.kafka + kafka-raft + 3.4.0 + + + org.apache.kafka + kafka-server-common + 3.4.0 + + + org.apache.kafka + kafka-shell + 3.4.0 + + + org.apache.kafka + kafka-storage + 3.4.0 + + + org.apache.kafka + kafka-storage-api + 3.4.0 + + + org.apache.kafka + kafka-streams + 3.4.0 + + + org.apache.kafka + kafka-streams-scala_2.12 + 3.4.0 + + + org.apache.kafka + kafka-streams-scala_2.13 + 3.4.0 + + + org.apache.kafka + kafka-streams-test-utils + 3.4.0 + + + org.apache.kafka + kafka-tools + 3.4.0 + + + org.apache.kafka + kafka_2.12 + 3.4.0 + + + org.apache.kafka + kafka_2.12 + 3.4.0 + test + + + org.apache.kafka + kafka_2.13 + 3.4.0 + + + org.apache.kafka + kafka_2.13 + 3.4.0 + test + + + org.apache.kafka + trogdor + 3.4.0 + + + io.lettuce + lettuce-core + 6.2.4.RELEASE + + + org.liquibase + liquibase-cdi + 4.20.0 + + + org.liquibase + liquibase-core + 4.20.0 + + + ch.qos.logback + logback-access + 1.4.7 + + + ch.qos.logback + logback-classic + 1.4.7 + + + ch.qos.logback + logback-core + 1.4.7 + + + org.projectlombok + lombok + 1.18.26 + + + org.mariadb.jdbc + mariadb-java-client + 3.1.4 + + + io.micrometer + micrometer-registry-stackdriver + 1.11.0 + + + javax.annotation + javax.annotation-api + + + + + org.mongodb + bson + 4.9.1 + + + org.mongodb + bson-record-codec + 4.9.1 + + + org.mongodb + mongodb-driver-core + 4.9.1 + + + org.mongodb + mongodb-driver-legacy + 4.9.1 + + + org.mongodb + mongodb-driver-reactivestreams + 4.9.1 + + + org.mongodb + mongodb-driver-sync + 4.9.1 + + + com.microsoft.sqlserver + mssql-jdbc + 11.2.3.jre17 + + + com.mysql + mysql-connector-j + 8.0.33 + + + com.google.protobuf + protobuf-java + + + + + net.sourceforge.nekohtml + nekohtml + 1.9.22 + + + org.neo4j.driver + neo4j-java-driver + 5.8.0 + + + com.oracle.database.r2dbc + oracle-r2dbc + 1.1.1 + + + org.messaginghub + pooled-jms + 3.1.0 + + + org.postgresql + postgresql + 42.6.0 + + + org.quartz-scheduler + quartz + 2.3.2 + + + com.mchange + c3p0 + + + com.zaxxer + * + + + + + org.quartz-scheduler + quartz-jobs + 2.3.2 + + + io.r2dbc + r2dbc-h2 + 1.0.0.RELEASE + + + org.mariadb + r2dbc-mariadb + 1.1.4 + + + io.r2dbc + r2dbc-mssql + 1.0.0.RELEASE + + + io.asyncer + r2dbc-mysql + 1.0.1 + + + io.r2dbc + r2dbc-pool + 1.0.0.RELEASE + + + org.postgresql + r2dbc-postgresql + 1.0.1.RELEASE + + + io.r2dbc + r2dbc-proxy + 1.1.0.RELEASE + + + io.r2dbc + r2dbc-spi + 1.0.0.RELEASE + + + com.rabbitmq + amqp-client + 5.17.0 + + + com.rabbitmq + stream-client + 0.9.0 + + + org.reactivestreams + reactive-streams + 1.0.4 + + + io.reactivex.rxjava3 + rxjava + 3.1.6 + + + org.springframework.boot + spring-boot + 3.1.0 + + + org.springframework.boot + spring-boot-test + 3.1.0 + + + org.springframework.boot + spring-boot-test-autoconfigure + 3.1.0 + + + org.springframework.boot + spring-boot-testcontainers + 3.1.0 + + + org.springframework.boot + spring-boot-actuator + 3.1.0 + + + org.springframework.boot + spring-boot-actuator-autoconfigure + 3.1.0 + + + org.springframework.boot + spring-boot-autoconfigure + 3.1.0 + + + org.springframework.boot + spring-boot-autoconfigure-processor + 3.1.0 + + + org.springframework.boot + spring-boot-buildpack-platform + 3.1.0 + + + org.springframework.boot + spring-boot-configuration-metadata + 3.1.0 + + + org.springframework.boot + spring-boot-configuration-processor + 3.1.0 + + + org.springframework.boot + spring-boot-devtools + 3.1.0 + + + org.springframework.boot + spring-boot-docker-compose + 3.1.0 + + + org.springframework.boot + spring-boot-jarmode-layertools + 3.1.0 + + + org.springframework.boot + spring-boot-loader + 3.1.0 + + + org.springframework.boot + spring-boot-loader-tools + 3.1.0 + + + org.springframework.boot + spring-boot-properties-migrator + 3.1.0 + + + org.springframework.boot + spring-boot-starter + 3.1.0 + + + org.springframework.boot + spring-boot-starter-activemq + 3.1.0 + + + org.springframework.boot + spring-boot-starter-actuator + 3.1.0 + + + org.springframework.boot + spring-boot-starter-amqp + 3.1.0 + + + org.springframework.boot + spring-boot-starter-aop + 3.1.0 + + + org.springframework.boot + spring-boot-starter-artemis + 3.1.0 + + + org.springframework.boot + spring-boot-starter-batch + 3.1.0 + + + org.springframework.boot + spring-boot-starter-cache + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-cassandra + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-cassandra-reactive + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-couchbase + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-couchbase-reactive + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-elasticsearch + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-jdbc + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-jpa + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-ldap + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-mongodb + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-mongodb-reactive + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-r2dbc + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-redis + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-redis-reactive + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-neo4j + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-rest + 3.1.0 + + + org.springframework.boot + spring-boot-starter-freemarker + 3.1.0 + + + org.springframework.boot + spring-boot-starter-graphql + 3.1.0 + + + org.springframework.boot + spring-boot-starter-groovy-templates + 3.1.0 + + + org.springframework.boot + spring-boot-starter-hateoas + 3.1.0 + + + org.springframework.boot + spring-boot-starter-integration + 3.1.0 + + + org.springframework.boot + spring-boot-starter-jdbc + 3.1.0 + + + org.springframework.boot + spring-boot-starter-jersey + 3.1.0 + + + org.springframework.boot + spring-boot-starter-jetty + 3.1.0 + + + org.springframework.boot + spring-boot-starter-jooq + 3.1.0 + + + org.springframework.boot + spring-boot-starter-json + 3.1.0 + + + org.springframework.boot + spring-boot-starter-log4j2 + 3.1.0 + + + org.springframework.boot + spring-boot-starter-logging + 3.1.0 + + + org.springframework.boot + spring-boot-starter-mail + 3.1.0 + + + org.springframework.boot + spring-boot-starter-mustache + 3.1.0 + + + org.springframework.boot + spring-boot-starter-oauth2-authorization-server + 3.1.0 + + + org.springframework.boot + spring-boot-starter-oauth2-client + 3.1.0 + + + org.springframework.boot + spring-boot-starter-oauth2-resource-server + 3.1.0 + + + org.springframework.boot + spring-boot-starter-quartz + 3.1.0 + + + org.springframework.boot + spring-boot-starter-reactor-netty + 3.1.0 + + + org.springframework.boot + spring-boot-starter-rsocket + 3.1.0 + + + org.springframework.boot + spring-boot-starter-security + 3.1.0 + + + org.springframework.boot + spring-boot-starter-test + 3.1.0 + + + org.springframework.boot + spring-boot-starter-thymeleaf + 3.1.0 + + + org.springframework.boot + spring-boot-starter-tomcat + 3.1.0 + + + org.springframework.boot + spring-boot-starter-undertow + 3.1.0 + + + org.springframework.boot + spring-boot-starter-validation + 3.1.0 + + + org.springframework.boot + spring-boot-starter-web + 3.1.0 + + + org.springframework.boot + spring-boot-starter-webflux + 3.1.0 + + + org.springframework.boot + spring-boot-starter-websocket + 3.1.0 + + + org.springframework.boot + spring-boot-starter-web-services + 3.1.0 + + + com.sun.xml.messaging.saaj + saaj-impl + 3.0.2 + + + org.seleniumhq.selenium + lift + 4.8.3 + + + org.seleniumhq.selenium + selenium-api + 4.8.3 + + + org.seleniumhq.selenium + selenium-chrome-driver + 4.8.3 + + + org.seleniumhq.selenium + selenium-chromium-driver + 4.8.3 + + + org.seleniumhq.selenium + selenium-devtools-v108 + 4.8.3 + + + org.seleniumhq.selenium + selenium-devtools-v109 + 4.8.3 + + + org.seleniumhq.selenium + selenium-devtools-v110 + 4.8.3 + + + org.seleniumhq.selenium + selenium-devtools-v85 + 4.8.3 + + + org.seleniumhq.selenium + selenium-edge-driver + 4.8.3 + + + org.seleniumhq.selenium + selenium-firefox-driver + 4.8.3 + + + org.seleniumhq.selenium + selenium-grid + 4.8.3 + + + org.seleniumhq.selenium + selenium-http + 4.8.3 + + + org.seleniumhq.selenium + selenium-http-jdk-client + 4.8.3 + + + org.seleniumhq.selenium + selenium-ie-driver + 4.8.3 + + + org.seleniumhq.selenium + selenium-java + 4.8.3 + + + org.seleniumhq.selenium + selenium-json + 4.8.3 + + + org.seleniumhq.selenium + selenium-manager + 4.8.3 + + + org.seleniumhq.selenium + selenium-remote-driver + 4.8.3 + + + org.seleniumhq.selenium + selenium-safari-driver + 4.8.3 + + + org.seleniumhq.selenium + selenium-session-map-jdbc + 4.8.3 + + + org.seleniumhq.selenium + selenium-session-map-redis + 4.8.3 + + + org.seleniumhq.selenium + selenium-support + 4.8.3 + + + org.seleniumhq.selenium + htmlunit-driver + 4.8.3 + + + com.sendgrid + sendgrid-java + 4.9.3 + + + org.slf4j + jcl-over-slf4j + 2.0.7 + + + org.slf4j + jul-to-slf4j + 2.0.7 + + + org.slf4j + log4j-over-slf4j + 2.0.7 + + + org.slf4j + slf4j-api + 2.0.7 + + + org.slf4j + slf4j-ext + 2.0.7 + + + org.slf4j + slf4j-jdk-platform-logging + 2.0.7 + + + org.slf4j + slf4j-jdk14 + 2.0.7 + + + org.slf4j + slf4j-log4j12 + 2.0.7 + + + org.slf4j + slf4j-nop + 2.0.7 + + + org.slf4j + slf4j-reload4j + 2.0.7 + + + org.slf4j + slf4j-simple + 2.0.7 + + + org.yaml + snakeyaml + 1.33 + + + org.springframework.amqp + spring-amqp + 3.0.4 + + + org.springframework.amqp + spring-rabbit + 3.0.4 + + + org.springframework.amqp + spring-rabbit-stream + 3.0.4 + + + org.springframework.amqp + spring-rabbit-junit + 3.0.4 + + + org.springframework.amqp + spring-rabbit-test + 3.0.4 + + + org.springframework.security + spring-security-oauth2-authorization-server + 1.1.0 + + + org.springframework.graphql + spring-graphql + 1.2.0 + + + org.springframework.graphql + spring-graphql-test + 1.2.0 + + + org.springframework.hateoas + spring-hateoas + 2.1.0 + + + org.springframework.kafka + spring-kafka + 3.0.7 + + + org.springframework.kafka + spring-kafka-test + 3.0.7 + + + org.springframework.ldap + spring-ldap-core + 3.1.0 + + + org.springframework.ldap + spring-ldap-ldif-core + 3.1.0 + + + org.springframework.ldap + spring-ldap-odm + 3.1.0 + + + org.springframework.ldap + spring-ldap-test + 3.1.0 + + + org.springframework.retry + spring-retry + 2.0.1 + + + org.xerial + sqlite-jdbc + 3.41.2.1 + + + org.thymeleaf + thymeleaf + 3.1.1.RELEASE + + + org.thymeleaf + thymeleaf-spring6 + 3.1.1.RELEASE + + + com.github.mxab.thymeleaf.extras + thymeleaf-extras-data-attribute + 2.0.1 + + + org.thymeleaf.extras + thymeleaf-extras-springsecurity6 + 3.1.1.RELEASE + + + nz.net.ultraq.thymeleaf + thymeleaf-layout-dialect + 3.2.1 + + + org.apache.tomcat + tomcat-annotations-api + 10.1.8 + + + org.apache.tomcat + tomcat-jdbc + 10.1.8 + + + org.apache.tomcat + tomcat-jsp-api + 10.1.8 + + + org.apache.tomcat.embed + tomcat-embed-core + 10.1.8 + + + org.apache.tomcat.embed + tomcat-embed-el + 10.1.8 + + + org.apache.tomcat.embed + tomcat-embed-jasper + 10.1.8 + + + org.apache.tomcat.embed + tomcat-embed-websocket + 10.1.8 + + + com.unboundid + unboundid-ldapsdk + 6.0.8 + + + io.undertow + undertow-core + 2.3.6.Final + + + io.undertow + undertow-servlet + 2.3.6.Final + + + io.undertow + undertow-websockets-jsr + 2.3.6.Final + + + org.webjars + webjars-locator-core + 0.52 + + + wsdl4j + wsdl4j + 1.6.3 + + + org.xmlunit + xmlunit-assertj + 2.9.1 + + + org.xmlunit + xmlunit-assertj3 + 2.9.1 + + + org.xmlunit + xmlunit-core + 2.9.1 + + + org.xmlunit + xmlunit-jakarta-jaxb-impl + 2.9.1 + + + org.xmlunit + xmlunit-legacy + 2.9.1 + + + org.xmlunit + xmlunit-matchers + 2.9.1 + + + org.xmlunit + xmlunit-placeholders + 2.9.1 + + + org.eclipse + yasson + 3.0.3 + + + org.assertj + assertj-core + 3.24.2 + + + org.assertj + assertj-guava + 3.24.2 + + + io.zipkin.zipkin2 + zipkin + 2.23.2 + + + io.zipkin.brave + brave + 5.15.1 + + + io.zipkin.brave + brave-tests + 5.15.1 + + + io.zipkin.brave + brave-context-jfr + 5.15.1 + + + io.zipkin.brave + brave-context-log4j2 + 5.15.1 + + + io.zipkin.brave + brave-context-log4j12 + 5.15.1 + + + io.zipkin.brave + brave-context-slf4j + 5.15.1 + + + io.zipkin.brave + brave-context-rxjava2 + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-dubbo + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-dubbo-rpc + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-grpc + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-http + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-http-tests + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-httpasyncclient + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-httpclient + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-jaxrs2 + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-jersey-server + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-jms + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-jms-jakarta + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-kafka-clients + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-kafka-streams + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-messaging + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-mongodb + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-mysql + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-mysql6 + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-mysql8 + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-netty-codec-http + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-okhttp3 + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-p6spy + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-rpc + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-servlet + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-servlet-jakarta + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-sparkjava + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-spring-rabbit + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-spring-web + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-spring-webmvc + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-vertx-web + 5.15.1 + + + io.zipkin.brave + brave-spring-beans + 5.15.1 + + + io.zipkin.proto3 + zipkin-proto3 + 1.0.0 + + + io.zipkin.reporter2 + zipkin-reporter + 2.16.3 + + + io.zipkin.reporter2 + zipkin-sender-okhttp3 + 2.16.3 + + + io.zipkin.reporter2 + zipkin-sender-libthrift + 2.16.3 + + + io.zipkin.reporter2 + zipkin-sender-urlconnection + 2.16.3 + + + io.zipkin.reporter2 + zipkin-sender-kafka08 + 2.16.3 + + + io.zipkin.reporter2 + zipkin-sender-kafka + 2.16.3 + + + io.zipkin.reporter2 + zipkin-sender-amqp-client + 2.16.3 + + + io.zipkin.reporter2 + zipkin-sender-activemq-client + 2.16.3 + + + io.zipkin.reporter2 + zipkin-reporter-spring-beans + 2.16.3 + + + io.zipkin.reporter2 + zipkin-reporter-brave + 2.16.3 + + + io.zipkin.reporter2 + zipkin-reporter-metrics-micrometer + 2.16.3 + + + com.datastax.oss + java-driver-core-shaded + 4.15.0 + + + com.datastax.oss + java-driver-mapper-processor + 4.15.0 + + + com.datastax.oss + java-driver-mapper-runtime + 4.15.0 + + + com.datastax.oss + java-driver-query-builder + 4.15.0 + + + com.datastax.oss + java-driver-test-infra + 4.15.0 + + + com.datastax.oss + java-driver-metrics-micrometer + 4.15.0 + + + com.datastax.oss + java-driver-metrics-microprofile + 4.15.0 + + + com.datastax.oss + native-protocol + 1.5.1 + + + com.datastax.oss + java-driver-shaded-guava + 25.1-jre-graal-sub-1 + + + io.dropwizard.metrics + metrics-annotation + 4.2.18 + + + io.dropwizard.metrics + metrics-caffeine + 4.2.18 + + + io.dropwizard.metrics + metrics-caffeine3 + 4.2.18 + + + io.dropwizard.metrics + metrics-core + 4.2.18 + + + io.dropwizard.metrics + metrics-collectd + 4.2.18 + + + io.dropwizard.metrics + metrics-ehcache + 4.2.18 + + + io.dropwizard.metrics + metrics-graphite + 4.2.18 + + + io.dropwizard.metrics + metrics-healthchecks + 4.2.18 + + + io.dropwizard.metrics + metrics-httpclient + 4.2.18 + + + io.dropwizard.metrics + metrics-httpclient5 + 4.2.18 + + + io.dropwizard.metrics + metrics-httpasyncclient + 4.2.18 + + + io.dropwizard.metrics + metrics-jakarta-servlet + 4.2.18 + + + io.dropwizard.metrics + metrics-jakarta-servlets + 4.2.18 + + + io.dropwizard.metrics + metrics-jcache + 4.2.18 + + + io.dropwizard.metrics + metrics-jdbi + 4.2.18 + + + io.dropwizard.metrics + metrics-jdbi3 + 4.2.18 + + + io.dropwizard.metrics + metrics-jersey2 + 4.2.18 + + + io.dropwizard.metrics + metrics-jersey3 + 4.2.18 + + + io.dropwizard.metrics + metrics-jersey31 + 4.2.18 + + + io.dropwizard.metrics + metrics-jetty9 + 4.2.18 + + + io.dropwizard.metrics + metrics-jetty10 + 4.2.18 + + + io.dropwizard.metrics + metrics-jetty11 + 4.2.18 + + + io.dropwizard.metrics + metrics-jmx + 4.2.18 + + + io.dropwizard.metrics + metrics-json + 4.2.18 + + + io.dropwizard.metrics + metrics-jvm + 4.2.18 + + + io.dropwizard.metrics + metrics-log4j2 + 4.2.18 + + + io.dropwizard.metrics + metrics-logback + 4.2.18 + + + io.dropwizard.metrics + metrics-logback13 + 4.2.18 + + + io.dropwizard.metrics + metrics-logback14 + 4.2.18 + + + io.dropwizard.metrics + metrics-servlet + 4.2.18 + + + io.dropwizard.metrics + metrics-servlets + 4.2.18 + + + org.glassfish.jaxb + jaxb-runtime + 4.0.2 + sources + + + org.glassfish.jaxb + jaxb-core + 4.0.2 + sources + + + org.glassfish.jaxb + jaxb-xjc + 4.0.2 + sources + + + org.glassfish.jaxb + jaxb-jxc + 4.0.2 + sources + + + org.glassfish.jaxb + codemodel + 4.0.2 + sources + + + org.glassfish.jaxb + txw2 + 4.0.2 + sources + + + org.glassfish.jaxb + xsom + 4.0.2 + sources + + + com.sun.xml.bind + jaxb-impl + 4.0.2 + sources + + + com.sun.xml.bind + jaxb-core + 4.0.2 + sources + + + com.sun.xml.bind + jaxb-xjc + 4.0.2 + sources + + + com.sun.xml.bind + jaxb-jxc + 4.0.2 + sources + + + jakarta.xml.bind + jakarta.xml.bind-api + 4.0.0 + sources + + + org.jvnet.staxex + stax-ex + 2.1.0 + sources + + + jakarta.activation + jakarta.activation-api + + + + + com.sun.xml.fastinfoset + FastInfoset + 2.1.0 + sources + + + org.glassfish.jaxb + jaxb-runtime + 4.0.2 + + + org.glassfish.jaxb + jaxb-core + 4.0.2 + + + org.glassfish.jaxb + jaxb-xjc + 4.0.2 + + + org.glassfish.jaxb + jaxb-jxc + 4.0.2 + + + org.glassfish.jaxb + codemodel + 4.0.2 + + + org.glassfish.jaxb + txw2 + 4.0.2 + + + org.glassfish.jaxb + xsom + 4.0.2 + + + com.sun.xml.bind + jaxb-impl + 4.0.2 + + + com.sun.xml.bind + jaxb-core + 4.0.2 + + + com.sun.xml.bind + jaxb-xjc + 4.0.2 + + + com.sun.xml.bind + jaxb-jxc + 4.0.2 + + + com.sun.xml.bind + jaxb-osgi + 4.0.2 + + + com.sun.istack + istack-commons-runtime + 4.1.1 + + + com.sun.xml.fastinfoset + FastInfoset + 2.1.0 + + + org.jvnet.staxex + stax-ex + 2.1.0 + + + org.eclipse.angus + angus-activation + 2.0.0 + + + org.apache.groovy + groovy + 4.0.12 + + + org.apache.groovy + groovy-ant + 4.0.12 + + + org.apache.groovy + groovy-astbuilder + 4.0.12 + + + org.apache.groovy + groovy-cli-commons + 4.0.12 + + + org.apache.groovy + groovy-cli-picocli + 4.0.12 + + + org.apache.groovy + groovy-console + 4.0.12 + + + org.apache.groovy + groovy-contracts + 4.0.12 + + + org.apache.groovy + groovy-datetime + 4.0.12 + + + org.apache.groovy + groovy-dateutil + 4.0.12 + + + org.apache.groovy + groovy-docgenerator + 4.0.12 + + + org.apache.groovy + groovy-ginq + 4.0.12 + + + org.apache.groovy + groovy-groovydoc + 4.0.12 + + + org.apache.groovy + groovy-groovysh + 4.0.12 + + + org.apache.groovy + groovy-jmx + 4.0.12 + + + org.apache.groovy + groovy-json + 4.0.12 + + + org.apache.groovy + groovy-jsr223 + 4.0.12 + + + org.apache.groovy + groovy-macro + 4.0.12 + + + org.apache.groovy + groovy-macro-library + 4.0.12 + + + org.apache.groovy + groovy-nio + 4.0.12 + + + org.apache.groovy + groovy-servlet + 4.0.12 + + + org.apache.groovy + groovy-sql + 4.0.12 + + + org.apache.groovy + groovy-swing + 4.0.12 + + + org.apache.groovy + groovy-templates + 4.0.12 + + + org.apache.groovy + groovy-test + 4.0.12 + + + org.apache.groovy + groovy-test-junit5 + 4.0.12 + + + org.apache.groovy + groovy-testng + 4.0.12 + + + org.apache.groovy + groovy-toml + 4.0.12 + + + org.apache.groovy + groovy-typecheckers + 4.0.12 + + + org.apache.groovy + groovy-xml + 4.0.12 + + + org.apache.groovy + groovy-yaml + 4.0.12 + + + org.infinispan + infinispan-api + 14.0.9.Final + + + org.infinispan + infinispan-cachestore-jdbc + 14.0.9.Final + + + org.infinispan + infinispan-cachestore-jdbc-jakarta + 14.0.9.Final + + + org.infinispan + infinispan-cachestore-jdbc-common + 14.0.9.Final + + + org.infinispan + infinispan-cachestore-jdbc-common-jakarta + 14.0.9.Final + + + org.infinispan + infinispan-cachestore-sql + 14.0.9.Final + + + org.infinispan + infinispan-cachestore-remote + 14.0.9.Final + + + org.infinispan + infinispan-cachestore-rocksdb + 14.0.9.Final + + + org.infinispan + infinispan-cdi-common + 14.0.9.Final + + + org.infinispan + infinispan-cdi-common-jakarta + 14.0.9.Final + + + org.infinispan + infinispan-cdi-embedded + 14.0.9.Final + + + org.infinispan + infinispan-cdi-embedded-jakarta + 14.0.9.Final + + + org.infinispan + infinispan-cdi-remote + 14.0.9.Final + + + org.infinispan + infinispan-cdi-remote-jakarta + 14.0.9.Final + + + org.infinispan + infinispan-checkstyle + 14.0.9.Final + + + org.infinispan + infinispan-cli-client + 14.0.9.Final + + + org.infinispan + infinispan-hotrod + 14.0.9.Final + + + org.infinispan + infinispan-hotrod-jakarta + 14.0.9.Final + + + org.infinispan + infinispan-client-hotrod + 14.0.9.Final + + + org.infinispan + infinispan-client-hotrod-jakarta + 14.0.9.Final + + + org.infinispan + infinispan-client-rest + 14.0.9.Final + + + org.infinispan + infinispan-key-value-store-client + 14.0.9.Final + + + org.infinispan + infinispan-clustered-counter + 14.0.9.Final + + + org.infinispan + infinispan-clustered-lock + 14.0.9.Final + + + org.infinispan + infinispan-commons + 14.0.9.Final + + + org.infinispan + infinispan-commons-jakarta + 14.0.9.Final + + + org.infinispan + infinispan-commons-test + 14.0.9.Final + + + org.infinispan + infinispan-component-annotations + 14.0.9.Final + provided + + + org.infinispan + infinispan-component-processor + 14.0.9.Final + + + org.infinispan + infinispan-core + 14.0.9.Final + + + org.infinispan + infinispan-core-jakarta + 14.0.9.Final + + + org.infinispan + infinispan-jboss-marshalling + 14.0.9.Final + + + org.infinispan + infinispan-extended-statistics + 14.0.9.Final + + + org.infinispan + infinispan-hibernate-cache-commons + 14.0.9.Final + + + org.infinispan + infinispan-hibernate-cache-spi + 14.0.9.Final + + + org.infinispan + infinispan-hibernate-cache-v60 + 14.0.9.Final + + + org.infinispan + infinispan-jcache-commons + 14.0.9.Final + + + org.infinispan + infinispan-jcache + 14.0.9.Final + + + org.infinispan + infinispan-jcache-remote + 14.0.9.Final + + + org.infinispan + infinispan-console + 14.0.8.Final + + + org.infinispan + infinispan-multimap + 14.0.9.Final + + + org.infinispan + infinispan-objectfilter + 14.0.9.Final + + + org.infinispan + infinispan-query-core + 14.0.9.Final + + + org.infinispan + infinispan-query + 14.0.9.Final + + + org.infinispan + infinispan-query-jakarta + 14.0.9.Final + + + org.infinispan + infinispan-query-dsl + 14.0.9.Final + + + org.infinispan + infinispan-remote-query-client + 14.0.9.Final + + + org.infinispan + infinispan-remote-query-server + 14.0.9.Final + + + org.infinispan + infinispan-scripting + 14.0.9.Final + + + org.infinispan + infinispan-server-core + 14.0.9.Final + + + org.infinispan + infinispan-server-hotrod + 14.0.9.Final + + + org.infinispan + infinispan-server-hotrod-jakarta + 14.0.9.Final + + + org.infinispan + infinispan-server-memcached + 14.0.9.Final + + + org.infinispan + infinispan-server-resp + 14.0.9.Final + + + org.infinispan + infinispan-server-rest + 14.0.9.Final + + + org.infinispan + infinispan-server-router + 14.0.9.Final + + + org.infinispan + infinispan-server-runtime + 14.0.9.Final + + + org.infinispan + infinispan-server-runtime + 14.0.9.Final + loader + + + org.infinispan + infinispan-server-testdriver-core + 14.0.9.Final + + + org.infinispan + infinispan-server-testdriver-junit4 + 14.0.9.Final + + + org.infinispan + infinispan-server-testdriver-junit5 + 14.0.9.Final + + + org.infinispan + infinispan-spring5-common + 14.0.9.Final + + + org.infinispan + infinispan-spring5-embedded + 14.0.9.Final + + + org.infinispan + infinispan-spring5-remote + 14.0.9.Final + + + org.infinispan + infinispan-spring-boot-starter-embedded + 14.0.9.Final + + + org.infinispan + infinispan-spring-boot-starter-remote + 14.0.9.Final + + + org.infinispan + infinispan-spring6-common + 14.0.9.Final + + + org.infinispan + infinispan-spring6-embedded + 14.0.9.Final + + + org.infinispan + infinispan-spring6-remote + 14.0.9.Final + + + org.infinispan + infinispan-spring-boot3-starter-embedded + 14.0.9.Final + + + org.infinispan + infinispan-spring-boot3-starter-remote + 14.0.9.Final + + + org.infinispan + infinispan-tasks + 14.0.9.Final + + + org.infinispan + infinispan-tasks-api + 14.0.9.Final + + + org.infinispan + infinispan-tools + 14.0.9.Final + + + org.infinispan + infinispan-tools-jakarta + 14.0.9.Final + + + org.infinispan + infinispan-anchored-keys + 14.0.9.Final + + + org.infinispan.protostream + protostream + 4.6.2.Final + + + org.infinispan.protostream + protostream-types + 4.6.2.Final + + + org.infinispan.protostream + protostream-processor + 4.6.2.Final + provided + + + org.infinispan + infinispan-cloudevents-integration + 14.0.9.Final + + + org.infinispan + infinispan-marshaller-kryo + 14.0.9.Final + + + org.infinispan + infinispan-marshaller-kryo-bundle + 14.0.9.Final + + + org.infinispan + infinispan-marshaller-protostuff + 14.0.9.Final + + + org.infinispan + infinispan-marshaller-protostuff-bundle + 14.0.9.Final + + + com.fasterxml.jackson.core + jackson-annotations + 2.15.0 + + + com.fasterxml.jackson.core + jackson-core + 2.15.0 + + + com.fasterxml.jackson.core + jackson-databind + 2.15.0 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-avro + 2.15.0 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-cbor + 2.15.0 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-csv + 2.15.0 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-ion + 2.15.0 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-properties + 2.15.0 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-protobuf + 2.15.0 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-smile + 2.15.0 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-toml + 2.15.0 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-xml + 2.15.0 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-yaml + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-eclipse-collections + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-guava + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate4 + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate5 + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate5-jakarta + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate6 + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-hppc + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-jakarta-jsonp + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-jaxrs + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-joda + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-joda-money + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-jdk8 + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-json-org + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-jsr310 + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-jsr353 + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-pcollections + 2.15.0 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-base + 2.15.0 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-cbor-provider + 2.15.0 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-json-provider + 2.15.0 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-smile-provider + 2.15.0 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-xml-provider + 2.15.0 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-yaml-provider + 2.15.0 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-base + 2.15.0 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-cbor-provider + 2.15.0 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-json-provider + 2.15.0 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-smile-provider + 2.15.0 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-xml-provider + 2.15.0 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-yaml-provider + 2.15.0 + + + com.fasterxml.jackson.jr + jackson-jr-all + 2.15.0 + + + com.fasterxml.jackson.jr + jackson-jr-annotation-support + 2.15.0 + + + com.fasterxml.jackson.jr + jackson-jr-objects + 2.15.0 + + + com.fasterxml.jackson.jr + jackson-jr-retrofit2 + 2.15.0 + + + com.fasterxml.jackson.jr + jackson-jr-stree + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-afterburner + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-blackbird + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-guice + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-jaxb-annotations + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-jakarta-xmlbind-annotations + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-jsonSchema + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-jsonSchema-jakarta + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-kotlin + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-mrbean + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-no-ctor-deser + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-osgi + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-parameter-names + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-paranamer + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-scala_2.11 + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-scala_2.12 + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-scala_2.13 + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-scala_3 + 2.15.0 + + + org.glassfish.jersey.core + jersey-common + 3.1.1 + + + org.glassfish.jersey.core + jersey-client + 3.1.1 + + + org.glassfish.jersey.core + jersey-server + 3.1.1 + + + org.glassfish.jersey.bundles + jaxrs-ri + 3.1.1 + + + org.glassfish.jersey.connectors + jersey-apache-connector + 3.1.1 + + + org.glassfish.jersey.connectors + jersey-apache5-connector + 3.1.1 + + + org.glassfish.jersey.connectors + jersey-helidon-connector + 3.1.1 + + + org.glassfish.jersey.connectors + jersey-grizzly-connector + 3.1.1 + + + org.glassfish.jersey.connectors + jersey-jnh-connector + 3.1.1 + + + org.glassfish.jersey.connectors + jersey-jetty-connector + 3.1.1 + + + org.glassfish.jersey.connectors + jersey-jdk-connector + 3.1.1 + + + org.glassfish.jersey.connectors + jersey-netty-connector + 3.1.1 + + + org.glassfish.jersey.containers + jersey-container-jetty-http + 3.1.1 + + + org.glassfish.jersey.containers + jersey-container-grizzly2-http + 3.1.1 + + + org.glassfish.jersey.containers + jersey-container-grizzly2-servlet + 3.1.1 + + + org.glassfish.jersey.containers + jersey-container-jetty-servlet + 3.1.1 + + + org.glassfish.jersey.containers + jersey-container-jdk-http + 3.1.1 + + + org.glassfish.jersey.containers + jersey-container-netty-http + 3.1.1 + + + org.glassfish.jersey.containers + jersey-container-servlet + 3.1.1 + + + org.glassfish.jersey.containers + jersey-container-servlet-core + 3.1.1 + + + org.glassfish.jersey.containers + jersey-container-simple-http + 3.1.1 + + + org.glassfish.jersey.containers.glassfish + jersey-gf-ejb + 3.1.1 + + + org.glassfish.jersey.ext + jersey-bean-validation + 3.1.1 + + + org.glassfish.jersey.ext + jersey-entity-filtering + 3.1.1 + + + org.glassfish.jersey.ext + jersey-metainf-services + 3.1.1 + + + org.glassfish.jersey.ext.microprofile + jersey-mp-config + 3.1.1 + + + org.glassfish.jersey.ext + jersey-mvc + 3.1.1 + + + org.glassfish.jersey.ext + jersey-mvc-bean-validation + 3.1.1 + + + org.glassfish.jersey.ext + jersey-mvc-freemarker + 3.1.1 + + + org.glassfish.jersey.ext + jersey-mvc-jsp + 3.1.1 + + + org.glassfish.jersey.ext + jersey-mvc-mustache + 3.1.1 + + + org.glassfish.jersey.ext + jersey-proxy-client + 3.1.1 + + + org.glassfish.jersey.ext + jersey-spring6 + 3.1.1 + + + org.glassfish.jersey.ext + jersey-declarative-linking + 3.1.1 + + + org.glassfish.jersey.ext + jersey-wadl-doclet + 3.1.1 + + + org.glassfish.jersey.ext.cdi + jersey-weld2-se + 3.1.1 + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x + 3.1.1 + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x-transaction + 3.1.1 + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x-validation + 3.1.1 + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x-servlet + 3.1.1 + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x-ban-custom-hk2-binding + 3.1.1 + + + org.glassfish.jersey.ext.cdi + jersey-cdi-rs-inject + 3.1.1 + + + org.glassfish.jersey.ext.rx + jersey-rx-client-guava + 3.1.1 + + + org.glassfish.jersey.ext.rx + jersey-rx-client-rxjava + 3.1.1 + + + org.glassfish.jersey.ext.rx + jersey-rx-client-rxjava2 + 3.1.1 + + + org.glassfish.jersey.ext.microprofile + jersey-mp-rest-client + 3.1.1 + + + org.glassfish.jersey.media + jersey-media-jaxb + 3.1.1 + + + org.glassfish.jersey.media + jersey-media-json-jackson + 3.1.1 + + + org.glassfish.jersey.media + jersey-media-json-jettison + 3.1.1 + + + org.glassfish.jersey.media + jersey-media-json-processing + 3.1.1 + + + org.glassfish.jersey.media + jersey-media-json-gson + 3.1.1 + + + org.glassfish.jersey.media + jersey-media-json-binding + 3.1.1 + + + org.glassfish.jersey.media + jersey-media-kryo + 3.1.1 + + + org.glassfish.jersey.media + jersey-media-moxy + 3.1.1 + + + org.glassfish.jersey.media + jersey-media-multipart + 3.1.1 + + + org.glassfish.jersey.media + jersey-media-sse + 3.1.1 + + + org.glassfish.jersey.security + oauth1-client + 3.1.1 + + + org.glassfish.jersey.security + oauth1-server + 3.1.1 + + + org.glassfish.jersey.security + oauth1-signature + 3.1.1 + + + org.glassfish.jersey.security + oauth2-client + 3.1.1 + + + org.glassfish.jersey.inject + jersey-hk2 + 3.1.1 + + + org.glassfish.jersey.inject + jersey-cdi2-se + 3.1.1 + + + org.glassfish.jersey.test-framework + jersey-test-framework-core + 3.1.1 + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-bundle + 3.1.1 + pom + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-external + 3.1.1 + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-grizzly2 + 3.1.1 + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-inmemory + 3.1.1 + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-jdk-http + 3.1.1 + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-simple + 3.1.1 + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-jetty + 3.1.1 + + + org.glassfish.jersey.test-framework + jersey-test-framework-util + 3.1.1 + + + org.eclipse.jetty + apache-jsp + 11.0.15 + + + org.eclipse.jetty + glassfish-jstl + 11.0.15 + + + org.eclipse.jetty + jetty-alpn-client + 11.0.15 + + + org.eclipse.jetty + jetty-alpn-java-client + 11.0.15 + + + org.eclipse.jetty + jetty-alpn-java-server + 11.0.15 + + + org.eclipse.jetty + jetty-alpn-conscrypt-client + 11.0.15 + + + org.eclipse.jetty + jetty-alpn-conscrypt-server + 11.0.15 + + + org.eclipse.jetty + jetty-alpn-server + 11.0.15 + + + org.eclipse.jetty + jetty-annotations + 11.0.15 + + + org.eclipse.jetty + jetty-ant + 11.0.15 + + + org.eclipse.jetty + jetty-client + 11.0.15 + + + org.eclipse.jetty + jetty-cdi + 11.0.15 + + + org.eclipse.jetty + jetty-deploy + 11.0.15 + + + org.eclipse.jetty.fcgi + fcgi-client + 11.0.15 + + + org.eclipse.jetty.fcgi + fcgi-server + 11.0.15 + + + org.eclipse.jetty.gcloud + jetty-gcloud-session-manager + 11.0.15 + + + org.eclipse.jetty + jetty-home + 11.0.15 + zip + + + org.eclipse.jetty + jetty-home + 11.0.15 + tar.gz + + + org.eclipse.jetty + jetty-http + 11.0.15 + + + org.eclipse.jetty.http2 + http2-client + 11.0.15 + + + org.eclipse.jetty.http2 + http2-common + 11.0.15 + + + org.eclipse.jetty.http2 + http2-hpack + 11.0.15 + + + org.eclipse.jetty.http2 + http2-http-client-transport + 11.0.15 + + + org.eclipse.jetty.http2 + http2-server + 11.0.15 + + + org.eclipse.jetty.http3 + http3-client + 11.0.15 + + + org.eclipse.jetty.http3 + http3-common + 11.0.15 + + + org.eclipse.jetty.http3 + http3-http-client-transport + 11.0.15 + + + org.eclipse.jetty.http3 + http3-qpack + 11.0.15 + + + org.eclipse.jetty.http3 + http3-server + 11.0.15 + + + org.eclipse.jetty + jetty-http-spi + 11.0.15 + + + org.eclipse.jetty + infinispan-common + 11.0.15 + + + org.eclipse.jetty + infinispan-remote-query + 11.0.15 + + + org.eclipse.jetty + infinispan-embedded-query + 11.0.15 + + + org.eclipse.jetty + jetty-hazelcast + 11.0.15 + + + org.eclipse.jetty + jetty-io + 11.0.15 + + + org.eclipse.jetty + jetty-jaas + 11.0.15 + + + org.eclipse.jetty + jetty-jaspi + 11.0.15 + + + org.eclipse.jetty + jetty-jmx + 11.0.15 + + + org.eclipse.jetty + jetty-jndi + 11.0.15 + + + org.eclipse.jetty + jetty-keystore + 11.0.15 + + + org.eclipse.jetty.memcached + jetty-memcached-sessions + 11.0.15 + + + org.eclipse.jetty + jetty-nosql + 11.0.15 + + + org.eclipse.jetty.osgi + jetty-osgi-alpn + 11.0.15 + + + org.eclipse.jetty.osgi + jetty-osgi-boot + 11.0.15 + + + org.eclipse.jetty.osgi + jetty-osgi-boot-jsp + 11.0.15 + + + org.eclipse.jetty.osgi + jetty-osgi-boot-warurl + 11.0.15 + + + org.eclipse.jetty.quic + quic-client + 11.0.15 + + + org.eclipse.jetty.quic + quic-common + 11.0.15 + + + org.eclipse.jetty.quic + quic-quiche-common + 11.0.15 + + + org.eclipse.jetty.quic + quic-quiche-jna + 11.0.15 + + + org.eclipse.jetty.quic + quic-server + 11.0.15 + + + org.eclipse.jetty.osgi + jetty-httpservice + 11.0.15 + + + org.eclipse.jetty + jetty-plus + 11.0.15 + + + org.eclipse.jetty + jetty-proxy + 11.0.15 + + + org.eclipse.jetty + jetty-quickstart + 11.0.15 + + + org.eclipse.jetty + jetty-rewrite + 11.0.15 + + + org.eclipse.jetty + jetty-security + 11.0.15 + + + org.eclipse.jetty + jetty-openid + 11.0.15 + + + org.eclipse.jetty + jetty-server + 11.0.15 + + + org.eclipse.jetty + jetty-servlet + 11.0.15 + + + org.eclipse.jetty + jetty-servlets + 11.0.15 + + + org.eclipse.jetty + jetty-slf4j-impl + 11.0.15 + + + org.eclipse.jetty + jetty-unixdomain-server + 11.0.15 + + + org.eclipse.jetty + jetty-unixsocket-common + 11.0.15 + + + org.eclipse.jetty + jetty-unixsocket-client + 11.0.15 + + + org.eclipse.jetty + jetty-unixsocket-server + 11.0.15 + + + org.eclipse.jetty + jetty-util + 11.0.15 + + + org.eclipse.jetty + jetty-util-ajax + 11.0.15 + + + org.eclipse.jetty + jetty-webapp + 11.0.15 + + + org.eclipse.jetty.websocket + websocket-jakarta-client + 11.0.15 + + + org.eclipse.jetty.websocket + websocket-jakarta-server + 11.0.15 + + + org.eclipse.jetty.websocket + websocket-jakarta-common + 11.0.15 + + + org.eclipse.jetty.websocket + websocket-jetty-api + 11.0.15 + + + org.eclipse.jetty.websocket + websocket-jetty-client + 11.0.15 + + + org.eclipse.jetty.websocket + websocket-jetty-common + 11.0.15 + + + org.eclipse.jetty.websocket + websocket-jetty-server + 11.0.15 + + + org.eclipse.jetty.websocket + websocket-servlet + 11.0.15 + + + org.eclipse.jetty.websocket + websocket-core-common + 11.0.15 + + + org.eclipse.jetty.websocket + websocket-core-client + 11.0.15 + + + org.eclipse.jetty.websocket + websocket-core-server + 11.0.15 + + + org.eclipse.jetty + jetty-xml + 11.0.15 + + + org.junit.jupiter + junit-jupiter + 5.9.3 + + + org.junit.jupiter + junit-jupiter-api + 5.9.3 + + + org.junit.jupiter + junit-jupiter-engine + 5.9.3 + + + org.junit.jupiter + junit-jupiter-migrationsupport + 5.9.3 + + + org.junit.jupiter + junit-jupiter-params + 5.9.3 + + + org.junit.platform + junit-platform-commons + 1.9.3 + + + org.junit.platform + junit-platform-console + 1.9.3 + + + org.junit.platform + junit-platform-engine + 1.9.3 + + + org.junit.platform + junit-platform-jfr + 1.9.3 + + + org.junit.platform + junit-platform-launcher + 1.9.3 + + + org.junit.platform + junit-platform-reporting + 1.9.3 + + + org.junit.platform + junit-platform-runner + 1.9.3 + + + org.junit.platform + junit-platform-suite + 1.9.3 + + + org.junit.platform + junit-platform-suite-api + 1.9.3 + + + org.junit.platform + junit-platform-suite-commons + 1.9.3 + + + org.junit.platform + junit-platform-suite-engine + 1.9.3 + + + org.junit.platform + junit-platform-testkit + 1.9.3 + + + org.junit.vintage + junit-vintage-engine + 5.9.3 + + + org.jetbrains.kotlin + kotlin-stdlib + 1.8.21 + + + org.jetbrains.kotlin + kotlin-stdlib-jdk7 + 1.8.21 + + + org.jetbrains.kotlin + kotlin-stdlib-jdk8 + 1.8.21 + + + org.jetbrains.kotlin + kotlin-stdlib-js + 1.8.21 + + + org.jetbrains.kotlin + kotlin-stdlib-common + 1.8.21 + + + org.jetbrains.kotlin + kotlin-reflect + 1.8.21 + + + org.jetbrains.kotlin + kotlin-osgi-bundle + 1.8.21 + + + org.jetbrains.kotlin + kotlin-test + 1.8.21 + + + org.jetbrains.kotlin + kotlin-test-junit + 1.8.21 + + + org.jetbrains.kotlin + kotlin-test-junit5 + 1.8.21 + + + org.jetbrains.kotlin + kotlin-test-testng + 1.8.21 + + + org.jetbrains.kotlin + kotlin-test-js + 1.8.21 + + + org.jetbrains.kotlin + kotlin-test-common + 1.8.21 + + + org.jetbrains.kotlin + kotlin-test-annotations-common + 1.8.21 + + + org.jetbrains.kotlin + kotlin-main-kts + 1.8.21 + + + org.jetbrains.kotlin + kotlin-script-runtime + 1.8.21 + + + org.jetbrains.kotlin + kotlin-script-util + 1.8.21 + + + org.jetbrains.kotlin + kotlin-scripting-common + 1.8.21 + + + org.jetbrains.kotlin + kotlin-scripting-jvm + 1.8.21 + + + org.jetbrains.kotlin + kotlin-scripting-jvm-host + 1.8.21 + + + org.jetbrains.kotlin + kotlin-scripting-ide-services + 1.8.21 + + + org.jetbrains.kotlin + kotlin-compiler + 1.8.21 + + + org.jetbrains.kotlin + kotlin-compiler-embeddable + 1.8.21 + + + org.jetbrains.kotlin + kotlin-daemon-client + 1.8.21 + + + org.jetbrains.kotlinx + kotlinx-coroutines-android + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-core-jvm + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-core + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-debug + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-guava + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-javafx + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-jdk8 + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-jdk9 + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-play-services + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-reactive + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-reactor + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-rx2 + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-rx3 + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-slf4j + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-swing + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-test-jvm + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-test + 1.6.4 + + + org.apache.logging.log4j + log4j-1.2-api + 2.20.0 + + + org.apache.logging.log4j + log4j-api + 2.20.0 + + + org.apache.logging.log4j + log4j-api-test + 2.20.0 + + + org.apache.logging.log4j + log4j-appserver + 2.20.0 + + + org.apache.logging.log4j + log4j-cassandra + 2.20.0 + + + org.apache.logging.log4j + log4j-core + 2.20.0 + + + org.apache.logging.log4j + log4j-core-test + 2.20.0 + + + org.apache.logging.log4j + log4j-couchdb + 2.20.0 + + + org.apache.logging.log4j + log4j-docker + 2.20.0 + + + org.apache.logging.log4j + log4j-flume-ng + 2.20.0 + + + org.apache.logging.log4j + log4j-iostreams + 2.20.0 + + + org.apache.logging.log4j + log4j-jakarta-smtp + 2.20.0 + + + org.apache.logging.log4j + log4j-jakarta-web + 2.20.0 + + + org.apache.logging.log4j + log4j-jcl + 2.20.0 + + + org.apache.logging.log4j + log4j-jmx-gui + 2.20.0 + + + org.apache.logging.log4j + log4j-jpa + 2.20.0 + + + org.apache.logging.log4j + log4j-jpl + 2.20.0 + + + org.apache.logging.log4j + log4j-jul + 2.20.0 + + + org.apache.logging.log4j + log4j-kubernetes + 2.20.0 + + + org.apache.logging.log4j + log4j-layout-template-json + 2.20.0 + + + org.apache.logging.log4j + log4j-layout-template-json-test + 2.20.0 + + + org.apache.logging.log4j + log4j-mongodb3 + 2.20.0 + + + org.apache.logging.log4j + log4j-mongodb4 + 2.20.0 + + + org.apache.logging.log4j + log4j-slf4j2-impl + 2.20.0 + + + org.apache.logging.log4j + log4j-slf4j-impl + 2.20.0 + + + org.apache.logging.log4j + log4j-spring-boot + 2.20.0 + + + org.apache.logging.log4j + log4j-spring-cloud-config-client + 2.20.0 + + + org.apache.logging.log4j + log4j-taglib + 2.20.0 + + + org.apache.logging.log4j + log4j-to-jul + 2.20.0 + + + org.apache.logging.log4j + log4j-to-slf4j + 2.20.0 + + + org.apache.logging.log4j + log4j-web + 2.20.0 + + + org.apache.maven.plugin-tools + maven-plugin-annotations + 3.6.4 + + + io.micrometer + micrometer-commons + 1.11.0 + + + io.micrometer + micrometer-core + 1.11.0 + + + io.micrometer + micrometer-jetty11 + 1.11.0 + + + io.micrometer + micrometer-observation + 1.11.0 + + + io.micrometer + micrometer-observation-test + 1.11.0 + + + io.micrometer + micrometer-osgi-test + 1.11.0 + + + io.micrometer + micrometer-registry-appoptics + 1.11.0 + + + io.micrometer + micrometer-registry-atlas + 1.11.0 + + + io.micrometer + micrometer-registry-azure-monitor + 1.11.0 + + + io.micrometer + micrometer-registry-cloudwatch + 1.11.0 + + + io.micrometer + micrometer-registry-cloudwatch2 + 1.11.0 + + + io.micrometer + micrometer-registry-datadog + 1.11.0 + + + io.micrometer + micrometer-registry-dynatrace + 1.11.0 + + + io.micrometer + micrometer-registry-elastic + 1.11.0 + + + io.micrometer + micrometer-registry-ganglia + 1.11.0 + + + io.micrometer + micrometer-registry-graphite + 1.11.0 + + + io.micrometer + micrometer-registry-health + 1.11.0 + + + io.micrometer + micrometer-registry-humio + 1.11.0 + + + io.micrometer + micrometer-registry-influx + 1.11.0 + + + io.micrometer + micrometer-registry-jmx + 1.11.0 + + + io.micrometer + micrometer-registry-kairos + 1.11.0 + + + io.micrometer + micrometer-registry-new-relic + 1.11.0 + + + io.micrometer + micrometer-registry-opentsdb + 1.11.0 + + + io.micrometer + micrometer-registry-otlp + 1.11.0 + + + io.micrometer + micrometer-registry-prometheus + 1.11.0 + + + io.micrometer + micrometer-registry-signalfx + 1.11.0 + + + io.micrometer + micrometer-registry-statsd + 1.11.0 + + + io.micrometer + micrometer-registry-wavefront + 1.11.0 + + + io.micrometer + micrometer-test + 1.11.0 + + + io.micrometer + micrometer-tracing + 1.1.1 + + + io.micrometer + micrometer-tracing-bridge-brave + 1.1.1 + + + io.micrometer + micrometer-tracing-bridge-otel + 1.1.1 + + + io.micrometer + micrometer-tracing-integration-test + 1.1.1 + + + io.micrometer + micrometer-tracing-reporter-wavefront + 1.1.1 + + + io.micrometer + micrometer-tracing-test + 1.1.1 + + + org.mockito + mockito-core + 5.3.1 + + + org.mockito + mockito-android + 5.3.1 + + + org.mockito + mockito-errorprone + 5.3.1 + + + org.mockito + mockito-junit-jupiter + 5.3.1 + + + org.mockito + mockito-proxy + 5.3.1 + + + org.mockito + mockito-subclass + 5.3.1 + + + io.netty + netty-buffer + 4.1.92.Final + + + io.netty + netty-codec + 4.1.92.Final + + + io.netty + netty-codec-dns + 4.1.92.Final + + + io.netty + netty-codec-haproxy + 4.1.92.Final + + + io.netty + netty-codec-http + 4.1.92.Final + + + io.netty + netty-codec-http2 + 4.1.92.Final + + + io.netty + netty-codec-memcache + 4.1.92.Final + + + io.netty + netty-codec-mqtt + 4.1.92.Final + + + io.netty + netty-codec-redis + 4.1.92.Final + + + io.netty + netty-codec-smtp + 4.1.92.Final + + + io.netty + netty-codec-socks + 4.1.92.Final + + + io.netty + netty-codec-stomp + 4.1.92.Final + + + io.netty + netty-codec-xml + 4.1.92.Final + + + io.netty + netty-common + 4.1.92.Final + + + io.netty + netty-dev-tools + 4.1.92.Final + + + io.netty + netty-handler + 4.1.92.Final + + + io.netty + netty-handler-proxy + 4.1.92.Final + + + io.netty + netty-handler-ssl-ocsp + 4.1.92.Final + + + io.netty + netty-resolver + 4.1.92.Final + + + io.netty + netty-resolver-dns + 4.1.92.Final + + + io.netty + netty-transport + 4.1.92.Final + + + io.netty + netty-transport-rxtx + 4.1.92.Final + + + io.netty + netty-transport-sctp + 4.1.92.Final + + + io.netty + netty-transport-udt + 4.1.92.Final + + + io.netty + netty-example + 4.1.92.Final + + + io.netty + netty-all + 4.1.92.Final + + + io.netty + netty-resolver-dns-classes-macos + 4.1.92.Final + + + io.netty + netty-resolver-dns-native-macos + 4.1.92.Final + + + io.netty + netty-resolver-dns-native-macos + 4.1.92.Final + osx-x86_64 + + + io.netty + netty-resolver-dns-native-macos + 4.1.92.Final + osx-aarch_64 + + + io.netty + netty-transport-native-unix-common + 4.1.92.Final + + + io.netty + netty-transport-native-unix-common + 4.1.92.Final + linux-aarch_64 + + + io.netty + netty-transport-native-unix-common + 4.1.92.Final + linux-x86_64 + + + io.netty + netty-transport-native-unix-common + 4.1.92.Final + osx-x86_64 + + + io.netty + netty-transport-native-unix-common + 4.1.92.Final + osx-aarch_64 + + + io.netty + netty-transport-classes-epoll + 4.1.92.Final + + + io.netty + netty-transport-native-epoll + 4.1.92.Final + + + io.netty + netty-transport-native-epoll + 4.1.92.Final + linux-aarch_64 + + + io.netty + netty-transport-native-epoll + 4.1.92.Final + linux-x86_64 + + + io.netty + netty-transport-classes-kqueue + 4.1.92.Final + + + io.netty + netty-transport-native-kqueue + 4.1.92.Final + + + io.netty + netty-transport-native-kqueue + 4.1.92.Final + osx-x86_64 + + + io.netty + netty-transport-native-kqueue + 4.1.92.Final + osx-aarch_64 + + + io.netty + netty-tcnative-classes + 2.0.60.Final + + + io.netty + netty-tcnative + 2.0.60.Final + linux-x86_64 + + + io.netty + netty-tcnative + 2.0.60.Final + linux-x86_64-fedora + + + io.netty + netty-tcnative + 2.0.60.Final + linux-aarch_64-fedora + + + io.netty + netty-tcnative + 2.0.60.Final + osx-x86_64 + + + io.netty + netty-tcnative-boringssl-static + 2.0.60.Final + + + io.netty + netty-tcnative-boringssl-static + 2.0.60.Final + linux-x86_64 + + + io.netty + netty-tcnative-boringssl-static + 2.0.60.Final + linux-aarch_64 + + + io.netty + netty-tcnative-boringssl-static + 2.0.60.Final + osx-x86_64 + + + io.netty + netty-tcnative-boringssl-static + 2.0.60.Final + osx-aarch_64 + + + io.netty + netty-tcnative-boringssl-static + 2.0.60.Final + windows-x86_64 + + + com.squareup.okhttp3 + mockwebserver + 4.10.0 + + + com.squareup.okhttp3 + okcurl + 4.10.0 + + + com.squareup.okhttp3 + okhttp + 4.10.0 + + + com.squareup.okhttp3 + okhttp-brotli + 4.10.0 + + + com.squareup.okhttp3 + okhttp-dnsoverhttps + 4.10.0 + + + com.squareup.okhttp3 + logging-interceptor + 4.10.0 + + + com.squareup.okhttp3 + okhttp-sse + 4.10.0 + + + com.squareup.okhttp3 + okhttp-tls + 4.10.0 + + + com.squareup.okhttp3 + okhttp-urlconnection + 4.10.0 + + + io.opentelemetry + opentelemetry-context + 1.25.0 + + + io.opentelemetry + opentelemetry-api + 1.25.0 + + + io.opentelemetry + opentelemetry-exporter-common + 1.25.0 + + + io.opentelemetry + opentelemetry-exporter-jaeger + 1.25.0 + + + io.opentelemetry + opentelemetry-exporter-jaeger-thrift + 1.25.0 + + + io.opentelemetry + opentelemetry-exporter-logging + 1.25.0 + + + io.opentelemetry + opentelemetry-exporter-logging-otlp + 1.25.0 + + + io.opentelemetry + opentelemetry-exporter-zipkin + 1.25.0 + + + io.opentelemetry + opentelemetry-extension-kotlin + 1.25.0 + + + io.opentelemetry + opentelemetry-extension-trace-propagators + 1.25.0 + + + io.opentelemetry + opentelemetry-sdk + 1.25.0 + + + io.opentelemetry + opentelemetry-sdk-common + 1.25.0 + + + io.opentelemetry + opentelemetry-sdk-metrics + 1.25.0 + + + io.opentelemetry + opentelemetry-sdk-testing + 1.25.0 + + + io.opentelemetry + opentelemetry-sdk-trace + 1.25.0 + + + io.opentelemetry + opentelemetry-sdk-extension-autoconfigure-spi + 1.25.0 + + + io.opentelemetry + opentelemetry-sdk-extension-jaeger-remote-sampler + 1.25.0 + + + io.opentelemetry + opentelemetry-exporter-otlp + 1.25.0 + + + io.opentelemetry + opentelemetry-exporter-otlp-common + 1.25.0 + + + io.opentelemetry + opentelemetry-sdk-extension-aws + 1.19.0 + + + io.opentelemetry + opentelemetry-exporter-jaeger-proto + 1.17.0 + + + io.opentelemetry + opentelemetry-extension-annotations + 1.18.0 + + + io.opentelemetry + opentelemetry-sdk-extension-resources + 1.19.0 + + + io.opentelemetry + opentelemetry-extension-aws + 1.20.1 + + + com.oracle.database.jdbc + ojdbc11 + 21.9.0.0 + + + com.oracle.database.jdbc + ojdbc8 + 21.9.0.0 + + + com.oracle.database.jdbc + ucp + 21.9.0.0 + + + com.oracle.database.jdbc + ucp11 + 21.9.0.0 + + + com.oracle.database.jdbc + rsi + 21.9.0.0 + + + com.oracle.database.security + oraclepki + 21.9.0.0 + + + com.oracle.database.security + osdt_core + 21.9.0.0 + + + com.oracle.database.security + osdt_cert + 21.9.0.0 + + + com.oracle.database.ha + simplefan + 21.9.0.0 + + + com.oracle.database.ha + ons + 21.9.0.0 + + + com.oracle.database.nls + orai18n + 21.9.0.0 + + + com.oracle.database.xml + xdb + 21.9.0.0 + + + com.oracle.database.xml + xmlparserv2 + 21.9.0.0 + + + com.oracle.database.jdbc.debug + ojdbc11_g + 21.9.0.0 + + + com.oracle.database.jdbc.debug + ojdbc8_g + 21.9.0.0 + + + com.oracle.database.jdbc.debug + ojdbc8dms_g + 21.9.0.0 + + + com.oracle.database.jdbc.debug + ojdbc11dms_g + 21.9.0.0 + + + com.oracle.database.observability + dms + 21.9.0.0 + + + com.oracle.database.observability + ojdbc11dms + 21.9.0.0 + + + com.oracle.database.observability + ojdbc8dms + 21.9.0.0 + + + com.oracle.database.jdbc + ojdbc11-production + 21.9.0.0 + pom + + + com.oracle.database.jdbc + ojdbc8-production + 21.9.0.0 + pom + + + com.oracle.database.observability + ojdbc8-observability + 21.9.0.0 + pom + + + com.oracle.database.observability + ojdbc11-observability + 21.9.0.0 + pom + + + com.oracle.database.jdbc.debug + ojdbc8-debug + 21.9.0.0 + pom + + + com.oracle.database.jdbc.debug + ojdbc11-debug + 21.9.0.0 + pom + + + com.oracle.database.jdbc.debug + ojdbc8-observability-debug + 21.9.0.0 + pom + + + com.oracle.database.jdbc.debug + ojdbc11-observability-debug + 21.9.0.0 + pom + + + io.prometheus + simpleclient + 0.16.0 + + + io.prometheus + simpleclient_caffeine + 0.16.0 + + + io.prometheus + simpleclient_common + 0.16.0 + + + io.prometheus + simpleclient_dropwizard + 0.16.0 + + + io.prometheus + simpleclient_graphite_bridge + 0.16.0 + + + io.prometheus + simpleclient_guava + 0.16.0 + + + io.prometheus + simpleclient_hibernate + 0.16.0 + + + io.prometheus + simpleclient_hotspot + 0.16.0 + + + io.prometheus + simpleclient_httpserver + 0.16.0 + + + io.prometheus + simpleclient_tracer_common + 0.16.0 + + + io.prometheus + simpleclient_jetty + 0.16.0 + + + io.prometheus + simpleclient_jetty_jdk8 + 0.16.0 + + + io.prometheus + simpleclient_log4j + 0.16.0 + + + io.prometheus + simpleclient_log4j2 + 0.16.0 + + + io.prometheus + simpleclient_logback + 0.16.0 + + + io.prometheus + simpleclient_pushgateway + 0.16.0 + + + io.prometheus + simpleclient_servlet + 0.16.0 + + + io.prometheus + simpleclient_servlet_jakarta + 0.16.0 + + + io.prometheus + simpleclient_spring_boot + 0.16.0 + + + io.prometheus + simpleclient_spring_web + 0.16.0 + + + io.prometheus + simpleclient_tracer_otel + 0.16.0 + + + io.prometheus + simpleclient_tracer_otel_agent + 0.16.0 + + + io.prometheus + simpleclient_vertx + 0.16.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 + + + io.projectreactor + reactor-core + 3.5.6 + + + io.projectreactor + reactor-test + 3.5.6 + + + io.projectreactor + reactor-tools + 3.5.6 + + + io.projectreactor + reactor-core-micrometer + 1.0.6 + + + io.projectreactor.addons + reactor-extra + 3.5.1 + + + io.projectreactor.addons + reactor-adapter + 3.5.1 + + + io.projectreactor.netty + reactor-netty + 1.1.7 + + + io.projectreactor.netty + reactor-netty-core + 1.1.7 + + + io.projectreactor.netty + reactor-netty-http + 1.1.7 + + + io.projectreactor.netty + reactor-netty-http-brave + 1.1.7 + + + io.projectreactor.addons + reactor-pool + 1.0.0 + + + io.projectreactor.addons + reactor-pool-micrometer + 0.1.0 + + + io.projectreactor.kotlin + reactor-kotlin-extensions + 1.2.2 + + + io.projectreactor.kafka + reactor-kafka + 1.3.18 + + + io.rest-assured + json-schema-validator + 5.3.0 + + + io.rest-assured + rest-assured-common + 5.3.0 + + + io.rest-assured + json-path + 5.3.0 + + + io.rest-assured + xml-path + 5.3.0 + + + io.rest-assured + rest-assured + 5.3.0 + + + io.rest-assured + spring-commons + 5.3.0 + + + io.rest-assured + spring-mock-mvc + 5.3.0 + + + io.rest-assured + scala-support + 5.3.0 + + + io.rest-assured + spring-web-test-client + 5.3.0 + + + io.rest-assured + kotlin-extensions + 5.3.0 + + + io.rest-assured + spring-mock-mvc-kotlin-extensions + 5.3.0 + + + io.rest-assured + rest-assured-all + 5.3.0 + + + io.rsocket + rsocket-core + 1.1.3 + + + io.rsocket + rsocket-load-balancer + 1.1.3 + + + io.rsocket + rsocket-micrometer + 1.1.3 + + + io.rsocket + rsocket-test + 1.1.3 + + + io.rsocket + rsocket-transport-local + 1.1.3 + + + io.rsocket + rsocket-transport-netty + 1.1.3 + + + org.springframework.batch + spring-batch-core + 5.0.2 + + + org.springframework.batch + spring-batch-infrastructure + 5.0.2 + + + org.springframework.batch + spring-batch-integration + 5.0.2 + + + org.springframework.batch + spring-batch-test + 5.0.2 + + + org.springframework.data + spring-data-cassandra + 4.1.0 + + + org.springframework.data + spring-data-commons + 3.1.0 + + + org.springframework.data + spring-data-couchbase + 5.1.0 + + + org.springframework.data + spring-data-elasticsearch + 5.1.0 + + + org.springframework.data + spring-data-jdbc + 3.1.0 + + + org.springframework.data + spring-data-r2dbc + 3.1.0 + + + org.springframework.data + spring-data-relational + 3.1.0 + + + org.springframework.data + spring-data-jpa + 3.1.0 + + + org.springframework.data + spring-data-envers + 3.1.0 + + + org.springframework.data + spring-data-mongodb + 4.1.0 + + + org.springframework.data + spring-data-neo4j + 7.1.0 + + + org.springframework.data + spring-data-redis + 3.1.0 + + + org.springframework.data + spring-data-rest-webmvc + 4.1.0 + + + org.springframework.data + spring-data-rest-core + 4.1.0 + + + org.springframework.data + spring-data-rest-hal-explorer + 4.1.0 + + + org.springframework.data + spring-data-keyvalue + 3.1.0 + + + org.springframework.data + spring-data-ldap + 3.1.0 + + + org.springframework + spring-aop + 6.0.9 + + + org.springframework + spring-aspects + 6.0.9 + + + org.springframework + spring-beans + 6.0.9 + + + org.springframework + spring-context + 6.0.9 + + + org.springframework + spring-context-indexer + 6.0.9 + + + org.springframework + spring-context-support + 6.0.9 + + + org.springframework + spring-core + 6.0.9 + + + org.springframework + spring-core-test + 6.0.9 + + + org.springframework + spring-expression + 6.0.9 + + + org.springframework + spring-instrument + 6.0.9 + + + org.springframework + spring-jcl + 6.0.9 + + + org.springframework + spring-jdbc + 6.0.9 + + + org.springframework + spring-jms + 6.0.9 + + + org.springframework + spring-messaging + 6.0.9 + + + org.springframework + spring-orm + 6.0.9 + + + org.springframework + spring-oxm + 6.0.9 + + + org.springframework + spring-r2dbc + 6.0.9 + + + org.springframework + spring-test + 6.0.9 + + + org.springframework + spring-tx + 6.0.9 + + + org.springframework + spring-web + 6.0.9 + + + org.springframework + spring-webflux + 6.0.9 + + + org.springframework + spring-webmvc + 6.0.9 + + + org.springframework + spring-websocket + 6.0.9 + + + org.springframework.integration + spring-integration-amqp + 6.1.0 + + + org.springframework.integration + spring-integration-camel + 6.1.0 + + + org.springframework.integration + spring-integration-cassandra + 6.1.0 + + + org.springframework.integration + spring-integration-core + 6.1.0 + + + org.springframework.integration + spring-integration-event + 6.1.0 + + + org.springframework.integration + spring-integration-feed + 6.1.0 + + + org.springframework.integration + spring-integration-file + 6.1.0 + + + org.springframework.integration + spring-integration-ftp + 6.1.0 + + + org.springframework.integration + spring-integration-graphql + 6.1.0 + + + org.springframework.integration + spring-integration-groovy + 6.1.0 + + + org.springframework.integration + spring-integration-hazelcast + 6.1.0 + + + org.springframework.integration + spring-integration-http + 6.1.0 + + + org.springframework.integration + spring-integration-ip + 6.1.0 + + + org.springframework.integration + spring-integration-jdbc + 6.1.0 + + + org.springframework.integration + spring-integration-jms + 6.1.0 + + + org.springframework.integration + spring-integration-jmx + 6.1.0 + + + org.springframework.integration + spring-integration-jpa + 6.1.0 + + + org.springframework.integration + spring-integration-kafka + 6.1.0 + + + org.springframework.integration + spring-integration-mail + 6.1.0 + + + org.springframework.integration + spring-integration-mongodb + 6.1.0 + + + org.springframework.integration + spring-integration-mqtt + 6.1.0 + + + org.springframework.integration + spring-integration-r2dbc + 6.1.0 + + + org.springframework.integration + spring-integration-redis + 6.1.0 + + + org.springframework.integration + spring-integration-rsocket + 6.1.0 + + + org.springframework.integration + spring-integration-scripting + 6.1.0 + + + org.springframework.integration + spring-integration-security + 6.1.0 + + + org.springframework.integration + spring-integration-sftp + 6.1.0 + + + org.springframework.integration + spring-integration-smb + 6.1.0 + + + org.springframework.integration + spring-integration-stomp + 6.1.0 + + + org.springframework.integration + spring-integration-stream + 6.1.0 + + + org.springframework.integration + spring-integration-syslog + 6.1.0 + + + org.springframework.integration + spring-integration-test + 6.1.0 + + + org.springframework.integration + spring-integration-test-support + 6.1.0 + + + org.springframework.integration + spring-integration-webflux + 6.1.0 + + + org.springframework.integration + spring-integration-websocket + 6.1.0 + + + org.springframework.integration + spring-integration-ws + 6.1.0 + + + org.springframework.integration + spring-integration-xml + 6.1.0 + + + org.springframework.integration + spring-integration-xmpp + 6.1.0 + + + org.springframework.integration + spring-integration-zeromq + 6.1.0 + + + org.springframework.integration + spring-integration-zip + 6.1.0 + + + org.springframework.integration + spring-integration-zookeeper + 6.1.0 + + + org.springframework.restdocs + spring-restdocs-asciidoctor + 3.0.0 + + + org.springframework.restdocs + spring-restdocs-core + 3.0.0 + + + org.springframework.restdocs + spring-restdocs-mockmvc + 3.0.0 + + + org.springframework.restdocs + spring-restdocs-restassured + 3.0.0 + + + org.springframework.restdocs + spring-restdocs-webtestclient + 3.0.0 + + + org.springframework.security + spring-security-acl + 6.1.0 + + + org.springframework.security + spring-security-aspects + 6.1.0 + + + org.springframework.security + spring-security-cas + 6.1.0 + + + org.springframework.security + spring-security-config + 6.1.0 + + + org.springframework.security + spring-security-core + 6.1.0 + + + org.springframework.security + spring-security-crypto + 6.1.0 + + + org.springframework.security + spring-security-data + 6.1.0 + + + org.springframework.security + spring-security-ldap + 6.1.0 + + + org.springframework.security + spring-security-messaging + 6.1.0 + + + org.springframework.security + spring-security-oauth2-client + 6.1.0 + + + org.springframework.security + spring-security-oauth2-core + 6.1.0 + + + org.springframework.security + spring-security-oauth2-jose + 6.1.0 + + + org.springframework.security + spring-security-oauth2-resource-server + 6.1.0 + + + org.springframework.security + spring-security-rsocket + 6.1.0 + + + org.springframework.security + spring-security-saml2-service-provider + 6.1.0 + + + org.springframework.security + spring-security-taglibs + 6.1.0 + + + org.springframework.security + spring-security-test + 6.1.0 + + + org.springframework.security + spring-security-web + 6.1.0 + + + org.springframework.session + spring-session-core + 3.1.0 + + + org.springframework.session + spring-session-data-mongodb + 3.1.0 + + + org.springframework.session + spring-session-data-redis + 3.1.0 + + + org.springframework.session + spring-session-hazelcast + 3.1.0 + + + org.springframework.session + spring-session-jdbc + 3.1.0 + + + org.springframework.ws + spring-ws-core + 4.0.4 + + + org.springframework.ws + spring-ws-security + 4.0.4 + + + org.springframework.ws + spring-ws-support + 4.0.4 + + + org.springframework.ws + spring-ws-test + 4.0.4 + + + org.springframework.ws + spring-xml + 4.0.4 + + + + + + org.springframework.boot + spring-boot-starter-test + 3.1.0 + compile + + + junit + junit + + + + + org.testcontainers + junit-jupiter + 1.18.3 + compile + + + org.testcontainers + postgresql + 1.18.3 + compile + + + + + repo.jenkins-ci.org + https://repo.jenkins-ci.org/public/ + + + + false + + central + Central Repository + https://repo.maven.apache.org/maven2 + + + + + repo.jenkins-ci.org + https://repo.jenkins-ci.org/public/ + + + + never + + + false + + central + Central Repository + https://repo.maven.apache.org/maven2 + + + + D:\jenkins-oss\plugin-health-scoring\test\src\main\java + D:\jenkins-oss\plugin-health-scoring\test\src\main\scripts + D:\jenkins-oss\plugin-health-scoring\test\src\test\java + D:\jenkins-oss\plugin-health-scoring\test\target\classes + D:\jenkins-oss\plugin-health-scoring\test\target\test-classes + + + D:\jenkins-oss\plugin-health-scoring\test\src\main\resources + + + + + D:\jenkins-oss\plugin-health-scoring\test\src\test\resources + + + D:\jenkins-oss\plugin-health-scoring\test\target + plugin-health-scoring-test-2.4.3-SNAPSHOT + + + + maven-antrun-plugin + 1.3 + + + maven-assembly-plugin + 2.2-beta-5 + + + maven-dependency-plugin + 2.8 + + + maven-checkstyle-plugin + 3.3.0 + + + com.puppycrawl.tools + checkstyle + 10.12.0 + + + + false + true + analytics/checkstyle-configuration.xml + + + + maven-compiler-plugin + 3.11.0 + + 17 + + -parameters + + + + + maven-failsafe-plugin + 3.1.0 + + + + integration-test + verify + + + D:\jenkins-oss\plugin-health-scoring\test\target\classes + + + + + D:\jenkins-oss\plugin-health-scoring\test\target\classes + + + + maven-release-plugin + 3.0.1 + + verify + true + v@{project.version} + + + + maven-surefire-plugin + 3.1.0 + + + com.github.spotbugs + spotbugs-maven-plugin + 4.7.3.4 + + analytics/spotbugs-exclude.xml + Max + + + + org.jacoco + jacoco-maven-plugin + 0.8.10 + + + XML + + + + + + + + maven-failsafe-plugin + 3.1.0 + + + + integration-test + verify + + + D:\jenkins-oss\plugin-health-scoring\test\target\classes + + + + + D:\jenkins-oss\plugin-health-scoring\test\target\classes + + + + org.jacoco + jacoco-maven-plugin + 0.8.10 + + + default-prepare-agent + + prepare-agent + + + + XML + + + + + default-prepare-agent-integration + + prepare-agent-integration + + + + XML + + + + + merge-data-files + post-integration-test + + merge + + + + + D:\jenkins-oss\plugin-health-scoring\test\target + + jacoco.exec + jacoco-it.exec + + + + D:\jenkins-oss\plugin-health-scoring\test\target/jacoco-merged.exec + + XML + + + + + merged-report + post-integration-test + + report + + + D:\jenkins-oss\plugin-health-scoring\test\target/jacoco-merged.exec + + XML + + + + + + + XML + + + + + org.codehaus.mojo + tidy-maven-plugin + 1.2.0 + + + tidy-pom + validate + + pom + + + + + + maven-clean-plugin + 2.5 + + + default-clean + clean + + clean + + + + + + maven-resources-plugin + 2.6 + + + default-testResources + process-test-resources + + testResources + + + + default-resources + process-resources + + resources + + + + + + maven-jar-plugin + 2.4 + + + default-jar + package + + jar + + + + + + maven-compiler-plugin + 3.11.0 + + + default-compile + compile + + compile + + + 17 + + -parameters + + + + + default-testCompile + test-compile + + testCompile + + + 17 + + -parameters + + + + + + 17 + + -parameters + + + + + maven-surefire-plugin + 3.1.0 + + + default-test + test + + test + + + + + + maven-install-plugin + 2.4 + + + default-install + install + + install + + + + + + maven-deploy-plugin + 2.7 + + + default-deploy + deploy + + deploy + + + + + + maven-site-plugin + 3.3 + + + default-site + site + + site + + + D:\jenkins-oss\plugin-health-scoring\test\target\site + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + + + + + default-deploy + site-deploy + + deploy + + + D:\jenkins-oss\plugin-health-scoring\test\target\site + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + + + + + + D:\jenkins-oss\plugin-health-scoring\test\target\site + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + + + + + + + D:\jenkins-oss\plugin-health-scoring\test\target\site + + + + + + + + + + 4.0.0 + + io.jenkins.pluginhealth.scoring + plugin-health-scoring-parent + 2.4.3-SNAPSHOT + ../ + + io.jenkins.pluginhealth.scoring + plugin-health-scoring-core + 2.4.3-SNAPSHOT + Plugin Health Scoring :: Core + Build and provide health indicators on plugins of the Jenkins ecosystem + 2022 + + Jenkins Infra + https://github.com/jenkins-infra + + + + The MIT license + https://opensource.org/licenses/MIT + repo + + + + + adi10hero + Aditya Srivastava + + + alecharp + Adrien Lecharpentier + + + dheerajodha + Dheeraj Singh Jodha + + + jleon33 + Jake Leon + + + + scm:git:https://github.com/jenkins-infra/plugin-health-scoring.git/plugin-health-scoring-core + scm:git:git@github.com:jenkins-infra/plugin-health-scoring.git/plugin-health-scoring-core + https://github.com/jenkins-infra/plugin-health-scoring/plugin-health-scoring-core + + + + maven.jenkins-ci.org + https://repo.jenkins-ci.org/releases/ + + + maven.jenkins-ci.org + https://repo.jenkins-ci.org/snapshots/ + + + + 17 + 0.11.5 + 17 + 17 + 18.10.0 + UTF-8 + UTF-8 + UTF-8 + 3.1.0 + 1.18.3 + ca1a380d840c676152fbf8635a82d838113fe77e1665466699a4e106df4930d2 + 3.2.4 + false + 1.22.19 + + + + + io.jenkins.pluginhealth.scoring + plugin-health-scoring-core + 2.4.3-SNAPSHOT + + + io.jenkins.pluginhealth.scoring + plugin-health-scoring-test + 2.4.3-SNAPSHOT + + + org.kohsuke + github-api + 1.315 + + + io.jsonwebtoken + jjwt-api + 0.11.5 + + + io.jsonwebtoken + jjwt-impl + 0.11.5 + + + io.jsonwebtoken + jjwt-jackson + 0.11.5 + + + org.apache.maven + maven-model + 3.9.2 + + + org.testcontainers + azure + 1.18.3 + + + org.testcontainers + cassandra + 1.18.3 + + + org.testcontainers + clickhouse + 1.18.3 + + + org.testcontainers + cockroachdb + 1.18.3 + + + org.testcontainers + consul + 1.18.3 + + + org.testcontainers + couchbase + 1.18.3 + + + org.testcontainers + cratedb + 1.18.3 + + + org.testcontainers + database-commons + 1.18.3 + + + org.testcontainers + db2 + 1.18.3 + + + org.testcontainers + dynalite + 1.18.3 + + + org.testcontainers + elasticsearch + 1.18.3 + + + org.testcontainers + gcloud + 1.18.3 + + + org.testcontainers + hivemq + 1.18.3 + + + org.testcontainers + influxdb + 1.18.3 + + + org.testcontainers + jdbc + 1.18.3 + + + org.testcontainers + junit-jupiter + 1.18.3 + + + org.testcontainers + k3s + 1.18.3 + + + org.testcontainers + kafka + 1.18.3 + + + org.testcontainers + localstack + 1.18.3 + + + org.testcontainers + mariadb + 1.18.3 + + + org.testcontainers + mockserver + 1.18.3 + + + org.testcontainers + mongodb + 1.18.3 + + + org.testcontainers + mssqlserver + 1.18.3 + + + org.testcontainers + mysql + 1.18.3 + + + org.testcontainers + neo4j + 1.18.3 + + + org.testcontainers + nginx + 1.18.3 + + + org.testcontainers + oracle-xe + 1.18.3 + + + org.testcontainers + orientdb + 1.18.3 + + + org.testcontainers + postgresql + 1.18.3 + + + org.testcontainers + presto + 1.18.3 + + + org.testcontainers + pulsar + 1.18.3 + + + org.testcontainers + questdb + 1.18.3 + + + org.testcontainers + r2dbc + 1.18.3 + + + org.testcontainers + rabbitmq + 1.18.3 + + + org.testcontainers + redpanda + 1.18.3 + + + org.testcontainers + selenium + 1.18.3 + + + org.testcontainers + solace + 1.18.3 + + + org.testcontainers + solr + 1.18.3 + + + org.testcontainers + spock + 1.18.3 + + + org.testcontainers + testcontainers + 1.18.3 + + + org.testcontainers + tidb + 1.18.3 + + + org.testcontainers + toxiproxy + 1.18.3 + + + org.testcontainers + trino + 1.18.3 + + + org.testcontainers + vault + 1.18.3 + + + org.testcontainers + yugabytedb + 1.18.3 + + + org.apache.activemq + activemq-amqp + 5.18.1 + + + org.apache.activemq + activemq-blueprint + 5.18.1 + + + org.apache.activemq + activemq-broker + 5.18.1 + + + org.apache.activemq + activemq-client + 5.18.1 + + + org.apache.activemq + activemq-client-jakarta + 5.18.1 + + + org.apache.activemq + activemq-console + 5.18.1 + + + commons-logging + commons-logging + + + + + org.apache.activemq + activemq-http + 5.18.1 + + + org.apache.activemq + activemq-jaas + 5.18.1 + + + org.apache.activemq + activemq-jdbc-store + 5.18.1 + + + org.apache.activemq + activemq-jms-pool + 5.18.1 + + + org.apache.activemq + activemq-kahadb-store + 5.18.1 + + + org.apache.activemq + activemq-karaf + 5.18.1 + + + org.apache.activemq + activemq-log4j-appender + 5.18.1 + + + org.apache.activemq + activemq-mqtt + 5.18.1 + + + org.apache.activemq + activemq-openwire-generator + 5.18.1 + + + org.apache.activemq + activemq-openwire-legacy + 5.18.1 + + + org.apache.activemq + activemq-osgi + 5.18.1 + + + org.apache.activemq + activemq-partition + 5.18.1 + + + org.apache.activemq + activemq-pool + 5.18.1 + + + org.apache.activemq + activemq-ra + 5.18.1 + + + org.apache.activemq + activemq-run + 5.18.1 + + + org.apache.activemq + activemq-runtime-config + 5.18.1 + + + org.apache.activemq + activemq-shiro + 5.18.1 + + + org.apache.activemq + activemq-spring + 5.18.1 + + + commons-logging + commons-logging + + + + + org.apache.activemq + activemq-stomp + 5.18.1 + + + org.apache.activemq + activemq-web + 5.18.1 + + + org.eclipse.angus + angus-core + 1.1.0 + + + org.eclipse.angus + angus-mail + 1.1.0 + + + org.eclipse.angus + dsn + 1.1.0 + + + org.eclipse.angus + gimap + 1.1.0 + + + org.eclipse.angus + imap + 1.1.0 + + + org.eclipse.angus + jakarta.mail + 1.1.0 + + + org.eclipse.angus + logging-mailhandler + 1.1.0 + + + org.eclipse.angus + pop3 + 1.1.0 + + + org.eclipse.angus + smtp + 1.1.0 + + + org.apache.activemq + artemis-amqp-protocol + 2.28.0 + + + org.apache.activemq + artemis-commons + 2.28.0 + + + org.apache.activemq + artemis-core-client + 2.28.0 + + + org.apache.activemq + artemis-jakarta-client + 2.28.0 + + + org.apache.activemq + artemis-jakarta-server + 2.28.0 + + + org.apache.activemq + artemis-jakarta-service-extensions + 2.28.0 + + + org.apache.activemq + artemis-jdbc-store + 2.28.0 + + + org.apache.activemq + artemis-journal + 2.28.0 + + + org.apache.activemq + artemis-quorum-api + 2.28.0 + + + org.apache.activemq + artemis-selector + 2.28.0 + + + org.apache.activemq + artemis-server + 2.28.0 + + + org.apache.activemq + artemis-service-extensions + 2.28.0 + + + org.aspectj + aspectjrt + 1.9.19 + + + org.aspectj + aspectjtools + 1.9.19 + + + org.aspectj + aspectjweaver + 1.9.19 + + + org.awaitility + awaitility + 4.2.0 + + + org.awaitility + awaitility-groovy + 4.2.0 + + + org.awaitility + awaitility-kotlin + 4.2.0 + + + org.awaitility + awaitility-scala + 4.2.0 + + + net.bytebuddy + byte-buddy + 1.14.4 + + + net.bytebuddy + byte-buddy-agent + 1.14.4 + + + org.cache2k + cache2k-api + 2.6.1.Final + + + org.cache2k + cache2k-config + 2.6.1.Final + + + org.cache2k + cache2k-core + 2.6.1.Final + + + org.cache2k + cache2k-jcache + 2.6.1.Final + + + org.cache2k + cache2k-micrometer + 2.6.1.Final + + + org.cache2k + cache2k-spring + 2.6.1.Final + + + com.github.ben-manes.caffeine + caffeine + 3.1.6 + + + com.github.ben-manes.caffeine + guava + 3.1.6 + + + com.github.ben-manes.caffeine + jcache + 3.1.6 + + + com.github.ben-manes.caffeine + simulator + 3.1.6 + + + com.datastax.oss + java-driver-core + 4.15.0 + + + org.slf4j + jcl-over-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.4.6 + + + com.ibm.db2 + jcc + 11.5.8.0 + + + io.spring.gradle + dependency-management-plugin + 1.1.0 + + + org.apache.derby + derby + 10.16.1.1 + + + org.apache.derby + derbyclient + 10.16.1.1 + + + org.apache.derby + derbynet + 10.16.1.1 + + + org.apache.derby + derbyoptionaltools + 10.16.1.1 + + + org.apache.derby + derbyshared + 10.16.1.1 + + + org.apache.derby + derbytools + 10.16.1.1 + + + org.ehcache + ehcache + 3.10.8 + jakarta + + + org.ehcache + ehcache-clustered + 3.10.8 + + + org.ehcache + ehcache-transactions + 3.10.8 + jakarta + + + org.elasticsearch.client + elasticsearch-rest-client + 8.7.1 + + + commons-logging + commons-logging + + + + + org.elasticsearch.client + elasticsearch-rest-client-sniffer + 8.7.1 + + + commons-logging + commons-logging + + + + + co.elastic.clients + elasticsearch-java + 8.7.1 + + + org.flywaydb + flyway-core + 9.16.3 + + + org.flywaydb + flyway-firebird + 9.16.3 + + + org.flywaydb + flyway-mysql + 9.16.3 + + + org.flywaydb + flyway-sqlserver + 9.16.3 + + + org.freemarker + freemarker + 2.3.32 + + + org.glassfish.web + jakarta.servlet.jsp.jstl + 3.0.1 + + + com.graphql-java + graphql-java + 20.2 + + + com.google.code.gson + gson + 2.10.1 + + + com.h2database + h2 + 2.1.214 + + + org.hamcrest + hamcrest + 2.2 + + + org.hamcrest + hamcrest-core + 2.2 + + + org.hamcrest + hamcrest-library + 2.2 + + + com.hazelcast + hazelcast + 5.2.3 + + + com.hazelcast + hazelcast-spring + 5.2.3 + + + org.hibernate.orm + hibernate-agroal + 6.2.2.Final + + + org.hibernate.orm + hibernate-ant + 6.2.2.Final + + + org.hibernate.orm + hibernate-c3p0 + 6.2.2.Final + + + org.hibernate.orm + hibernate-community-dialects + 6.2.2.Final + + + org.hibernate.orm + hibernate-core + 6.2.2.Final + + + org.hibernate.orm + hibernate-envers + 6.2.2.Final + + + org.hibernate.orm + hibernate-graalvm + 6.2.2.Final + + + org.hibernate.orm + hibernate-hikaricp + 6.2.2.Final + + + org.hibernate.orm + hibernate-jcache + 6.2.2.Final + + + org.hibernate.orm + hibernate-jpamodelgen + 6.2.2.Final + + + org.hibernate.orm + hibernate-micrometer + 6.2.2.Final + + + org.hibernate.orm + hibernate-proxool + 6.2.2.Final + + + org.hibernate.orm + hibernate-spatial + 6.2.2.Final + + + org.hibernate.orm + hibernate-testing + 6.2.2.Final + + + org.hibernate.orm + hibernate-vibur + 6.2.2.Final + + + org.hibernate.validator + hibernate-validator + 8.0.0.Final + + + org.hibernate.validator + hibernate-validator-annotation-processor + 8.0.0.Final + + + com.zaxxer + HikariCP + 5.0.1 + + + org.hsqldb + hsqldb + 2.7.1 + + + net.sourceforge.htmlunit + htmlunit + 2.70.0 + + + commons-logging + commons-logging + + + + + org.apache.httpcomponents + httpasyncclient + 4.1.5 + + + commons-logging + commons-logging + + + + + org.apache.httpcomponents.client5 + httpclient5 + 5.2.1 + + + org.apache.httpcomponents.client5 + httpclient5-cache + 5.2.1 + + + org.apache.httpcomponents.client5 + httpclient5-fluent + 5.2.1 + + + org.apache.httpcomponents.client5 + httpclient5-win + 5.2.1 + + + org.apache.httpcomponents + httpcore + 4.4.16 + + + org.apache.httpcomponents + httpcore-nio + 4.4.16 + + + org.apache.httpcomponents.core5 + httpcore5 + 5.2.1 + + + org.apache.httpcomponents.core5 + httpcore5-h2 + 5.2.1 + + + org.apache.httpcomponents.core5 + httpcore5-reactive + 5.2.1 + + + org.influxdb + influxdb-java + 2.23 + + + jakarta.activation + jakarta.activation-api + 2.1.2 + + + jakarta.annotation + jakarta.annotation-api + 2.1.1 + + + jakarta.jms + jakarta.jms-api + 3.1.0 + + + jakarta.json + jakarta.json-api + 2.1.1 + + + jakarta.json.bind + jakarta.json.bind-api + 3.0.0 + + + jakarta.mail + jakarta.mail-api + 2.1.1 + + + jakarta.management.j2ee + jakarta.management.j2ee-api + 1.1.4 + + + jakarta.persistence + jakarta.persistence-api + 3.1.0 + + + jakarta.servlet + jakarta.servlet-api + 6.0.0 + + + jakarta.servlet.jsp.jstl + jakarta.servlet.jsp.jstl-api + 3.0.0 + + + jakarta.transaction + jakarta.transaction-api + 2.0.1 + + + jakarta.validation + jakarta.validation-api + 3.0.2 + + + jakarta.websocket + jakarta.websocket-api + 2.1.0 + + + jakarta.websocket + jakarta.websocket-client-api + 2.1.0 + + + jakarta.ws.rs + jakarta.ws.rs-api + 3.1.0 + + + jakarta.xml.bind + jakarta.xml.bind-api + 4.0.0 + + + jakarta.xml.soap + jakarta.xml.soap-api + 3.0.0 + + + jakarta.xml.ws + jakarta.xml.ws-api + 4.0.0 + + + org.codehaus.janino + commons-compiler + 3.1.9 + + + org.codehaus.janino + commons-compiler-jdk + 3.1.9 + + + org.codehaus.janino + janino + 3.1.9 + + + javax.cache + cache-api + 1.1.1 + + + javax.money + money-api + 1.1 + + + jaxen + jaxen + 2.0.0 + + + org.firebirdsql.jdbc + jaybird + 5.0.1.java11 + + + org.jboss.logging + jboss-logging + 3.5.0.Final + + + org.jdom + jdom2 + 2.0.6.1 + + + redis.clients + jedis + 4.3.2 + + + org.eclipse.jetty + jetty-reactive-httpclient + 3.0.8 + + + com.samskivert + jmustache + 1.15 + + + org.jooq + jooq + 3.18.4 + + + org.jooq + jooq-codegen + 3.18.4 + + + org.jooq + jooq-kotlin + 3.18.4 + + + org.jooq + jooq-meta + 3.18.4 + + + com.jayway.jsonpath + json-path + 2.8.0 + + + com.jayway.jsonpath + json-path-assert + 2.8.0 + + + net.minidev + json-smart + 2.4.10 + + + org.skyscreamer + jsonassert + 1.5.1 + + + net.sourceforge.jtds + jtds + 1.3.1 + + + junit + junit + 4.13.2 + + + org.apache.kafka + connect + 3.4.0 + + + org.apache.kafka + connect-api + 3.4.0 + + + org.apache.kafka + connect-basic-auth-extension + 3.4.0 + + + org.apache.kafka + connect-file + 3.4.0 + + + org.apache.kafka + connect-json + 3.4.0 + + + org.apache.kafka + connect-mirror + 3.4.0 + + + org.apache.kafka + connect-mirror-client + 3.4.0 + + + org.apache.kafka + connect-runtime + 3.4.0 + + + org.apache.kafka + connect-transforms + 3.4.0 + + + org.apache.kafka + generator + 3.4.0 + + + org.apache.kafka + kafka-clients + 3.4.0 + + + org.apache.kafka + kafka-clients + 3.4.0 + test + + + org.apache.kafka + kafka-log4j-appender + 3.4.0 + + + org.apache.kafka + kafka-metadata + 3.4.0 + + + org.apache.kafka + kafka-raft + 3.4.0 + + + org.apache.kafka + kafka-server-common + 3.4.0 + + + org.apache.kafka + kafka-shell + 3.4.0 + + + org.apache.kafka + kafka-storage + 3.4.0 + + + org.apache.kafka + kafka-storage-api + 3.4.0 + + + org.apache.kafka + kafka-streams + 3.4.0 + + + org.apache.kafka + kafka-streams-scala_2.12 + 3.4.0 + + + org.apache.kafka + kafka-streams-scala_2.13 + 3.4.0 + + + org.apache.kafka + kafka-streams-test-utils + 3.4.0 + + + org.apache.kafka + kafka-tools + 3.4.0 + + + org.apache.kafka + kafka_2.12 + 3.4.0 + + + org.apache.kafka + kafka_2.12 + 3.4.0 + test + + + org.apache.kafka + kafka_2.13 + 3.4.0 + + + org.apache.kafka + kafka_2.13 + 3.4.0 + test + + + org.apache.kafka + trogdor + 3.4.0 + + + io.lettuce + lettuce-core + 6.2.4.RELEASE + + + org.liquibase + liquibase-cdi + 4.20.0 + + + org.liquibase + liquibase-core + 4.20.0 + + + ch.qos.logback + logback-access + 1.4.7 + + + ch.qos.logback + logback-classic + 1.4.7 + + + ch.qos.logback + logback-core + 1.4.7 + + + org.projectlombok + lombok + 1.18.26 + + + org.mariadb.jdbc + mariadb-java-client + 3.1.4 + + + io.micrometer + micrometer-registry-stackdriver + 1.11.0 + + + javax.annotation + javax.annotation-api + + + + + org.mongodb + bson + 4.9.1 + + + org.mongodb + bson-record-codec + 4.9.1 + + + org.mongodb + mongodb-driver-core + 4.9.1 + + + org.mongodb + mongodb-driver-legacy + 4.9.1 + + + org.mongodb + mongodb-driver-reactivestreams + 4.9.1 + + + org.mongodb + mongodb-driver-sync + 4.9.1 + + + com.microsoft.sqlserver + mssql-jdbc + 11.2.3.jre17 + + + com.mysql + mysql-connector-j + 8.0.33 + + + com.google.protobuf + protobuf-java + + + + + net.sourceforge.nekohtml + nekohtml + 1.9.22 + + + org.neo4j.driver + neo4j-java-driver + 5.8.0 + + + com.oracle.database.r2dbc + oracle-r2dbc + 1.1.1 + + + org.messaginghub + pooled-jms + 3.1.0 + + + org.postgresql + postgresql + 42.6.0 + + + org.quartz-scheduler + quartz + 2.3.2 + + + com.mchange + c3p0 + + + com.zaxxer + * + + + + + org.quartz-scheduler + quartz-jobs + 2.3.2 + + + io.r2dbc + r2dbc-h2 + 1.0.0.RELEASE + + + org.mariadb + r2dbc-mariadb + 1.1.4 + + + io.r2dbc + r2dbc-mssql + 1.0.0.RELEASE + + + io.asyncer + r2dbc-mysql + 1.0.1 + + + io.r2dbc + r2dbc-pool + 1.0.0.RELEASE + + + org.postgresql + r2dbc-postgresql + 1.0.1.RELEASE + + + io.r2dbc + r2dbc-proxy + 1.1.0.RELEASE + + + io.r2dbc + r2dbc-spi + 1.0.0.RELEASE + + + com.rabbitmq + amqp-client + 5.17.0 + + + com.rabbitmq + stream-client + 0.9.0 + + + org.reactivestreams + reactive-streams + 1.0.4 + + + io.reactivex.rxjava3 + rxjava + 3.1.6 + + + org.springframework.boot + spring-boot + 3.1.0 + + + org.springframework.boot + spring-boot-test + 3.1.0 + + + org.springframework.boot + spring-boot-test-autoconfigure + 3.1.0 + + + org.springframework.boot + spring-boot-testcontainers + 3.1.0 + + + org.springframework.boot + spring-boot-actuator + 3.1.0 + + + org.springframework.boot + spring-boot-actuator-autoconfigure + 3.1.0 + + + org.springframework.boot + spring-boot-autoconfigure + 3.1.0 + + + org.springframework.boot + spring-boot-autoconfigure-processor + 3.1.0 + + + org.springframework.boot + spring-boot-buildpack-platform + 3.1.0 + + + org.springframework.boot + spring-boot-configuration-metadata + 3.1.0 + + + org.springframework.boot + spring-boot-configuration-processor + 3.1.0 + + + org.springframework.boot + spring-boot-devtools + 3.1.0 + + + org.springframework.boot + spring-boot-docker-compose + 3.1.0 + + + org.springframework.boot + spring-boot-jarmode-layertools + 3.1.0 + + + org.springframework.boot + spring-boot-loader + 3.1.0 + + + org.springframework.boot + spring-boot-loader-tools + 3.1.0 + + + org.springframework.boot + spring-boot-properties-migrator + 3.1.0 + + + org.springframework.boot + spring-boot-starter + 3.1.0 + + + org.springframework.boot + spring-boot-starter-activemq + 3.1.0 + + + org.springframework.boot + spring-boot-starter-actuator + 3.1.0 + + + org.springframework.boot + spring-boot-starter-amqp + 3.1.0 + + + org.springframework.boot + spring-boot-starter-aop + 3.1.0 + + + org.springframework.boot + spring-boot-starter-artemis + 3.1.0 + + + org.springframework.boot + spring-boot-starter-batch + 3.1.0 + + + org.springframework.boot + spring-boot-starter-cache + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-cassandra + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-cassandra-reactive + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-couchbase + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-couchbase-reactive + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-elasticsearch + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-jdbc + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-jpa + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-ldap + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-mongodb + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-mongodb-reactive + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-r2dbc + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-redis + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-redis-reactive + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-neo4j + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-rest + 3.1.0 + + + org.springframework.boot + spring-boot-starter-freemarker + 3.1.0 + + + org.springframework.boot + spring-boot-starter-graphql + 3.1.0 + + + org.springframework.boot + spring-boot-starter-groovy-templates + 3.1.0 + + + org.springframework.boot + spring-boot-starter-hateoas + 3.1.0 + + + org.springframework.boot + spring-boot-starter-integration + 3.1.0 + + + org.springframework.boot + spring-boot-starter-jdbc + 3.1.0 + + + org.springframework.boot + spring-boot-starter-jersey + 3.1.0 + + + org.springframework.boot + spring-boot-starter-jetty + 3.1.0 + + + org.springframework.boot + spring-boot-starter-jooq + 3.1.0 + + + org.springframework.boot + spring-boot-starter-json + 3.1.0 + + + org.springframework.boot + spring-boot-starter-log4j2 + 3.1.0 + + + org.springframework.boot + spring-boot-starter-logging + 3.1.0 + + + org.springframework.boot + spring-boot-starter-mail + 3.1.0 + + + org.springframework.boot + spring-boot-starter-mustache + 3.1.0 + + + org.springframework.boot + spring-boot-starter-oauth2-authorization-server + 3.1.0 + + + org.springframework.boot + spring-boot-starter-oauth2-client + 3.1.0 + + + org.springframework.boot + spring-boot-starter-oauth2-resource-server + 3.1.0 + + + org.springframework.boot + spring-boot-starter-quartz + 3.1.0 + + + org.springframework.boot + spring-boot-starter-reactor-netty + 3.1.0 + + + org.springframework.boot + spring-boot-starter-rsocket + 3.1.0 + + + org.springframework.boot + spring-boot-starter-security + 3.1.0 + + + org.springframework.boot + spring-boot-starter-test + 3.1.0 + + + org.springframework.boot + spring-boot-starter-thymeleaf + 3.1.0 + + + org.springframework.boot + spring-boot-starter-tomcat + 3.1.0 + + + org.springframework.boot + spring-boot-starter-undertow + 3.1.0 + + + org.springframework.boot + spring-boot-starter-validation + 3.1.0 + + + org.springframework.boot + spring-boot-starter-web + 3.1.0 + + + org.springframework.boot + spring-boot-starter-webflux + 3.1.0 + + + org.springframework.boot + spring-boot-starter-websocket + 3.1.0 + + + org.springframework.boot + spring-boot-starter-web-services + 3.1.0 + + + com.sun.xml.messaging.saaj + saaj-impl + 3.0.2 + + + org.seleniumhq.selenium + lift + 4.8.3 + + + org.seleniumhq.selenium + selenium-api + 4.8.3 + + + org.seleniumhq.selenium + selenium-chrome-driver + 4.8.3 + + + org.seleniumhq.selenium + selenium-chromium-driver + 4.8.3 + + + org.seleniumhq.selenium + selenium-devtools-v108 + 4.8.3 + + + org.seleniumhq.selenium + selenium-devtools-v109 + 4.8.3 + + + org.seleniumhq.selenium + selenium-devtools-v110 + 4.8.3 + + + org.seleniumhq.selenium + selenium-devtools-v85 + 4.8.3 + + + org.seleniumhq.selenium + selenium-edge-driver + 4.8.3 + + + org.seleniumhq.selenium + selenium-firefox-driver + 4.8.3 + + + org.seleniumhq.selenium + selenium-grid + 4.8.3 + + + org.seleniumhq.selenium + selenium-http + 4.8.3 + + + org.seleniumhq.selenium + selenium-http-jdk-client + 4.8.3 + + + org.seleniumhq.selenium + selenium-ie-driver + 4.8.3 + + + org.seleniumhq.selenium + selenium-java + 4.8.3 + + + org.seleniumhq.selenium + selenium-json + 4.8.3 + + + org.seleniumhq.selenium + selenium-manager + 4.8.3 + + + org.seleniumhq.selenium + selenium-remote-driver + 4.8.3 + + + org.seleniumhq.selenium + selenium-safari-driver + 4.8.3 + + + org.seleniumhq.selenium + selenium-session-map-jdbc + 4.8.3 + + + org.seleniumhq.selenium + selenium-session-map-redis + 4.8.3 + + + org.seleniumhq.selenium + selenium-support + 4.8.3 + + + org.seleniumhq.selenium + htmlunit-driver + 4.8.3 + + + com.sendgrid + sendgrid-java + 4.9.3 + + + org.slf4j + jcl-over-slf4j + 2.0.7 + + + org.slf4j + jul-to-slf4j + 2.0.7 + + + org.slf4j + log4j-over-slf4j + 2.0.7 + + + org.slf4j + slf4j-api + 2.0.7 + + + org.slf4j + slf4j-ext + 2.0.7 + + + org.slf4j + slf4j-jdk-platform-logging + 2.0.7 + + + org.slf4j + slf4j-jdk14 + 2.0.7 + + + org.slf4j + slf4j-log4j12 + 2.0.7 + + + org.slf4j + slf4j-nop + 2.0.7 + + + org.slf4j + slf4j-reload4j + 2.0.7 + + + org.slf4j + slf4j-simple + 2.0.7 + + + org.yaml + snakeyaml + 1.33 + + + org.springframework.amqp + spring-amqp + 3.0.4 + + + org.springframework.amqp + spring-rabbit + 3.0.4 + + + org.springframework.amqp + spring-rabbit-stream + 3.0.4 + + + org.springframework.amqp + spring-rabbit-junit + 3.0.4 + + + org.springframework.amqp + spring-rabbit-test + 3.0.4 + + + org.springframework.security + spring-security-oauth2-authorization-server + 1.1.0 + + + org.springframework.graphql + spring-graphql + 1.2.0 + + + org.springframework.graphql + spring-graphql-test + 1.2.0 + + + org.springframework.hateoas + spring-hateoas + 2.1.0 + + + org.springframework.kafka + spring-kafka + 3.0.7 + + + org.springframework.kafka + spring-kafka-test + 3.0.7 + + + org.springframework.ldap + spring-ldap-core + 3.1.0 + + + org.springframework.ldap + spring-ldap-ldif-core + 3.1.0 + + + org.springframework.ldap + spring-ldap-odm + 3.1.0 + + + org.springframework.ldap + spring-ldap-test + 3.1.0 + + + org.springframework.retry + spring-retry + 2.0.1 + + + org.xerial + sqlite-jdbc + 3.41.2.1 + + + org.thymeleaf + thymeleaf + 3.1.1.RELEASE + + + org.thymeleaf + thymeleaf-spring6 + 3.1.1.RELEASE + + + com.github.mxab.thymeleaf.extras + thymeleaf-extras-data-attribute + 2.0.1 + + + org.thymeleaf.extras + thymeleaf-extras-springsecurity6 + 3.1.1.RELEASE + + + nz.net.ultraq.thymeleaf + thymeleaf-layout-dialect + 3.2.1 + + + org.apache.tomcat + tomcat-annotations-api + 10.1.8 + + + org.apache.tomcat + tomcat-jdbc + 10.1.8 + + + org.apache.tomcat + tomcat-jsp-api + 10.1.8 + + + org.apache.tomcat.embed + tomcat-embed-core + 10.1.8 + + + org.apache.tomcat.embed + tomcat-embed-el + 10.1.8 + + + org.apache.tomcat.embed + tomcat-embed-jasper + 10.1.8 + + + org.apache.tomcat.embed + tomcat-embed-websocket + 10.1.8 + + + com.unboundid + unboundid-ldapsdk + 6.0.8 + + + io.undertow + undertow-core + 2.3.6.Final + + + io.undertow + undertow-servlet + 2.3.6.Final + + + io.undertow + undertow-websockets-jsr + 2.3.6.Final + + + org.webjars + webjars-locator-core + 0.52 + + + wsdl4j + wsdl4j + 1.6.3 + + + org.xmlunit + xmlunit-assertj + 2.9.1 + + + org.xmlunit + xmlunit-assertj3 + 2.9.1 + + + org.xmlunit + xmlunit-core + 2.9.1 + + + org.xmlunit + xmlunit-jakarta-jaxb-impl + 2.9.1 + + + org.xmlunit + xmlunit-legacy + 2.9.1 + + + org.xmlunit + xmlunit-matchers + 2.9.1 + + + org.xmlunit + xmlunit-placeholders + 2.9.1 + + + org.eclipse + yasson + 3.0.3 + + + org.assertj + assertj-core + 3.24.2 + + + org.assertj + assertj-guava + 3.24.2 + + + io.zipkin.zipkin2 + zipkin + 2.23.2 + + + io.zipkin.brave + brave + 5.15.1 + + + io.zipkin.brave + brave-tests + 5.15.1 + + + io.zipkin.brave + brave-context-jfr + 5.15.1 + + + io.zipkin.brave + brave-context-log4j2 + 5.15.1 + + + io.zipkin.brave + brave-context-log4j12 + 5.15.1 + + + io.zipkin.brave + brave-context-slf4j + 5.15.1 + + + io.zipkin.brave + brave-context-rxjava2 + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-dubbo + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-dubbo-rpc + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-grpc + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-http + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-http-tests + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-httpasyncclient + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-httpclient + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-jaxrs2 + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-jersey-server + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-jms + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-jms-jakarta + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-kafka-clients + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-kafka-streams + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-messaging + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-mongodb + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-mysql + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-mysql6 + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-mysql8 + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-netty-codec-http + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-okhttp3 + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-p6spy + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-rpc + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-servlet + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-servlet-jakarta + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-sparkjava + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-spring-rabbit + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-spring-web + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-spring-webmvc + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-vertx-web + 5.15.1 + + + io.zipkin.brave + brave-spring-beans + 5.15.1 + + + io.zipkin.proto3 + zipkin-proto3 + 1.0.0 + + + io.zipkin.reporter2 + zipkin-reporter + 2.16.3 + + + io.zipkin.reporter2 + zipkin-sender-okhttp3 + 2.16.3 + + + io.zipkin.reporter2 + zipkin-sender-libthrift + 2.16.3 + + + io.zipkin.reporter2 + zipkin-sender-urlconnection + 2.16.3 + + + io.zipkin.reporter2 + zipkin-sender-kafka08 + 2.16.3 + + + io.zipkin.reporter2 + zipkin-sender-kafka + 2.16.3 + + + io.zipkin.reporter2 + zipkin-sender-amqp-client + 2.16.3 + + + io.zipkin.reporter2 + zipkin-sender-activemq-client + 2.16.3 + + + io.zipkin.reporter2 + zipkin-reporter-spring-beans + 2.16.3 + + + io.zipkin.reporter2 + zipkin-reporter-brave + 2.16.3 + + + io.zipkin.reporter2 + zipkin-reporter-metrics-micrometer + 2.16.3 + + + com.datastax.oss + java-driver-core-shaded + 4.15.0 + + + com.datastax.oss + java-driver-mapper-processor + 4.15.0 + + + com.datastax.oss + java-driver-mapper-runtime + 4.15.0 + + + com.datastax.oss + java-driver-query-builder + 4.15.0 + + + com.datastax.oss + java-driver-test-infra + 4.15.0 + + + com.datastax.oss + java-driver-metrics-micrometer + 4.15.0 + + + com.datastax.oss + java-driver-metrics-microprofile + 4.15.0 + + + com.datastax.oss + native-protocol + 1.5.1 + + + com.datastax.oss + java-driver-shaded-guava + 25.1-jre-graal-sub-1 + + + io.dropwizard.metrics + metrics-annotation + 4.2.18 + + + io.dropwizard.metrics + metrics-caffeine + 4.2.18 + + + io.dropwizard.metrics + metrics-caffeine3 + 4.2.18 + + + io.dropwizard.metrics + metrics-core + 4.2.18 + + + io.dropwizard.metrics + metrics-collectd + 4.2.18 + + + io.dropwizard.metrics + metrics-ehcache + 4.2.18 + + + io.dropwizard.metrics + metrics-graphite + 4.2.18 + + + io.dropwizard.metrics + metrics-healthchecks + 4.2.18 + + + io.dropwizard.metrics + metrics-httpclient + 4.2.18 + + + io.dropwizard.metrics + metrics-httpclient5 + 4.2.18 + + + io.dropwizard.metrics + metrics-httpasyncclient + 4.2.18 + + + io.dropwizard.metrics + metrics-jakarta-servlet + 4.2.18 + + + io.dropwizard.metrics + metrics-jakarta-servlets + 4.2.18 + + + io.dropwizard.metrics + metrics-jcache + 4.2.18 + + + io.dropwizard.metrics + metrics-jdbi + 4.2.18 + + + io.dropwizard.metrics + metrics-jdbi3 + 4.2.18 + + + io.dropwizard.metrics + metrics-jersey2 + 4.2.18 + + + io.dropwizard.metrics + metrics-jersey3 + 4.2.18 + + + io.dropwizard.metrics + metrics-jersey31 + 4.2.18 + + + io.dropwizard.metrics + metrics-jetty9 + 4.2.18 + + + io.dropwizard.metrics + metrics-jetty10 + 4.2.18 + + + io.dropwizard.metrics + metrics-jetty11 + 4.2.18 + + + io.dropwizard.metrics + metrics-jmx + 4.2.18 + + + io.dropwizard.metrics + metrics-json + 4.2.18 + + + io.dropwizard.metrics + metrics-jvm + 4.2.18 + + + io.dropwizard.metrics + metrics-log4j2 + 4.2.18 + + + io.dropwizard.metrics + metrics-logback + 4.2.18 + + + io.dropwizard.metrics + metrics-logback13 + 4.2.18 + + + io.dropwizard.metrics + metrics-logback14 + 4.2.18 + + + io.dropwizard.metrics + metrics-servlet + 4.2.18 + + + io.dropwizard.metrics + metrics-servlets + 4.2.18 + + + org.glassfish.jaxb + jaxb-runtime + 4.0.2 + sources + + + org.glassfish.jaxb + jaxb-core + 4.0.2 + sources + + + org.glassfish.jaxb + jaxb-xjc + 4.0.2 + sources + + + org.glassfish.jaxb + jaxb-jxc + 4.0.2 + sources + + + org.glassfish.jaxb + codemodel + 4.0.2 + sources + + + org.glassfish.jaxb + txw2 + 4.0.2 + sources + + + org.glassfish.jaxb + xsom + 4.0.2 + sources + + + com.sun.xml.bind + jaxb-impl + 4.0.2 + sources + + + com.sun.xml.bind + jaxb-core + 4.0.2 + sources + + + com.sun.xml.bind + jaxb-xjc + 4.0.2 + sources + + + com.sun.xml.bind + jaxb-jxc + 4.0.2 + sources + + + jakarta.xml.bind + jakarta.xml.bind-api + 4.0.0 + sources + + + org.jvnet.staxex + stax-ex + 2.1.0 + sources + + + jakarta.activation + jakarta.activation-api + + + + + com.sun.xml.fastinfoset + FastInfoset + 2.1.0 + sources + + + org.glassfish.jaxb + jaxb-runtime + 4.0.2 + + + org.glassfish.jaxb + jaxb-core + 4.0.2 + + + org.glassfish.jaxb + jaxb-xjc + 4.0.2 + + + org.glassfish.jaxb + jaxb-jxc + 4.0.2 + + + org.glassfish.jaxb + codemodel + 4.0.2 + + + org.glassfish.jaxb + txw2 + 4.0.2 + + + org.glassfish.jaxb + xsom + 4.0.2 + + + com.sun.xml.bind + jaxb-impl + 4.0.2 + + + com.sun.xml.bind + jaxb-core + 4.0.2 + + + com.sun.xml.bind + jaxb-xjc + 4.0.2 + + + com.sun.xml.bind + jaxb-jxc + 4.0.2 + + + com.sun.xml.bind + jaxb-osgi + 4.0.2 + + + com.sun.istack + istack-commons-runtime + 4.1.1 + + + com.sun.xml.fastinfoset + FastInfoset + 2.1.0 + + + org.jvnet.staxex + stax-ex + 2.1.0 + + + org.eclipse.angus + angus-activation + 2.0.0 + + + org.apache.groovy + groovy + 4.0.12 + + + org.apache.groovy + groovy-ant + 4.0.12 + + + org.apache.groovy + groovy-astbuilder + 4.0.12 + + + org.apache.groovy + groovy-cli-commons + 4.0.12 + + + org.apache.groovy + groovy-cli-picocli + 4.0.12 + + + org.apache.groovy + groovy-console + 4.0.12 + + + org.apache.groovy + groovy-contracts + 4.0.12 + + + org.apache.groovy + groovy-datetime + 4.0.12 + + + org.apache.groovy + groovy-dateutil + 4.0.12 + + + org.apache.groovy + groovy-docgenerator + 4.0.12 + + + org.apache.groovy + groovy-ginq + 4.0.12 + + + org.apache.groovy + groovy-groovydoc + 4.0.12 + + + org.apache.groovy + groovy-groovysh + 4.0.12 + + + org.apache.groovy + groovy-jmx + 4.0.12 + + + org.apache.groovy + groovy-json + 4.0.12 + + + org.apache.groovy + groovy-jsr223 + 4.0.12 + + + org.apache.groovy + groovy-macro + 4.0.12 + + + org.apache.groovy + groovy-macro-library + 4.0.12 + + + org.apache.groovy + groovy-nio + 4.0.12 + + + org.apache.groovy + groovy-servlet + 4.0.12 + + + org.apache.groovy + groovy-sql + 4.0.12 + + + org.apache.groovy + groovy-swing + 4.0.12 + + + org.apache.groovy + groovy-templates + 4.0.12 + + + org.apache.groovy + groovy-test + 4.0.12 + + + org.apache.groovy + groovy-test-junit5 + 4.0.12 + + + org.apache.groovy + groovy-testng + 4.0.12 + + + org.apache.groovy + groovy-toml + 4.0.12 + + + org.apache.groovy + groovy-typecheckers + 4.0.12 + + + org.apache.groovy + groovy-xml + 4.0.12 + + + org.apache.groovy + groovy-yaml + 4.0.12 + + + org.infinispan + infinispan-api + 14.0.9.Final + + + org.infinispan + infinispan-cachestore-jdbc + 14.0.9.Final + + + org.infinispan + infinispan-cachestore-jdbc-jakarta + 14.0.9.Final + + + org.infinispan + infinispan-cachestore-jdbc-common + 14.0.9.Final + + + org.infinispan + infinispan-cachestore-jdbc-common-jakarta + 14.0.9.Final + + + org.infinispan + infinispan-cachestore-sql + 14.0.9.Final + + + org.infinispan + infinispan-cachestore-remote + 14.0.9.Final + + + org.infinispan + infinispan-cachestore-rocksdb + 14.0.9.Final + + + org.infinispan + infinispan-cdi-common + 14.0.9.Final + + + org.infinispan + infinispan-cdi-common-jakarta + 14.0.9.Final + + + org.infinispan + infinispan-cdi-embedded + 14.0.9.Final + + + org.infinispan + infinispan-cdi-embedded-jakarta + 14.0.9.Final + + + org.infinispan + infinispan-cdi-remote + 14.0.9.Final + + + org.infinispan + infinispan-cdi-remote-jakarta + 14.0.9.Final + + + org.infinispan + infinispan-checkstyle + 14.0.9.Final + + + org.infinispan + infinispan-cli-client + 14.0.9.Final + + + org.infinispan + infinispan-hotrod + 14.0.9.Final + + + org.infinispan + infinispan-hotrod-jakarta + 14.0.9.Final + + + org.infinispan + infinispan-client-hotrod + 14.0.9.Final + + + org.infinispan + infinispan-client-hotrod-jakarta + 14.0.9.Final + + + org.infinispan + infinispan-client-rest + 14.0.9.Final + + + org.infinispan + infinispan-key-value-store-client + 14.0.9.Final + + + org.infinispan + infinispan-clustered-counter + 14.0.9.Final + + + org.infinispan + infinispan-clustered-lock + 14.0.9.Final + + + org.infinispan + infinispan-commons + 14.0.9.Final + + + org.infinispan + infinispan-commons-jakarta + 14.0.9.Final + + + org.infinispan + infinispan-commons-test + 14.0.9.Final + + + org.infinispan + infinispan-component-annotations + 14.0.9.Final + provided + + + org.infinispan + infinispan-component-processor + 14.0.9.Final + + + org.infinispan + infinispan-core + 14.0.9.Final + + + org.infinispan + infinispan-core-jakarta + 14.0.9.Final + + + org.infinispan + infinispan-jboss-marshalling + 14.0.9.Final + + + org.infinispan + infinispan-extended-statistics + 14.0.9.Final + + + org.infinispan + infinispan-hibernate-cache-commons + 14.0.9.Final + + + org.infinispan + infinispan-hibernate-cache-spi + 14.0.9.Final + + + org.infinispan + infinispan-hibernate-cache-v60 + 14.0.9.Final + + + org.infinispan + infinispan-jcache-commons + 14.0.9.Final + + + org.infinispan + infinispan-jcache + 14.0.9.Final + + + org.infinispan + infinispan-jcache-remote + 14.0.9.Final + + + org.infinispan + infinispan-console + 14.0.8.Final + + + org.infinispan + infinispan-multimap + 14.0.9.Final + + + org.infinispan + infinispan-objectfilter + 14.0.9.Final + + + org.infinispan + infinispan-query-core + 14.0.9.Final + + + org.infinispan + infinispan-query + 14.0.9.Final + + + org.infinispan + infinispan-query-jakarta + 14.0.9.Final + + + org.infinispan + infinispan-query-dsl + 14.0.9.Final + + + org.infinispan + infinispan-remote-query-client + 14.0.9.Final + + + org.infinispan + infinispan-remote-query-server + 14.0.9.Final + + + org.infinispan + infinispan-scripting + 14.0.9.Final + + + org.infinispan + infinispan-server-core + 14.0.9.Final + + + org.infinispan + infinispan-server-hotrod + 14.0.9.Final + + + org.infinispan + infinispan-server-hotrod-jakarta + 14.0.9.Final + + + org.infinispan + infinispan-server-memcached + 14.0.9.Final + + + org.infinispan + infinispan-server-resp + 14.0.9.Final + + + org.infinispan + infinispan-server-rest + 14.0.9.Final + + + org.infinispan + infinispan-server-router + 14.0.9.Final + + + org.infinispan + infinispan-server-runtime + 14.0.9.Final + + + org.infinispan + infinispan-server-runtime + 14.0.9.Final + loader + + + org.infinispan + infinispan-server-testdriver-core + 14.0.9.Final + + + org.infinispan + infinispan-server-testdriver-junit4 + 14.0.9.Final + + + org.infinispan + infinispan-server-testdriver-junit5 + 14.0.9.Final + + + org.infinispan + infinispan-spring5-common + 14.0.9.Final + + + org.infinispan + infinispan-spring5-embedded + 14.0.9.Final + + + org.infinispan + infinispan-spring5-remote + 14.0.9.Final + + + org.infinispan + infinispan-spring-boot-starter-embedded + 14.0.9.Final + + + org.infinispan + infinispan-spring-boot-starter-remote + 14.0.9.Final + + + org.infinispan + infinispan-spring6-common + 14.0.9.Final + + + org.infinispan + infinispan-spring6-embedded + 14.0.9.Final + + + org.infinispan + infinispan-spring6-remote + 14.0.9.Final + + + org.infinispan + infinispan-spring-boot3-starter-embedded + 14.0.9.Final + + + org.infinispan + infinispan-spring-boot3-starter-remote + 14.0.9.Final + + + org.infinispan + infinispan-tasks + 14.0.9.Final + + + org.infinispan + infinispan-tasks-api + 14.0.9.Final + + + org.infinispan + infinispan-tools + 14.0.9.Final + + + org.infinispan + infinispan-tools-jakarta + 14.0.9.Final + + + org.infinispan + infinispan-anchored-keys + 14.0.9.Final + + + org.infinispan.protostream + protostream + 4.6.2.Final + + + org.infinispan.protostream + protostream-types + 4.6.2.Final + + + org.infinispan.protostream + protostream-processor + 4.6.2.Final + provided + + + org.infinispan + infinispan-cloudevents-integration + 14.0.9.Final + + + org.infinispan + infinispan-marshaller-kryo + 14.0.9.Final + + + org.infinispan + infinispan-marshaller-kryo-bundle + 14.0.9.Final + + + org.infinispan + infinispan-marshaller-protostuff + 14.0.9.Final + + + org.infinispan + infinispan-marshaller-protostuff-bundle + 14.0.9.Final + + + com.fasterxml.jackson.core + jackson-annotations + 2.15.0 + + + com.fasterxml.jackson.core + jackson-core + 2.15.0 + + + com.fasterxml.jackson.core + jackson-databind + 2.15.0 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-avro + 2.15.0 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-cbor + 2.15.0 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-csv + 2.15.0 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-ion + 2.15.0 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-properties + 2.15.0 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-protobuf + 2.15.0 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-smile + 2.15.0 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-toml + 2.15.0 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-xml + 2.15.0 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-yaml + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-eclipse-collections + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-guava + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate4 + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate5 + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate5-jakarta + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate6 + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-hppc + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-jakarta-jsonp + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-jaxrs + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-joda + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-joda-money + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-jdk8 + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-json-org + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-jsr310 + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-jsr353 + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-pcollections + 2.15.0 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-base + 2.15.0 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-cbor-provider + 2.15.0 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-json-provider + 2.15.0 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-smile-provider + 2.15.0 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-xml-provider + 2.15.0 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-yaml-provider + 2.15.0 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-base + 2.15.0 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-cbor-provider + 2.15.0 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-json-provider + 2.15.0 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-smile-provider + 2.15.0 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-xml-provider + 2.15.0 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-yaml-provider + 2.15.0 + + + com.fasterxml.jackson.jr + jackson-jr-all + 2.15.0 + + + com.fasterxml.jackson.jr + jackson-jr-annotation-support + 2.15.0 + + + com.fasterxml.jackson.jr + jackson-jr-objects + 2.15.0 + + + com.fasterxml.jackson.jr + jackson-jr-retrofit2 + 2.15.0 + + + com.fasterxml.jackson.jr + jackson-jr-stree + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-afterburner + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-blackbird + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-guice + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-jaxb-annotations + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-jakarta-xmlbind-annotations + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-jsonSchema + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-jsonSchema-jakarta + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-kotlin + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-mrbean + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-no-ctor-deser + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-osgi + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-parameter-names + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-paranamer + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-scala_2.11 + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-scala_2.12 + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-scala_2.13 + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-scala_3 + 2.15.0 + + + org.glassfish.jersey.core + jersey-common + 3.1.1 + + + org.glassfish.jersey.core + jersey-client + 3.1.1 + + + org.glassfish.jersey.core + jersey-server + 3.1.1 + + + org.glassfish.jersey.bundles + jaxrs-ri + 3.1.1 + + + org.glassfish.jersey.connectors + jersey-apache-connector + 3.1.1 + + + org.glassfish.jersey.connectors + jersey-apache5-connector + 3.1.1 + + + org.glassfish.jersey.connectors + jersey-helidon-connector + 3.1.1 + + + org.glassfish.jersey.connectors + jersey-grizzly-connector + 3.1.1 + + + org.glassfish.jersey.connectors + jersey-jnh-connector + 3.1.1 + + + org.glassfish.jersey.connectors + jersey-jetty-connector + 3.1.1 + + + org.glassfish.jersey.connectors + jersey-jdk-connector + 3.1.1 + + + org.glassfish.jersey.connectors + jersey-netty-connector + 3.1.1 + + + org.glassfish.jersey.containers + jersey-container-jetty-http + 3.1.1 + + + org.glassfish.jersey.containers + jersey-container-grizzly2-http + 3.1.1 + + + org.glassfish.jersey.containers + jersey-container-grizzly2-servlet + 3.1.1 + + + org.glassfish.jersey.containers + jersey-container-jetty-servlet + 3.1.1 + + + org.glassfish.jersey.containers + jersey-container-jdk-http + 3.1.1 + + + org.glassfish.jersey.containers + jersey-container-netty-http + 3.1.1 + + + org.glassfish.jersey.containers + jersey-container-servlet + 3.1.1 + + + org.glassfish.jersey.containers + jersey-container-servlet-core + 3.1.1 + + + org.glassfish.jersey.containers + jersey-container-simple-http + 3.1.1 + + + org.glassfish.jersey.containers.glassfish + jersey-gf-ejb + 3.1.1 + + + org.glassfish.jersey.ext + jersey-bean-validation + 3.1.1 + + + org.glassfish.jersey.ext + jersey-entity-filtering + 3.1.1 + + + org.glassfish.jersey.ext + jersey-metainf-services + 3.1.1 + + + org.glassfish.jersey.ext.microprofile + jersey-mp-config + 3.1.1 + + + org.glassfish.jersey.ext + jersey-mvc + 3.1.1 + + + org.glassfish.jersey.ext + jersey-mvc-bean-validation + 3.1.1 + + + org.glassfish.jersey.ext + jersey-mvc-freemarker + 3.1.1 + + + org.glassfish.jersey.ext + jersey-mvc-jsp + 3.1.1 + + + org.glassfish.jersey.ext + jersey-mvc-mustache + 3.1.1 + + + org.glassfish.jersey.ext + jersey-proxy-client + 3.1.1 + + + org.glassfish.jersey.ext + jersey-spring6 + 3.1.1 + + + org.glassfish.jersey.ext + jersey-declarative-linking + 3.1.1 + + + org.glassfish.jersey.ext + jersey-wadl-doclet + 3.1.1 + + + org.glassfish.jersey.ext.cdi + jersey-weld2-se + 3.1.1 + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x + 3.1.1 + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x-transaction + 3.1.1 + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x-validation + 3.1.1 + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x-servlet + 3.1.1 + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x-ban-custom-hk2-binding + 3.1.1 + + + org.glassfish.jersey.ext.cdi + jersey-cdi-rs-inject + 3.1.1 + + + org.glassfish.jersey.ext.rx + jersey-rx-client-guava + 3.1.1 + + + org.glassfish.jersey.ext.rx + jersey-rx-client-rxjava + 3.1.1 + + + org.glassfish.jersey.ext.rx + jersey-rx-client-rxjava2 + 3.1.1 + + + org.glassfish.jersey.ext.microprofile + jersey-mp-rest-client + 3.1.1 + + + org.glassfish.jersey.media + jersey-media-jaxb + 3.1.1 + + + org.glassfish.jersey.media + jersey-media-json-jackson + 3.1.1 + + + org.glassfish.jersey.media + jersey-media-json-jettison + 3.1.1 + + + org.glassfish.jersey.media + jersey-media-json-processing + 3.1.1 + + + org.glassfish.jersey.media + jersey-media-json-gson + 3.1.1 + + + org.glassfish.jersey.media + jersey-media-json-binding + 3.1.1 + + + org.glassfish.jersey.media + jersey-media-kryo + 3.1.1 + + + org.glassfish.jersey.media + jersey-media-moxy + 3.1.1 + + + org.glassfish.jersey.media + jersey-media-multipart + 3.1.1 + + + org.glassfish.jersey.media + jersey-media-sse + 3.1.1 + + + org.glassfish.jersey.security + oauth1-client + 3.1.1 + + + org.glassfish.jersey.security + oauth1-server + 3.1.1 + + + org.glassfish.jersey.security + oauth1-signature + 3.1.1 + + + org.glassfish.jersey.security + oauth2-client + 3.1.1 + + + org.glassfish.jersey.inject + jersey-hk2 + 3.1.1 + + + org.glassfish.jersey.inject + jersey-cdi2-se + 3.1.1 + + + org.glassfish.jersey.test-framework + jersey-test-framework-core + 3.1.1 + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-bundle + 3.1.1 + pom + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-external + 3.1.1 + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-grizzly2 + 3.1.1 + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-inmemory + 3.1.1 + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-jdk-http + 3.1.1 + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-simple + 3.1.1 + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-jetty + 3.1.1 + + + org.glassfish.jersey.test-framework + jersey-test-framework-util + 3.1.1 + + + org.eclipse.jetty + apache-jsp + 11.0.15 + + + org.eclipse.jetty + glassfish-jstl + 11.0.15 + + + org.eclipse.jetty + jetty-alpn-client + 11.0.15 + + + org.eclipse.jetty + jetty-alpn-java-client + 11.0.15 + + + org.eclipse.jetty + jetty-alpn-java-server + 11.0.15 + + + org.eclipse.jetty + jetty-alpn-conscrypt-client + 11.0.15 + + + org.eclipse.jetty + jetty-alpn-conscrypt-server + 11.0.15 + + + org.eclipse.jetty + jetty-alpn-server + 11.0.15 + + + org.eclipse.jetty + jetty-annotations + 11.0.15 + + + org.eclipse.jetty + jetty-ant + 11.0.15 + + + org.eclipse.jetty + jetty-client + 11.0.15 + + + org.eclipse.jetty + jetty-cdi + 11.0.15 + + + org.eclipse.jetty + jetty-deploy + 11.0.15 + + + org.eclipse.jetty.fcgi + fcgi-client + 11.0.15 + + + org.eclipse.jetty.fcgi + fcgi-server + 11.0.15 + + + org.eclipse.jetty.gcloud + jetty-gcloud-session-manager + 11.0.15 + + + org.eclipse.jetty + jetty-home + 11.0.15 + zip + + + org.eclipse.jetty + jetty-home + 11.0.15 + tar.gz + + + org.eclipse.jetty + jetty-http + 11.0.15 + + + org.eclipse.jetty.http2 + http2-client + 11.0.15 + + + org.eclipse.jetty.http2 + http2-common + 11.0.15 + + + org.eclipse.jetty.http2 + http2-hpack + 11.0.15 + + + org.eclipse.jetty.http2 + http2-http-client-transport + 11.0.15 + + + org.eclipse.jetty.http2 + http2-server + 11.0.15 + + + org.eclipse.jetty.http3 + http3-client + 11.0.15 + + + org.eclipse.jetty.http3 + http3-common + 11.0.15 + + + org.eclipse.jetty.http3 + http3-http-client-transport + 11.0.15 + + + org.eclipse.jetty.http3 + http3-qpack + 11.0.15 + + + org.eclipse.jetty.http3 + http3-server + 11.0.15 + + + org.eclipse.jetty + jetty-http-spi + 11.0.15 + + + org.eclipse.jetty + infinispan-common + 11.0.15 + + + org.eclipse.jetty + infinispan-remote-query + 11.0.15 + + + org.eclipse.jetty + infinispan-embedded-query + 11.0.15 + + + org.eclipse.jetty + jetty-hazelcast + 11.0.15 + + + org.eclipse.jetty + jetty-io + 11.0.15 + + + org.eclipse.jetty + jetty-jaas + 11.0.15 + + + org.eclipse.jetty + jetty-jaspi + 11.0.15 + + + org.eclipse.jetty + jetty-jmx + 11.0.15 + + + org.eclipse.jetty + jetty-jndi + 11.0.15 + + + org.eclipse.jetty + jetty-keystore + 11.0.15 + + + org.eclipse.jetty.memcached + jetty-memcached-sessions + 11.0.15 + + + org.eclipse.jetty + jetty-nosql + 11.0.15 + + + org.eclipse.jetty.osgi + jetty-osgi-alpn + 11.0.15 + + + org.eclipse.jetty.osgi + jetty-osgi-boot + 11.0.15 + + + org.eclipse.jetty.osgi + jetty-osgi-boot-jsp + 11.0.15 + + + org.eclipse.jetty.osgi + jetty-osgi-boot-warurl + 11.0.15 + + + org.eclipse.jetty.quic + quic-client + 11.0.15 + + + org.eclipse.jetty.quic + quic-common + 11.0.15 + + + org.eclipse.jetty.quic + quic-quiche-common + 11.0.15 + + + org.eclipse.jetty.quic + quic-quiche-jna + 11.0.15 + + + org.eclipse.jetty.quic + quic-server + 11.0.15 + + + org.eclipse.jetty.osgi + jetty-httpservice + 11.0.15 + + + org.eclipse.jetty + jetty-plus + 11.0.15 + + + org.eclipse.jetty + jetty-proxy + 11.0.15 + + + org.eclipse.jetty + jetty-quickstart + 11.0.15 + + + org.eclipse.jetty + jetty-rewrite + 11.0.15 + + + org.eclipse.jetty + jetty-security + 11.0.15 + + + org.eclipse.jetty + jetty-openid + 11.0.15 + + + org.eclipse.jetty + jetty-server + 11.0.15 + + + org.eclipse.jetty + jetty-servlet + 11.0.15 + + + org.eclipse.jetty + jetty-servlets + 11.0.15 + + + org.eclipse.jetty + jetty-slf4j-impl + 11.0.15 + + + org.eclipse.jetty + jetty-unixdomain-server + 11.0.15 + + + org.eclipse.jetty + jetty-unixsocket-common + 11.0.15 + + + org.eclipse.jetty + jetty-unixsocket-client + 11.0.15 + + + org.eclipse.jetty + jetty-unixsocket-server + 11.0.15 + + + org.eclipse.jetty + jetty-util + 11.0.15 + + + org.eclipse.jetty + jetty-util-ajax + 11.0.15 + + + org.eclipse.jetty + jetty-webapp + 11.0.15 + + + org.eclipse.jetty.websocket + websocket-jakarta-client + 11.0.15 + + + org.eclipse.jetty.websocket + websocket-jakarta-server + 11.0.15 + + + org.eclipse.jetty.websocket + websocket-jakarta-common + 11.0.15 + + + org.eclipse.jetty.websocket + websocket-jetty-api + 11.0.15 + + + org.eclipse.jetty.websocket + websocket-jetty-client + 11.0.15 + + + org.eclipse.jetty.websocket + websocket-jetty-common + 11.0.15 + + + org.eclipse.jetty.websocket + websocket-jetty-server + 11.0.15 + + + org.eclipse.jetty.websocket + websocket-servlet + 11.0.15 + + + org.eclipse.jetty.websocket + websocket-core-common + 11.0.15 + + + org.eclipse.jetty.websocket + websocket-core-client + 11.0.15 + + + org.eclipse.jetty.websocket + websocket-core-server + 11.0.15 + + + org.eclipse.jetty + jetty-xml + 11.0.15 + + + org.junit.jupiter + junit-jupiter + 5.9.3 + + + org.junit.jupiter + junit-jupiter-api + 5.9.3 + + + org.junit.jupiter + junit-jupiter-engine + 5.9.3 + + + org.junit.jupiter + junit-jupiter-migrationsupport + 5.9.3 + + + org.junit.jupiter + junit-jupiter-params + 5.9.3 + + + org.junit.platform + junit-platform-commons + 1.9.3 + + + org.junit.platform + junit-platform-console + 1.9.3 + + + org.junit.platform + junit-platform-engine + 1.9.3 + + + org.junit.platform + junit-platform-jfr + 1.9.3 + + + org.junit.platform + junit-platform-launcher + 1.9.3 + + + org.junit.platform + junit-platform-reporting + 1.9.3 + + + org.junit.platform + junit-platform-runner + 1.9.3 + + + org.junit.platform + junit-platform-suite + 1.9.3 + + + org.junit.platform + junit-platform-suite-api + 1.9.3 + + + org.junit.platform + junit-platform-suite-commons + 1.9.3 + + + org.junit.platform + junit-platform-suite-engine + 1.9.3 + + + org.junit.platform + junit-platform-testkit + 1.9.3 + + + org.junit.vintage + junit-vintage-engine + 5.9.3 + + + org.jetbrains.kotlin + kotlin-stdlib + 1.8.21 + + + org.jetbrains.kotlin + kotlin-stdlib-jdk7 + 1.8.21 + + + org.jetbrains.kotlin + kotlin-stdlib-jdk8 + 1.8.21 + + + org.jetbrains.kotlin + kotlin-stdlib-js + 1.8.21 + + + org.jetbrains.kotlin + kotlin-stdlib-common + 1.8.21 + + + org.jetbrains.kotlin + kotlin-reflect + 1.8.21 + + + org.jetbrains.kotlin + kotlin-osgi-bundle + 1.8.21 + + + org.jetbrains.kotlin + kotlin-test + 1.8.21 + + + org.jetbrains.kotlin + kotlin-test-junit + 1.8.21 + + + org.jetbrains.kotlin + kotlin-test-junit5 + 1.8.21 + + + org.jetbrains.kotlin + kotlin-test-testng + 1.8.21 + + + org.jetbrains.kotlin + kotlin-test-js + 1.8.21 + + + org.jetbrains.kotlin + kotlin-test-common + 1.8.21 + + + org.jetbrains.kotlin + kotlin-test-annotations-common + 1.8.21 + + + org.jetbrains.kotlin + kotlin-main-kts + 1.8.21 + + + org.jetbrains.kotlin + kotlin-script-runtime + 1.8.21 + + + org.jetbrains.kotlin + kotlin-script-util + 1.8.21 + + + org.jetbrains.kotlin + kotlin-scripting-common + 1.8.21 + + + org.jetbrains.kotlin + kotlin-scripting-jvm + 1.8.21 + + + org.jetbrains.kotlin + kotlin-scripting-jvm-host + 1.8.21 + + + org.jetbrains.kotlin + kotlin-scripting-ide-services + 1.8.21 + + + org.jetbrains.kotlin + kotlin-compiler + 1.8.21 + + + org.jetbrains.kotlin + kotlin-compiler-embeddable + 1.8.21 + + + org.jetbrains.kotlin + kotlin-daemon-client + 1.8.21 + + + org.jetbrains.kotlinx + kotlinx-coroutines-android + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-core-jvm + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-core + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-debug + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-guava + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-javafx + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-jdk8 + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-jdk9 + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-play-services + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-reactive + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-reactor + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-rx2 + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-rx3 + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-slf4j + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-swing + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-test-jvm + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-test + 1.6.4 + + + org.apache.logging.log4j + log4j-1.2-api + 2.20.0 + + + org.apache.logging.log4j + log4j-api + 2.20.0 + + + org.apache.logging.log4j + log4j-api-test + 2.20.0 + + + org.apache.logging.log4j + log4j-appserver + 2.20.0 + + + org.apache.logging.log4j + log4j-cassandra + 2.20.0 + + + org.apache.logging.log4j + log4j-core + 2.20.0 + + + org.apache.logging.log4j + log4j-core-test + 2.20.0 + + + org.apache.logging.log4j + log4j-couchdb + 2.20.0 + + + org.apache.logging.log4j + log4j-docker + 2.20.0 + + + org.apache.logging.log4j + log4j-flume-ng + 2.20.0 + + + org.apache.logging.log4j + log4j-iostreams + 2.20.0 + + + org.apache.logging.log4j + log4j-jakarta-smtp + 2.20.0 + + + org.apache.logging.log4j + log4j-jakarta-web + 2.20.0 + + + org.apache.logging.log4j + log4j-jcl + 2.20.0 + + + org.apache.logging.log4j + log4j-jmx-gui + 2.20.0 + + + org.apache.logging.log4j + log4j-jpa + 2.20.0 + + + org.apache.logging.log4j + log4j-jpl + 2.20.0 + + + org.apache.logging.log4j + log4j-jul + 2.20.0 + + + org.apache.logging.log4j + log4j-kubernetes + 2.20.0 + + + org.apache.logging.log4j + log4j-layout-template-json + 2.20.0 + + + org.apache.logging.log4j + log4j-layout-template-json-test + 2.20.0 + + + org.apache.logging.log4j + log4j-mongodb3 + 2.20.0 + + + org.apache.logging.log4j + log4j-mongodb4 + 2.20.0 + + + org.apache.logging.log4j + log4j-slf4j2-impl + 2.20.0 + + + org.apache.logging.log4j + log4j-slf4j-impl + 2.20.0 + + + org.apache.logging.log4j + log4j-spring-boot + 2.20.0 + + + org.apache.logging.log4j + log4j-spring-cloud-config-client + 2.20.0 + + + org.apache.logging.log4j + log4j-taglib + 2.20.0 + + + org.apache.logging.log4j + log4j-to-jul + 2.20.0 + + + org.apache.logging.log4j + log4j-to-slf4j + 2.20.0 + + + org.apache.logging.log4j + log4j-web + 2.20.0 + + + org.apache.maven.plugin-tools + maven-plugin-annotations + 3.6.4 + + + io.micrometer + micrometer-commons + 1.11.0 + + + io.micrometer + micrometer-core + 1.11.0 + + + io.micrometer + micrometer-jetty11 + 1.11.0 + + + io.micrometer + micrometer-observation + 1.11.0 + + + io.micrometer + micrometer-observation-test + 1.11.0 + + + io.micrometer + micrometer-osgi-test + 1.11.0 + + + io.micrometer + micrometer-registry-appoptics + 1.11.0 + + + io.micrometer + micrometer-registry-atlas + 1.11.0 + + + io.micrometer + micrometer-registry-azure-monitor + 1.11.0 + + + io.micrometer + micrometer-registry-cloudwatch + 1.11.0 + + + io.micrometer + micrometer-registry-cloudwatch2 + 1.11.0 + + + io.micrometer + micrometer-registry-datadog + 1.11.0 + + + io.micrometer + micrometer-registry-dynatrace + 1.11.0 + + + io.micrometer + micrometer-registry-elastic + 1.11.0 + + + io.micrometer + micrometer-registry-ganglia + 1.11.0 + + + io.micrometer + micrometer-registry-graphite + 1.11.0 + + + io.micrometer + micrometer-registry-health + 1.11.0 + + + io.micrometer + micrometer-registry-humio + 1.11.0 + + + io.micrometer + micrometer-registry-influx + 1.11.0 + + + io.micrometer + micrometer-registry-jmx + 1.11.0 + + + io.micrometer + micrometer-registry-kairos + 1.11.0 + + + io.micrometer + micrometer-registry-new-relic + 1.11.0 + + + io.micrometer + micrometer-registry-opentsdb + 1.11.0 + + + io.micrometer + micrometer-registry-otlp + 1.11.0 + + + io.micrometer + micrometer-registry-prometheus + 1.11.0 + + + io.micrometer + micrometer-registry-signalfx + 1.11.0 + + + io.micrometer + micrometer-registry-statsd + 1.11.0 + + + io.micrometer + micrometer-registry-wavefront + 1.11.0 + + + io.micrometer + micrometer-test + 1.11.0 + + + io.micrometer + micrometer-tracing + 1.1.1 + + + io.micrometer + micrometer-tracing-bridge-brave + 1.1.1 + + + io.micrometer + micrometer-tracing-bridge-otel + 1.1.1 + + + io.micrometer + micrometer-tracing-integration-test + 1.1.1 + + + io.micrometer + micrometer-tracing-reporter-wavefront + 1.1.1 + + + io.micrometer + micrometer-tracing-test + 1.1.1 + + + org.mockito + mockito-core + 5.3.1 + + + org.mockito + mockito-android + 5.3.1 + + + org.mockito + mockito-errorprone + 5.3.1 + + + org.mockito + mockito-junit-jupiter + 5.3.1 + + + org.mockito + mockito-proxy + 5.3.1 + + + org.mockito + mockito-subclass + 5.3.1 + + + io.netty + netty-buffer + 4.1.92.Final + + + io.netty + netty-codec + 4.1.92.Final + + + io.netty + netty-codec-dns + 4.1.92.Final + + + io.netty + netty-codec-haproxy + 4.1.92.Final + + + io.netty + netty-codec-http + 4.1.92.Final + + + io.netty + netty-codec-http2 + 4.1.92.Final + + + io.netty + netty-codec-memcache + 4.1.92.Final + + + io.netty + netty-codec-mqtt + 4.1.92.Final + + + io.netty + netty-codec-redis + 4.1.92.Final + + + io.netty + netty-codec-smtp + 4.1.92.Final + + + io.netty + netty-codec-socks + 4.1.92.Final + + + io.netty + netty-codec-stomp + 4.1.92.Final + + + io.netty + netty-codec-xml + 4.1.92.Final + + + io.netty + netty-common + 4.1.92.Final + + + io.netty + netty-dev-tools + 4.1.92.Final + + + io.netty + netty-handler + 4.1.92.Final + + + io.netty + netty-handler-proxy + 4.1.92.Final + + + io.netty + netty-handler-ssl-ocsp + 4.1.92.Final + + + io.netty + netty-resolver + 4.1.92.Final + + + io.netty + netty-resolver-dns + 4.1.92.Final + + + io.netty + netty-transport + 4.1.92.Final + + + io.netty + netty-transport-rxtx + 4.1.92.Final + + + io.netty + netty-transport-sctp + 4.1.92.Final + + + io.netty + netty-transport-udt + 4.1.92.Final + + + io.netty + netty-example + 4.1.92.Final + + + io.netty + netty-all + 4.1.92.Final + + + io.netty + netty-resolver-dns-classes-macos + 4.1.92.Final + + + io.netty + netty-resolver-dns-native-macos + 4.1.92.Final + + + io.netty + netty-resolver-dns-native-macos + 4.1.92.Final + osx-x86_64 + + + io.netty + netty-resolver-dns-native-macos + 4.1.92.Final + osx-aarch_64 + + + io.netty + netty-transport-native-unix-common + 4.1.92.Final + + + io.netty + netty-transport-native-unix-common + 4.1.92.Final + linux-aarch_64 + + + io.netty + netty-transport-native-unix-common + 4.1.92.Final + linux-x86_64 + + + io.netty + netty-transport-native-unix-common + 4.1.92.Final + osx-x86_64 + + + io.netty + netty-transport-native-unix-common + 4.1.92.Final + osx-aarch_64 + + + io.netty + netty-transport-classes-epoll + 4.1.92.Final + + + io.netty + netty-transport-native-epoll + 4.1.92.Final + + + io.netty + netty-transport-native-epoll + 4.1.92.Final + linux-aarch_64 + + + io.netty + netty-transport-native-epoll + 4.1.92.Final + linux-x86_64 + + + io.netty + netty-transport-classes-kqueue + 4.1.92.Final + + + io.netty + netty-transport-native-kqueue + 4.1.92.Final + + + io.netty + netty-transport-native-kqueue + 4.1.92.Final + osx-x86_64 + + + io.netty + netty-transport-native-kqueue + 4.1.92.Final + osx-aarch_64 + + + io.netty + netty-tcnative-classes + 2.0.60.Final + + + io.netty + netty-tcnative + 2.0.60.Final + linux-x86_64 + + + io.netty + netty-tcnative + 2.0.60.Final + linux-x86_64-fedora + + + io.netty + netty-tcnative + 2.0.60.Final + linux-aarch_64-fedora + + + io.netty + netty-tcnative + 2.0.60.Final + osx-x86_64 + + + io.netty + netty-tcnative-boringssl-static + 2.0.60.Final + + + io.netty + netty-tcnative-boringssl-static + 2.0.60.Final + linux-x86_64 + + + io.netty + netty-tcnative-boringssl-static + 2.0.60.Final + linux-aarch_64 + + + io.netty + netty-tcnative-boringssl-static + 2.0.60.Final + osx-x86_64 + + + io.netty + netty-tcnative-boringssl-static + 2.0.60.Final + osx-aarch_64 + + + io.netty + netty-tcnative-boringssl-static + 2.0.60.Final + windows-x86_64 + + + com.squareup.okhttp3 + mockwebserver + 4.10.0 + + + com.squareup.okhttp3 + okcurl + 4.10.0 + + + com.squareup.okhttp3 + okhttp + 4.10.0 + + + com.squareup.okhttp3 + okhttp-brotli + 4.10.0 + + + com.squareup.okhttp3 + okhttp-dnsoverhttps + 4.10.0 + + + com.squareup.okhttp3 + logging-interceptor + 4.10.0 + + + com.squareup.okhttp3 + okhttp-sse + 4.10.0 + + + com.squareup.okhttp3 + okhttp-tls + 4.10.0 + + + com.squareup.okhttp3 + okhttp-urlconnection + 4.10.0 + + + io.opentelemetry + opentelemetry-context + 1.25.0 + + + io.opentelemetry + opentelemetry-api + 1.25.0 + + + io.opentelemetry + opentelemetry-exporter-common + 1.25.0 + + + io.opentelemetry + opentelemetry-exporter-jaeger + 1.25.0 + + + io.opentelemetry + opentelemetry-exporter-jaeger-thrift + 1.25.0 + + + io.opentelemetry + opentelemetry-exporter-logging + 1.25.0 + + + io.opentelemetry + opentelemetry-exporter-logging-otlp + 1.25.0 + + + io.opentelemetry + opentelemetry-exporter-zipkin + 1.25.0 + + + io.opentelemetry + opentelemetry-extension-kotlin + 1.25.0 + + + io.opentelemetry + opentelemetry-extension-trace-propagators + 1.25.0 + + + io.opentelemetry + opentelemetry-sdk + 1.25.0 + + + io.opentelemetry + opentelemetry-sdk-common + 1.25.0 + + + io.opentelemetry + opentelemetry-sdk-metrics + 1.25.0 + + + io.opentelemetry + opentelemetry-sdk-testing + 1.25.0 + + + io.opentelemetry + opentelemetry-sdk-trace + 1.25.0 + + + io.opentelemetry + opentelemetry-sdk-extension-autoconfigure-spi + 1.25.0 + + + io.opentelemetry + opentelemetry-sdk-extension-jaeger-remote-sampler + 1.25.0 + + + io.opentelemetry + opentelemetry-exporter-otlp + 1.25.0 + + + io.opentelemetry + opentelemetry-exporter-otlp-common + 1.25.0 + + + io.opentelemetry + opentelemetry-sdk-extension-aws + 1.19.0 + + + io.opentelemetry + opentelemetry-exporter-jaeger-proto + 1.17.0 + + + io.opentelemetry + opentelemetry-extension-annotations + 1.18.0 + + + io.opentelemetry + opentelemetry-sdk-extension-resources + 1.19.0 + + + io.opentelemetry + opentelemetry-extension-aws + 1.20.1 + + + com.oracle.database.jdbc + ojdbc11 + 21.9.0.0 + + + com.oracle.database.jdbc + ojdbc8 + 21.9.0.0 + + + com.oracle.database.jdbc + ucp + 21.9.0.0 + + + com.oracle.database.jdbc + ucp11 + 21.9.0.0 + + + com.oracle.database.jdbc + rsi + 21.9.0.0 + + + com.oracle.database.security + oraclepki + 21.9.0.0 + + + com.oracle.database.security + osdt_core + 21.9.0.0 + + + com.oracle.database.security + osdt_cert + 21.9.0.0 + + + com.oracle.database.ha + simplefan + 21.9.0.0 + + + com.oracle.database.ha + ons + 21.9.0.0 + + + com.oracle.database.nls + orai18n + 21.9.0.0 + + + com.oracle.database.xml + xdb + 21.9.0.0 + + + com.oracle.database.xml + xmlparserv2 + 21.9.0.0 + + + com.oracle.database.jdbc.debug + ojdbc11_g + 21.9.0.0 + + + com.oracle.database.jdbc.debug + ojdbc8_g + 21.9.0.0 + + + com.oracle.database.jdbc.debug + ojdbc8dms_g + 21.9.0.0 + + + com.oracle.database.jdbc.debug + ojdbc11dms_g + 21.9.0.0 + + + com.oracle.database.observability + dms + 21.9.0.0 + + + com.oracle.database.observability + ojdbc11dms + 21.9.0.0 + + + com.oracle.database.observability + ojdbc8dms + 21.9.0.0 + + + com.oracle.database.jdbc + ojdbc11-production + 21.9.0.0 + pom + + + com.oracle.database.jdbc + ojdbc8-production + 21.9.0.0 + pom + + + com.oracle.database.observability + ojdbc8-observability + 21.9.0.0 + pom + + + com.oracle.database.observability + ojdbc11-observability + 21.9.0.0 + pom + + + com.oracle.database.jdbc.debug + ojdbc8-debug + 21.9.0.0 + pom + + + com.oracle.database.jdbc.debug + ojdbc11-debug + 21.9.0.0 + pom + + + com.oracle.database.jdbc.debug + ojdbc8-observability-debug + 21.9.0.0 + pom + + + com.oracle.database.jdbc.debug + ojdbc11-observability-debug + 21.9.0.0 + pom + + + io.prometheus + simpleclient + 0.16.0 + + + io.prometheus + simpleclient_caffeine + 0.16.0 + + + io.prometheus + simpleclient_common + 0.16.0 + + + io.prometheus + simpleclient_dropwizard + 0.16.0 + + + io.prometheus + simpleclient_graphite_bridge + 0.16.0 + + + io.prometheus + simpleclient_guava + 0.16.0 + + + io.prometheus + simpleclient_hibernate + 0.16.0 + + + io.prometheus + simpleclient_hotspot + 0.16.0 + + + io.prometheus + simpleclient_httpserver + 0.16.0 + + + io.prometheus + simpleclient_tracer_common + 0.16.0 + + + io.prometheus + simpleclient_jetty + 0.16.0 + + + io.prometheus + simpleclient_jetty_jdk8 + 0.16.0 + + + io.prometheus + simpleclient_log4j + 0.16.0 + + + io.prometheus + simpleclient_log4j2 + 0.16.0 + + + io.prometheus + simpleclient_logback + 0.16.0 + + + io.prometheus + simpleclient_pushgateway + 0.16.0 + + + io.prometheus + simpleclient_servlet + 0.16.0 + + + io.prometheus + simpleclient_servlet_jakarta + 0.16.0 + + + io.prometheus + simpleclient_spring_boot + 0.16.0 + + + io.prometheus + simpleclient_spring_web + 0.16.0 + + + io.prometheus + simpleclient_tracer_otel + 0.16.0 + + + io.prometheus + simpleclient_tracer_otel_agent + 0.16.0 + + + io.prometheus + simpleclient_vertx + 0.16.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 + + + io.projectreactor + reactor-core + 3.5.6 + + + io.projectreactor + reactor-test + 3.5.6 + + + io.projectreactor + reactor-tools + 3.5.6 + + + io.projectreactor + reactor-core-micrometer + 1.0.6 + + + io.projectreactor.addons + reactor-extra + 3.5.1 + + + io.projectreactor.addons + reactor-adapter + 3.5.1 + + + io.projectreactor.netty + reactor-netty + 1.1.7 + + + io.projectreactor.netty + reactor-netty-core + 1.1.7 + + + io.projectreactor.netty + reactor-netty-http + 1.1.7 + + + io.projectreactor.netty + reactor-netty-http-brave + 1.1.7 + + + io.projectreactor.addons + reactor-pool + 1.0.0 + + + io.projectreactor.addons + reactor-pool-micrometer + 0.1.0 + + + io.projectreactor.kotlin + reactor-kotlin-extensions + 1.2.2 + + + io.projectreactor.kafka + reactor-kafka + 1.3.18 + + + io.rest-assured + json-schema-validator + 5.3.0 + + + io.rest-assured + rest-assured-common + 5.3.0 + + + io.rest-assured + json-path + 5.3.0 + + + io.rest-assured + xml-path + 5.3.0 + + + io.rest-assured + rest-assured + 5.3.0 + + + io.rest-assured + spring-commons + 5.3.0 + + + io.rest-assured + spring-mock-mvc + 5.3.0 + + + io.rest-assured + scala-support + 5.3.0 + + + io.rest-assured + spring-web-test-client + 5.3.0 + + + io.rest-assured + kotlin-extensions + 5.3.0 + + + io.rest-assured + spring-mock-mvc-kotlin-extensions + 5.3.0 + + + io.rest-assured + rest-assured-all + 5.3.0 + + + io.rsocket + rsocket-core + 1.1.3 + + + io.rsocket + rsocket-load-balancer + 1.1.3 + + + io.rsocket + rsocket-micrometer + 1.1.3 + + + io.rsocket + rsocket-test + 1.1.3 + + + io.rsocket + rsocket-transport-local + 1.1.3 + + + io.rsocket + rsocket-transport-netty + 1.1.3 + + + org.springframework.batch + spring-batch-core + 5.0.2 + + + org.springframework.batch + spring-batch-infrastructure + 5.0.2 + + + org.springframework.batch + spring-batch-integration + 5.0.2 + + + org.springframework.batch + spring-batch-test + 5.0.2 + + + org.springframework.data + spring-data-cassandra + 4.1.0 + + + org.springframework.data + spring-data-commons + 3.1.0 + + + org.springframework.data + spring-data-couchbase + 5.1.0 + + + org.springframework.data + spring-data-elasticsearch + 5.1.0 + + + org.springframework.data + spring-data-jdbc + 3.1.0 + + + org.springframework.data + spring-data-r2dbc + 3.1.0 + + + org.springframework.data + spring-data-relational + 3.1.0 + + + org.springframework.data + spring-data-jpa + 3.1.0 + + + org.springframework.data + spring-data-envers + 3.1.0 + + + org.springframework.data + spring-data-mongodb + 4.1.0 + + + org.springframework.data + spring-data-neo4j + 7.1.0 + + + org.springframework.data + spring-data-redis + 3.1.0 + + + org.springframework.data + spring-data-rest-webmvc + 4.1.0 + + + org.springframework.data + spring-data-rest-core + 4.1.0 + + + org.springframework.data + spring-data-rest-hal-explorer + 4.1.0 + + + org.springframework.data + spring-data-keyvalue + 3.1.0 + + + org.springframework.data + spring-data-ldap + 3.1.0 + + + org.springframework + spring-aop + 6.0.9 + + + org.springframework + spring-aspects + 6.0.9 + + + org.springframework + spring-beans + 6.0.9 + + + org.springframework + spring-context + 6.0.9 + + + org.springframework + spring-context-indexer + 6.0.9 + + + org.springframework + spring-context-support + 6.0.9 + + + org.springframework + spring-core + 6.0.9 + + + org.springframework + spring-core-test + 6.0.9 + + + org.springframework + spring-expression + 6.0.9 + + + org.springframework + spring-instrument + 6.0.9 + + + org.springframework + spring-jcl + 6.0.9 + + + org.springframework + spring-jdbc + 6.0.9 + + + org.springframework + spring-jms + 6.0.9 + + + org.springframework + spring-messaging + 6.0.9 + + + org.springframework + spring-orm + 6.0.9 + + + org.springframework + spring-oxm + 6.0.9 + + + org.springframework + spring-r2dbc + 6.0.9 + + + org.springframework + spring-test + 6.0.9 + + + org.springframework + spring-tx + 6.0.9 + + + org.springframework + spring-web + 6.0.9 + + + org.springframework + spring-webflux + 6.0.9 + + + org.springframework + spring-webmvc + 6.0.9 + + + org.springframework + spring-websocket + 6.0.9 + + + org.springframework.integration + spring-integration-amqp + 6.1.0 + + + org.springframework.integration + spring-integration-camel + 6.1.0 + + + org.springframework.integration + spring-integration-cassandra + 6.1.0 + + + org.springframework.integration + spring-integration-core + 6.1.0 + + + org.springframework.integration + spring-integration-event + 6.1.0 + + + org.springframework.integration + spring-integration-feed + 6.1.0 + + + org.springframework.integration + spring-integration-file + 6.1.0 + + + org.springframework.integration + spring-integration-ftp + 6.1.0 + + + org.springframework.integration + spring-integration-graphql + 6.1.0 + + + org.springframework.integration + spring-integration-groovy + 6.1.0 + + + org.springframework.integration + spring-integration-hazelcast + 6.1.0 + + + org.springframework.integration + spring-integration-http + 6.1.0 + + + org.springframework.integration + spring-integration-ip + 6.1.0 + + + org.springframework.integration + spring-integration-jdbc + 6.1.0 + + + org.springframework.integration + spring-integration-jms + 6.1.0 + + + org.springframework.integration + spring-integration-jmx + 6.1.0 + + + org.springframework.integration + spring-integration-jpa + 6.1.0 + + + org.springframework.integration + spring-integration-kafka + 6.1.0 + + + org.springframework.integration + spring-integration-mail + 6.1.0 + + + org.springframework.integration + spring-integration-mongodb + 6.1.0 + + + org.springframework.integration + spring-integration-mqtt + 6.1.0 + + + org.springframework.integration + spring-integration-r2dbc + 6.1.0 + + + org.springframework.integration + spring-integration-redis + 6.1.0 + + + org.springframework.integration + spring-integration-rsocket + 6.1.0 + + + org.springframework.integration + spring-integration-scripting + 6.1.0 + + + org.springframework.integration + spring-integration-security + 6.1.0 + + + org.springframework.integration + spring-integration-sftp + 6.1.0 + + + org.springframework.integration + spring-integration-smb + 6.1.0 + + + org.springframework.integration + spring-integration-stomp + 6.1.0 + + + org.springframework.integration + spring-integration-stream + 6.1.0 + + + org.springframework.integration + spring-integration-syslog + 6.1.0 + + + org.springframework.integration + spring-integration-test + 6.1.0 + + + org.springframework.integration + spring-integration-test-support + 6.1.0 + + + org.springframework.integration + spring-integration-webflux + 6.1.0 + + + org.springframework.integration + spring-integration-websocket + 6.1.0 + + + org.springframework.integration + spring-integration-ws + 6.1.0 + + + org.springframework.integration + spring-integration-xml + 6.1.0 + + + org.springframework.integration + spring-integration-xmpp + 6.1.0 + + + org.springframework.integration + spring-integration-zeromq + 6.1.0 + + + org.springframework.integration + spring-integration-zip + 6.1.0 + + + org.springframework.integration + spring-integration-zookeeper + 6.1.0 + + + org.springframework.restdocs + spring-restdocs-asciidoctor + 3.0.0 + + + org.springframework.restdocs + spring-restdocs-core + 3.0.0 + + + org.springframework.restdocs + spring-restdocs-mockmvc + 3.0.0 + + + org.springframework.restdocs + spring-restdocs-restassured + 3.0.0 + + + org.springframework.restdocs + spring-restdocs-webtestclient + 3.0.0 + + + org.springframework.security + spring-security-acl + 6.1.0 + + + org.springframework.security + spring-security-aspects + 6.1.0 + + + org.springframework.security + spring-security-cas + 6.1.0 + + + org.springframework.security + spring-security-config + 6.1.0 + + + org.springframework.security + spring-security-core + 6.1.0 + + + org.springframework.security + spring-security-crypto + 6.1.0 + + + org.springframework.security + spring-security-data + 6.1.0 + + + org.springframework.security + spring-security-ldap + 6.1.0 + + + org.springframework.security + spring-security-messaging + 6.1.0 + + + org.springframework.security + spring-security-oauth2-client + 6.1.0 + + + org.springframework.security + spring-security-oauth2-core + 6.1.0 + + + org.springframework.security + spring-security-oauth2-jose + 6.1.0 + + + org.springframework.security + spring-security-oauth2-resource-server + 6.1.0 + + + org.springframework.security + spring-security-rsocket + 6.1.0 + + + org.springframework.security + spring-security-saml2-service-provider + 6.1.0 + + + org.springframework.security + spring-security-taglibs + 6.1.0 + + + org.springframework.security + spring-security-test + 6.1.0 + + + org.springframework.security + spring-security-web + 6.1.0 + + + org.springframework.session + spring-session-core + 3.1.0 + + + org.springframework.session + spring-session-data-mongodb + 3.1.0 + + + org.springframework.session + spring-session-data-redis + 3.1.0 + + + org.springframework.session + spring-session-hazelcast + 3.1.0 + + + org.springframework.session + spring-session-jdbc + 3.1.0 + + + org.springframework.ws + spring-ws-core + 4.0.4 + + + org.springframework.ws + spring-ws-security + 4.0.4 + + + org.springframework.ws + spring-ws-support + 4.0.4 + + + org.springframework.ws + spring-ws-test + 4.0.4 + + + org.springframework.ws + spring-xml + 4.0.4 + + + + + + org.jenkins-ci + version-number + 1.11 + compile + + + org.kohsuke + github-api + 1.315 + compile + + + org.eclipse.jgit + org.eclipse.jgit + 6.6.0.202305301015-r + compile + + + com.fasterxml.jackson.dataformat + jackson-dataformat-yaml + 2.15.0 + compile + + + org.springframework.boot + spring-boot-starter-data-jpa + 3.1.0 + compile + + + org.springframework.boot + spring-boot-starter-validation + 3.1.0 + compile + + + com.vladmihalcea + hibernate-types-60 + 2.21.1 + compile + + + io.jenkins.pluginhealth.scoring + plugin-health-scoring-test + 2.4.3-SNAPSHOT + test + + + org.springframework.boot + spring-boot-starter-test + 3.1.0 + test + + + junit + junit + + + + + org.junit.jupiter + junit-jupiter-engine + 5.9.3 + test + + + org.junit.jupiter + junit-jupiter-params + 5.9.3 + test + + + org.postgresql + postgresql + 42.6.0 + test + + + org.apache.maven + maven-model + 3.9.2 + compile + + + + + repo.jenkins-ci.org + https://repo.jenkins-ci.org/public/ + + + + false + + central + Central Repository + https://repo.maven.apache.org/maven2 + + + + + repo.jenkins-ci.org + https://repo.jenkins-ci.org/public/ + + + + never + + + false + + central + Central Repository + https://repo.maven.apache.org/maven2 + + + + D:\jenkins-oss\plugin-health-scoring\core\src\main\java + D:\jenkins-oss\plugin-health-scoring\core\src\main\scripts + D:\jenkins-oss\plugin-health-scoring\core\src\test\java + D:\jenkins-oss\plugin-health-scoring\core\target\classes + D:\jenkins-oss\plugin-health-scoring\core\target\test-classes + + + D:\jenkins-oss\plugin-health-scoring\core\src\main\resources + + + + + D:\jenkins-oss\plugin-health-scoring\core\src\test\resources + + + D:\jenkins-oss\plugin-health-scoring\core\target + plugin-health-scoring-core-2.4.3-SNAPSHOT + + + + maven-antrun-plugin + 1.3 + + + maven-assembly-plugin + 2.2-beta-5 + + + maven-dependency-plugin + 2.8 + + + maven-checkstyle-plugin + 3.3.0 + + + com.puppycrawl.tools + checkstyle + 10.12.0 + + + + false + true + analytics/checkstyle-configuration.xml + + + + maven-compiler-plugin + 3.11.0 + + 17 + + -parameters + + + + + maven-failsafe-plugin + 3.1.0 + + + + integration-test + verify + + + D:\jenkins-oss\plugin-health-scoring\core\target\classes + + + + + D:\jenkins-oss\plugin-health-scoring\core\target\classes + + + + maven-release-plugin + 3.0.1 + + verify + true + v@{project.version} + + + + maven-surefire-plugin + 3.1.0 + + + com.github.spotbugs + spotbugs-maven-plugin + 4.7.3.4 + + analytics/spotbugs-exclude.xml + Max + + + + org.jacoco + jacoco-maven-plugin + 0.8.10 + + + XML + + + + + + + + maven-failsafe-plugin + 3.1.0 + + + + integration-test + verify + + + D:\jenkins-oss\plugin-health-scoring\core\target\classes + + + + + D:\jenkins-oss\plugin-health-scoring\core\target\classes + + + + org.jacoco + jacoco-maven-plugin + 0.8.10 + + + default-prepare-agent + + prepare-agent + + + + XML + + + + + default-prepare-agent-integration + + prepare-agent-integration + + + + XML + + + + + merge-data-files + post-integration-test + + merge + + + + + D:\jenkins-oss\plugin-health-scoring\core\target + + jacoco.exec + jacoco-it.exec + + + + D:\jenkins-oss\plugin-health-scoring\core\target/jacoco-merged.exec + + XML + + + + + merged-report + post-integration-test + + report + + + D:\jenkins-oss\plugin-health-scoring\core\target/jacoco-merged.exec + + XML + + + + + + + XML + + + + + org.codehaus.mojo + tidy-maven-plugin + 1.2.0 + + + tidy-pom + validate + + pom + + + + + + maven-clean-plugin + 2.5 + + + default-clean + clean + + clean + + + + + + maven-resources-plugin + 2.6 + + + default-testResources + process-test-resources + + testResources + + + + default-resources + process-resources + + resources + + + + + + maven-jar-plugin + 2.4 + + + default-jar + package + + jar + + + + + + maven-compiler-plugin + 3.11.0 + + + default-compile + compile + + compile + + + 17 + + -parameters + + + + + default-testCompile + test-compile + + testCompile + + + 17 + + -parameters + + + + + + 17 + + -parameters + + + + + maven-surefire-plugin + 3.1.0 + + + default-test + test + + test + + + + + + maven-install-plugin + 2.4 + + + default-install + install + + install + + + + + + maven-deploy-plugin + 2.7 + + + default-deploy + deploy + + deploy + + + + + + maven-site-plugin + 3.3 + + + default-site + site + + site + + + D:\jenkins-oss\plugin-health-scoring\core\target\site + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + + + + + default-deploy + site-deploy + + deploy + + + D:\jenkins-oss\plugin-health-scoring\core\target\site + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + + + + + + D:\jenkins-oss\plugin-health-scoring\core\target\site + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + + + + + + + D:\jenkins-oss\plugin-health-scoring\core\target\site + + + + + + + + + + 4.0.0 + + io.jenkins.pluginhealth.scoring + plugin-health-scoring-parent + 2.4.3-SNAPSHOT + ../ + + io.jenkins.pluginhealth.scoring + plugin-health-scoring-war + 2.4.3-SNAPSHOT + Plugin Health Scoring :: WAR + Build and provide health indicators on plugins of the Jenkins ecosystem + 2022 + + Jenkins Infra + https://github.com/jenkins-infra + + + + The MIT license + https://opensource.org/licenses/MIT + repo + + + + + adi10hero + Aditya Srivastava + + + alecharp + Adrien Lecharpentier + + + dheerajodha + Dheeraj Singh Jodha + + + jleon33 + Jake Leon + + + + scm:git:https://github.com/jenkins-infra/plugin-health-scoring.git/plugin-health-scoring-war + scm:git:git@github.com:jenkins-infra/plugin-health-scoring.git/plugin-health-scoring-war + https://github.com/jenkins-infra/plugin-health-scoring/plugin-health-scoring-war + + + + maven.jenkins-ci.org + https://repo.jenkins-ci.org/releases/ + + + maven.jenkins-ci.org + https://repo.jenkins-ci.org/snapshots/ + + + + 17 + 0.11.5 + 17 + 17 + 18.10.0 + UTF-8 + UTF-8 + UTF-8 + 3.1.0 + 1.18.3 + ca1a380d840c676152fbf8635a82d838113fe77e1665466699a4e106df4930d2 + 3.2.4 + false + 1.22.19 + + + + + io.jenkins.pluginhealth.scoring + plugin-health-scoring-core + 2.4.3-SNAPSHOT + + + io.jenkins.pluginhealth.scoring + plugin-health-scoring-test + 2.4.3-SNAPSHOT + + + org.kohsuke + github-api + 1.315 + + + io.jsonwebtoken + jjwt-api + 0.11.5 + + + io.jsonwebtoken + jjwt-impl + 0.11.5 + + + io.jsonwebtoken + jjwt-jackson + 0.11.5 + + + org.apache.maven + maven-model + 3.9.2 + + + org.testcontainers + azure + 1.18.3 + + + org.testcontainers + cassandra + 1.18.3 + + + org.testcontainers + clickhouse + 1.18.3 + + + org.testcontainers + cockroachdb + 1.18.3 + + + org.testcontainers + consul + 1.18.3 + + + org.testcontainers + couchbase + 1.18.3 + + + org.testcontainers + cratedb + 1.18.3 + + + org.testcontainers + database-commons + 1.18.3 + + + org.testcontainers + db2 + 1.18.3 + + + org.testcontainers + dynalite + 1.18.3 + + + org.testcontainers + elasticsearch + 1.18.3 + + + org.testcontainers + gcloud + 1.18.3 + + + org.testcontainers + hivemq + 1.18.3 + + + org.testcontainers + influxdb + 1.18.3 + + + org.testcontainers + jdbc + 1.18.3 + + + org.testcontainers + junit-jupiter + 1.18.3 + + + org.testcontainers + k3s + 1.18.3 + + + org.testcontainers + kafka + 1.18.3 + + + org.testcontainers + localstack + 1.18.3 + + + org.testcontainers + mariadb + 1.18.3 + + + org.testcontainers + mockserver + 1.18.3 + + + org.testcontainers + mongodb + 1.18.3 + + + org.testcontainers + mssqlserver + 1.18.3 + + + org.testcontainers + mysql + 1.18.3 + + + org.testcontainers + neo4j + 1.18.3 + + + org.testcontainers + nginx + 1.18.3 + + + org.testcontainers + oracle-xe + 1.18.3 + + + org.testcontainers + orientdb + 1.18.3 + + + org.testcontainers + postgresql + 1.18.3 + + + org.testcontainers + presto + 1.18.3 + + + org.testcontainers + pulsar + 1.18.3 + + + org.testcontainers + questdb + 1.18.3 + + + org.testcontainers + r2dbc + 1.18.3 + + + org.testcontainers + rabbitmq + 1.18.3 + + + org.testcontainers + redpanda + 1.18.3 + + + org.testcontainers + selenium + 1.18.3 + + + org.testcontainers + solace + 1.18.3 + + + org.testcontainers + solr + 1.18.3 + + + org.testcontainers + spock + 1.18.3 + + + org.testcontainers + testcontainers + 1.18.3 + + + org.testcontainers + tidb + 1.18.3 + + + org.testcontainers + toxiproxy + 1.18.3 + + + org.testcontainers + trino + 1.18.3 + + + org.testcontainers + vault + 1.18.3 + + + org.testcontainers + yugabytedb + 1.18.3 + + + org.apache.activemq + activemq-amqp + 5.18.1 + + + org.apache.activemq + activemq-blueprint + 5.18.1 + + + org.apache.activemq + activemq-broker + 5.18.1 + + + org.apache.activemq + activemq-client + 5.18.1 + + + org.apache.activemq + activemq-client-jakarta + 5.18.1 + + + org.apache.activemq + activemq-console + 5.18.1 + + + commons-logging + commons-logging + + + + + org.apache.activemq + activemq-http + 5.18.1 + + + org.apache.activemq + activemq-jaas + 5.18.1 + + + org.apache.activemq + activemq-jdbc-store + 5.18.1 + + + org.apache.activemq + activemq-jms-pool + 5.18.1 + + + org.apache.activemq + activemq-kahadb-store + 5.18.1 + + + org.apache.activemq + activemq-karaf + 5.18.1 + + + org.apache.activemq + activemq-log4j-appender + 5.18.1 + + + org.apache.activemq + activemq-mqtt + 5.18.1 + + + org.apache.activemq + activemq-openwire-generator + 5.18.1 + + + org.apache.activemq + activemq-openwire-legacy + 5.18.1 + + + org.apache.activemq + activemq-osgi + 5.18.1 + + + org.apache.activemq + activemq-partition + 5.18.1 + + + org.apache.activemq + activemq-pool + 5.18.1 + + + org.apache.activemq + activemq-ra + 5.18.1 + + + org.apache.activemq + activemq-run + 5.18.1 + + + org.apache.activemq + activemq-runtime-config + 5.18.1 + + + org.apache.activemq + activemq-shiro + 5.18.1 + + + org.apache.activemq + activemq-spring + 5.18.1 + + + commons-logging + commons-logging + + + + + org.apache.activemq + activemq-stomp + 5.18.1 + + + org.apache.activemq + activemq-web + 5.18.1 + + + org.eclipse.angus + angus-core + 1.1.0 + + + org.eclipse.angus + angus-mail + 1.1.0 + + + org.eclipse.angus + dsn + 1.1.0 + + + org.eclipse.angus + gimap + 1.1.0 + + + org.eclipse.angus + imap + 1.1.0 + + + org.eclipse.angus + jakarta.mail + 1.1.0 + + + org.eclipse.angus + logging-mailhandler + 1.1.0 + + + org.eclipse.angus + pop3 + 1.1.0 + + + org.eclipse.angus + smtp + 1.1.0 + + + org.apache.activemq + artemis-amqp-protocol + 2.28.0 + + + org.apache.activemq + artemis-commons + 2.28.0 + + + org.apache.activemq + artemis-core-client + 2.28.0 + + + org.apache.activemq + artemis-jakarta-client + 2.28.0 + + + org.apache.activemq + artemis-jakarta-server + 2.28.0 + + + org.apache.activemq + artemis-jakarta-service-extensions + 2.28.0 + + + org.apache.activemq + artemis-jdbc-store + 2.28.0 + + + org.apache.activemq + artemis-journal + 2.28.0 + + + org.apache.activemq + artemis-quorum-api + 2.28.0 + + + org.apache.activemq + artemis-selector + 2.28.0 + + + org.apache.activemq + artemis-server + 2.28.0 + + + org.apache.activemq + artemis-service-extensions + 2.28.0 + + + org.aspectj + aspectjrt + 1.9.19 + + + org.aspectj + aspectjtools + 1.9.19 + + + org.aspectj + aspectjweaver + 1.9.19 + + + org.awaitility + awaitility + 4.2.0 + + + org.awaitility + awaitility-groovy + 4.2.0 + + + org.awaitility + awaitility-kotlin + 4.2.0 + + + org.awaitility + awaitility-scala + 4.2.0 + + + net.bytebuddy + byte-buddy + 1.14.4 + + + net.bytebuddy + byte-buddy-agent + 1.14.4 + + + org.cache2k + cache2k-api + 2.6.1.Final + + + org.cache2k + cache2k-config + 2.6.1.Final + + + org.cache2k + cache2k-core + 2.6.1.Final + + + org.cache2k + cache2k-jcache + 2.6.1.Final + + + org.cache2k + cache2k-micrometer + 2.6.1.Final + + + org.cache2k + cache2k-spring + 2.6.1.Final + + + com.github.ben-manes.caffeine + caffeine + 3.1.6 + + + com.github.ben-manes.caffeine + guava + 3.1.6 + + + com.github.ben-manes.caffeine + jcache + 3.1.6 + + + com.github.ben-manes.caffeine + simulator + 3.1.6 + + + com.datastax.oss + java-driver-core + 4.15.0 + + + org.slf4j + jcl-over-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.4.6 + + + com.ibm.db2 + jcc + 11.5.8.0 + + + io.spring.gradle + dependency-management-plugin + 1.1.0 + + + org.apache.derby + derby + 10.16.1.1 + + + org.apache.derby + derbyclient + 10.16.1.1 + + + org.apache.derby + derbynet + 10.16.1.1 + + + org.apache.derby + derbyoptionaltools + 10.16.1.1 + + + org.apache.derby + derbyshared + 10.16.1.1 + + + org.apache.derby + derbytools + 10.16.1.1 + + + org.ehcache + ehcache + 3.10.8 + jakarta + + + org.ehcache + ehcache-clustered + 3.10.8 + + + org.ehcache + ehcache-transactions + 3.10.8 + jakarta + + + org.elasticsearch.client + elasticsearch-rest-client + 8.7.1 + + + commons-logging + commons-logging + + + + + org.elasticsearch.client + elasticsearch-rest-client-sniffer + 8.7.1 + + + commons-logging + commons-logging + + + + + co.elastic.clients + elasticsearch-java + 8.7.1 + + + org.flywaydb + flyway-core + 9.16.3 + + + org.flywaydb + flyway-firebird + 9.16.3 + + + org.flywaydb + flyway-mysql + 9.16.3 + + + org.flywaydb + flyway-sqlserver + 9.16.3 + + + org.freemarker + freemarker + 2.3.32 + + + org.glassfish.web + jakarta.servlet.jsp.jstl + 3.0.1 + + + com.graphql-java + graphql-java + 20.2 + + + com.google.code.gson + gson + 2.10.1 + + + com.h2database + h2 + 2.1.214 + + + org.hamcrest + hamcrest + 2.2 + + + org.hamcrest + hamcrest-core + 2.2 + + + org.hamcrest + hamcrest-library + 2.2 + + + com.hazelcast + hazelcast + 5.2.3 + + + com.hazelcast + hazelcast-spring + 5.2.3 + + + org.hibernate.orm + hibernate-agroal + 6.2.2.Final + + + org.hibernate.orm + hibernate-ant + 6.2.2.Final + + + org.hibernate.orm + hibernate-c3p0 + 6.2.2.Final + + + org.hibernate.orm + hibernate-community-dialects + 6.2.2.Final + + + org.hibernate.orm + hibernate-core + 6.2.2.Final + + + org.hibernate.orm + hibernate-envers + 6.2.2.Final + + + org.hibernate.orm + hibernate-graalvm + 6.2.2.Final + + + org.hibernate.orm + hibernate-hikaricp + 6.2.2.Final + + + org.hibernate.orm + hibernate-jcache + 6.2.2.Final + + + org.hibernate.orm + hibernate-jpamodelgen + 6.2.2.Final + + + org.hibernate.orm + hibernate-micrometer + 6.2.2.Final + + + org.hibernate.orm + hibernate-proxool + 6.2.2.Final + + + org.hibernate.orm + hibernate-spatial + 6.2.2.Final + + + org.hibernate.orm + hibernate-testing + 6.2.2.Final + + + org.hibernate.orm + hibernate-vibur + 6.2.2.Final + + + org.hibernate.validator + hibernate-validator + 8.0.0.Final + + + org.hibernate.validator + hibernate-validator-annotation-processor + 8.0.0.Final + + + com.zaxxer + HikariCP + 5.0.1 + + + org.hsqldb + hsqldb + 2.7.1 + + + net.sourceforge.htmlunit + htmlunit + 2.70.0 + + + commons-logging + commons-logging + + + + + org.apache.httpcomponents + httpasyncclient + 4.1.5 + + + commons-logging + commons-logging + + + + + org.apache.httpcomponents.client5 + httpclient5 + 5.2.1 + + + org.apache.httpcomponents.client5 + httpclient5-cache + 5.2.1 + + + org.apache.httpcomponents.client5 + httpclient5-fluent + 5.2.1 + + + org.apache.httpcomponents.client5 + httpclient5-win + 5.2.1 + + + org.apache.httpcomponents + httpcore + 4.4.16 + + + org.apache.httpcomponents + httpcore-nio + 4.4.16 + + + org.apache.httpcomponents.core5 + httpcore5 + 5.2.1 + + + org.apache.httpcomponents.core5 + httpcore5-h2 + 5.2.1 + + + org.apache.httpcomponents.core5 + httpcore5-reactive + 5.2.1 + + + org.influxdb + influxdb-java + 2.23 + + + jakarta.activation + jakarta.activation-api + 2.1.2 + + + jakarta.annotation + jakarta.annotation-api + 2.1.1 + + + jakarta.jms + jakarta.jms-api + 3.1.0 + + + jakarta.json + jakarta.json-api + 2.1.1 + + + jakarta.json.bind + jakarta.json.bind-api + 3.0.0 + + + jakarta.mail + jakarta.mail-api + 2.1.1 + + + jakarta.management.j2ee + jakarta.management.j2ee-api + 1.1.4 + + + jakarta.persistence + jakarta.persistence-api + 3.1.0 + + + jakarta.servlet + jakarta.servlet-api + 6.0.0 + + + jakarta.servlet.jsp.jstl + jakarta.servlet.jsp.jstl-api + 3.0.0 + + + jakarta.transaction + jakarta.transaction-api + 2.0.1 + + + jakarta.validation + jakarta.validation-api + 3.0.2 + + + jakarta.websocket + jakarta.websocket-api + 2.1.0 + + + jakarta.websocket + jakarta.websocket-client-api + 2.1.0 + + + jakarta.ws.rs + jakarta.ws.rs-api + 3.1.0 + + + jakarta.xml.bind + jakarta.xml.bind-api + 4.0.0 + + + jakarta.xml.soap + jakarta.xml.soap-api + 3.0.0 + + + jakarta.xml.ws + jakarta.xml.ws-api + 4.0.0 + + + org.codehaus.janino + commons-compiler + 3.1.9 + + + org.codehaus.janino + commons-compiler-jdk + 3.1.9 + + + org.codehaus.janino + janino + 3.1.9 + + + javax.cache + cache-api + 1.1.1 + + + javax.money + money-api + 1.1 + + + jaxen + jaxen + 2.0.0 + + + org.firebirdsql.jdbc + jaybird + 5.0.1.java11 + + + org.jboss.logging + jboss-logging + 3.5.0.Final + + + org.jdom + jdom2 + 2.0.6.1 + + + redis.clients + jedis + 4.3.2 + + + org.eclipse.jetty + jetty-reactive-httpclient + 3.0.8 + + + com.samskivert + jmustache + 1.15 + + + org.jooq + jooq + 3.18.4 + + + org.jooq + jooq-codegen + 3.18.4 + + + org.jooq + jooq-kotlin + 3.18.4 + + + org.jooq + jooq-meta + 3.18.4 + + + com.jayway.jsonpath + json-path + 2.8.0 + + + com.jayway.jsonpath + json-path-assert + 2.8.0 + + + net.minidev + json-smart + 2.4.10 + + + org.skyscreamer + jsonassert + 1.5.1 + + + net.sourceforge.jtds + jtds + 1.3.1 + + + junit + junit + 4.13.2 + + + org.apache.kafka + connect + 3.4.0 + + + org.apache.kafka + connect-api + 3.4.0 + + + org.apache.kafka + connect-basic-auth-extension + 3.4.0 + + + org.apache.kafka + connect-file + 3.4.0 + + + org.apache.kafka + connect-json + 3.4.0 + + + org.apache.kafka + connect-mirror + 3.4.0 + + + org.apache.kafka + connect-mirror-client + 3.4.0 + + + org.apache.kafka + connect-runtime + 3.4.0 + + + org.apache.kafka + connect-transforms + 3.4.0 + + + org.apache.kafka + generator + 3.4.0 + + + org.apache.kafka + kafka-clients + 3.4.0 + + + org.apache.kafka + kafka-clients + 3.4.0 + test + + + org.apache.kafka + kafka-log4j-appender + 3.4.0 + + + org.apache.kafka + kafka-metadata + 3.4.0 + + + org.apache.kafka + kafka-raft + 3.4.0 + + + org.apache.kafka + kafka-server-common + 3.4.0 + + + org.apache.kafka + kafka-shell + 3.4.0 + + + org.apache.kafka + kafka-storage + 3.4.0 + + + org.apache.kafka + kafka-storage-api + 3.4.0 + + + org.apache.kafka + kafka-streams + 3.4.0 + + + org.apache.kafka + kafka-streams-scala_2.12 + 3.4.0 + + + org.apache.kafka + kafka-streams-scala_2.13 + 3.4.0 + + + org.apache.kafka + kafka-streams-test-utils + 3.4.0 + + + org.apache.kafka + kafka-tools + 3.4.0 + + + org.apache.kafka + kafka_2.12 + 3.4.0 + + + org.apache.kafka + kafka_2.12 + 3.4.0 + test + + + org.apache.kafka + kafka_2.13 + 3.4.0 + + + org.apache.kafka + kafka_2.13 + 3.4.0 + test + + + org.apache.kafka + trogdor + 3.4.0 + + + io.lettuce + lettuce-core + 6.2.4.RELEASE + + + org.liquibase + liquibase-cdi + 4.20.0 + + + org.liquibase + liquibase-core + 4.20.0 + + + ch.qos.logback + logback-access + 1.4.7 + + + ch.qos.logback + logback-classic + 1.4.7 + + + ch.qos.logback + logback-core + 1.4.7 + + + org.projectlombok + lombok + 1.18.26 + + + org.mariadb.jdbc + mariadb-java-client + 3.1.4 + + + io.micrometer + micrometer-registry-stackdriver + 1.11.0 + + + javax.annotation + javax.annotation-api + + + + + org.mongodb + bson + 4.9.1 + + + org.mongodb + bson-record-codec + 4.9.1 + + + org.mongodb + mongodb-driver-core + 4.9.1 + + + org.mongodb + mongodb-driver-legacy + 4.9.1 + + + org.mongodb + mongodb-driver-reactivestreams + 4.9.1 + + + org.mongodb + mongodb-driver-sync + 4.9.1 + + + com.microsoft.sqlserver + mssql-jdbc + 11.2.3.jre17 + + + com.mysql + mysql-connector-j + 8.0.33 + + + com.google.protobuf + protobuf-java + + + + + net.sourceforge.nekohtml + nekohtml + 1.9.22 + + + org.neo4j.driver + neo4j-java-driver + 5.8.0 + + + com.oracle.database.r2dbc + oracle-r2dbc + 1.1.1 + + + org.messaginghub + pooled-jms + 3.1.0 + + + org.postgresql + postgresql + 42.6.0 + + + org.quartz-scheduler + quartz + 2.3.2 + + + com.mchange + c3p0 + + + com.zaxxer + * + + + + + org.quartz-scheduler + quartz-jobs + 2.3.2 + + + io.r2dbc + r2dbc-h2 + 1.0.0.RELEASE + + + org.mariadb + r2dbc-mariadb + 1.1.4 + + + io.r2dbc + r2dbc-mssql + 1.0.0.RELEASE + + + io.asyncer + r2dbc-mysql + 1.0.1 + + + io.r2dbc + r2dbc-pool + 1.0.0.RELEASE + + + org.postgresql + r2dbc-postgresql + 1.0.1.RELEASE + + + io.r2dbc + r2dbc-proxy + 1.1.0.RELEASE + + + io.r2dbc + r2dbc-spi + 1.0.0.RELEASE + + + com.rabbitmq + amqp-client + 5.17.0 + + + com.rabbitmq + stream-client + 0.9.0 + + + org.reactivestreams + reactive-streams + 1.0.4 + + + io.reactivex.rxjava3 + rxjava + 3.1.6 + + + org.springframework.boot + spring-boot + 3.1.0 + + + org.springframework.boot + spring-boot-test + 3.1.0 + + + org.springframework.boot + spring-boot-test-autoconfigure + 3.1.0 + + + org.springframework.boot + spring-boot-testcontainers + 3.1.0 + + + org.springframework.boot + spring-boot-actuator + 3.1.0 + + + org.springframework.boot + spring-boot-actuator-autoconfigure + 3.1.0 + + + org.springframework.boot + spring-boot-autoconfigure + 3.1.0 + + + org.springframework.boot + spring-boot-autoconfigure-processor + 3.1.0 + + + org.springframework.boot + spring-boot-buildpack-platform + 3.1.0 + + + org.springframework.boot + spring-boot-configuration-metadata + 3.1.0 + + + org.springframework.boot + spring-boot-configuration-processor + 3.1.0 + + + org.springframework.boot + spring-boot-devtools + 3.1.0 + + + org.springframework.boot + spring-boot-docker-compose + 3.1.0 + + + org.springframework.boot + spring-boot-jarmode-layertools + 3.1.0 + + + org.springframework.boot + spring-boot-loader + 3.1.0 + + + org.springframework.boot + spring-boot-loader-tools + 3.1.0 + + + org.springframework.boot + spring-boot-properties-migrator + 3.1.0 + + + org.springframework.boot + spring-boot-starter + 3.1.0 + + + org.springframework.boot + spring-boot-starter-activemq + 3.1.0 + + + org.springframework.boot + spring-boot-starter-actuator + 3.1.0 + + + org.springframework.boot + spring-boot-starter-amqp + 3.1.0 + + + org.springframework.boot + spring-boot-starter-aop + 3.1.0 + + + org.springframework.boot + spring-boot-starter-artemis + 3.1.0 + + + org.springframework.boot + spring-boot-starter-batch + 3.1.0 + + + org.springframework.boot + spring-boot-starter-cache + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-cassandra + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-cassandra-reactive + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-couchbase + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-couchbase-reactive + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-elasticsearch + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-jdbc + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-jpa + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-ldap + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-mongodb + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-mongodb-reactive + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-r2dbc + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-redis + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-redis-reactive + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-neo4j + 3.1.0 + + + org.springframework.boot + spring-boot-starter-data-rest + 3.1.0 + + + org.springframework.boot + spring-boot-starter-freemarker + 3.1.0 + + + org.springframework.boot + spring-boot-starter-graphql + 3.1.0 + + + org.springframework.boot + spring-boot-starter-groovy-templates + 3.1.0 + + + org.springframework.boot + spring-boot-starter-hateoas + 3.1.0 + + + org.springframework.boot + spring-boot-starter-integration + 3.1.0 + + + org.springframework.boot + spring-boot-starter-jdbc + 3.1.0 + + + org.springframework.boot + spring-boot-starter-jersey + 3.1.0 + + + org.springframework.boot + spring-boot-starter-jetty + 3.1.0 + + + org.springframework.boot + spring-boot-starter-jooq + 3.1.0 + + + org.springframework.boot + spring-boot-starter-json + 3.1.0 + + + org.springframework.boot + spring-boot-starter-log4j2 + 3.1.0 + + + org.springframework.boot + spring-boot-starter-logging + 3.1.0 + + + org.springframework.boot + spring-boot-starter-mail + 3.1.0 + + + org.springframework.boot + spring-boot-starter-mustache + 3.1.0 + + + org.springframework.boot + spring-boot-starter-oauth2-authorization-server + 3.1.0 + + + org.springframework.boot + spring-boot-starter-oauth2-client + 3.1.0 + + + org.springframework.boot + spring-boot-starter-oauth2-resource-server + 3.1.0 + + + org.springframework.boot + spring-boot-starter-quartz + 3.1.0 + + + org.springframework.boot + spring-boot-starter-reactor-netty + 3.1.0 + + + org.springframework.boot + spring-boot-starter-rsocket + 3.1.0 + + + org.springframework.boot + spring-boot-starter-security + 3.1.0 + + + org.springframework.boot + spring-boot-starter-test + 3.1.0 + + + org.springframework.boot + spring-boot-starter-thymeleaf + 3.1.0 + + + org.springframework.boot + spring-boot-starter-tomcat + 3.1.0 + + + org.springframework.boot + spring-boot-starter-undertow + 3.1.0 + + + org.springframework.boot + spring-boot-starter-validation + 3.1.0 + + + org.springframework.boot + spring-boot-starter-web + 3.1.0 + + + org.springframework.boot + spring-boot-starter-webflux + 3.1.0 + + + org.springframework.boot + spring-boot-starter-websocket + 3.1.0 + + + org.springframework.boot + spring-boot-starter-web-services + 3.1.0 + + + com.sun.xml.messaging.saaj + saaj-impl + 3.0.2 + + + org.seleniumhq.selenium + lift + 4.8.3 + + + org.seleniumhq.selenium + selenium-api + 4.8.3 + + + org.seleniumhq.selenium + selenium-chrome-driver + 4.8.3 + + + org.seleniumhq.selenium + selenium-chromium-driver + 4.8.3 + + + org.seleniumhq.selenium + selenium-devtools-v108 + 4.8.3 + + + org.seleniumhq.selenium + selenium-devtools-v109 + 4.8.3 + + + org.seleniumhq.selenium + selenium-devtools-v110 + 4.8.3 + + + org.seleniumhq.selenium + selenium-devtools-v85 + 4.8.3 + + + org.seleniumhq.selenium + selenium-edge-driver + 4.8.3 + + + org.seleniumhq.selenium + selenium-firefox-driver + 4.8.3 + + + org.seleniumhq.selenium + selenium-grid + 4.8.3 + + + org.seleniumhq.selenium + selenium-http + 4.8.3 + + + org.seleniumhq.selenium + selenium-http-jdk-client + 4.8.3 + + + org.seleniumhq.selenium + selenium-ie-driver + 4.8.3 + + + org.seleniumhq.selenium + selenium-java + 4.8.3 + + + org.seleniumhq.selenium + selenium-json + 4.8.3 + + + org.seleniumhq.selenium + selenium-manager + 4.8.3 + + + org.seleniumhq.selenium + selenium-remote-driver + 4.8.3 + + + org.seleniumhq.selenium + selenium-safari-driver + 4.8.3 + + + org.seleniumhq.selenium + selenium-session-map-jdbc + 4.8.3 + + + org.seleniumhq.selenium + selenium-session-map-redis + 4.8.3 + + + org.seleniumhq.selenium + selenium-support + 4.8.3 + + + org.seleniumhq.selenium + htmlunit-driver + 4.8.3 + + + com.sendgrid + sendgrid-java + 4.9.3 + + + org.slf4j + jcl-over-slf4j + 2.0.7 + + + org.slf4j + jul-to-slf4j + 2.0.7 + + + org.slf4j + log4j-over-slf4j + 2.0.7 + + + org.slf4j + slf4j-api + 2.0.7 + + + org.slf4j + slf4j-ext + 2.0.7 + + + org.slf4j + slf4j-jdk-platform-logging + 2.0.7 + + + org.slf4j + slf4j-jdk14 + 2.0.7 + + + org.slf4j + slf4j-log4j12 + 2.0.7 + + + org.slf4j + slf4j-nop + 2.0.7 + + + org.slf4j + slf4j-reload4j + 2.0.7 + + + org.slf4j + slf4j-simple + 2.0.7 + + + org.yaml + snakeyaml + 1.33 + + + org.springframework.amqp + spring-amqp + 3.0.4 + + + org.springframework.amqp + spring-rabbit + 3.0.4 + + + org.springframework.amqp + spring-rabbit-stream + 3.0.4 + + + org.springframework.amqp + spring-rabbit-junit + 3.0.4 + + + org.springframework.amqp + spring-rabbit-test + 3.0.4 + + + org.springframework.security + spring-security-oauth2-authorization-server + 1.1.0 + + + org.springframework.graphql + spring-graphql + 1.2.0 + + + org.springframework.graphql + spring-graphql-test + 1.2.0 + + + org.springframework.hateoas + spring-hateoas + 2.1.0 + + + org.springframework.kafka + spring-kafka + 3.0.7 + + + org.springframework.kafka + spring-kafka-test + 3.0.7 + + + org.springframework.ldap + spring-ldap-core + 3.1.0 + + + org.springframework.ldap + spring-ldap-ldif-core + 3.1.0 + + + org.springframework.ldap + spring-ldap-odm + 3.1.0 + + + org.springframework.ldap + spring-ldap-test + 3.1.0 + + + org.springframework.retry + spring-retry + 2.0.1 + + + org.xerial + sqlite-jdbc + 3.41.2.1 + + + org.thymeleaf + thymeleaf + 3.1.1.RELEASE + + + org.thymeleaf + thymeleaf-spring6 + 3.1.1.RELEASE + + + com.github.mxab.thymeleaf.extras + thymeleaf-extras-data-attribute + 2.0.1 + + + org.thymeleaf.extras + thymeleaf-extras-springsecurity6 + 3.1.1.RELEASE + + + nz.net.ultraq.thymeleaf + thymeleaf-layout-dialect + 3.2.1 + + + org.apache.tomcat + tomcat-annotations-api + 10.1.8 + + + org.apache.tomcat + tomcat-jdbc + 10.1.8 + + + org.apache.tomcat + tomcat-jsp-api + 10.1.8 + + + org.apache.tomcat.embed + tomcat-embed-core + 10.1.8 + + + org.apache.tomcat.embed + tomcat-embed-el + 10.1.8 + + + org.apache.tomcat.embed + tomcat-embed-jasper + 10.1.8 + + + org.apache.tomcat.embed + tomcat-embed-websocket + 10.1.8 + + + com.unboundid + unboundid-ldapsdk + 6.0.8 + + + io.undertow + undertow-core + 2.3.6.Final + + + io.undertow + undertow-servlet + 2.3.6.Final + + + io.undertow + undertow-websockets-jsr + 2.3.6.Final + + + org.webjars + webjars-locator-core + 0.52 + + + wsdl4j + wsdl4j + 1.6.3 + + + org.xmlunit + xmlunit-assertj + 2.9.1 + + + org.xmlunit + xmlunit-assertj3 + 2.9.1 + + + org.xmlunit + xmlunit-core + 2.9.1 + + + org.xmlunit + xmlunit-jakarta-jaxb-impl + 2.9.1 + + + org.xmlunit + xmlunit-legacy + 2.9.1 + + + org.xmlunit + xmlunit-matchers + 2.9.1 + + + org.xmlunit + xmlunit-placeholders + 2.9.1 + + + org.eclipse + yasson + 3.0.3 + + + org.assertj + assertj-core + 3.24.2 + + + org.assertj + assertj-guava + 3.24.2 + + + io.zipkin.zipkin2 + zipkin + 2.23.2 + + + io.zipkin.brave + brave + 5.15.1 + + + io.zipkin.brave + brave-tests + 5.15.1 + + + io.zipkin.brave + brave-context-jfr + 5.15.1 + + + io.zipkin.brave + brave-context-log4j2 + 5.15.1 + + + io.zipkin.brave + brave-context-log4j12 + 5.15.1 + + + io.zipkin.brave + brave-context-slf4j + 5.15.1 + + + io.zipkin.brave + brave-context-rxjava2 + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-dubbo + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-dubbo-rpc + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-grpc + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-http + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-http-tests + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-httpasyncclient + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-httpclient + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-jaxrs2 + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-jersey-server + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-jms + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-jms-jakarta + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-kafka-clients + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-kafka-streams + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-messaging + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-mongodb + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-mysql + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-mysql6 + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-mysql8 + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-netty-codec-http + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-okhttp3 + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-p6spy + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-rpc + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-servlet + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-servlet-jakarta + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-sparkjava + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-spring-rabbit + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-spring-web + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-spring-webmvc + 5.15.1 + + + io.zipkin.brave + brave-instrumentation-vertx-web + 5.15.1 + + + io.zipkin.brave + brave-spring-beans + 5.15.1 + + + io.zipkin.proto3 + zipkin-proto3 + 1.0.0 + + + io.zipkin.reporter2 + zipkin-reporter + 2.16.3 + + + io.zipkin.reporter2 + zipkin-sender-okhttp3 + 2.16.3 + + + io.zipkin.reporter2 + zipkin-sender-libthrift + 2.16.3 + + + io.zipkin.reporter2 + zipkin-sender-urlconnection + 2.16.3 + + + io.zipkin.reporter2 + zipkin-sender-kafka08 + 2.16.3 + + + io.zipkin.reporter2 + zipkin-sender-kafka + 2.16.3 + + + io.zipkin.reporter2 + zipkin-sender-amqp-client + 2.16.3 + + + io.zipkin.reporter2 + zipkin-sender-activemq-client + 2.16.3 + + + io.zipkin.reporter2 + zipkin-reporter-spring-beans + 2.16.3 + + + io.zipkin.reporter2 + zipkin-reporter-brave + 2.16.3 + + + io.zipkin.reporter2 + zipkin-reporter-metrics-micrometer + 2.16.3 + + + com.datastax.oss + java-driver-core-shaded + 4.15.0 + + + com.datastax.oss + java-driver-mapper-processor + 4.15.0 + + + com.datastax.oss + java-driver-mapper-runtime + 4.15.0 + + + com.datastax.oss + java-driver-query-builder + 4.15.0 + + + com.datastax.oss + java-driver-test-infra + 4.15.0 + + + com.datastax.oss + java-driver-metrics-micrometer + 4.15.0 + + + com.datastax.oss + java-driver-metrics-microprofile + 4.15.0 + + + com.datastax.oss + native-protocol + 1.5.1 + + + com.datastax.oss + java-driver-shaded-guava + 25.1-jre-graal-sub-1 + + + io.dropwizard.metrics + metrics-annotation + 4.2.18 + + + io.dropwizard.metrics + metrics-caffeine + 4.2.18 + + + io.dropwizard.metrics + metrics-caffeine3 + 4.2.18 + + + io.dropwizard.metrics + metrics-core + 4.2.18 + + + io.dropwizard.metrics + metrics-collectd + 4.2.18 + + + io.dropwizard.metrics + metrics-ehcache + 4.2.18 + + + io.dropwizard.metrics + metrics-graphite + 4.2.18 + + + io.dropwizard.metrics + metrics-healthchecks + 4.2.18 + + + io.dropwizard.metrics + metrics-httpclient + 4.2.18 + + + io.dropwizard.metrics + metrics-httpclient5 + 4.2.18 + + + io.dropwizard.metrics + metrics-httpasyncclient + 4.2.18 + + + io.dropwizard.metrics + metrics-jakarta-servlet + 4.2.18 + + + io.dropwizard.metrics + metrics-jakarta-servlets + 4.2.18 + + + io.dropwizard.metrics + metrics-jcache + 4.2.18 + + + io.dropwizard.metrics + metrics-jdbi + 4.2.18 + + + io.dropwizard.metrics + metrics-jdbi3 + 4.2.18 + + + io.dropwizard.metrics + metrics-jersey2 + 4.2.18 + + + io.dropwizard.metrics + metrics-jersey3 + 4.2.18 + + + io.dropwizard.metrics + metrics-jersey31 + 4.2.18 + + + io.dropwizard.metrics + metrics-jetty9 + 4.2.18 + + + io.dropwizard.metrics + metrics-jetty10 + 4.2.18 + + + io.dropwizard.metrics + metrics-jetty11 + 4.2.18 + + + io.dropwizard.metrics + metrics-jmx + 4.2.18 + + + io.dropwizard.metrics + metrics-json + 4.2.18 + + + io.dropwizard.metrics + metrics-jvm + 4.2.18 + + + io.dropwizard.metrics + metrics-log4j2 + 4.2.18 + + + io.dropwizard.metrics + metrics-logback + 4.2.18 + + + io.dropwizard.metrics + metrics-logback13 + 4.2.18 + + + io.dropwizard.metrics + metrics-logback14 + 4.2.18 + + + io.dropwizard.metrics + metrics-servlet + 4.2.18 + + + io.dropwizard.metrics + metrics-servlets + 4.2.18 + + + org.glassfish.jaxb + jaxb-runtime + 4.0.2 + sources + + + org.glassfish.jaxb + jaxb-core + 4.0.2 + sources + + + org.glassfish.jaxb + jaxb-xjc + 4.0.2 + sources + + + org.glassfish.jaxb + jaxb-jxc + 4.0.2 + sources + + + org.glassfish.jaxb + codemodel + 4.0.2 + sources + + + org.glassfish.jaxb + txw2 + 4.0.2 + sources + + + org.glassfish.jaxb + xsom + 4.0.2 + sources + + + com.sun.xml.bind + jaxb-impl + 4.0.2 + sources + + + com.sun.xml.bind + jaxb-core + 4.0.2 + sources + + + com.sun.xml.bind + jaxb-xjc + 4.0.2 + sources + + + com.sun.xml.bind + jaxb-jxc + 4.0.2 + sources + + + jakarta.xml.bind + jakarta.xml.bind-api + 4.0.0 + sources + + + org.jvnet.staxex + stax-ex + 2.1.0 + sources + + + jakarta.activation + jakarta.activation-api + + + + + com.sun.xml.fastinfoset + FastInfoset + 2.1.0 + sources + + + org.glassfish.jaxb + jaxb-runtime + 4.0.2 + + + org.glassfish.jaxb + jaxb-core + 4.0.2 + + + org.glassfish.jaxb + jaxb-xjc + 4.0.2 + + + org.glassfish.jaxb + jaxb-jxc + 4.0.2 + + + org.glassfish.jaxb + codemodel + 4.0.2 + + + org.glassfish.jaxb + txw2 + 4.0.2 + + + org.glassfish.jaxb + xsom + 4.0.2 + + + com.sun.xml.bind + jaxb-impl + 4.0.2 + + + com.sun.xml.bind + jaxb-core + 4.0.2 + + + com.sun.xml.bind + jaxb-xjc + 4.0.2 + + + com.sun.xml.bind + jaxb-jxc + 4.0.2 + + + com.sun.xml.bind + jaxb-osgi + 4.0.2 + + + com.sun.istack + istack-commons-runtime + 4.1.1 + + + com.sun.xml.fastinfoset + FastInfoset + 2.1.0 + + + org.jvnet.staxex + stax-ex + 2.1.0 + + + org.eclipse.angus + angus-activation + 2.0.0 + + + org.apache.groovy + groovy + 4.0.12 + + + org.apache.groovy + groovy-ant + 4.0.12 + + + org.apache.groovy + groovy-astbuilder + 4.0.12 + + + org.apache.groovy + groovy-cli-commons + 4.0.12 + + + org.apache.groovy + groovy-cli-picocli + 4.0.12 + + + org.apache.groovy + groovy-console + 4.0.12 + + + org.apache.groovy + groovy-contracts + 4.0.12 + + + org.apache.groovy + groovy-datetime + 4.0.12 + + + org.apache.groovy + groovy-dateutil + 4.0.12 + + + org.apache.groovy + groovy-docgenerator + 4.0.12 + + + org.apache.groovy + groovy-ginq + 4.0.12 + + + org.apache.groovy + groovy-groovydoc + 4.0.12 + + + org.apache.groovy + groovy-groovysh + 4.0.12 + + + org.apache.groovy + groovy-jmx + 4.0.12 + + + org.apache.groovy + groovy-json + 4.0.12 + + + org.apache.groovy + groovy-jsr223 + 4.0.12 + + + org.apache.groovy + groovy-macro + 4.0.12 + + + org.apache.groovy + groovy-macro-library + 4.0.12 + + + org.apache.groovy + groovy-nio + 4.0.12 + + + org.apache.groovy + groovy-servlet + 4.0.12 + + + org.apache.groovy + groovy-sql + 4.0.12 + + + org.apache.groovy + groovy-swing + 4.0.12 + + + org.apache.groovy + groovy-templates + 4.0.12 + + + org.apache.groovy + groovy-test + 4.0.12 + + + org.apache.groovy + groovy-test-junit5 + 4.0.12 + + + org.apache.groovy + groovy-testng + 4.0.12 + + + org.apache.groovy + groovy-toml + 4.0.12 + + + org.apache.groovy + groovy-typecheckers + 4.0.12 + + + org.apache.groovy + groovy-xml + 4.0.12 + + + org.apache.groovy + groovy-yaml + 4.0.12 + + + org.infinispan + infinispan-api + 14.0.9.Final + + + org.infinispan + infinispan-cachestore-jdbc + 14.0.9.Final + + + org.infinispan + infinispan-cachestore-jdbc-jakarta + 14.0.9.Final + + + org.infinispan + infinispan-cachestore-jdbc-common + 14.0.9.Final + + + org.infinispan + infinispan-cachestore-jdbc-common-jakarta + 14.0.9.Final + + + org.infinispan + infinispan-cachestore-sql + 14.0.9.Final + + + org.infinispan + infinispan-cachestore-remote + 14.0.9.Final + + + org.infinispan + infinispan-cachestore-rocksdb + 14.0.9.Final + + + org.infinispan + infinispan-cdi-common + 14.0.9.Final + + + org.infinispan + infinispan-cdi-common-jakarta + 14.0.9.Final + + + org.infinispan + infinispan-cdi-embedded + 14.0.9.Final + + + org.infinispan + infinispan-cdi-embedded-jakarta + 14.0.9.Final + + + org.infinispan + infinispan-cdi-remote + 14.0.9.Final + + + org.infinispan + infinispan-cdi-remote-jakarta + 14.0.9.Final + + + org.infinispan + infinispan-checkstyle + 14.0.9.Final + + + org.infinispan + infinispan-cli-client + 14.0.9.Final + + + org.infinispan + infinispan-hotrod + 14.0.9.Final + + + org.infinispan + infinispan-hotrod-jakarta + 14.0.9.Final + + + org.infinispan + infinispan-client-hotrod + 14.0.9.Final + + + org.infinispan + infinispan-client-hotrod-jakarta + 14.0.9.Final + + + org.infinispan + infinispan-client-rest + 14.0.9.Final + + + org.infinispan + infinispan-key-value-store-client + 14.0.9.Final + + + org.infinispan + infinispan-clustered-counter + 14.0.9.Final + + + org.infinispan + infinispan-clustered-lock + 14.0.9.Final + + + org.infinispan + infinispan-commons + 14.0.9.Final + + + org.infinispan + infinispan-commons-jakarta + 14.0.9.Final + + + org.infinispan + infinispan-commons-test + 14.0.9.Final + + + org.infinispan + infinispan-component-annotations + 14.0.9.Final + provided + + + org.infinispan + infinispan-component-processor + 14.0.9.Final + + + org.infinispan + infinispan-core + 14.0.9.Final + + + org.infinispan + infinispan-core-jakarta + 14.0.9.Final + + + org.infinispan + infinispan-jboss-marshalling + 14.0.9.Final + + + org.infinispan + infinispan-extended-statistics + 14.0.9.Final + + + org.infinispan + infinispan-hibernate-cache-commons + 14.0.9.Final + + + org.infinispan + infinispan-hibernate-cache-spi + 14.0.9.Final + + + org.infinispan + infinispan-hibernate-cache-v60 + 14.0.9.Final + + + org.infinispan + infinispan-jcache-commons + 14.0.9.Final + + + org.infinispan + infinispan-jcache + 14.0.9.Final + + + org.infinispan + infinispan-jcache-remote + 14.0.9.Final + + + org.infinispan + infinispan-console + 14.0.8.Final + + + org.infinispan + infinispan-multimap + 14.0.9.Final + + + org.infinispan + infinispan-objectfilter + 14.0.9.Final + + + org.infinispan + infinispan-query-core + 14.0.9.Final + + + org.infinispan + infinispan-query + 14.0.9.Final + + + org.infinispan + infinispan-query-jakarta + 14.0.9.Final + + + org.infinispan + infinispan-query-dsl + 14.0.9.Final + + + org.infinispan + infinispan-remote-query-client + 14.0.9.Final + + + org.infinispan + infinispan-remote-query-server + 14.0.9.Final + + + org.infinispan + infinispan-scripting + 14.0.9.Final + + + org.infinispan + infinispan-server-core + 14.0.9.Final + + + org.infinispan + infinispan-server-hotrod + 14.0.9.Final + + + org.infinispan + infinispan-server-hotrod-jakarta + 14.0.9.Final + + + org.infinispan + infinispan-server-memcached + 14.0.9.Final + + + org.infinispan + infinispan-server-resp + 14.0.9.Final + + + org.infinispan + infinispan-server-rest + 14.0.9.Final + + + org.infinispan + infinispan-server-router + 14.0.9.Final + + + org.infinispan + infinispan-server-runtime + 14.0.9.Final + + + org.infinispan + infinispan-server-runtime + 14.0.9.Final + loader + + + org.infinispan + infinispan-server-testdriver-core + 14.0.9.Final + + + org.infinispan + infinispan-server-testdriver-junit4 + 14.0.9.Final + + + org.infinispan + infinispan-server-testdriver-junit5 + 14.0.9.Final + + + org.infinispan + infinispan-spring5-common + 14.0.9.Final + + + org.infinispan + infinispan-spring5-embedded + 14.0.9.Final + + + org.infinispan + infinispan-spring5-remote + 14.0.9.Final + + + org.infinispan + infinispan-spring-boot-starter-embedded + 14.0.9.Final + + + org.infinispan + infinispan-spring-boot-starter-remote + 14.0.9.Final + + + org.infinispan + infinispan-spring6-common + 14.0.9.Final + + + org.infinispan + infinispan-spring6-embedded + 14.0.9.Final + + + org.infinispan + infinispan-spring6-remote + 14.0.9.Final + + + org.infinispan + infinispan-spring-boot3-starter-embedded + 14.0.9.Final + + + org.infinispan + infinispan-spring-boot3-starter-remote + 14.0.9.Final + + + org.infinispan + infinispan-tasks + 14.0.9.Final + + + org.infinispan + infinispan-tasks-api + 14.0.9.Final + + + org.infinispan + infinispan-tools + 14.0.9.Final + + + org.infinispan + infinispan-tools-jakarta + 14.0.9.Final + + + org.infinispan + infinispan-anchored-keys + 14.0.9.Final + + + org.infinispan.protostream + protostream + 4.6.2.Final + + + org.infinispan.protostream + protostream-types + 4.6.2.Final + + + org.infinispan.protostream + protostream-processor + 4.6.2.Final + provided + + + org.infinispan + infinispan-cloudevents-integration + 14.0.9.Final + + + org.infinispan + infinispan-marshaller-kryo + 14.0.9.Final + + + org.infinispan + infinispan-marshaller-kryo-bundle + 14.0.9.Final + + + org.infinispan + infinispan-marshaller-protostuff + 14.0.9.Final + + + org.infinispan + infinispan-marshaller-protostuff-bundle + 14.0.9.Final + + + com.fasterxml.jackson.core + jackson-annotations + 2.15.0 + + + com.fasterxml.jackson.core + jackson-core + 2.15.0 + + + com.fasterxml.jackson.core + jackson-databind + 2.15.0 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-avro + 2.15.0 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-cbor + 2.15.0 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-csv + 2.15.0 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-ion + 2.15.0 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-properties + 2.15.0 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-protobuf + 2.15.0 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-smile + 2.15.0 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-toml + 2.15.0 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-xml + 2.15.0 + + + com.fasterxml.jackson.dataformat + jackson-dataformat-yaml + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-eclipse-collections + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-guava + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate4 + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate5 + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate5-jakarta + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-hibernate6 + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-hppc + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-jakarta-jsonp + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-jaxrs + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-joda + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-joda-money + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-jdk8 + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-json-org + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-jsr310 + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-jsr353 + 2.15.0 + + + com.fasterxml.jackson.datatype + jackson-datatype-pcollections + 2.15.0 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-base + 2.15.0 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-cbor-provider + 2.15.0 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-json-provider + 2.15.0 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-smile-provider + 2.15.0 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-xml-provider + 2.15.0 + + + com.fasterxml.jackson.jaxrs + jackson-jaxrs-yaml-provider + 2.15.0 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-base + 2.15.0 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-cbor-provider + 2.15.0 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-json-provider + 2.15.0 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-smile-provider + 2.15.0 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-xml-provider + 2.15.0 + + + com.fasterxml.jackson.jakarta.rs + jackson-jakarta-rs-yaml-provider + 2.15.0 + + + com.fasterxml.jackson.jr + jackson-jr-all + 2.15.0 + + + com.fasterxml.jackson.jr + jackson-jr-annotation-support + 2.15.0 + + + com.fasterxml.jackson.jr + jackson-jr-objects + 2.15.0 + + + com.fasterxml.jackson.jr + jackson-jr-retrofit2 + 2.15.0 + + + com.fasterxml.jackson.jr + jackson-jr-stree + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-afterburner + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-blackbird + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-guice + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-jaxb-annotations + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-jakarta-xmlbind-annotations + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-jsonSchema + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-jsonSchema-jakarta + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-kotlin + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-mrbean + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-no-ctor-deser + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-osgi + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-parameter-names + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-paranamer + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-scala_2.11 + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-scala_2.12 + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-scala_2.13 + 2.15.0 + + + com.fasterxml.jackson.module + jackson-module-scala_3 + 2.15.0 + + + org.glassfish.jersey.core + jersey-common + 3.1.1 + + + org.glassfish.jersey.core + jersey-client + 3.1.1 + + + org.glassfish.jersey.core + jersey-server + 3.1.1 + + + org.glassfish.jersey.bundles + jaxrs-ri + 3.1.1 + + + org.glassfish.jersey.connectors + jersey-apache-connector + 3.1.1 + + + org.glassfish.jersey.connectors + jersey-apache5-connector + 3.1.1 + + + org.glassfish.jersey.connectors + jersey-helidon-connector + 3.1.1 + + + org.glassfish.jersey.connectors + jersey-grizzly-connector + 3.1.1 + + + org.glassfish.jersey.connectors + jersey-jnh-connector + 3.1.1 + + + org.glassfish.jersey.connectors + jersey-jetty-connector + 3.1.1 + + + org.glassfish.jersey.connectors + jersey-jdk-connector + 3.1.1 + + + org.glassfish.jersey.connectors + jersey-netty-connector + 3.1.1 + + + org.glassfish.jersey.containers + jersey-container-jetty-http + 3.1.1 + + + org.glassfish.jersey.containers + jersey-container-grizzly2-http + 3.1.1 + + + org.glassfish.jersey.containers + jersey-container-grizzly2-servlet + 3.1.1 + + + org.glassfish.jersey.containers + jersey-container-jetty-servlet + 3.1.1 + + + org.glassfish.jersey.containers + jersey-container-jdk-http + 3.1.1 + + + org.glassfish.jersey.containers + jersey-container-netty-http + 3.1.1 + + + org.glassfish.jersey.containers + jersey-container-servlet + 3.1.1 + + + org.glassfish.jersey.containers + jersey-container-servlet-core + 3.1.1 + + + org.glassfish.jersey.containers + jersey-container-simple-http + 3.1.1 + + + org.glassfish.jersey.containers.glassfish + jersey-gf-ejb + 3.1.1 + + + org.glassfish.jersey.ext + jersey-bean-validation + 3.1.1 + + + org.glassfish.jersey.ext + jersey-entity-filtering + 3.1.1 + + + org.glassfish.jersey.ext + jersey-metainf-services + 3.1.1 + + + org.glassfish.jersey.ext.microprofile + jersey-mp-config + 3.1.1 + + + org.glassfish.jersey.ext + jersey-mvc + 3.1.1 + + + org.glassfish.jersey.ext + jersey-mvc-bean-validation + 3.1.1 + + + org.glassfish.jersey.ext + jersey-mvc-freemarker + 3.1.1 + + + org.glassfish.jersey.ext + jersey-mvc-jsp + 3.1.1 + + + org.glassfish.jersey.ext + jersey-mvc-mustache + 3.1.1 + + + org.glassfish.jersey.ext + jersey-proxy-client + 3.1.1 + + + org.glassfish.jersey.ext + jersey-spring6 + 3.1.1 + + + org.glassfish.jersey.ext + jersey-declarative-linking + 3.1.1 + + + org.glassfish.jersey.ext + jersey-wadl-doclet + 3.1.1 + + + org.glassfish.jersey.ext.cdi + jersey-weld2-se + 3.1.1 + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x + 3.1.1 + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x-transaction + 3.1.1 + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x-validation + 3.1.1 + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x-servlet + 3.1.1 + + + org.glassfish.jersey.ext.cdi + jersey-cdi1x-ban-custom-hk2-binding + 3.1.1 + + + org.glassfish.jersey.ext.cdi + jersey-cdi-rs-inject + 3.1.1 + + + org.glassfish.jersey.ext.rx + jersey-rx-client-guava + 3.1.1 + + + org.glassfish.jersey.ext.rx + jersey-rx-client-rxjava + 3.1.1 + + + org.glassfish.jersey.ext.rx + jersey-rx-client-rxjava2 + 3.1.1 + + + org.glassfish.jersey.ext.microprofile + jersey-mp-rest-client + 3.1.1 + + + org.glassfish.jersey.media + jersey-media-jaxb + 3.1.1 + + + org.glassfish.jersey.media + jersey-media-json-jackson + 3.1.1 + + + org.glassfish.jersey.media + jersey-media-json-jettison + 3.1.1 + + + org.glassfish.jersey.media + jersey-media-json-processing + 3.1.1 + + + org.glassfish.jersey.media + jersey-media-json-gson + 3.1.1 + + + org.glassfish.jersey.media + jersey-media-json-binding + 3.1.1 + + + org.glassfish.jersey.media + jersey-media-kryo + 3.1.1 + + + org.glassfish.jersey.media + jersey-media-moxy + 3.1.1 + + + org.glassfish.jersey.media + jersey-media-multipart + 3.1.1 + + + org.glassfish.jersey.media + jersey-media-sse + 3.1.1 + + + org.glassfish.jersey.security + oauth1-client + 3.1.1 + + + org.glassfish.jersey.security + oauth1-server + 3.1.1 + + + org.glassfish.jersey.security + oauth1-signature + 3.1.1 + + + org.glassfish.jersey.security + oauth2-client + 3.1.1 + + + org.glassfish.jersey.inject + jersey-hk2 + 3.1.1 + + + org.glassfish.jersey.inject + jersey-cdi2-se + 3.1.1 + + + org.glassfish.jersey.test-framework + jersey-test-framework-core + 3.1.1 + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-bundle + 3.1.1 + pom + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-external + 3.1.1 + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-grizzly2 + 3.1.1 + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-inmemory + 3.1.1 + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-jdk-http + 3.1.1 + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-simple + 3.1.1 + + + org.glassfish.jersey.test-framework.providers + jersey-test-framework-provider-jetty + 3.1.1 + + + org.glassfish.jersey.test-framework + jersey-test-framework-util + 3.1.1 + + + org.eclipse.jetty + apache-jsp + 11.0.15 + + + org.eclipse.jetty + glassfish-jstl + 11.0.15 + + + org.eclipse.jetty + jetty-alpn-client + 11.0.15 + + + org.eclipse.jetty + jetty-alpn-java-client + 11.0.15 + + + org.eclipse.jetty + jetty-alpn-java-server + 11.0.15 + + + org.eclipse.jetty + jetty-alpn-conscrypt-client + 11.0.15 + + + org.eclipse.jetty + jetty-alpn-conscrypt-server + 11.0.15 + + + org.eclipse.jetty + jetty-alpn-server + 11.0.15 + + + org.eclipse.jetty + jetty-annotations + 11.0.15 + + + org.eclipse.jetty + jetty-ant + 11.0.15 + + + org.eclipse.jetty + jetty-client + 11.0.15 + + + org.eclipse.jetty + jetty-cdi + 11.0.15 + + + org.eclipse.jetty + jetty-deploy + 11.0.15 + + + org.eclipse.jetty.fcgi + fcgi-client + 11.0.15 + + + org.eclipse.jetty.fcgi + fcgi-server + 11.0.15 + + + org.eclipse.jetty.gcloud + jetty-gcloud-session-manager + 11.0.15 + + + org.eclipse.jetty + jetty-home + 11.0.15 + zip + + + org.eclipse.jetty + jetty-home + 11.0.15 + tar.gz + + + org.eclipse.jetty + jetty-http + 11.0.15 + + + org.eclipse.jetty.http2 + http2-client + 11.0.15 + + + org.eclipse.jetty.http2 + http2-common + 11.0.15 + + + org.eclipse.jetty.http2 + http2-hpack + 11.0.15 + + + org.eclipse.jetty.http2 + http2-http-client-transport + 11.0.15 + + + org.eclipse.jetty.http2 + http2-server + 11.0.15 + + + org.eclipse.jetty.http3 + http3-client + 11.0.15 + + + org.eclipse.jetty.http3 + http3-common + 11.0.15 + + + org.eclipse.jetty.http3 + http3-http-client-transport + 11.0.15 + + + org.eclipse.jetty.http3 + http3-qpack + 11.0.15 + + + org.eclipse.jetty.http3 + http3-server + 11.0.15 + + + org.eclipse.jetty + jetty-http-spi + 11.0.15 + + + org.eclipse.jetty + infinispan-common + 11.0.15 + + + org.eclipse.jetty + infinispan-remote-query + 11.0.15 + + + org.eclipse.jetty + infinispan-embedded-query + 11.0.15 + + + org.eclipse.jetty + jetty-hazelcast + 11.0.15 + + + org.eclipse.jetty + jetty-io + 11.0.15 + + + org.eclipse.jetty + jetty-jaas + 11.0.15 + + + org.eclipse.jetty + jetty-jaspi + 11.0.15 + + + org.eclipse.jetty + jetty-jmx + 11.0.15 + + + org.eclipse.jetty + jetty-jndi + 11.0.15 + + + org.eclipse.jetty + jetty-keystore + 11.0.15 + + + org.eclipse.jetty.memcached + jetty-memcached-sessions + 11.0.15 + + + org.eclipse.jetty + jetty-nosql + 11.0.15 + + + org.eclipse.jetty.osgi + jetty-osgi-alpn + 11.0.15 + + + org.eclipse.jetty.osgi + jetty-osgi-boot + 11.0.15 + + + org.eclipse.jetty.osgi + jetty-osgi-boot-jsp + 11.0.15 + + + org.eclipse.jetty.osgi + jetty-osgi-boot-warurl + 11.0.15 + + + org.eclipse.jetty.quic + quic-client + 11.0.15 + + + org.eclipse.jetty.quic + quic-common + 11.0.15 + + + org.eclipse.jetty.quic + quic-quiche-common + 11.0.15 + + + org.eclipse.jetty.quic + quic-quiche-jna + 11.0.15 + + + org.eclipse.jetty.quic + quic-server + 11.0.15 + + + org.eclipse.jetty.osgi + jetty-httpservice + 11.0.15 + + + org.eclipse.jetty + jetty-plus + 11.0.15 + + + org.eclipse.jetty + jetty-proxy + 11.0.15 + + + org.eclipse.jetty + jetty-quickstart + 11.0.15 + + + org.eclipse.jetty + jetty-rewrite + 11.0.15 + + + org.eclipse.jetty + jetty-security + 11.0.15 + + + org.eclipse.jetty + jetty-openid + 11.0.15 + + + org.eclipse.jetty + jetty-server + 11.0.15 + + + org.eclipse.jetty + jetty-servlet + 11.0.15 + + + org.eclipse.jetty + jetty-servlets + 11.0.15 + + + org.eclipse.jetty + jetty-slf4j-impl + 11.0.15 + + + org.eclipse.jetty + jetty-unixdomain-server + 11.0.15 + + + org.eclipse.jetty + jetty-unixsocket-common + 11.0.15 + + + org.eclipse.jetty + jetty-unixsocket-client + 11.0.15 + + + org.eclipse.jetty + jetty-unixsocket-server + 11.0.15 + + + org.eclipse.jetty + jetty-util + 11.0.15 + + + org.eclipse.jetty + jetty-util-ajax + 11.0.15 + + + org.eclipse.jetty + jetty-webapp + 11.0.15 + + + org.eclipse.jetty.websocket + websocket-jakarta-client + 11.0.15 + + + org.eclipse.jetty.websocket + websocket-jakarta-server + 11.0.15 + + + org.eclipse.jetty.websocket + websocket-jakarta-common + 11.0.15 + + + org.eclipse.jetty.websocket + websocket-jetty-api + 11.0.15 + + + org.eclipse.jetty.websocket + websocket-jetty-client + 11.0.15 + + + org.eclipse.jetty.websocket + websocket-jetty-common + 11.0.15 + + + org.eclipse.jetty.websocket + websocket-jetty-server + 11.0.15 + + + org.eclipse.jetty.websocket + websocket-servlet + 11.0.15 + + + org.eclipse.jetty.websocket + websocket-core-common + 11.0.15 + + + org.eclipse.jetty.websocket + websocket-core-client + 11.0.15 + + + org.eclipse.jetty.websocket + websocket-core-server + 11.0.15 + + + org.eclipse.jetty + jetty-xml + 11.0.15 + + + org.junit.jupiter + junit-jupiter + 5.9.3 + + + org.junit.jupiter + junit-jupiter-api + 5.9.3 + + + org.junit.jupiter + junit-jupiter-engine + 5.9.3 + + + org.junit.jupiter + junit-jupiter-migrationsupport + 5.9.3 + + + org.junit.jupiter + junit-jupiter-params + 5.9.3 + + + org.junit.platform + junit-platform-commons + 1.9.3 + + + org.junit.platform + junit-platform-console + 1.9.3 + + + org.junit.platform + junit-platform-engine + 1.9.3 + + + org.junit.platform + junit-platform-jfr + 1.9.3 + + + org.junit.platform + junit-platform-launcher + 1.9.3 + + + org.junit.platform + junit-platform-reporting + 1.9.3 + + + org.junit.platform + junit-platform-runner + 1.9.3 + + + org.junit.platform + junit-platform-suite + 1.9.3 + + + org.junit.platform + junit-platform-suite-api + 1.9.3 + + + org.junit.platform + junit-platform-suite-commons + 1.9.3 + + + org.junit.platform + junit-platform-suite-engine + 1.9.3 + + + org.junit.platform + junit-platform-testkit + 1.9.3 + + + org.junit.vintage + junit-vintage-engine + 5.9.3 + + + org.jetbrains.kotlin + kotlin-stdlib + 1.8.21 + + + org.jetbrains.kotlin + kotlin-stdlib-jdk7 + 1.8.21 + + + org.jetbrains.kotlin + kotlin-stdlib-jdk8 + 1.8.21 + + + org.jetbrains.kotlin + kotlin-stdlib-js + 1.8.21 + + + org.jetbrains.kotlin + kotlin-stdlib-common + 1.8.21 + + + org.jetbrains.kotlin + kotlin-reflect + 1.8.21 + + + org.jetbrains.kotlin + kotlin-osgi-bundle + 1.8.21 + + + org.jetbrains.kotlin + kotlin-test + 1.8.21 + + + org.jetbrains.kotlin + kotlin-test-junit + 1.8.21 + + + org.jetbrains.kotlin + kotlin-test-junit5 + 1.8.21 + + + org.jetbrains.kotlin + kotlin-test-testng + 1.8.21 + + + org.jetbrains.kotlin + kotlin-test-js + 1.8.21 + + + org.jetbrains.kotlin + kotlin-test-common + 1.8.21 + + + org.jetbrains.kotlin + kotlin-test-annotations-common + 1.8.21 + + + org.jetbrains.kotlin + kotlin-main-kts + 1.8.21 + + + org.jetbrains.kotlin + kotlin-script-runtime + 1.8.21 + + + org.jetbrains.kotlin + kotlin-script-util + 1.8.21 + + + org.jetbrains.kotlin + kotlin-scripting-common + 1.8.21 + + + org.jetbrains.kotlin + kotlin-scripting-jvm + 1.8.21 + + + org.jetbrains.kotlin + kotlin-scripting-jvm-host + 1.8.21 + + + org.jetbrains.kotlin + kotlin-scripting-ide-services + 1.8.21 + + + org.jetbrains.kotlin + kotlin-compiler + 1.8.21 + + + org.jetbrains.kotlin + kotlin-compiler-embeddable + 1.8.21 + + + org.jetbrains.kotlin + kotlin-daemon-client + 1.8.21 + + + org.jetbrains.kotlinx + kotlinx-coroutines-android + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-core-jvm + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-core + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-debug + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-guava + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-javafx + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-jdk8 + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-jdk9 + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-play-services + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-reactive + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-reactor + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-rx2 + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-rx3 + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-slf4j + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-swing + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-test-jvm + 1.6.4 + + + org.jetbrains.kotlinx + kotlinx-coroutines-test + 1.6.4 + + + org.apache.logging.log4j + log4j-1.2-api + 2.20.0 + + + org.apache.logging.log4j + log4j-api + 2.20.0 + + + org.apache.logging.log4j + log4j-api-test + 2.20.0 + + + org.apache.logging.log4j + log4j-appserver + 2.20.0 + + + org.apache.logging.log4j + log4j-cassandra + 2.20.0 + + + org.apache.logging.log4j + log4j-core + 2.20.0 + + + org.apache.logging.log4j + log4j-core-test + 2.20.0 + + + org.apache.logging.log4j + log4j-couchdb + 2.20.0 + + + org.apache.logging.log4j + log4j-docker + 2.20.0 + + + org.apache.logging.log4j + log4j-flume-ng + 2.20.0 + + + org.apache.logging.log4j + log4j-iostreams + 2.20.0 + + + org.apache.logging.log4j + log4j-jakarta-smtp + 2.20.0 + + + org.apache.logging.log4j + log4j-jakarta-web + 2.20.0 + + + org.apache.logging.log4j + log4j-jcl + 2.20.0 + + + org.apache.logging.log4j + log4j-jmx-gui + 2.20.0 + + + org.apache.logging.log4j + log4j-jpa + 2.20.0 + + + org.apache.logging.log4j + log4j-jpl + 2.20.0 + + + org.apache.logging.log4j + log4j-jul + 2.20.0 + + + org.apache.logging.log4j + log4j-kubernetes + 2.20.0 + + + org.apache.logging.log4j + log4j-layout-template-json + 2.20.0 + + + org.apache.logging.log4j + log4j-layout-template-json-test + 2.20.0 + + + org.apache.logging.log4j + log4j-mongodb3 + 2.20.0 + + + org.apache.logging.log4j + log4j-mongodb4 + 2.20.0 + + + org.apache.logging.log4j + log4j-slf4j2-impl + 2.20.0 + + + org.apache.logging.log4j + log4j-slf4j-impl + 2.20.0 + + + org.apache.logging.log4j + log4j-spring-boot + 2.20.0 + + + org.apache.logging.log4j + log4j-spring-cloud-config-client + 2.20.0 + + + org.apache.logging.log4j + log4j-taglib + 2.20.0 + + + org.apache.logging.log4j + log4j-to-jul + 2.20.0 + + + org.apache.logging.log4j + log4j-to-slf4j + 2.20.0 + + + org.apache.logging.log4j + log4j-web + 2.20.0 + + + org.apache.maven.plugin-tools + maven-plugin-annotations + 3.6.4 + + + io.micrometer + micrometer-commons + 1.11.0 + + + io.micrometer + micrometer-core + 1.11.0 + + + io.micrometer + micrometer-jetty11 + 1.11.0 + + + io.micrometer + micrometer-observation + 1.11.0 + + + io.micrometer + micrometer-observation-test + 1.11.0 + + + io.micrometer + micrometer-osgi-test + 1.11.0 + + + io.micrometer + micrometer-registry-appoptics + 1.11.0 + + + io.micrometer + micrometer-registry-atlas + 1.11.0 + + + io.micrometer + micrometer-registry-azure-monitor + 1.11.0 + + + io.micrometer + micrometer-registry-cloudwatch + 1.11.0 + + + io.micrometer + micrometer-registry-cloudwatch2 + 1.11.0 + + + io.micrometer + micrometer-registry-datadog + 1.11.0 + + + io.micrometer + micrometer-registry-dynatrace + 1.11.0 + + + io.micrometer + micrometer-registry-elastic + 1.11.0 + + + io.micrometer + micrometer-registry-ganglia + 1.11.0 + + + io.micrometer + micrometer-registry-graphite + 1.11.0 + + + io.micrometer + micrometer-registry-health + 1.11.0 + + + io.micrometer + micrometer-registry-humio + 1.11.0 + + + io.micrometer + micrometer-registry-influx + 1.11.0 + + + io.micrometer + micrometer-registry-jmx + 1.11.0 + + + io.micrometer + micrometer-registry-kairos + 1.11.0 + + + io.micrometer + micrometer-registry-new-relic + 1.11.0 + + + io.micrometer + micrometer-registry-opentsdb + 1.11.0 + + + io.micrometer + micrometer-registry-otlp + 1.11.0 + + + io.micrometer + micrometer-registry-prometheus + 1.11.0 + + + io.micrometer + micrometer-registry-signalfx + 1.11.0 + + + io.micrometer + micrometer-registry-statsd + 1.11.0 + + + io.micrometer + micrometer-registry-wavefront + 1.11.0 + + + io.micrometer + micrometer-test + 1.11.0 + + + io.micrometer + micrometer-tracing + 1.1.1 + + + io.micrometer + micrometer-tracing-bridge-brave + 1.1.1 + + + io.micrometer + micrometer-tracing-bridge-otel + 1.1.1 + + + io.micrometer + micrometer-tracing-integration-test + 1.1.1 + + + io.micrometer + micrometer-tracing-reporter-wavefront + 1.1.1 + + + io.micrometer + micrometer-tracing-test + 1.1.1 + + + org.mockito + mockito-core + 5.3.1 + + + org.mockito + mockito-android + 5.3.1 + + + org.mockito + mockito-errorprone + 5.3.1 + + + org.mockito + mockito-junit-jupiter + 5.3.1 + + + org.mockito + mockito-proxy + 5.3.1 + + + org.mockito + mockito-subclass + 5.3.1 + + + io.netty + netty-buffer + 4.1.92.Final + + + io.netty + netty-codec + 4.1.92.Final + + + io.netty + netty-codec-dns + 4.1.92.Final + + + io.netty + netty-codec-haproxy + 4.1.92.Final + + + io.netty + netty-codec-http + 4.1.92.Final + + + io.netty + netty-codec-http2 + 4.1.92.Final + + + io.netty + netty-codec-memcache + 4.1.92.Final + + + io.netty + netty-codec-mqtt + 4.1.92.Final + + + io.netty + netty-codec-redis + 4.1.92.Final + + + io.netty + netty-codec-smtp + 4.1.92.Final + + + io.netty + netty-codec-socks + 4.1.92.Final + + + io.netty + netty-codec-stomp + 4.1.92.Final + + + io.netty + netty-codec-xml + 4.1.92.Final + + + io.netty + netty-common + 4.1.92.Final + + + io.netty + netty-dev-tools + 4.1.92.Final + + + io.netty + netty-handler + 4.1.92.Final + + + io.netty + netty-handler-proxy + 4.1.92.Final + + + io.netty + netty-handler-ssl-ocsp + 4.1.92.Final + + + io.netty + netty-resolver + 4.1.92.Final + + + io.netty + netty-resolver-dns + 4.1.92.Final + + + io.netty + netty-transport + 4.1.92.Final + + + io.netty + netty-transport-rxtx + 4.1.92.Final + + + io.netty + netty-transport-sctp + 4.1.92.Final + + + io.netty + netty-transport-udt + 4.1.92.Final + + + io.netty + netty-example + 4.1.92.Final + + + io.netty + netty-all + 4.1.92.Final + + + io.netty + netty-resolver-dns-classes-macos + 4.1.92.Final + + + io.netty + netty-resolver-dns-native-macos + 4.1.92.Final + + + io.netty + netty-resolver-dns-native-macos + 4.1.92.Final + osx-x86_64 + + + io.netty + netty-resolver-dns-native-macos + 4.1.92.Final + osx-aarch_64 + + + io.netty + netty-transport-native-unix-common + 4.1.92.Final + + + io.netty + netty-transport-native-unix-common + 4.1.92.Final + linux-aarch_64 + + + io.netty + netty-transport-native-unix-common + 4.1.92.Final + linux-x86_64 + + + io.netty + netty-transport-native-unix-common + 4.1.92.Final + osx-x86_64 + + + io.netty + netty-transport-native-unix-common + 4.1.92.Final + osx-aarch_64 + + + io.netty + netty-transport-classes-epoll + 4.1.92.Final + + + io.netty + netty-transport-native-epoll + 4.1.92.Final + + + io.netty + netty-transport-native-epoll + 4.1.92.Final + linux-aarch_64 + + + io.netty + netty-transport-native-epoll + 4.1.92.Final + linux-x86_64 + + + io.netty + netty-transport-classes-kqueue + 4.1.92.Final + + + io.netty + netty-transport-native-kqueue + 4.1.92.Final + + + io.netty + netty-transport-native-kqueue + 4.1.92.Final + osx-x86_64 + + + io.netty + netty-transport-native-kqueue + 4.1.92.Final + osx-aarch_64 + + + io.netty + netty-tcnative-classes + 2.0.60.Final + + + io.netty + netty-tcnative + 2.0.60.Final + linux-x86_64 + + + io.netty + netty-tcnative + 2.0.60.Final + linux-x86_64-fedora + + + io.netty + netty-tcnative + 2.0.60.Final + linux-aarch_64-fedora + + + io.netty + netty-tcnative + 2.0.60.Final + osx-x86_64 + + + io.netty + netty-tcnative-boringssl-static + 2.0.60.Final + + + io.netty + netty-tcnative-boringssl-static + 2.0.60.Final + linux-x86_64 + + + io.netty + netty-tcnative-boringssl-static + 2.0.60.Final + linux-aarch_64 + + + io.netty + netty-tcnative-boringssl-static + 2.0.60.Final + osx-x86_64 + + + io.netty + netty-tcnative-boringssl-static + 2.0.60.Final + osx-aarch_64 + + + io.netty + netty-tcnative-boringssl-static + 2.0.60.Final + windows-x86_64 + + + com.squareup.okhttp3 + mockwebserver + 4.10.0 + + + com.squareup.okhttp3 + okcurl + 4.10.0 + + + com.squareup.okhttp3 + okhttp + 4.10.0 + + + com.squareup.okhttp3 + okhttp-brotli + 4.10.0 + + + com.squareup.okhttp3 + okhttp-dnsoverhttps + 4.10.0 + + + com.squareup.okhttp3 + logging-interceptor + 4.10.0 + + + com.squareup.okhttp3 + okhttp-sse + 4.10.0 + + + com.squareup.okhttp3 + okhttp-tls + 4.10.0 + + + com.squareup.okhttp3 + okhttp-urlconnection + 4.10.0 + + + io.opentelemetry + opentelemetry-context + 1.25.0 + + + io.opentelemetry + opentelemetry-api + 1.25.0 + + + io.opentelemetry + opentelemetry-exporter-common + 1.25.0 + + + io.opentelemetry + opentelemetry-exporter-jaeger + 1.25.0 + + + io.opentelemetry + opentelemetry-exporter-jaeger-thrift + 1.25.0 + + + io.opentelemetry + opentelemetry-exporter-logging + 1.25.0 + + + io.opentelemetry + opentelemetry-exporter-logging-otlp + 1.25.0 + + + io.opentelemetry + opentelemetry-exporter-zipkin + 1.25.0 + + + io.opentelemetry + opentelemetry-extension-kotlin + 1.25.0 + + + io.opentelemetry + opentelemetry-extension-trace-propagators + 1.25.0 + + + io.opentelemetry + opentelemetry-sdk + 1.25.0 + + + io.opentelemetry + opentelemetry-sdk-common + 1.25.0 + + + io.opentelemetry + opentelemetry-sdk-metrics + 1.25.0 + + + io.opentelemetry + opentelemetry-sdk-testing + 1.25.0 + + + io.opentelemetry + opentelemetry-sdk-trace + 1.25.0 + + + io.opentelemetry + opentelemetry-sdk-extension-autoconfigure-spi + 1.25.0 + + + io.opentelemetry + opentelemetry-sdk-extension-jaeger-remote-sampler + 1.25.0 + + + io.opentelemetry + opentelemetry-exporter-otlp + 1.25.0 + + + io.opentelemetry + opentelemetry-exporter-otlp-common + 1.25.0 + + + io.opentelemetry + opentelemetry-sdk-extension-aws + 1.19.0 + + + io.opentelemetry + opentelemetry-exporter-jaeger-proto + 1.17.0 + + + io.opentelemetry + opentelemetry-extension-annotations + 1.18.0 + + + io.opentelemetry + opentelemetry-sdk-extension-resources + 1.19.0 + + + io.opentelemetry + opentelemetry-extension-aws + 1.20.1 + + + com.oracle.database.jdbc + ojdbc11 + 21.9.0.0 + + + com.oracle.database.jdbc + ojdbc8 + 21.9.0.0 + + + com.oracle.database.jdbc + ucp + 21.9.0.0 + + + com.oracle.database.jdbc + ucp11 + 21.9.0.0 + + + com.oracle.database.jdbc + rsi + 21.9.0.0 + + + com.oracle.database.security + oraclepki + 21.9.0.0 + + + com.oracle.database.security + osdt_core + 21.9.0.0 + + + com.oracle.database.security + osdt_cert + 21.9.0.0 + + + com.oracle.database.ha + simplefan + 21.9.0.0 + + + com.oracle.database.ha + ons + 21.9.0.0 + + + com.oracle.database.nls + orai18n + 21.9.0.0 + + + com.oracle.database.xml + xdb + 21.9.0.0 + + + com.oracle.database.xml + xmlparserv2 + 21.9.0.0 + + + com.oracle.database.jdbc.debug + ojdbc11_g + 21.9.0.0 + + + com.oracle.database.jdbc.debug + ojdbc8_g + 21.9.0.0 + + + com.oracle.database.jdbc.debug + ojdbc8dms_g + 21.9.0.0 + + + com.oracle.database.jdbc.debug + ojdbc11dms_g + 21.9.0.0 + + + com.oracle.database.observability + dms + 21.9.0.0 + + + com.oracle.database.observability + ojdbc11dms + 21.9.0.0 + + + com.oracle.database.observability + ojdbc8dms + 21.9.0.0 + + + com.oracle.database.jdbc + ojdbc11-production + 21.9.0.0 + pom + + + com.oracle.database.jdbc + ojdbc8-production + 21.9.0.0 + pom + + + com.oracle.database.observability + ojdbc8-observability + 21.9.0.0 + pom + + + com.oracle.database.observability + ojdbc11-observability + 21.9.0.0 + pom + + + com.oracle.database.jdbc.debug + ojdbc8-debug + 21.9.0.0 + pom + + + com.oracle.database.jdbc.debug + ojdbc11-debug + 21.9.0.0 + pom + + + com.oracle.database.jdbc.debug + ojdbc8-observability-debug + 21.9.0.0 + pom + + + com.oracle.database.jdbc.debug + ojdbc11-observability-debug + 21.9.0.0 + pom + + + io.prometheus + simpleclient + 0.16.0 + + + io.prometheus + simpleclient_caffeine + 0.16.0 + + + io.prometheus + simpleclient_common + 0.16.0 + + + io.prometheus + simpleclient_dropwizard + 0.16.0 + + + io.prometheus + simpleclient_graphite_bridge + 0.16.0 + + + io.prometheus + simpleclient_guava + 0.16.0 + + + io.prometheus + simpleclient_hibernate + 0.16.0 + + + io.prometheus + simpleclient_hotspot + 0.16.0 + + + io.prometheus + simpleclient_httpserver + 0.16.0 + + + io.prometheus + simpleclient_tracer_common + 0.16.0 + + + io.prometheus + simpleclient_jetty + 0.16.0 + + + io.prometheus + simpleclient_jetty_jdk8 + 0.16.0 + + + io.prometheus + simpleclient_log4j + 0.16.0 + + + io.prometheus + simpleclient_log4j2 + 0.16.0 + + + io.prometheus + simpleclient_logback + 0.16.0 + + + io.prometheus + simpleclient_pushgateway + 0.16.0 + + + io.prometheus + simpleclient_servlet + 0.16.0 + + + io.prometheus + simpleclient_servlet_jakarta + 0.16.0 + + + io.prometheus + simpleclient_spring_boot + 0.16.0 + + + io.prometheus + simpleclient_spring_web + 0.16.0 + + + io.prometheus + simpleclient_tracer_otel + 0.16.0 + + + io.prometheus + simpleclient_tracer_otel_agent + 0.16.0 + + + io.prometheus + simpleclient_vertx + 0.16.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 + + + io.projectreactor + reactor-core + 3.5.6 + + + io.projectreactor + reactor-test + 3.5.6 + + + io.projectreactor + reactor-tools + 3.5.6 + + + io.projectreactor + reactor-core-micrometer + 1.0.6 + + + io.projectreactor.addons + reactor-extra + 3.5.1 + + + io.projectreactor.addons + reactor-adapter + 3.5.1 + + + io.projectreactor.netty + reactor-netty + 1.1.7 + + + io.projectreactor.netty + reactor-netty-core + 1.1.7 + + + io.projectreactor.netty + reactor-netty-http + 1.1.7 + + + io.projectreactor.netty + reactor-netty-http-brave + 1.1.7 + + + io.projectreactor.addons + reactor-pool + 1.0.0 + + + io.projectreactor.addons + reactor-pool-micrometer + 0.1.0 + + + io.projectreactor.kotlin + reactor-kotlin-extensions + 1.2.2 + + + io.projectreactor.kafka + reactor-kafka + 1.3.18 + + + io.rest-assured + json-schema-validator + 5.3.0 + + + io.rest-assured + rest-assured-common + 5.3.0 + + + io.rest-assured + json-path + 5.3.0 + + + io.rest-assured + xml-path + 5.3.0 + + + io.rest-assured + rest-assured + 5.3.0 + + + io.rest-assured + spring-commons + 5.3.0 + + + io.rest-assured + spring-mock-mvc + 5.3.0 + + + io.rest-assured + scala-support + 5.3.0 + + + io.rest-assured + spring-web-test-client + 5.3.0 + + + io.rest-assured + kotlin-extensions + 5.3.0 + + + io.rest-assured + spring-mock-mvc-kotlin-extensions + 5.3.0 + + + io.rest-assured + rest-assured-all + 5.3.0 + + + io.rsocket + rsocket-core + 1.1.3 + + + io.rsocket + rsocket-load-balancer + 1.1.3 + + + io.rsocket + rsocket-micrometer + 1.1.3 + + + io.rsocket + rsocket-test + 1.1.3 + + + io.rsocket + rsocket-transport-local + 1.1.3 + + + io.rsocket + rsocket-transport-netty + 1.1.3 + + + org.springframework.batch + spring-batch-core + 5.0.2 + + + org.springframework.batch + spring-batch-infrastructure + 5.0.2 + + + org.springframework.batch + spring-batch-integration + 5.0.2 + + + org.springframework.batch + spring-batch-test + 5.0.2 + + + org.springframework.data + spring-data-cassandra + 4.1.0 + + + org.springframework.data + spring-data-commons + 3.1.0 + + + org.springframework.data + spring-data-couchbase + 5.1.0 + + + org.springframework.data + spring-data-elasticsearch + 5.1.0 + + + org.springframework.data + spring-data-jdbc + 3.1.0 + + + org.springframework.data + spring-data-r2dbc + 3.1.0 + + + org.springframework.data + spring-data-relational + 3.1.0 + + + org.springframework.data + spring-data-jpa + 3.1.0 + + + org.springframework.data + spring-data-envers + 3.1.0 + + + org.springframework.data + spring-data-mongodb + 4.1.0 + + + org.springframework.data + spring-data-neo4j + 7.1.0 + + + org.springframework.data + spring-data-redis + 3.1.0 + + + org.springframework.data + spring-data-rest-webmvc + 4.1.0 + + + org.springframework.data + spring-data-rest-core + 4.1.0 + + + org.springframework.data + spring-data-rest-hal-explorer + 4.1.0 + + + org.springframework.data + spring-data-keyvalue + 3.1.0 + + + org.springframework.data + spring-data-ldap + 3.1.0 + + + org.springframework + spring-aop + 6.0.9 + + + org.springframework + spring-aspects + 6.0.9 + + + org.springframework + spring-beans + 6.0.9 + + + org.springframework + spring-context + 6.0.9 + + + org.springframework + spring-context-indexer + 6.0.9 + + + org.springframework + spring-context-support + 6.0.9 + + + org.springframework + spring-core + 6.0.9 + + + org.springframework + spring-core-test + 6.0.9 + + + org.springframework + spring-expression + 6.0.9 + + + org.springframework + spring-instrument + 6.0.9 + + + org.springframework + spring-jcl + 6.0.9 + + + org.springframework + spring-jdbc + 6.0.9 + + + org.springframework + spring-jms + 6.0.9 + + + org.springframework + spring-messaging + 6.0.9 + + + org.springframework + spring-orm + 6.0.9 + + + org.springframework + spring-oxm + 6.0.9 + + + org.springframework + spring-r2dbc + 6.0.9 + + + org.springframework + spring-test + 6.0.9 + + + org.springframework + spring-tx + 6.0.9 + + + org.springframework + spring-web + 6.0.9 + + + org.springframework + spring-webflux + 6.0.9 + + + org.springframework + spring-webmvc + 6.0.9 + + + org.springframework + spring-websocket + 6.0.9 + + + org.springframework.integration + spring-integration-amqp + 6.1.0 + + + org.springframework.integration + spring-integration-camel + 6.1.0 + + + org.springframework.integration + spring-integration-cassandra + 6.1.0 + + + org.springframework.integration + spring-integration-core + 6.1.0 + + + org.springframework.integration + spring-integration-event + 6.1.0 + + + org.springframework.integration + spring-integration-feed + 6.1.0 + + + org.springframework.integration + spring-integration-file + 6.1.0 + + + org.springframework.integration + spring-integration-ftp + 6.1.0 + + + org.springframework.integration + spring-integration-graphql + 6.1.0 + + + org.springframework.integration + spring-integration-groovy + 6.1.0 + + + org.springframework.integration + spring-integration-hazelcast + 6.1.0 + + + org.springframework.integration + spring-integration-http + 6.1.0 + + + org.springframework.integration + spring-integration-ip + 6.1.0 + + + org.springframework.integration + spring-integration-jdbc + 6.1.0 + + + org.springframework.integration + spring-integration-jms + 6.1.0 + + + org.springframework.integration + spring-integration-jmx + 6.1.0 + + + org.springframework.integration + spring-integration-jpa + 6.1.0 + + + org.springframework.integration + spring-integration-kafka + 6.1.0 + + + org.springframework.integration + spring-integration-mail + 6.1.0 + + + org.springframework.integration + spring-integration-mongodb + 6.1.0 + + + org.springframework.integration + spring-integration-mqtt + 6.1.0 + + + org.springframework.integration + spring-integration-r2dbc + 6.1.0 + + + org.springframework.integration + spring-integration-redis + 6.1.0 + + + org.springframework.integration + spring-integration-rsocket + 6.1.0 + + + org.springframework.integration + spring-integration-scripting + 6.1.0 + + + org.springframework.integration + spring-integration-security + 6.1.0 + + + org.springframework.integration + spring-integration-sftp + 6.1.0 + + + org.springframework.integration + spring-integration-smb + 6.1.0 + + + org.springframework.integration + spring-integration-stomp + 6.1.0 + + + org.springframework.integration + spring-integration-stream + 6.1.0 + + + org.springframework.integration + spring-integration-syslog + 6.1.0 + + + org.springframework.integration + spring-integration-test + 6.1.0 + + + org.springframework.integration + spring-integration-test-support + 6.1.0 + + + org.springframework.integration + spring-integration-webflux + 6.1.0 + + + org.springframework.integration + spring-integration-websocket + 6.1.0 + + + org.springframework.integration + spring-integration-ws + 6.1.0 + + + org.springframework.integration + spring-integration-xml + 6.1.0 + + + org.springframework.integration + spring-integration-xmpp + 6.1.0 + + + org.springframework.integration + spring-integration-zeromq + 6.1.0 + + + org.springframework.integration + spring-integration-zip + 6.1.0 + + + org.springframework.integration + spring-integration-zookeeper + 6.1.0 + + + org.springframework.restdocs + spring-restdocs-asciidoctor + 3.0.0 + + + org.springframework.restdocs + spring-restdocs-core + 3.0.0 + + + org.springframework.restdocs + spring-restdocs-mockmvc + 3.0.0 + + + org.springframework.restdocs + spring-restdocs-restassured + 3.0.0 + + + org.springframework.restdocs + spring-restdocs-webtestclient + 3.0.0 + + + org.springframework.security + spring-security-acl + 6.1.0 + + + org.springframework.security + spring-security-aspects + 6.1.0 + + + org.springframework.security + spring-security-cas + 6.1.0 + + + org.springframework.security + spring-security-config + 6.1.0 + + + org.springframework.security + spring-security-core + 6.1.0 + + + org.springframework.security + spring-security-crypto + 6.1.0 + + + org.springframework.security + spring-security-data + 6.1.0 + + + org.springframework.security + spring-security-ldap + 6.1.0 + + + org.springframework.security + spring-security-messaging + 6.1.0 + + + org.springframework.security + spring-security-oauth2-client + 6.1.0 + + + org.springframework.security + spring-security-oauth2-core + 6.1.0 + + + org.springframework.security + spring-security-oauth2-jose + 6.1.0 + + + org.springframework.security + spring-security-oauth2-resource-server + 6.1.0 + + + org.springframework.security + spring-security-rsocket + 6.1.0 + + + org.springframework.security + spring-security-saml2-service-provider + 6.1.0 + + + org.springframework.security + spring-security-taglibs + 6.1.0 + + + org.springframework.security + spring-security-test + 6.1.0 + + + org.springframework.security + spring-security-web + 6.1.0 + + + org.springframework.session + spring-session-core + 3.1.0 + + + org.springframework.session + spring-session-data-mongodb + 3.1.0 + + + org.springframework.session + spring-session-data-redis + 3.1.0 + + + org.springframework.session + spring-session-hazelcast + 3.1.0 + + + org.springframework.session + spring-session-jdbc + 3.1.0 + + + org.springframework.ws + spring-ws-core + 4.0.4 + + + org.springframework.ws + spring-ws-security + 4.0.4 + + + org.springframework.ws + spring-ws-support + 4.0.4 + + + org.springframework.ws + spring-ws-test + 4.0.4 + + + org.springframework.ws + spring-xml + 4.0.4 + + + + + + io.jenkins.pluginhealth.scoring + plugin-health-scoring-core + 2.4.3-SNAPSHOT + compile + + + org.kohsuke + github-api + 1.315 + compile + + + io.jsonwebtoken + jjwt-jackson + 0.11.5 + runtime + + + com.squareup.okhttp3 + okhttp + 4.10.0 + compile + + + org.springframework.boot + spring-boot-starter-web + 3.1.0 + compile + + + org.springframework.boot + spring-boot-starter-security + 3.1.0 + compile + + + org.springframework.boot + spring-boot-starter-thymeleaf + 3.1.0 + compile + + + nz.net.ultraq.thymeleaf + thymeleaf-layout-dialect + 3.2.1 + compile + + + org.springframework.boot + spring-boot-starter-data-jpa + 3.1.0 + compile + + + org.springframework.boot + spring-boot-starter-validation + 3.1.0 + compile + + + com.vladmihalcea + hibernate-types-60 + 2.21.1 + compile + + + org.postgresql + postgresql + 42.6.0 + runtime + + + org.springframework.boot + spring-boot-starter-actuator + 3.1.0 + compile + + + org.springframework.boot + spring-boot-configuration-processor + 3.1.0 + compile + true + + + org.springframework.boot + spring-boot-devtools + 3.1.0 + runtime + true + + + io.jenkins.pluginhealth.scoring + plugin-health-scoring-test + 2.4.3-SNAPSHOT + test + + + org.springframework.boot + spring-boot-starter-test + 3.1.0 + test + + + junit + junit + + + + + org.junit.jupiter + junit-jupiter-engine + 5.9.3 + test + + + org.junit.jupiter + junit-jupiter-params + 5.9.3 + test + + + org.testcontainers + junit-jupiter + 1.18.3 + test + + + org.testcontainers + postgresql + 1.18.3 + test + + + + + repo.jenkins-ci.org + https://repo.jenkins-ci.org/public/ + + + + false + + central + Central Repository + https://repo.maven.apache.org/maven2 + + + + + repo.jenkins-ci.org + https://repo.jenkins-ci.org/public/ + + + + never + + + false + + central + Central Repository + https://repo.maven.apache.org/maven2 + + + + D:\jenkins-oss\plugin-health-scoring\war\src\main\java + D:\jenkins-oss\plugin-health-scoring\war\src\main\scripts + D:\jenkins-oss\plugin-health-scoring\war\src\test\java + D:\jenkins-oss\plugin-health-scoring\war\target\classes + D:\jenkins-oss\plugin-health-scoring\war\target\test-classes + + + D:\jenkins-oss\plugin-health-scoring\war\src\main\resources + + + + + D:\jenkins-oss\plugin-health-scoring\war\src\test\resources + + + D:\jenkins-oss\plugin-health-scoring\war\target + plugin-health-scoring + + + + maven-antrun-plugin + 1.3 + + + maven-assembly-plugin + 2.2-beta-5 + + + maven-dependency-plugin + 2.8 + + + maven-checkstyle-plugin + 3.3.0 + + + com.puppycrawl.tools + checkstyle + 10.12.0 + + + + false + true + analytics/checkstyle-configuration.xml + + + + maven-compiler-plugin + 3.11.0 + + 17 + + -parameters + + + + + maven-failsafe-plugin + 3.1.0 + + + + integration-test + verify + + + D:\jenkins-oss\plugin-health-scoring\war\target\classes + + + + + D:\jenkins-oss\plugin-health-scoring\war\target\classes + + + + maven-release-plugin + 3.0.1 + + verify + true + v@{project.version} + + + + maven-surefire-plugin + 3.1.0 + + + com.github.spotbugs + spotbugs-maven-plugin + 4.7.3.4 + + analytics/spotbugs-exclude.xml + Max + + + + org.jacoco + jacoco-maven-plugin + 0.8.10 + + + XML + + + + + maven-jar-plugin + + + + 2.4.3-SNAPSHOT + + + + + + + + + maven-failsafe-plugin + 3.1.0 + + + + integration-test + verify + + + D:\jenkins-oss\plugin-health-scoring\war\target\classes + + + + + D:\jenkins-oss\plugin-health-scoring\war\target\classes + + + + org.jacoco + jacoco-maven-plugin + 0.8.10 + + + default-prepare-agent + + prepare-agent + + + + XML + + + + + default-prepare-agent-integration + + prepare-agent-integration + + + + XML + + + + + merge-data-files + post-integration-test + + merge + + + + + D:\jenkins-oss\plugin-health-scoring\war\target + + jacoco.exec + jacoco-it.exec + + + + D:\jenkins-oss\plugin-health-scoring\war\target/jacoco-merged.exec + + XML + + + + + merged-report + post-integration-test + + report + + + D:\jenkins-oss\plugin-health-scoring\war\target/jacoco-merged.exec + + XML + + + + + + + XML + + + + + org.codehaus.mojo + tidy-maven-plugin + 1.2.0 + + + tidy-pom + validate + + pom + + + + + + maven-antrun-plugin + 1.3 + + + download-yarn + validate + + run + + + + + + + + + + + + Checksum error + + + + + + + com.github.eirslett + frontend-maven-plugin + 1.12.1 + + + install node and yarn + initialize + + install-node-and-yarn + + + v18.10.0 + v1.22.19 + https://repo.jenkins-ci.org/nodejs-dist/ + + + + yarn install + initialize + + yarn + + + install + + + + yarn build + generate-sources + + yarn + + + build + + + + + + org.springframework.boot + spring-boot-maven-plugin + 3.1.0 + + + + build-info + repackage + + + + false + + + time + group + artifact + name + + + + + + + false + + + time + group + artifact + name + + + + + pl.project13.maven + git-commit-id-plugin + 4.9.10 + + + generate-resources + + revision + + + true + D:\jenkins-oss\plugin-health-scoring\war\target\classes/git.properties + + git.commit.id.abbrev + + + + + + true + D:\jenkins-oss\plugin-health-scoring\war\target\classes/git.properties + + git.commit.id.abbrev + + + + + maven-clean-plugin + 2.5 + + + default-clean + clean + + clean + + + + + + maven-resources-plugin + 2.6 + + + default-testResources + process-test-resources + + testResources + + + + default-resources + process-resources + + resources + + + + + + maven-jar-plugin + 2.4 + + + default-jar + package + + jar + + + + + 2.4.3-SNAPSHOT + + + + + + + + + 2.4.3-SNAPSHOT + + + + + + maven-compiler-plugin + 3.11.0 + + + default-compile + compile + + compile + + + 17 + + -parameters + + + + + default-testCompile + test-compile + + testCompile + + + 17 + + -parameters + + + + + + 17 + + -parameters + + + + + maven-surefire-plugin + 3.1.0 + + + default-test + test + + test + + + + + + maven-install-plugin + 2.4 + + + default-install + install + + install + + + + + + maven-deploy-plugin + 2.7 + + + default-deploy + deploy + + deploy + + + + + + maven-site-plugin + 3.3 + + + default-site + site + + site + + + D:\jenkins-oss\plugin-health-scoring\war\target\site + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + + + + + default-deploy + site-deploy + + deploy + + + D:\jenkins-oss\plugin-health-scoring\war\target\site + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + + + + + + D:\jenkins-oss\plugin-health-scoring\war\target\site + + + org.apache.maven.plugins + maven-project-info-reports-plugin + + + + + + + + D:\jenkins-oss\plugin-health-scoring\war\target\site + + + From 039362ef4861f5c3df5a4c1b70edaac28e878aa8 Mon Sep 17 00:00:00 2001 From: Jagruti Date: Sat, 10 Jun 2023 17:52:13 +0530 Subject: [PATCH 33/46] Undoing editorconfig change --- .editorconfig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.editorconfig b/.editorconfig index e23fc265f..476d62b41 100644 --- a/.editorconfig +++ b/.editorconfig @@ -7,7 +7,7 @@ indent_style = space insert_final_newline = true tab_width = 2 -[`l] +[pom.xml] indent_style = tab indent_size = 2 From 2f1638e764887a6a17c8e93337b510a536d589d4 Mon Sep 17 00:00:00 2001 From: Jagruti Date: Sat, 10 Jun 2023 18:18:26 +0530 Subject: [PATCH 34/46] Adding additional test files --- ...hirdPartyRepositoryDetectionProbeTest.java | 33 +++++++++----- .../plugin/pom.xml | 29 ++++++++++++ .../pom.xml | 18 ++++++++ .../plugin/pom.xml | 45 +++++++++++++++++++ .../pom.xml | 25 +++++++++++ .../plugin/pom.xml | 2 +- .../pom.xml | 0 .../plugin/pom.xml | 2 +- .../pom.xml | 0 9 files changed, 142 insertions(+), 12 deletions(-) create mode 100644 core/src/test/resources/pom-test-parent-child-no-repository-tag-failure/plugin/pom.xml create mode 100644 core/src/test/resources/pom-test-parent-child-no-repository-tag-failure/pom.xml create mode 100644 core/src/test/resources/pom-test-parent-child-no-third-party-repository-success/plugin/pom.xml create mode 100644 core/src/test/resources/pom-test-parent-child-no-third-party-repository-success/pom.xml rename core/src/test/resources/{pom-test-third-party-probe-in-child-fail => pom-test-third-party-probe-in-child-failure}/plugin/pom.xml (97%) rename core/src/test/resources/{pom-test-third-party-probe-in-child-fail => pom-test-third-party-probe-in-child-failure}/pom.xml (100%) rename core/src/test/resources/{pom-test-third-party-probe-in-parent-fail => pom-test-third-party-probe-in-parent-failure}/plugin/pom.xml (95%) rename core/src/test/resources/{pom-test-third-party-probe-in-parent-fail => pom-test-third-party-probe-in-parent-failure}/pom.xml (100%) diff --git a/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java b/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java index e8cd2083c..9bc4aa13b 100644 --- a/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java +++ b/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java @@ -9,7 +9,6 @@ import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; -import java.net.MalformedURLException; import java.nio.file.Path; import java.nio.file.Paths; import java.util.Map; @@ -47,6 +46,10 @@ private static Stream successes() { arguments( Paths.get("src", "test", "resources", "pom-test-only-correct-path"), "https://github.com/jenkinsci/test-plugin" + ), + arguments( + Paths.get("src", "test", "resources", "pom-test-parent-child-no-third-party-repository-success", "plugin"), + "https://github.com/jenkinsci/test-plugin" ) ); } @@ -82,11 +85,11 @@ private static Stream failures() { "https://github.com/jenkinsci/test-plugin" ), arguments( - Paths.get("src", "test", "resources", "pom-test-third-party-probe-in-parent-fail/plugin"), + Paths.get("src", "test", "resources", "pom-test-third-party-probe-in-parent-failure", "plugin"), "https://github.com/jenkinsci/test-plugin/plugin" ), arguments( - Paths.get("src", "test", "resources", "pom-test-third-party-probe-in-child-fail/plugin"), + Paths.get("src", "test", "resources", "pom-test-third-party-probe-in-child-failure", "plugin"), "https://github.com/jenkinsci/test-plugin/plugin" ) ); @@ -94,7 +97,7 @@ private static Stream failures() { @ParameterizedTest @MethodSource("failures") - void shouldFailIfThirdPartRepositoriesDetected(Path resourceDirectory, String scm) throws MalformedURLException { + void shouldFailIfThirdPartRepositoriesDetected(Path resourceDirectory, String scm) { final Plugin plugin = mock(Plugin.class); final ProbeContext ctx = mock(ProbeContext.class); @@ -112,15 +115,25 @@ void shouldFailIfThirdPartRepositoriesDetected(Path resourceDirectory, String sc verify(probe).doApply(any(Plugin.class), any(ProbeContext.class)); } - @Test - void shouldFailWhenNoRepositoriesDetected() { + private static Stream failures2() { + return Stream.of( + arguments( + Paths.get("src", "test", "resources", "pom-test-no-repository-tag"), + "https://github.com/jenkinsci/test-plugin" + ), + arguments( + Paths.get("src", "test", "resources", "pom-test-parent-child-no-repository-tag-failure", "plugin"), + "https://github.com/jenkinsci/test-plugin" + ) + ); + } + @ParameterizedTest + @MethodSource("failures2") + void shouldFailWhenNoRepositoriesDetected(Path resourceDirectory, String scm) { final Plugin plugin = mock(Plugin.class); final ProbeContext ctx = mock(ProbeContext.class); - String scm = "https://github.com/jenkinsci/test-plugin/plugin"; - Path resourceDirectory = Paths.get("src", "test", "resources", "pom-test-no-repository-tag"); - String absolutePath = resourceDirectory.toFile().getAbsolutePath(); - when(ctx.getScmRepository()).thenReturn(Path.of(absolutePath)); + when(ctx.getScmRepository()).thenReturn(resourceDirectory); when(plugin.getDetails()).thenReturn(Map.of( SCMLinkValidationProbe.KEY, ProbeResult.success(SCMLinkValidationProbe.KEY, "") )); diff --git a/core/src/test/resources/pom-test-parent-child-no-repository-tag-failure/plugin/pom.xml b/core/src/test/resources/pom-test-parent-child-no-repository-tag-failure/plugin/pom.xml new file mode 100644 index 000000000..3474fb6b2 --- /dev/null +++ b/core/src/test/resources/pom-test-parent-child-no-repository-tag-failure/plugin/pom.xml @@ -0,0 +1,29 @@ + + + + + 4.0.0 + + + test.pom.group-id + test-pom-artifact + 1.0.1 + src/test/resources/pom-test-parent-child-no-repository-tag-failure/pom.xml + + + + 9999-SNAPSHOT + 2.361.4 + + + not-a-real-publisher + Fake Publisher + For testing purpose + ${changelist} + hpi + https://test.com/test/${project.artifactId}-plugin + + diff --git a/core/src/test/resources/pom-test-parent-child-no-repository-tag-failure/pom.xml b/core/src/test/resources/pom-test-parent-child-no-repository-tag-failure/pom.xml new file mode 100644 index 000000000..e4b33b0db --- /dev/null +++ b/core/src/test/resources/pom-test-parent-child-no-repository-tag-failure/pom.xml @@ -0,0 +1,18 @@ + + + + + 4.0.0 + test.pom.group-id + test-pom-artifact + 1.0.1 + + + 9999-SNAPSHOT + 2.361.4 + + + diff --git a/core/src/test/resources/pom-test-parent-child-no-third-party-repository-success/plugin/pom.xml b/core/src/test/resources/pom-test-parent-child-no-third-party-repository-success/plugin/pom.xml new file mode 100644 index 000000000..b1ef0ccb5 --- /dev/null +++ b/core/src/test/resources/pom-test-parent-child-no-third-party-repository-success/plugin/pom.xml @@ -0,0 +1,45 @@ + + + + + 4.0.0 + + + test.pom.group-id + test-pom-artifact + 1.0.1 + src/test/resources/pom-test-parent-child-no-third-party-repository-success/pom.xml + + + + 9999-SNAPSHOT + 2.361.4 + + + + + test + Test Repository + https://repo.jenkins-ci.org/public/ + default + + false + + + never + + + + + + not-a-real-publisher + Fake Publisher + For testing purpose + ${changelist} + hpi + https://test.com/test/${project.artifactId}-plugin + + diff --git a/core/src/test/resources/pom-test-parent-child-no-third-party-repository-success/pom.xml b/core/src/test/resources/pom-test-parent-child-no-third-party-repository-success/pom.xml new file mode 100644 index 000000000..9b0c172c7 --- /dev/null +++ b/core/src/test/resources/pom-test-parent-child-no-third-party-repository-success/pom.xml @@ -0,0 +1,25 @@ + + + + + 4.0.0 + test.pom.group-id + test-pom-artifact + 1.0.1 + + + + repo.jenkins-ci.org + https://repo.jenkins-ci.org/public/ + + + + + 9999-SNAPSHOT + 2.361.4 + + + diff --git a/core/src/test/resources/pom-test-third-party-probe-in-child-fail/plugin/pom.xml b/core/src/test/resources/pom-test-third-party-probe-in-child-failure/plugin/pom.xml similarity index 97% rename from core/src/test/resources/pom-test-third-party-probe-in-child-fail/plugin/pom.xml rename to core/src/test/resources/pom-test-third-party-probe-in-child-failure/plugin/pom.xml index 0c8f3e5f8..82f135a69 100644 --- a/core/src/test/resources/pom-test-third-party-probe-in-child-fail/plugin/pom.xml +++ b/core/src/test/resources/pom-test-third-party-probe-in-child-failure/plugin/pom.xml @@ -11,7 +11,7 @@ test.pom.group-id test-pom-artifact 1.0.1 - src/test/resources/pom-test-third-party-probe-in-child-fail/pom.xml + src/test/resources/pom-test-third-party-probe-in-child-failure/pom.xml diff --git a/core/src/test/resources/pom-test-third-party-probe-in-child-fail/pom.xml b/core/src/test/resources/pom-test-third-party-probe-in-child-failure/pom.xml similarity index 100% rename from core/src/test/resources/pom-test-third-party-probe-in-child-fail/pom.xml rename to core/src/test/resources/pom-test-third-party-probe-in-child-failure/pom.xml diff --git a/core/src/test/resources/pom-test-third-party-probe-in-parent-fail/plugin/pom.xml b/core/src/test/resources/pom-test-third-party-probe-in-parent-failure/plugin/pom.xml similarity index 95% rename from core/src/test/resources/pom-test-third-party-probe-in-parent-fail/plugin/pom.xml rename to core/src/test/resources/pom-test-third-party-probe-in-parent-failure/plugin/pom.xml index 4c8dd4efd..9094713c7 100644 --- a/core/src/test/resources/pom-test-third-party-probe-in-parent-fail/plugin/pom.xml +++ b/core/src/test/resources/pom-test-third-party-probe-in-parent-failure/plugin/pom.xml @@ -11,7 +11,7 @@ test.pom.group-id test-pom-artifact 1 - src/test/resources/pom-test-third-party-probe-in-parent-fail/pom.xml + src/test/resources/pom-test-third-party-probe-in-parent-failure/pom.xml diff --git a/core/src/test/resources/pom-test-third-party-probe-in-parent-fail/pom.xml b/core/src/test/resources/pom-test-third-party-probe-in-parent-failure/pom.xml similarity index 100% rename from core/src/test/resources/pom-test-third-party-probe-in-parent-fail/pom.xml rename to core/src/test/resources/pom-test-third-party-probe-in-parent-failure/pom.xml From 556035380a6b9f8bbbb001ce9f06f4e0d3d8356e Mon Sep 17 00:00:00 2001 From: Jagruti Date: Sat, 10 Jun 2023 20:03:33 +0530 Subject: [PATCH 35/46] Fixed code and checkstyle --- .../ThirdPartyRepositoryDetectionProbe.java | 36 ++++++++++++------- ...hirdPartyRepositoryDetectionProbeTest.java | 1 + 2 files changed, 24 insertions(+), 13 deletions(-) diff --git a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java index b17208e13..a8448c824 100644 --- a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java +++ b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java @@ -1,6 +1,9 @@ package io.jenkins.pluginhealth.scoring.probes; -import java.io.*; +import java.io.FileNotFoundException; +import java.io.FileReader; +import java.io.IOException; +import java.io.InputStream; import java.net.URL; import java.nio.file.Path; import java.nio.file.Paths; @@ -81,19 +84,26 @@ public String[] getProbeResultRequirement() { return new String[] { SCMLinkValidationProbe.KEY}; } - public Model parsePomFromUrl(String pomUrl) throws IOException, XmlPullParserException { - if(pomUrl.startsWith(("https"))) { - URL url = new URL(pomUrl); - try (InputStream inputStream = url.openStream()) { - MavenXpp3Reader reader = new MavenXpp3Reader(); - return reader.read(inputStream); + public Model parsePomFromUrl(String pomUrl) { + Model model = null; + try { + if (pomUrl.startsWith(("https"))) { + URL url = new URL(pomUrl); + try (InputStream inputStream = url.openStream()) { + MavenXpp3Reader reader = new MavenXpp3Reader(); + model = reader.read(inputStream); + } } + else { + // for test cases + Path absolutePath = Paths.get(pomUrl).toAbsolutePath().normalize(); + model = new MavenXpp3Reader().read(new FileReader(absolutePath.toString())); + } + } catch (IOException e) { + LOGGER.error("File could not be found {}", e.getMessage()); + } catch (XmlPullParserException e) { + LOGGER.error("Pom file could not be parsed {}", e.getMessage()); } - else { - // for test cases - Path absolutePath = Paths.get(pomUrl).toAbsolutePath().normalize(); - Model model = new MavenXpp3Reader().read(new FileReader(absolutePath.toString())); - return model; - } + return model; } } diff --git a/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java b/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java index 9bc4aa13b..9705d53ba 100644 --- a/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java +++ b/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java @@ -127,6 +127,7 @@ private static Stream failures2() { ) ); } + @ParameterizedTest @MethodSource("failures2") void shouldFailWhenNoRepositoriesDetected(Path resourceDirectory, String scm) { From ce97eb06a94157eec101e5ca5ee7d815cbd5c43c Mon Sep 17 00:00:00 2001 From: Jagruti Date: Tue, 13 Jun 2023 20:57:17 +0530 Subject: [PATCH 36/46] Removing the effective-pom file --- effective-pom.xml | 29509 -------------------------------------------- 1 file changed, 29509 deletions(-) delete mode 100644 effective-pom.xml diff --git a/effective-pom.xml b/effective-pom.xml deleted file mode 100644 index 6b6f15473..000000000 --- a/effective-pom.xml +++ /dev/null @@ -1,29509 +0,0 @@ - - - - - - - - - - - - - - - - 4.0.0 - io.jenkins.pluginhealth.scoring - plugin-health-scoring-parent - 2.4.3-SNAPSHOT - pom - Plugin Health Scoring :: Parent - Build and provide health indicators on plugins of the Jenkins ecosystem - 2022 - - Jenkins Infra - https://github.com/jenkins-infra - - - - The MIT license - https://opensource.org/licenses/MIT - repo - - - - - adi10hero - Aditya Srivastava - - - alecharp - Adrien Lecharpentier - - - dheerajodha - Dheeraj Singh Jodha - - - jleon33 - Jake Leon - - - - test - core - war - - - scm:git:https://github.com/jenkins-infra/plugin-health-scoring.git - scm:git:git@github.com:jenkins-infra/plugin-health-scoring.git - https://github.com/jenkins-infra/plugin-health-scoring - - - - false - maven.jenkins-ci.org - https://repo.jenkins-ci.org/releases/ - - - maven.jenkins-ci.org - https://repo.jenkins-ci.org/snapshots/ - - - - 17 - 0.11.5 - 17 - 17 - 18.10.0 - UTF-8 - UTF-8 - UTF-8 - 3.1.0 - 1.18.3 - ca1a380d840c676152fbf8635a82d838113fe77e1665466699a4e106df4930d2 - 3.2.4 - false - 1.22.19 - - - - - io.jenkins.pluginhealth.scoring - plugin-health-scoring-core - 2.4.3-SNAPSHOT - - - io.jenkins.pluginhealth.scoring - plugin-health-scoring-test - 2.4.3-SNAPSHOT - - - org.kohsuke - github-api - 1.315 - - - io.jsonwebtoken - jjwt-api - 0.11.5 - - - io.jsonwebtoken - jjwt-impl - 0.11.5 - - - io.jsonwebtoken - jjwt-jackson - 0.11.5 - - - org.apache.maven - maven-model - 3.9.2 - - - org.testcontainers - azure - 1.18.3 - - - org.testcontainers - cassandra - 1.18.3 - - - org.testcontainers - clickhouse - 1.18.3 - - - org.testcontainers - cockroachdb - 1.18.3 - - - org.testcontainers - consul - 1.18.3 - - - org.testcontainers - couchbase - 1.18.3 - - - org.testcontainers - cratedb - 1.18.3 - - - org.testcontainers - database-commons - 1.18.3 - - - org.testcontainers - db2 - 1.18.3 - - - org.testcontainers - dynalite - 1.18.3 - - - org.testcontainers - elasticsearch - 1.18.3 - - - org.testcontainers - gcloud - 1.18.3 - - - org.testcontainers - hivemq - 1.18.3 - - - org.testcontainers - influxdb - 1.18.3 - - - org.testcontainers - jdbc - 1.18.3 - - - org.testcontainers - junit-jupiter - 1.18.3 - - - org.testcontainers - k3s - 1.18.3 - - - org.testcontainers - kafka - 1.18.3 - - - org.testcontainers - localstack - 1.18.3 - - - org.testcontainers - mariadb - 1.18.3 - - - org.testcontainers - mockserver - 1.18.3 - - - org.testcontainers - mongodb - 1.18.3 - - - org.testcontainers - mssqlserver - 1.18.3 - - - org.testcontainers - mysql - 1.18.3 - - - org.testcontainers - neo4j - 1.18.3 - - - org.testcontainers - nginx - 1.18.3 - - - org.testcontainers - oracle-xe - 1.18.3 - - - org.testcontainers - orientdb - 1.18.3 - - - org.testcontainers - postgresql - 1.18.3 - - - org.testcontainers - presto - 1.18.3 - - - org.testcontainers - pulsar - 1.18.3 - - - org.testcontainers - questdb - 1.18.3 - - - org.testcontainers - r2dbc - 1.18.3 - - - org.testcontainers - rabbitmq - 1.18.3 - - - org.testcontainers - redpanda - 1.18.3 - - - org.testcontainers - selenium - 1.18.3 - - - org.testcontainers - solace - 1.18.3 - - - org.testcontainers - solr - 1.18.3 - - - org.testcontainers - spock - 1.18.3 - - - org.testcontainers - testcontainers - 1.18.3 - - - org.testcontainers - tidb - 1.18.3 - - - org.testcontainers - toxiproxy - 1.18.3 - - - org.testcontainers - trino - 1.18.3 - - - org.testcontainers - vault - 1.18.3 - - - org.testcontainers - yugabytedb - 1.18.3 - - - org.apache.activemq - activemq-amqp - 5.18.1 - - - org.apache.activemq - activemq-blueprint - 5.18.1 - - - org.apache.activemq - activemq-broker - 5.18.1 - - - org.apache.activemq - activemq-client - 5.18.1 - - - org.apache.activemq - activemq-client-jakarta - 5.18.1 - - - org.apache.activemq - activemq-console - 5.18.1 - - - commons-logging - commons-logging - - - - - org.apache.activemq - activemq-http - 5.18.1 - - - org.apache.activemq - activemq-jaas - 5.18.1 - - - org.apache.activemq - activemq-jdbc-store - 5.18.1 - - - org.apache.activemq - activemq-jms-pool - 5.18.1 - - - org.apache.activemq - activemq-kahadb-store - 5.18.1 - - - org.apache.activemq - activemq-karaf - 5.18.1 - - - org.apache.activemq - activemq-log4j-appender - 5.18.1 - - - org.apache.activemq - activemq-mqtt - 5.18.1 - - - org.apache.activemq - activemq-openwire-generator - 5.18.1 - - - org.apache.activemq - activemq-openwire-legacy - 5.18.1 - - - org.apache.activemq - activemq-osgi - 5.18.1 - - - org.apache.activemq - activemq-partition - 5.18.1 - - - org.apache.activemq - activemq-pool - 5.18.1 - - - org.apache.activemq - activemq-ra - 5.18.1 - - - org.apache.activemq - activemq-run - 5.18.1 - - - org.apache.activemq - activemq-runtime-config - 5.18.1 - - - org.apache.activemq - activemq-shiro - 5.18.1 - - - org.apache.activemq - activemq-spring - 5.18.1 - - - commons-logging - commons-logging - - - - - org.apache.activemq - activemq-stomp - 5.18.1 - - - org.apache.activemq - activemq-web - 5.18.1 - - - org.eclipse.angus - angus-core - 1.1.0 - - - org.eclipse.angus - angus-mail - 1.1.0 - - - org.eclipse.angus - dsn - 1.1.0 - - - org.eclipse.angus - gimap - 1.1.0 - - - org.eclipse.angus - imap - 1.1.0 - - - org.eclipse.angus - jakarta.mail - 1.1.0 - - - org.eclipse.angus - logging-mailhandler - 1.1.0 - - - org.eclipse.angus - pop3 - 1.1.0 - - - org.eclipse.angus - smtp - 1.1.0 - - - org.apache.activemq - artemis-amqp-protocol - 2.28.0 - - - org.apache.activemq - artemis-commons - 2.28.0 - - - org.apache.activemq - artemis-core-client - 2.28.0 - - - org.apache.activemq - artemis-jakarta-client - 2.28.0 - - - org.apache.activemq - artemis-jakarta-server - 2.28.0 - - - org.apache.activemq - artemis-jakarta-service-extensions - 2.28.0 - - - org.apache.activemq - artemis-jdbc-store - 2.28.0 - - - org.apache.activemq - artemis-journal - 2.28.0 - - - org.apache.activemq - artemis-quorum-api - 2.28.0 - - - org.apache.activemq - artemis-selector - 2.28.0 - - - org.apache.activemq - artemis-server - 2.28.0 - - - org.apache.activemq - artemis-service-extensions - 2.28.0 - - - org.aspectj - aspectjrt - 1.9.19 - - - org.aspectj - aspectjtools - 1.9.19 - - - org.aspectj - aspectjweaver - 1.9.19 - - - org.awaitility - awaitility - 4.2.0 - - - org.awaitility - awaitility-groovy - 4.2.0 - - - org.awaitility - awaitility-kotlin - 4.2.0 - - - org.awaitility - awaitility-scala - 4.2.0 - - - net.bytebuddy - byte-buddy - 1.14.4 - - - net.bytebuddy - byte-buddy-agent - 1.14.4 - - - org.cache2k - cache2k-api - 2.6.1.Final - - - org.cache2k - cache2k-config - 2.6.1.Final - - - org.cache2k - cache2k-core - 2.6.1.Final - - - org.cache2k - cache2k-jcache - 2.6.1.Final - - - org.cache2k - cache2k-micrometer - 2.6.1.Final - - - org.cache2k - cache2k-spring - 2.6.1.Final - - - com.github.ben-manes.caffeine - caffeine - 3.1.6 - - - com.github.ben-manes.caffeine - guava - 3.1.6 - - - com.github.ben-manes.caffeine - jcache - 3.1.6 - - - com.github.ben-manes.caffeine - simulator - 3.1.6 - - - com.datastax.oss - java-driver-core - 4.15.0 - - - org.slf4j - jcl-over-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.4.6 - - - com.ibm.db2 - jcc - 11.5.8.0 - - - io.spring.gradle - dependency-management-plugin - 1.1.0 - - - org.apache.derby - derby - 10.16.1.1 - - - org.apache.derby - derbyclient - 10.16.1.1 - - - org.apache.derby - derbynet - 10.16.1.1 - - - org.apache.derby - derbyoptionaltools - 10.16.1.1 - - - org.apache.derby - derbyshared - 10.16.1.1 - - - org.apache.derby - derbytools - 10.16.1.1 - - - org.ehcache - ehcache - 3.10.8 - jakarta - - - org.ehcache - ehcache-clustered - 3.10.8 - - - org.ehcache - ehcache-transactions - 3.10.8 - jakarta - - - org.elasticsearch.client - elasticsearch-rest-client - 8.7.1 - - - commons-logging - commons-logging - - - - - org.elasticsearch.client - elasticsearch-rest-client-sniffer - 8.7.1 - - - commons-logging - commons-logging - - - - - co.elastic.clients - elasticsearch-java - 8.7.1 - - - org.flywaydb - flyway-core - 9.16.3 - - - org.flywaydb - flyway-firebird - 9.16.3 - - - org.flywaydb - flyway-mysql - 9.16.3 - - - org.flywaydb - flyway-sqlserver - 9.16.3 - - - org.freemarker - freemarker - 2.3.32 - - - org.glassfish.web - jakarta.servlet.jsp.jstl - 3.0.1 - - - com.graphql-java - graphql-java - 20.2 - - - com.google.code.gson - gson - 2.10.1 - - - com.h2database - h2 - 2.1.214 - - - org.hamcrest - hamcrest - 2.2 - - - org.hamcrest - hamcrest-core - 2.2 - - - org.hamcrest - hamcrest-library - 2.2 - - - com.hazelcast - hazelcast - 5.2.3 - - - com.hazelcast - hazelcast-spring - 5.2.3 - - - org.hibernate.orm - hibernate-agroal - 6.2.2.Final - - - org.hibernate.orm - hibernate-ant - 6.2.2.Final - - - org.hibernate.orm - hibernate-c3p0 - 6.2.2.Final - - - org.hibernate.orm - hibernate-community-dialects - 6.2.2.Final - - - org.hibernate.orm - hibernate-core - 6.2.2.Final - - - org.hibernate.orm - hibernate-envers - 6.2.2.Final - - - org.hibernate.orm - hibernate-graalvm - 6.2.2.Final - - - org.hibernate.orm - hibernate-hikaricp - 6.2.2.Final - - - org.hibernate.orm - hibernate-jcache - 6.2.2.Final - - - org.hibernate.orm - hibernate-jpamodelgen - 6.2.2.Final - - - org.hibernate.orm - hibernate-micrometer - 6.2.2.Final - - - org.hibernate.orm - hibernate-proxool - 6.2.2.Final - - - org.hibernate.orm - hibernate-spatial - 6.2.2.Final - - - org.hibernate.orm - hibernate-testing - 6.2.2.Final - - - org.hibernate.orm - hibernate-vibur - 6.2.2.Final - - - org.hibernate.validator - hibernate-validator - 8.0.0.Final - - - org.hibernate.validator - hibernate-validator-annotation-processor - 8.0.0.Final - - - com.zaxxer - HikariCP - 5.0.1 - - - org.hsqldb - hsqldb - 2.7.1 - - - net.sourceforge.htmlunit - htmlunit - 2.70.0 - - - commons-logging - commons-logging - - - - - org.apache.httpcomponents - httpasyncclient - 4.1.5 - - - commons-logging - commons-logging - - - - - org.apache.httpcomponents.client5 - httpclient5 - 5.2.1 - - - org.apache.httpcomponents.client5 - httpclient5-cache - 5.2.1 - - - org.apache.httpcomponents.client5 - httpclient5-fluent - 5.2.1 - - - org.apache.httpcomponents.client5 - httpclient5-win - 5.2.1 - - - org.apache.httpcomponents - httpcore - 4.4.16 - - - org.apache.httpcomponents - httpcore-nio - 4.4.16 - - - org.apache.httpcomponents.core5 - httpcore5 - 5.2.1 - - - org.apache.httpcomponents.core5 - httpcore5-h2 - 5.2.1 - - - org.apache.httpcomponents.core5 - httpcore5-reactive - 5.2.1 - - - org.influxdb - influxdb-java - 2.23 - - - jakarta.activation - jakarta.activation-api - 2.1.2 - - - jakarta.annotation - jakarta.annotation-api - 2.1.1 - - - jakarta.jms - jakarta.jms-api - 3.1.0 - - - jakarta.json - jakarta.json-api - 2.1.1 - - - jakarta.json.bind - jakarta.json.bind-api - 3.0.0 - - - jakarta.mail - jakarta.mail-api - 2.1.1 - - - jakarta.management.j2ee - jakarta.management.j2ee-api - 1.1.4 - - - jakarta.persistence - jakarta.persistence-api - 3.1.0 - - - jakarta.servlet - jakarta.servlet-api - 6.0.0 - - - jakarta.servlet.jsp.jstl - jakarta.servlet.jsp.jstl-api - 3.0.0 - - - jakarta.transaction - jakarta.transaction-api - 2.0.1 - - - jakarta.validation - jakarta.validation-api - 3.0.2 - - - jakarta.websocket - jakarta.websocket-api - 2.1.0 - - - jakarta.websocket - jakarta.websocket-client-api - 2.1.0 - - - jakarta.ws.rs - jakarta.ws.rs-api - 3.1.0 - - - jakarta.xml.bind - jakarta.xml.bind-api - 4.0.0 - - - jakarta.xml.soap - jakarta.xml.soap-api - 3.0.0 - - - jakarta.xml.ws - jakarta.xml.ws-api - 4.0.0 - - - org.codehaus.janino - commons-compiler - 3.1.9 - - - org.codehaus.janino - commons-compiler-jdk - 3.1.9 - - - org.codehaus.janino - janino - 3.1.9 - - - javax.cache - cache-api - 1.1.1 - - - javax.money - money-api - 1.1 - - - jaxen - jaxen - 2.0.0 - - - org.firebirdsql.jdbc - jaybird - 5.0.1.java11 - - - org.jboss.logging - jboss-logging - 3.5.0.Final - - - org.jdom - jdom2 - 2.0.6.1 - - - redis.clients - jedis - 4.3.2 - - - org.eclipse.jetty - jetty-reactive-httpclient - 3.0.8 - - - com.samskivert - jmustache - 1.15 - - - org.jooq - jooq - 3.18.4 - - - org.jooq - jooq-codegen - 3.18.4 - - - org.jooq - jooq-kotlin - 3.18.4 - - - org.jooq - jooq-meta - 3.18.4 - - - com.jayway.jsonpath - json-path - 2.8.0 - - - com.jayway.jsonpath - json-path-assert - 2.8.0 - - - net.minidev - json-smart - 2.4.10 - - - org.skyscreamer - jsonassert - 1.5.1 - - - net.sourceforge.jtds - jtds - 1.3.1 - - - junit - junit - 4.13.2 - - - org.apache.kafka - connect - 3.4.0 - - - org.apache.kafka - connect-api - 3.4.0 - - - org.apache.kafka - connect-basic-auth-extension - 3.4.0 - - - org.apache.kafka - connect-file - 3.4.0 - - - org.apache.kafka - connect-json - 3.4.0 - - - org.apache.kafka - connect-mirror - 3.4.0 - - - org.apache.kafka - connect-mirror-client - 3.4.0 - - - org.apache.kafka - connect-runtime - 3.4.0 - - - org.apache.kafka - connect-transforms - 3.4.0 - - - org.apache.kafka - generator - 3.4.0 - - - org.apache.kafka - kafka-clients - 3.4.0 - - - org.apache.kafka - kafka-clients - 3.4.0 - test - - - org.apache.kafka - kafka-log4j-appender - 3.4.0 - - - org.apache.kafka - kafka-metadata - 3.4.0 - - - org.apache.kafka - kafka-raft - 3.4.0 - - - org.apache.kafka - kafka-server-common - 3.4.0 - - - org.apache.kafka - kafka-shell - 3.4.0 - - - org.apache.kafka - kafka-storage - 3.4.0 - - - org.apache.kafka - kafka-storage-api - 3.4.0 - - - org.apache.kafka - kafka-streams - 3.4.0 - - - org.apache.kafka - kafka-streams-scala_2.12 - 3.4.0 - - - org.apache.kafka - kafka-streams-scala_2.13 - 3.4.0 - - - org.apache.kafka - kafka-streams-test-utils - 3.4.0 - - - org.apache.kafka - kafka-tools - 3.4.0 - - - org.apache.kafka - kafka_2.12 - 3.4.0 - - - org.apache.kafka - kafka_2.12 - 3.4.0 - test - - - org.apache.kafka - kafka_2.13 - 3.4.0 - - - org.apache.kafka - kafka_2.13 - 3.4.0 - test - - - org.apache.kafka - trogdor - 3.4.0 - - - io.lettuce - lettuce-core - 6.2.4.RELEASE - - - org.liquibase - liquibase-cdi - 4.20.0 - - - org.liquibase - liquibase-core - 4.20.0 - - - ch.qos.logback - logback-access - 1.4.7 - - - ch.qos.logback - logback-classic - 1.4.7 - - - ch.qos.logback - logback-core - 1.4.7 - - - org.projectlombok - lombok - 1.18.26 - - - org.mariadb.jdbc - mariadb-java-client - 3.1.4 - - - io.micrometer - micrometer-registry-stackdriver - 1.11.0 - - - javax.annotation - javax.annotation-api - - - - - org.mongodb - bson - 4.9.1 - - - org.mongodb - bson-record-codec - 4.9.1 - - - org.mongodb - mongodb-driver-core - 4.9.1 - - - org.mongodb - mongodb-driver-legacy - 4.9.1 - - - org.mongodb - mongodb-driver-reactivestreams - 4.9.1 - - - org.mongodb - mongodb-driver-sync - 4.9.1 - - - com.microsoft.sqlserver - mssql-jdbc - 11.2.3.jre17 - - - com.mysql - mysql-connector-j - 8.0.33 - - - com.google.protobuf - protobuf-java - - - - - net.sourceforge.nekohtml - nekohtml - 1.9.22 - - - org.neo4j.driver - neo4j-java-driver - 5.8.0 - - - com.oracle.database.r2dbc - oracle-r2dbc - 1.1.1 - - - org.messaginghub - pooled-jms - 3.1.0 - - - org.postgresql - postgresql - 42.6.0 - - - org.quartz-scheduler - quartz - 2.3.2 - - - com.mchange - c3p0 - - - com.zaxxer - * - - - - - org.quartz-scheduler - quartz-jobs - 2.3.2 - - - io.r2dbc - r2dbc-h2 - 1.0.0.RELEASE - - - org.mariadb - r2dbc-mariadb - 1.1.4 - - - io.r2dbc - r2dbc-mssql - 1.0.0.RELEASE - - - io.asyncer - r2dbc-mysql - 1.0.1 - - - io.r2dbc - r2dbc-pool - 1.0.0.RELEASE - - - org.postgresql - r2dbc-postgresql - 1.0.1.RELEASE - - - io.r2dbc - r2dbc-proxy - 1.1.0.RELEASE - - - io.r2dbc - r2dbc-spi - 1.0.0.RELEASE - - - com.rabbitmq - amqp-client - 5.17.0 - - - com.rabbitmq - stream-client - 0.9.0 - - - org.reactivestreams - reactive-streams - 1.0.4 - - - io.reactivex.rxjava3 - rxjava - 3.1.6 - - - org.springframework.boot - spring-boot - 3.1.0 - - - org.springframework.boot - spring-boot-test - 3.1.0 - - - org.springframework.boot - spring-boot-test-autoconfigure - 3.1.0 - - - org.springframework.boot - spring-boot-testcontainers - 3.1.0 - - - org.springframework.boot - spring-boot-actuator - 3.1.0 - - - org.springframework.boot - spring-boot-actuator-autoconfigure - 3.1.0 - - - org.springframework.boot - spring-boot-autoconfigure - 3.1.0 - - - org.springframework.boot - spring-boot-autoconfigure-processor - 3.1.0 - - - org.springframework.boot - spring-boot-buildpack-platform - 3.1.0 - - - org.springframework.boot - spring-boot-configuration-metadata - 3.1.0 - - - org.springframework.boot - spring-boot-configuration-processor - 3.1.0 - - - org.springframework.boot - spring-boot-devtools - 3.1.0 - - - org.springframework.boot - spring-boot-docker-compose - 3.1.0 - - - org.springframework.boot - spring-boot-jarmode-layertools - 3.1.0 - - - org.springframework.boot - spring-boot-loader - 3.1.0 - - - org.springframework.boot - spring-boot-loader-tools - 3.1.0 - - - org.springframework.boot - spring-boot-properties-migrator - 3.1.0 - - - org.springframework.boot - spring-boot-starter - 3.1.0 - - - org.springframework.boot - spring-boot-starter-activemq - 3.1.0 - - - org.springframework.boot - spring-boot-starter-actuator - 3.1.0 - - - org.springframework.boot - spring-boot-starter-amqp - 3.1.0 - - - org.springframework.boot - spring-boot-starter-aop - 3.1.0 - - - org.springframework.boot - spring-boot-starter-artemis - 3.1.0 - - - org.springframework.boot - spring-boot-starter-batch - 3.1.0 - - - org.springframework.boot - spring-boot-starter-cache - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-cassandra - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-cassandra-reactive - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-couchbase - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-couchbase-reactive - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-elasticsearch - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-jdbc - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-jpa - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-ldap - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-mongodb - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-mongodb-reactive - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-r2dbc - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-redis - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-redis-reactive - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-neo4j - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-rest - 3.1.0 - - - org.springframework.boot - spring-boot-starter-freemarker - 3.1.0 - - - org.springframework.boot - spring-boot-starter-graphql - 3.1.0 - - - org.springframework.boot - spring-boot-starter-groovy-templates - 3.1.0 - - - org.springframework.boot - spring-boot-starter-hateoas - 3.1.0 - - - org.springframework.boot - spring-boot-starter-integration - 3.1.0 - - - org.springframework.boot - spring-boot-starter-jdbc - 3.1.0 - - - org.springframework.boot - spring-boot-starter-jersey - 3.1.0 - - - org.springframework.boot - spring-boot-starter-jetty - 3.1.0 - - - org.springframework.boot - spring-boot-starter-jooq - 3.1.0 - - - org.springframework.boot - spring-boot-starter-json - 3.1.0 - - - org.springframework.boot - spring-boot-starter-log4j2 - 3.1.0 - - - org.springframework.boot - spring-boot-starter-logging - 3.1.0 - - - org.springframework.boot - spring-boot-starter-mail - 3.1.0 - - - org.springframework.boot - spring-boot-starter-mustache - 3.1.0 - - - org.springframework.boot - spring-boot-starter-oauth2-authorization-server - 3.1.0 - - - org.springframework.boot - spring-boot-starter-oauth2-client - 3.1.0 - - - org.springframework.boot - spring-boot-starter-oauth2-resource-server - 3.1.0 - - - org.springframework.boot - spring-boot-starter-quartz - 3.1.0 - - - org.springframework.boot - spring-boot-starter-reactor-netty - 3.1.0 - - - org.springframework.boot - spring-boot-starter-rsocket - 3.1.0 - - - org.springframework.boot - spring-boot-starter-security - 3.1.0 - - - org.springframework.boot - spring-boot-starter-test - 3.1.0 - - - org.springframework.boot - spring-boot-starter-thymeleaf - 3.1.0 - - - org.springframework.boot - spring-boot-starter-tomcat - 3.1.0 - - - org.springframework.boot - spring-boot-starter-undertow - 3.1.0 - - - org.springframework.boot - spring-boot-starter-validation - 3.1.0 - - - org.springframework.boot - spring-boot-starter-web - 3.1.0 - - - org.springframework.boot - spring-boot-starter-webflux - 3.1.0 - - - org.springframework.boot - spring-boot-starter-websocket - 3.1.0 - - - org.springframework.boot - spring-boot-starter-web-services - 3.1.0 - - - com.sun.xml.messaging.saaj - saaj-impl - 3.0.2 - - - org.seleniumhq.selenium - lift - 4.8.3 - - - org.seleniumhq.selenium - selenium-api - 4.8.3 - - - org.seleniumhq.selenium - selenium-chrome-driver - 4.8.3 - - - org.seleniumhq.selenium - selenium-chromium-driver - 4.8.3 - - - org.seleniumhq.selenium - selenium-devtools-v108 - 4.8.3 - - - org.seleniumhq.selenium - selenium-devtools-v109 - 4.8.3 - - - org.seleniumhq.selenium - selenium-devtools-v110 - 4.8.3 - - - org.seleniumhq.selenium - selenium-devtools-v85 - 4.8.3 - - - org.seleniumhq.selenium - selenium-edge-driver - 4.8.3 - - - org.seleniumhq.selenium - selenium-firefox-driver - 4.8.3 - - - org.seleniumhq.selenium - selenium-grid - 4.8.3 - - - org.seleniumhq.selenium - selenium-http - 4.8.3 - - - org.seleniumhq.selenium - selenium-http-jdk-client - 4.8.3 - - - org.seleniumhq.selenium - selenium-ie-driver - 4.8.3 - - - org.seleniumhq.selenium - selenium-java - 4.8.3 - - - org.seleniumhq.selenium - selenium-json - 4.8.3 - - - org.seleniumhq.selenium - selenium-manager - 4.8.3 - - - org.seleniumhq.selenium - selenium-remote-driver - 4.8.3 - - - org.seleniumhq.selenium - selenium-safari-driver - 4.8.3 - - - org.seleniumhq.selenium - selenium-session-map-jdbc - 4.8.3 - - - org.seleniumhq.selenium - selenium-session-map-redis - 4.8.3 - - - org.seleniumhq.selenium - selenium-support - 4.8.3 - - - org.seleniumhq.selenium - htmlunit-driver - 4.8.3 - - - com.sendgrid - sendgrid-java - 4.9.3 - - - org.slf4j - jcl-over-slf4j - 2.0.7 - - - org.slf4j - jul-to-slf4j - 2.0.7 - - - org.slf4j - log4j-over-slf4j - 2.0.7 - - - org.slf4j - slf4j-api - 2.0.7 - - - org.slf4j - slf4j-ext - 2.0.7 - - - org.slf4j - slf4j-jdk-platform-logging - 2.0.7 - - - org.slf4j - slf4j-jdk14 - 2.0.7 - - - org.slf4j - slf4j-log4j12 - 2.0.7 - - - org.slf4j - slf4j-nop - 2.0.7 - - - org.slf4j - slf4j-reload4j - 2.0.7 - - - org.slf4j - slf4j-simple - 2.0.7 - - - org.yaml - snakeyaml - 1.33 - - - org.springframework.amqp - spring-amqp - 3.0.4 - - - org.springframework.amqp - spring-rabbit - 3.0.4 - - - org.springframework.amqp - spring-rabbit-stream - 3.0.4 - - - org.springframework.amqp - spring-rabbit-junit - 3.0.4 - - - org.springframework.amqp - spring-rabbit-test - 3.0.4 - - - org.springframework.security - spring-security-oauth2-authorization-server - 1.1.0 - - - org.springframework.graphql - spring-graphql - 1.2.0 - - - org.springframework.graphql - spring-graphql-test - 1.2.0 - - - org.springframework.hateoas - spring-hateoas - 2.1.0 - - - org.springframework.kafka - spring-kafka - 3.0.7 - - - org.springframework.kafka - spring-kafka-test - 3.0.7 - - - org.springframework.ldap - spring-ldap-core - 3.1.0 - - - org.springframework.ldap - spring-ldap-ldif-core - 3.1.0 - - - org.springframework.ldap - spring-ldap-odm - 3.1.0 - - - org.springframework.ldap - spring-ldap-test - 3.1.0 - - - org.springframework.retry - spring-retry - 2.0.1 - - - org.xerial - sqlite-jdbc - 3.41.2.1 - - - org.thymeleaf - thymeleaf - 3.1.1.RELEASE - - - org.thymeleaf - thymeleaf-spring6 - 3.1.1.RELEASE - - - com.github.mxab.thymeleaf.extras - thymeleaf-extras-data-attribute - 2.0.1 - - - org.thymeleaf.extras - thymeleaf-extras-springsecurity6 - 3.1.1.RELEASE - - - nz.net.ultraq.thymeleaf - thymeleaf-layout-dialect - 3.2.1 - - - org.apache.tomcat - tomcat-annotations-api - 10.1.8 - - - org.apache.tomcat - tomcat-jdbc - 10.1.8 - - - org.apache.tomcat - tomcat-jsp-api - 10.1.8 - - - org.apache.tomcat.embed - tomcat-embed-core - 10.1.8 - - - org.apache.tomcat.embed - tomcat-embed-el - 10.1.8 - - - org.apache.tomcat.embed - tomcat-embed-jasper - 10.1.8 - - - org.apache.tomcat.embed - tomcat-embed-websocket - 10.1.8 - - - com.unboundid - unboundid-ldapsdk - 6.0.8 - - - io.undertow - undertow-core - 2.3.6.Final - - - io.undertow - undertow-servlet - 2.3.6.Final - - - io.undertow - undertow-websockets-jsr - 2.3.6.Final - - - org.webjars - webjars-locator-core - 0.52 - - - wsdl4j - wsdl4j - 1.6.3 - - - org.xmlunit - xmlunit-assertj - 2.9.1 - - - org.xmlunit - xmlunit-assertj3 - 2.9.1 - - - org.xmlunit - xmlunit-core - 2.9.1 - - - org.xmlunit - xmlunit-jakarta-jaxb-impl - 2.9.1 - - - org.xmlunit - xmlunit-legacy - 2.9.1 - - - org.xmlunit - xmlunit-matchers - 2.9.1 - - - org.xmlunit - xmlunit-placeholders - 2.9.1 - - - org.eclipse - yasson - 3.0.3 - - - org.assertj - assertj-core - 3.24.2 - - - org.assertj - assertj-guava - 3.24.2 - - - io.zipkin.zipkin2 - zipkin - 2.23.2 - - - io.zipkin.brave - brave - 5.15.1 - - - io.zipkin.brave - brave-tests - 5.15.1 - - - io.zipkin.brave - brave-context-jfr - 5.15.1 - - - io.zipkin.brave - brave-context-log4j2 - 5.15.1 - - - io.zipkin.brave - brave-context-log4j12 - 5.15.1 - - - io.zipkin.brave - brave-context-slf4j - 5.15.1 - - - io.zipkin.brave - brave-context-rxjava2 - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-dubbo - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-dubbo-rpc - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-grpc - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-http - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-http-tests - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-httpasyncclient - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-httpclient - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-jaxrs2 - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-jersey-server - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-jms - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-jms-jakarta - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-kafka-clients - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-kafka-streams - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-messaging - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-mongodb - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-mysql - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-mysql6 - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-mysql8 - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-netty-codec-http - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-okhttp3 - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-p6spy - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-rpc - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-servlet - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-servlet-jakarta - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-sparkjava - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-spring-rabbit - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-spring-web - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-spring-webmvc - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-vertx-web - 5.15.1 - - - io.zipkin.brave - brave-spring-beans - 5.15.1 - - - io.zipkin.proto3 - zipkin-proto3 - 1.0.0 - - - io.zipkin.reporter2 - zipkin-reporter - 2.16.3 - - - io.zipkin.reporter2 - zipkin-sender-okhttp3 - 2.16.3 - - - io.zipkin.reporter2 - zipkin-sender-libthrift - 2.16.3 - - - io.zipkin.reporter2 - zipkin-sender-urlconnection - 2.16.3 - - - io.zipkin.reporter2 - zipkin-sender-kafka08 - 2.16.3 - - - io.zipkin.reporter2 - zipkin-sender-kafka - 2.16.3 - - - io.zipkin.reporter2 - zipkin-sender-amqp-client - 2.16.3 - - - io.zipkin.reporter2 - zipkin-sender-activemq-client - 2.16.3 - - - io.zipkin.reporter2 - zipkin-reporter-spring-beans - 2.16.3 - - - io.zipkin.reporter2 - zipkin-reporter-brave - 2.16.3 - - - io.zipkin.reporter2 - zipkin-reporter-metrics-micrometer - 2.16.3 - - - com.datastax.oss - java-driver-core-shaded - 4.15.0 - - - com.datastax.oss - java-driver-mapper-processor - 4.15.0 - - - com.datastax.oss - java-driver-mapper-runtime - 4.15.0 - - - com.datastax.oss - java-driver-query-builder - 4.15.0 - - - com.datastax.oss - java-driver-test-infra - 4.15.0 - - - com.datastax.oss - java-driver-metrics-micrometer - 4.15.0 - - - com.datastax.oss - java-driver-metrics-microprofile - 4.15.0 - - - com.datastax.oss - native-protocol - 1.5.1 - - - com.datastax.oss - java-driver-shaded-guava - 25.1-jre-graal-sub-1 - - - io.dropwizard.metrics - metrics-annotation - 4.2.18 - - - io.dropwizard.metrics - metrics-caffeine - 4.2.18 - - - io.dropwizard.metrics - metrics-caffeine3 - 4.2.18 - - - io.dropwizard.metrics - metrics-core - 4.2.18 - - - io.dropwizard.metrics - metrics-collectd - 4.2.18 - - - io.dropwizard.metrics - metrics-ehcache - 4.2.18 - - - io.dropwizard.metrics - metrics-graphite - 4.2.18 - - - io.dropwizard.metrics - metrics-healthchecks - 4.2.18 - - - io.dropwizard.metrics - metrics-httpclient - 4.2.18 - - - io.dropwizard.metrics - metrics-httpclient5 - 4.2.18 - - - io.dropwizard.metrics - metrics-httpasyncclient - 4.2.18 - - - io.dropwizard.metrics - metrics-jakarta-servlet - 4.2.18 - - - io.dropwizard.metrics - metrics-jakarta-servlets - 4.2.18 - - - io.dropwizard.metrics - metrics-jcache - 4.2.18 - - - io.dropwizard.metrics - metrics-jdbi - 4.2.18 - - - io.dropwizard.metrics - metrics-jdbi3 - 4.2.18 - - - io.dropwizard.metrics - metrics-jersey2 - 4.2.18 - - - io.dropwizard.metrics - metrics-jersey3 - 4.2.18 - - - io.dropwizard.metrics - metrics-jersey31 - 4.2.18 - - - io.dropwizard.metrics - metrics-jetty9 - 4.2.18 - - - io.dropwizard.metrics - metrics-jetty10 - 4.2.18 - - - io.dropwizard.metrics - metrics-jetty11 - 4.2.18 - - - io.dropwizard.metrics - metrics-jmx - 4.2.18 - - - io.dropwizard.metrics - metrics-json - 4.2.18 - - - io.dropwizard.metrics - metrics-jvm - 4.2.18 - - - io.dropwizard.metrics - metrics-log4j2 - 4.2.18 - - - io.dropwizard.metrics - metrics-logback - 4.2.18 - - - io.dropwizard.metrics - metrics-logback13 - 4.2.18 - - - io.dropwizard.metrics - metrics-logback14 - 4.2.18 - - - io.dropwizard.metrics - metrics-servlet - 4.2.18 - - - io.dropwizard.metrics - metrics-servlets - 4.2.18 - - - org.glassfish.jaxb - jaxb-runtime - 4.0.2 - sources - - - org.glassfish.jaxb - jaxb-core - 4.0.2 - sources - - - org.glassfish.jaxb - jaxb-xjc - 4.0.2 - sources - - - org.glassfish.jaxb - jaxb-jxc - 4.0.2 - sources - - - org.glassfish.jaxb - codemodel - 4.0.2 - sources - - - org.glassfish.jaxb - txw2 - 4.0.2 - sources - - - org.glassfish.jaxb - xsom - 4.0.2 - sources - - - com.sun.xml.bind - jaxb-impl - 4.0.2 - sources - - - com.sun.xml.bind - jaxb-core - 4.0.2 - sources - - - com.sun.xml.bind - jaxb-xjc - 4.0.2 - sources - - - com.sun.xml.bind - jaxb-jxc - 4.0.2 - sources - - - jakarta.xml.bind - jakarta.xml.bind-api - 4.0.0 - sources - - - org.jvnet.staxex - stax-ex - 2.1.0 - sources - - - jakarta.activation - jakarta.activation-api - - - - - com.sun.xml.fastinfoset - FastInfoset - 2.1.0 - sources - - - org.glassfish.jaxb - jaxb-runtime - 4.0.2 - - - org.glassfish.jaxb - jaxb-core - 4.0.2 - - - org.glassfish.jaxb - jaxb-xjc - 4.0.2 - - - org.glassfish.jaxb - jaxb-jxc - 4.0.2 - - - org.glassfish.jaxb - codemodel - 4.0.2 - - - org.glassfish.jaxb - txw2 - 4.0.2 - - - org.glassfish.jaxb - xsom - 4.0.2 - - - com.sun.xml.bind - jaxb-impl - 4.0.2 - - - com.sun.xml.bind - jaxb-core - 4.0.2 - - - com.sun.xml.bind - jaxb-xjc - 4.0.2 - - - com.sun.xml.bind - jaxb-jxc - 4.0.2 - - - com.sun.xml.bind - jaxb-osgi - 4.0.2 - - - com.sun.istack - istack-commons-runtime - 4.1.1 - - - com.sun.xml.fastinfoset - FastInfoset - 2.1.0 - - - org.jvnet.staxex - stax-ex - 2.1.0 - - - org.eclipse.angus - angus-activation - 2.0.0 - - - org.apache.groovy - groovy - 4.0.12 - - - org.apache.groovy - groovy-ant - 4.0.12 - - - org.apache.groovy - groovy-astbuilder - 4.0.12 - - - org.apache.groovy - groovy-cli-commons - 4.0.12 - - - org.apache.groovy - groovy-cli-picocli - 4.0.12 - - - org.apache.groovy - groovy-console - 4.0.12 - - - org.apache.groovy - groovy-contracts - 4.0.12 - - - org.apache.groovy - groovy-datetime - 4.0.12 - - - org.apache.groovy - groovy-dateutil - 4.0.12 - - - org.apache.groovy - groovy-docgenerator - 4.0.12 - - - org.apache.groovy - groovy-ginq - 4.0.12 - - - org.apache.groovy - groovy-groovydoc - 4.0.12 - - - org.apache.groovy - groovy-groovysh - 4.0.12 - - - org.apache.groovy - groovy-jmx - 4.0.12 - - - org.apache.groovy - groovy-json - 4.0.12 - - - org.apache.groovy - groovy-jsr223 - 4.0.12 - - - org.apache.groovy - groovy-macro - 4.0.12 - - - org.apache.groovy - groovy-macro-library - 4.0.12 - - - org.apache.groovy - groovy-nio - 4.0.12 - - - org.apache.groovy - groovy-servlet - 4.0.12 - - - org.apache.groovy - groovy-sql - 4.0.12 - - - org.apache.groovy - groovy-swing - 4.0.12 - - - org.apache.groovy - groovy-templates - 4.0.12 - - - org.apache.groovy - groovy-test - 4.0.12 - - - org.apache.groovy - groovy-test-junit5 - 4.0.12 - - - org.apache.groovy - groovy-testng - 4.0.12 - - - org.apache.groovy - groovy-toml - 4.0.12 - - - org.apache.groovy - groovy-typecheckers - 4.0.12 - - - org.apache.groovy - groovy-xml - 4.0.12 - - - org.apache.groovy - groovy-yaml - 4.0.12 - - - org.infinispan - infinispan-api - 14.0.9.Final - - - org.infinispan - infinispan-cachestore-jdbc - 14.0.9.Final - - - org.infinispan - infinispan-cachestore-jdbc-jakarta - 14.0.9.Final - - - org.infinispan - infinispan-cachestore-jdbc-common - 14.0.9.Final - - - org.infinispan - infinispan-cachestore-jdbc-common-jakarta - 14.0.9.Final - - - org.infinispan - infinispan-cachestore-sql - 14.0.9.Final - - - org.infinispan - infinispan-cachestore-remote - 14.0.9.Final - - - org.infinispan - infinispan-cachestore-rocksdb - 14.0.9.Final - - - org.infinispan - infinispan-cdi-common - 14.0.9.Final - - - org.infinispan - infinispan-cdi-common-jakarta - 14.0.9.Final - - - org.infinispan - infinispan-cdi-embedded - 14.0.9.Final - - - org.infinispan - infinispan-cdi-embedded-jakarta - 14.0.9.Final - - - org.infinispan - infinispan-cdi-remote - 14.0.9.Final - - - org.infinispan - infinispan-cdi-remote-jakarta - 14.0.9.Final - - - org.infinispan - infinispan-checkstyle - 14.0.9.Final - - - org.infinispan - infinispan-cli-client - 14.0.9.Final - - - org.infinispan - infinispan-hotrod - 14.0.9.Final - - - org.infinispan - infinispan-hotrod-jakarta - 14.0.9.Final - - - org.infinispan - infinispan-client-hotrod - 14.0.9.Final - - - org.infinispan - infinispan-client-hotrod-jakarta - 14.0.9.Final - - - org.infinispan - infinispan-client-rest - 14.0.9.Final - - - org.infinispan - infinispan-key-value-store-client - 14.0.9.Final - - - org.infinispan - infinispan-clustered-counter - 14.0.9.Final - - - org.infinispan - infinispan-clustered-lock - 14.0.9.Final - - - org.infinispan - infinispan-commons - 14.0.9.Final - - - org.infinispan - infinispan-commons-jakarta - 14.0.9.Final - - - org.infinispan - infinispan-commons-test - 14.0.9.Final - - - org.infinispan - infinispan-component-annotations - 14.0.9.Final - provided - - - org.infinispan - infinispan-component-processor - 14.0.9.Final - - - org.infinispan - infinispan-core - 14.0.9.Final - - - org.infinispan - infinispan-core-jakarta - 14.0.9.Final - - - org.infinispan - infinispan-jboss-marshalling - 14.0.9.Final - - - org.infinispan - infinispan-extended-statistics - 14.0.9.Final - - - org.infinispan - infinispan-hibernate-cache-commons - 14.0.9.Final - - - org.infinispan - infinispan-hibernate-cache-spi - 14.0.9.Final - - - org.infinispan - infinispan-hibernate-cache-v60 - 14.0.9.Final - - - org.infinispan - infinispan-jcache-commons - 14.0.9.Final - - - org.infinispan - infinispan-jcache - 14.0.9.Final - - - org.infinispan - infinispan-jcache-remote - 14.0.9.Final - - - org.infinispan - infinispan-console - 14.0.8.Final - - - org.infinispan - infinispan-multimap - 14.0.9.Final - - - org.infinispan - infinispan-objectfilter - 14.0.9.Final - - - org.infinispan - infinispan-query-core - 14.0.9.Final - - - org.infinispan - infinispan-query - 14.0.9.Final - - - org.infinispan - infinispan-query-jakarta - 14.0.9.Final - - - org.infinispan - infinispan-query-dsl - 14.0.9.Final - - - org.infinispan - infinispan-remote-query-client - 14.0.9.Final - - - org.infinispan - infinispan-remote-query-server - 14.0.9.Final - - - org.infinispan - infinispan-scripting - 14.0.9.Final - - - org.infinispan - infinispan-server-core - 14.0.9.Final - - - org.infinispan - infinispan-server-hotrod - 14.0.9.Final - - - org.infinispan - infinispan-server-hotrod-jakarta - 14.0.9.Final - - - org.infinispan - infinispan-server-memcached - 14.0.9.Final - - - org.infinispan - infinispan-server-resp - 14.0.9.Final - - - org.infinispan - infinispan-server-rest - 14.0.9.Final - - - org.infinispan - infinispan-server-router - 14.0.9.Final - - - org.infinispan - infinispan-server-runtime - 14.0.9.Final - - - org.infinispan - infinispan-server-runtime - 14.0.9.Final - loader - - - org.infinispan - infinispan-server-testdriver-core - 14.0.9.Final - - - org.infinispan - infinispan-server-testdriver-junit4 - 14.0.9.Final - - - org.infinispan - infinispan-server-testdriver-junit5 - 14.0.9.Final - - - org.infinispan - infinispan-spring5-common - 14.0.9.Final - - - org.infinispan - infinispan-spring5-embedded - 14.0.9.Final - - - org.infinispan - infinispan-spring5-remote - 14.0.9.Final - - - org.infinispan - infinispan-spring-boot-starter-embedded - 14.0.9.Final - - - org.infinispan - infinispan-spring-boot-starter-remote - 14.0.9.Final - - - org.infinispan - infinispan-spring6-common - 14.0.9.Final - - - org.infinispan - infinispan-spring6-embedded - 14.0.9.Final - - - org.infinispan - infinispan-spring6-remote - 14.0.9.Final - - - org.infinispan - infinispan-spring-boot3-starter-embedded - 14.0.9.Final - - - org.infinispan - infinispan-spring-boot3-starter-remote - 14.0.9.Final - - - org.infinispan - infinispan-tasks - 14.0.9.Final - - - org.infinispan - infinispan-tasks-api - 14.0.9.Final - - - org.infinispan - infinispan-tools - 14.0.9.Final - - - org.infinispan - infinispan-tools-jakarta - 14.0.9.Final - - - org.infinispan - infinispan-anchored-keys - 14.0.9.Final - - - org.infinispan.protostream - protostream - 4.6.2.Final - - - org.infinispan.protostream - protostream-types - 4.6.2.Final - - - org.infinispan.protostream - protostream-processor - 4.6.2.Final - provided - - - org.infinispan - infinispan-cloudevents-integration - 14.0.9.Final - - - org.infinispan - infinispan-marshaller-kryo - 14.0.9.Final - - - org.infinispan - infinispan-marshaller-kryo-bundle - 14.0.9.Final - - - org.infinispan - infinispan-marshaller-protostuff - 14.0.9.Final - - - org.infinispan - infinispan-marshaller-protostuff-bundle - 14.0.9.Final - - - com.fasterxml.jackson.core - jackson-annotations - 2.15.0 - - - com.fasterxml.jackson.core - jackson-core - 2.15.0 - - - com.fasterxml.jackson.core - jackson-databind - 2.15.0 - - - com.fasterxml.jackson.dataformat - jackson-dataformat-avro - 2.15.0 - - - com.fasterxml.jackson.dataformat - jackson-dataformat-cbor - 2.15.0 - - - com.fasterxml.jackson.dataformat - jackson-dataformat-csv - 2.15.0 - - - com.fasterxml.jackson.dataformat - jackson-dataformat-ion - 2.15.0 - - - com.fasterxml.jackson.dataformat - jackson-dataformat-properties - 2.15.0 - - - com.fasterxml.jackson.dataformat - jackson-dataformat-protobuf - 2.15.0 - - - com.fasterxml.jackson.dataformat - jackson-dataformat-smile - 2.15.0 - - - com.fasterxml.jackson.dataformat - jackson-dataformat-toml - 2.15.0 - - - com.fasterxml.jackson.dataformat - jackson-dataformat-xml - 2.15.0 - - - com.fasterxml.jackson.dataformat - jackson-dataformat-yaml - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-eclipse-collections - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-guava - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-hibernate4 - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-hibernate5 - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-hibernate5-jakarta - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-hibernate6 - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-hppc - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-jakarta-jsonp - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-jaxrs - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-joda - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-joda-money - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-jdk8 - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-json-org - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-jsr310 - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-jsr353 - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-pcollections - 2.15.0 - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-base - 2.15.0 - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-cbor-provider - 2.15.0 - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-json-provider - 2.15.0 - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-smile-provider - 2.15.0 - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-xml-provider - 2.15.0 - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-yaml-provider - 2.15.0 - - - com.fasterxml.jackson.jakarta.rs - jackson-jakarta-rs-base - 2.15.0 - - - com.fasterxml.jackson.jakarta.rs - jackson-jakarta-rs-cbor-provider - 2.15.0 - - - com.fasterxml.jackson.jakarta.rs - jackson-jakarta-rs-json-provider - 2.15.0 - - - com.fasterxml.jackson.jakarta.rs - jackson-jakarta-rs-smile-provider - 2.15.0 - - - com.fasterxml.jackson.jakarta.rs - jackson-jakarta-rs-xml-provider - 2.15.0 - - - com.fasterxml.jackson.jakarta.rs - jackson-jakarta-rs-yaml-provider - 2.15.0 - - - com.fasterxml.jackson.jr - jackson-jr-all - 2.15.0 - - - com.fasterxml.jackson.jr - jackson-jr-annotation-support - 2.15.0 - - - com.fasterxml.jackson.jr - jackson-jr-objects - 2.15.0 - - - com.fasterxml.jackson.jr - jackson-jr-retrofit2 - 2.15.0 - - - com.fasterxml.jackson.jr - jackson-jr-stree - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-afterburner - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-blackbird - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-guice - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-jaxb-annotations - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-jakarta-xmlbind-annotations - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-jsonSchema - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-jsonSchema-jakarta - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-kotlin - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-mrbean - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-no-ctor-deser - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-osgi - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-parameter-names - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-paranamer - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-scala_2.11 - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-scala_2.12 - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-scala_2.13 - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-scala_3 - 2.15.0 - - - org.glassfish.jersey.core - jersey-common - 3.1.1 - - - org.glassfish.jersey.core - jersey-client - 3.1.1 - - - org.glassfish.jersey.core - jersey-server - 3.1.1 - - - org.glassfish.jersey.bundles - jaxrs-ri - 3.1.1 - - - org.glassfish.jersey.connectors - jersey-apache-connector - 3.1.1 - - - org.glassfish.jersey.connectors - jersey-apache5-connector - 3.1.1 - - - org.glassfish.jersey.connectors - jersey-helidon-connector - 3.1.1 - - - org.glassfish.jersey.connectors - jersey-grizzly-connector - 3.1.1 - - - org.glassfish.jersey.connectors - jersey-jnh-connector - 3.1.1 - - - org.glassfish.jersey.connectors - jersey-jetty-connector - 3.1.1 - - - org.glassfish.jersey.connectors - jersey-jdk-connector - 3.1.1 - - - org.glassfish.jersey.connectors - jersey-netty-connector - 3.1.1 - - - org.glassfish.jersey.containers - jersey-container-jetty-http - 3.1.1 - - - org.glassfish.jersey.containers - jersey-container-grizzly2-http - 3.1.1 - - - org.glassfish.jersey.containers - jersey-container-grizzly2-servlet - 3.1.1 - - - org.glassfish.jersey.containers - jersey-container-jetty-servlet - 3.1.1 - - - org.glassfish.jersey.containers - jersey-container-jdk-http - 3.1.1 - - - org.glassfish.jersey.containers - jersey-container-netty-http - 3.1.1 - - - org.glassfish.jersey.containers - jersey-container-servlet - 3.1.1 - - - org.glassfish.jersey.containers - jersey-container-servlet-core - 3.1.1 - - - org.glassfish.jersey.containers - jersey-container-simple-http - 3.1.1 - - - org.glassfish.jersey.containers.glassfish - jersey-gf-ejb - 3.1.1 - - - org.glassfish.jersey.ext - jersey-bean-validation - 3.1.1 - - - org.glassfish.jersey.ext - jersey-entity-filtering - 3.1.1 - - - org.glassfish.jersey.ext - jersey-metainf-services - 3.1.1 - - - org.glassfish.jersey.ext.microprofile - jersey-mp-config - 3.1.1 - - - org.glassfish.jersey.ext - jersey-mvc - 3.1.1 - - - org.glassfish.jersey.ext - jersey-mvc-bean-validation - 3.1.1 - - - org.glassfish.jersey.ext - jersey-mvc-freemarker - 3.1.1 - - - org.glassfish.jersey.ext - jersey-mvc-jsp - 3.1.1 - - - org.glassfish.jersey.ext - jersey-mvc-mustache - 3.1.1 - - - org.glassfish.jersey.ext - jersey-proxy-client - 3.1.1 - - - org.glassfish.jersey.ext - jersey-spring6 - 3.1.1 - - - org.glassfish.jersey.ext - jersey-declarative-linking - 3.1.1 - - - org.glassfish.jersey.ext - jersey-wadl-doclet - 3.1.1 - - - org.glassfish.jersey.ext.cdi - jersey-weld2-se - 3.1.1 - - - org.glassfish.jersey.ext.cdi - jersey-cdi1x - 3.1.1 - - - org.glassfish.jersey.ext.cdi - jersey-cdi1x-transaction - 3.1.1 - - - org.glassfish.jersey.ext.cdi - jersey-cdi1x-validation - 3.1.1 - - - org.glassfish.jersey.ext.cdi - jersey-cdi1x-servlet - 3.1.1 - - - org.glassfish.jersey.ext.cdi - jersey-cdi1x-ban-custom-hk2-binding - 3.1.1 - - - org.glassfish.jersey.ext.cdi - jersey-cdi-rs-inject - 3.1.1 - - - org.glassfish.jersey.ext.rx - jersey-rx-client-guava - 3.1.1 - - - org.glassfish.jersey.ext.rx - jersey-rx-client-rxjava - 3.1.1 - - - org.glassfish.jersey.ext.rx - jersey-rx-client-rxjava2 - 3.1.1 - - - org.glassfish.jersey.ext.microprofile - jersey-mp-rest-client - 3.1.1 - - - org.glassfish.jersey.media - jersey-media-jaxb - 3.1.1 - - - org.glassfish.jersey.media - jersey-media-json-jackson - 3.1.1 - - - org.glassfish.jersey.media - jersey-media-json-jettison - 3.1.1 - - - org.glassfish.jersey.media - jersey-media-json-processing - 3.1.1 - - - org.glassfish.jersey.media - jersey-media-json-gson - 3.1.1 - - - org.glassfish.jersey.media - jersey-media-json-binding - 3.1.1 - - - org.glassfish.jersey.media - jersey-media-kryo - 3.1.1 - - - org.glassfish.jersey.media - jersey-media-moxy - 3.1.1 - - - org.glassfish.jersey.media - jersey-media-multipart - 3.1.1 - - - org.glassfish.jersey.media - jersey-media-sse - 3.1.1 - - - org.glassfish.jersey.security - oauth1-client - 3.1.1 - - - org.glassfish.jersey.security - oauth1-server - 3.1.1 - - - org.glassfish.jersey.security - oauth1-signature - 3.1.1 - - - org.glassfish.jersey.security - oauth2-client - 3.1.1 - - - org.glassfish.jersey.inject - jersey-hk2 - 3.1.1 - - - org.glassfish.jersey.inject - jersey-cdi2-se - 3.1.1 - - - org.glassfish.jersey.test-framework - jersey-test-framework-core - 3.1.1 - - - org.glassfish.jersey.test-framework.providers - jersey-test-framework-provider-bundle - 3.1.1 - pom - - - org.glassfish.jersey.test-framework.providers - jersey-test-framework-provider-external - 3.1.1 - - - org.glassfish.jersey.test-framework.providers - jersey-test-framework-provider-grizzly2 - 3.1.1 - - - org.glassfish.jersey.test-framework.providers - jersey-test-framework-provider-inmemory - 3.1.1 - - - org.glassfish.jersey.test-framework.providers - jersey-test-framework-provider-jdk-http - 3.1.1 - - - org.glassfish.jersey.test-framework.providers - jersey-test-framework-provider-simple - 3.1.1 - - - org.glassfish.jersey.test-framework.providers - jersey-test-framework-provider-jetty - 3.1.1 - - - org.glassfish.jersey.test-framework - jersey-test-framework-util - 3.1.1 - - - org.eclipse.jetty - apache-jsp - 11.0.15 - - - org.eclipse.jetty - glassfish-jstl - 11.0.15 - - - org.eclipse.jetty - jetty-alpn-client - 11.0.15 - - - org.eclipse.jetty - jetty-alpn-java-client - 11.0.15 - - - org.eclipse.jetty - jetty-alpn-java-server - 11.0.15 - - - org.eclipse.jetty - jetty-alpn-conscrypt-client - 11.0.15 - - - org.eclipse.jetty - jetty-alpn-conscrypt-server - 11.0.15 - - - org.eclipse.jetty - jetty-alpn-server - 11.0.15 - - - org.eclipse.jetty - jetty-annotations - 11.0.15 - - - org.eclipse.jetty - jetty-ant - 11.0.15 - - - org.eclipse.jetty - jetty-client - 11.0.15 - - - org.eclipse.jetty - jetty-cdi - 11.0.15 - - - org.eclipse.jetty - jetty-deploy - 11.0.15 - - - org.eclipse.jetty.fcgi - fcgi-client - 11.0.15 - - - org.eclipse.jetty.fcgi - fcgi-server - 11.0.15 - - - org.eclipse.jetty.gcloud - jetty-gcloud-session-manager - 11.0.15 - - - org.eclipse.jetty - jetty-home - 11.0.15 - zip - - - org.eclipse.jetty - jetty-home - 11.0.15 - tar.gz - - - org.eclipse.jetty - jetty-http - 11.0.15 - - - org.eclipse.jetty.http2 - http2-client - 11.0.15 - - - org.eclipse.jetty.http2 - http2-common - 11.0.15 - - - org.eclipse.jetty.http2 - http2-hpack - 11.0.15 - - - org.eclipse.jetty.http2 - http2-http-client-transport - 11.0.15 - - - org.eclipse.jetty.http2 - http2-server - 11.0.15 - - - org.eclipse.jetty.http3 - http3-client - 11.0.15 - - - org.eclipse.jetty.http3 - http3-common - 11.0.15 - - - org.eclipse.jetty.http3 - http3-http-client-transport - 11.0.15 - - - org.eclipse.jetty.http3 - http3-qpack - 11.0.15 - - - org.eclipse.jetty.http3 - http3-server - 11.0.15 - - - org.eclipse.jetty - jetty-http-spi - 11.0.15 - - - org.eclipse.jetty - infinispan-common - 11.0.15 - - - org.eclipse.jetty - infinispan-remote-query - 11.0.15 - - - org.eclipse.jetty - infinispan-embedded-query - 11.0.15 - - - org.eclipse.jetty - jetty-hazelcast - 11.0.15 - - - org.eclipse.jetty - jetty-io - 11.0.15 - - - org.eclipse.jetty - jetty-jaas - 11.0.15 - - - org.eclipse.jetty - jetty-jaspi - 11.0.15 - - - org.eclipse.jetty - jetty-jmx - 11.0.15 - - - org.eclipse.jetty - jetty-jndi - 11.0.15 - - - org.eclipse.jetty - jetty-keystore - 11.0.15 - - - org.eclipse.jetty.memcached - jetty-memcached-sessions - 11.0.15 - - - org.eclipse.jetty - jetty-nosql - 11.0.15 - - - org.eclipse.jetty.osgi - jetty-osgi-alpn - 11.0.15 - - - org.eclipse.jetty.osgi - jetty-osgi-boot - 11.0.15 - - - org.eclipse.jetty.osgi - jetty-osgi-boot-jsp - 11.0.15 - - - org.eclipse.jetty.osgi - jetty-osgi-boot-warurl - 11.0.15 - - - org.eclipse.jetty.quic - quic-client - 11.0.15 - - - org.eclipse.jetty.quic - quic-common - 11.0.15 - - - org.eclipse.jetty.quic - quic-quiche-common - 11.0.15 - - - org.eclipse.jetty.quic - quic-quiche-jna - 11.0.15 - - - org.eclipse.jetty.quic - quic-server - 11.0.15 - - - org.eclipse.jetty.osgi - jetty-httpservice - 11.0.15 - - - org.eclipse.jetty - jetty-plus - 11.0.15 - - - org.eclipse.jetty - jetty-proxy - 11.0.15 - - - org.eclipse.jetty - jetty-quickstart - 11.0.15 - - - org.eclipse.jetty - jetty-rewrite - 11.0.15 - - - org.eclipse.jetty - jetty-security - 11.0.15 - - - org.eclipse.jetty - jetty-openid - 11.0.15 - - - org.eclipse.jetty - jetty-server - 11.0.15 - - - org.eclipse.jetty - jetty-servlet - 11.0.15 - - - org.eclipse.jetty - jetty-servlets - 11.0.15 - - - org.eclipse.jetty - jetty-slf4j-impl - 11.0.15 - - - org.eclipse.jetty - jetty-unixdomain-server - 11.0.15 - - - org.eclipse.jetty - jetty-unixsocket-common - 11.0.15 - - - org.eclipse.jetty - jetty-unixsocket-client - 11.0.15 - - - org.eclipse.jetty - jetty-unixsocket-server - 11.0.15 - - - org.eclipse.jetty - jetty-util - 11.0.15 - - - org.eclipse.jetty - jetty-util-ajax - 11.0.15 - - - org.eclipse.jetty - jetty-webapp - 11.0.15 - - - org.eclipse.jetty.websocket - websocket-jakarta-client - 11.0.15 - - - org.eclipse.jetty.websocket - websocket-jakarta-server - 11.0.15 - - - org.eclipse.jetty.websocket - websocket-jakarta-common - 11.0.15 - - - org.eclipse.jetty.websocket - websocket-jetty-api - 11.0.15 - - - org.eclipse.jetty.websocket - websocket-jetty-client - 11.0.15 - - - org.eclipse.jetty.websocket - websocket-jetty-common - 11.0.15 - - - org.eclipse.jetty.websocket - websocket-jetty-server - 11.0.15 - - - org.eclipse.jetty.websocket - websocket-servlet - 11.0.15 - - - org.eclipse.jetty.websocket - websocket-core-common - 11.0.15 - - - org.eclipse.jetty.websocket - websocket-core-client - 11.0.15 - - - org.eclipse.jetty.websocket - websocket-core-server - 11.0.15 - - - org.eclipse.jetty - jetty-xml - 11.0.15 - - - org.junit.jupiter - junit-jupiter - 5.9.3 - - - org.junit.jupiter - junit-jupiter-api - 5.9.3 - - - org.junit.jupiter - junit-jupiter-engine - 5.9.3 - - - org.junit.jupiter - junit-jupiter-migrationsupport - 5.9.3 - - - org.junit.jupiter - junit-jupiter-params - 5.9.3 - - - org.junit.platform - junit-platform-commons - 1.9.3 - - - org.junit.platform - junit-platform-console - 1.9.3 - - - org.junit.platform - junit-platform-engine - 1.9.3 - - - org.junit.platform - junit-platform-jfr - 1.9.3 - - - org.junit.platform - junit-platform-launcher - 1.9.3 - - - org.junit.platform - junit-platform-reporting - 1.9.3 - - - org.junit.platform - junit-platform-runner - 1.9.3 - - - org.junit.platform - junit-platform-suite - 1.9.3 - - - org.junit.platform - junit-platform-suite-api - 1.9.3 - - - org.junit.platform - junit-platform-suite-commons - 1.9.3 - - - org.junit.platform - junit-platform-suite-engine - 1.9.3 - - - org.junit.platform - junit-platform-testkit - 1.9.3 - - - org.junit.vintage - junit-vintage-engine - 5.9.3 - - - org.jetbrains.kotlin - kotlin-stdlib - 1.8.21 - - - org.jetbrains.kotlin - kotlin-stdlib-jdk7 - 1.8.21 - - - org.jetbrains.kotlin - kotlin-stdlib-jdk8 - 1.8.21 - - - org.jetbrains.kotlin - kotlin-stdlib-js - 1.8.21 - - - org.jetbrains.kotlin - kotlin-stdlib-common - 1.8.21 - - - org.jetbrains.kotlin - kotlin-reflect - 1.8.21 - - - org.jetbrains.kotlin - kotlin-osgi-bundle - 1.8.21 - - - org.jetbrains.kotlin - kotlin-test - 1.8.21 - - - org.jetbrains.kotlin - kotlin-test-junit - 1.8.21 - - - org.jetbrains.kotlin - kotlin-test-junit5 - 1.8.21 - - - org.jetbrains.kotlin - kotlin-test-testng - 1.8.21 - - - org.jetbrains.kotlin - kotlin-test-js - 1.8.21 - - - org.jetbrains.kotlin - kotlin-test-common - 1.8.21 - - - org.jetbrains.kotlin - kotlin-test-annotations-common - 1.8.21 - - - org.jetbrains.kotlin - kotlin-main-kts - 1.8.21 - - - org.jetbrains.kotlin - kotlin-script-runtime - 1.8.21 - - - org.jetbrains.kotlin - kotlin-script-util - 1.8.21 - - - org.jetbrains.kotlin - kotlin-scripting-common - 1.8.21 - - - org.jetbrains.kotlin - kotlin-scripting-jvm - 1.8.21 - - - org.jetbrains.kotlin - kotlin-scripting-jvm-host - 1.8.21 - - - org.jetbrains.kotlin - kotlin-scripting-ide-services - 1.8.21 - - - org.jetbrains.kotlin - kotlin-compiler - 1.8.21 - - - org.jetbrains.kotlin - kotlin-compiler-embeddable - 1.8.21 - - - org.jetbrains.kotlin - kotlin-daemon-client - 1.8.21 - - - org.jetbrains.kotlinx - kotlinx-coroutines-android - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-core-jvm - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-core - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-debug - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-guava - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-javafx - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-jdk8 - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-jdk9 - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-play-services - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-reactive - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-reactor - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-rx2 - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-rx3 - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-slf4j - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-swing - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-test-jvm - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-test - 1.6.4 - - - org.apache.logging.log4j - log4j-1.2-api - 2.20.0 - - - org.apache.logging.log4j - log4j-api - 2.20.0 - - - org.apache.logging.log4j - log4j-api-test - 2.20.0 - - - org.apache.logging.log4j - log4j-appserver - 2.20.0 - - - org.apache.logging.log4j - log4j-cassandra - 2.20.0 - - - org.apache.logging.log4j - log4j-core - 2.20.0 - - - org.apache.logging.log4j - log4j-core-test - 2.20.0 - - - org.apache.logging.log4j - log4j-couchdb - 2.20.0 - - - org.apache.logging.log4j - log4j-docker - 2.20.0 - - - org.apache.logging.log4j - log4j-flume-ng - 2.20.0 - - - org.apache.logging.log4j - log4j-iostreams - 2.20.0 - - - org.apache.logging.log4j - log4j-jakarta-smtp - 2.20.0 - - - org.apache.logging.log4j - log4j-jakarta-web - 2.20.0 - - - org.apache.logging.log4j - log4j-jcl - 2.20.0 - - - org.apache.logging.log4j - log4j-jmx-gui - 2.20.0 - - - org.apache.logging.log4j - log4j-jpa - 2.20.0 - - - org.apache.logging.log4j - log4j-jpl - 2.20.0 - - - org.apache.logging.log4j - log4j-jul - 2.20.0 - - - org.apache.logging.log4j - log4j-kubernetes - 2.20.0 - - - org.apache.logging.log4j - log4j-layout-template-json - 2.20.0 - - - org.apache.logging.log4j - log4j-layout-template-json-test - 2.20.0 - - - org.apache.logging.log4j - log4j-mongodb3 - 2.20.0 - - - org.apache.logging.log4j - log4j-mongodb4 - 2.20.0 - - - org.apache.logging.log4j - log4j-slf4j2-impl - 2.20.0 - - - org.apache.logging.log4j - log4j-slf4j-impl - 2.20.0 - - - org.apache.logging.log4j - log4j-spring-boot - 2.20.0 - - - org.apache.logging.log4j - log4j-spring-cloud-config-client - 2.20.0 - - - org.apache.logging.log4j - log4j-taglib - 2.20.0 - - - org.apache.logging.log4j - log4j-to-jul - 2.20.0 - - - org.apache.logging.log4j - log4j-to-slf4j - 2.20.0 - - - org.apache.logging.log4j - log4j-web - 2.20.0 - - - org.apache.maven.plugin-tools - maven-plugin-annotations - 3.6.4 - - - io.micrometer - micrometer-commons - 1.11.0 - - - io.micrometer - micrometer-core - 1.11.0 - - - io.micrometer - micrometer-jetty11 - 1.11.0 - - - io.micrometer - micrometer-observation - 1.11.0 - - - io.micrometer - micrometer-observation-test - 1.11.0 - - - io.micrometer - micrometer-osgi-test - 1.11.0 - - - io.micrometer - micrometer-registry-appoptics - 1.11.0 - - - io.micrometer - micrometer-registry-atlas - 1.11.0 - - - io.micrometer - micrometer-registry-azure-monitor - 1.11.0 - - - io.micrometer - micrometer-registry-cloudwatch - 1.11.0 - - - io.micrometer - micrometer-registry-cloudwatch2 - 1.11.0 - - - io.micrometer - micrometer-registry-datadog - 1.11.0 - - - io.micrometer - micrometer-registry-dynatrace - 1.11.0 - - - io.micrometer - micrometer-registry-elastic - 1.11.0 - - - io.micrometer - micrometer-registry-ganglia - 1.11.0 - - - io.micrometer - micrometer-registry-graphite - 1.11.0 - - - io.micrometer - micrometer-registry-health - 1.11.0 - - - io.micrometer - micrometer-registry-humio - 1.11.0 - - - io.micrometer - micrometer-registry-influx - 1.11.0 - - - io.micrometer - micrometer-registry-jmx - 1.11.0 - - - io.micrometer - micrometer-registry-kairos - 1.11.0 - - - io.micrometer - micrometer-registry-new-relic - 1.11.0 - - - io.micrometer - micrometer-registry-opentsdb - 1.11.0 - - - io.micrometer - micrometer-registry-otlp - 1.11.0 - - - io.micrometer - micrometer-registry-prometheus - 1.11.0 - - - io.micrometer - micrometer-registry-signalfx - 1.11.0 - - - io.micrometer - micrometer-registry-statsd - 1.11.0 - - - io.micrometer - micrometer-registry-wavefront - 1.11.0 - - - io.micrometer - micrometer-test - 1.11.0 - - - io.micrometer - micrometer-tracing - 1.1.1 - - - io.micrometer - micrometer-tracing-bridge-brave - 1.1.1 - - - io.micrometer - micrometer-tracing-bridge-otel - 1.1.1 - - - io.micrometer - micrometer-tracing-integration-test - 1.1.1 - - - io.micrometer - micrometer-tracing-reporter-wavefront - 1.1.1 - - - io.micrometer - micrometer-tracing-test - 1.1.1 - - - org.mockito - mockito-core - 5.3.1 - - - org.mockito - mockito-android - 5.3.1 - - - org.mockito - mockito-errorprone - 5.3.1 - - - org.mockito - mockito-junit-jupiter - 5.3.1 - - - org.mockito - mockito-proxy - 5.3.1 - - - org.mockito - mockito-subclass - 5.3.1 - - - io.netty - netty-buffer - 4.1.92.Final - - - io.netty - netty-codec - 4.1.92.Final - - - io.netty - netty-codec-dns - 4.1.92.Final - - - io.netty - netty-codec-haproxy - 4.1.92.Final - - - io.netty - netty-codec-http - 4.1.92.Final - - - io.netty - netty-codec-http2 - 4.1.92.Final - - - io.netty - netty-codec-memcache - 4.1.92.Final - - - io.netty - netty-codec-mqtt - 4.1.92.Final - - - io.netty - netty-codec-redis - 4.1.92.Final - - - io.netty - netty-codec-smtp - 4.1.92.Final - - - io.netty - netty-codec-socks - 4.1.92.Final - - - io.netty - netty-codec-stomp - 4.1.92.Final - - - io.netty - netty-codec-xml - 4.1.92.Final - - - io.netty - netty-common - 4.1.92.Final - - - io.netty - netty-dev-tools - 4.1.92.Final - - - io.netty - netty-handler - 4.1.92.Final - - - io.netty - netty-handler-proxy - 4.1.92.Final - - - io.netty - netty-handler-ssl-ocsp - 4.1.92.Final - - - io.netty - netty-resolver - 4.1.92.Final - - - io.netty - netty-resolver-dns - 4.1.92.Final - - - io.netty - netty-transport - 4.1.92.Final - - - io.netty - netty-transport-rxtx - 4.1.92.Final - - - io.netty - netty-transport-sctp - 4.1.92.Final - - - io.netty - netty-transport-udt - 4.1.92.Final - - - io.netty - netty-example - 4.1.92.Final - - - io.netty - netty-all - 4.1.92.Final - - - io.netty - netty-resolver-dns-classes-macos - 4.1.92.Final - - - io.netty - netty-resolver-dns-native-macos - 4.1.92.Final - - - io.netty - netty-resolver-dns-native-macos - 4.1.92.Final - osx-x86_64 - - - io.netty - netty-resolver-dns-native-macos - 4.1.92.Final - osx-aarch_64 - - - io.netty - netty-transport-native-unix-common - 4.1.92.Final - - - io.netty - netty-transport-native-unix-common - 4.1.92.Final - linux-aarch_64 - - - io.netty - netty-transport-native-unix-common - 4.1.92.Final - linux-x86_64 - - - io.netty - netty-transport-native-unix-common - 4.1.92.Final - osx-x86_64 - - - io.netty - netty-transport-native-unix-common - 4.1.92.Final - osx-aarch_64 - - - io.netty - netty-transport-classes-epoll - 4.1.92.Final - - - io.netty - netty-transport-native-epoll - 4.1.92.Final - - - io.netty - netty-transport-native-epoll - 4.1.92.Final - linux-aarch_64 - - - io.netty - netty-transport-native-epoll - 4.1.92.Final - linux-x86_64 - - - io.netty - netty-transport-classes-kqueue - 4.1.92.Final - - - io.netty - netty-transport-native-kqueue - 4.1.92.Final - - - io.netty - netty-transport-native-kqueue - 4.1.92.Final - osx-x86_64 - - - io.netty - netty-transport-native-kqueue - 4.1.92.Final - osx-aarch_64 - - - io.netty - netty-tcnative-classes - 2.0.60.Final - - - io.netty - netty-tcnative - 2.0.60.Final - linux-x86_64 - - - io.netty - netty-tcnative - 2.0.60.Final - linux-x86_64-fedora - - - io.netty - netty-tcnative - 2.0.60.Final - linux-aarch_64-fedora - - - io.netty - netty-tcnative - 2.0.60.Final - osx-x86_64 - - - io.netty - netty-tcnative-boringssl-static - 2.0.60.Final - - - io.netty - netty-tcnative-boringssl-static - 2.0.60.Final - linux-x86_64 - - - io.netty - netty-tcnative-boringssl-static - 2.0.60.Final - linux-aarch_64 - - - io.netty - netty-tcnative-boringssl-static - 2.0.60.Final - osx-x86_64 - - - io.netty - netty-tcnative-boringssl-static - 2.0.60.Final - osx-aarch_64 - - - io.netty - netty-tcnative-boringssl-static - 2.0.60.Final - windows-x86_64 - - - com.squareup.okhttp3 - mockwebserver - 4.10.0 - - - com.squareup.okhttp3 - okcurl - 4.10.0 - - - com.squareup.okhttp3 - okhttp - 4.10.0 - - - com.squareup.okhttp3 - okhttp-brotli - 4.10.0 - - - com.squareup.okhttp3 - okhttp-dnsoverhttps - 4.10.0 - - - com.squareup.okhttp3 - logging-interceptor - 4.10.0 - - - com.squareup.okhttp3 - okhttp-sse - 4.10.0 - - - com.squareup.okhttp3 - okhttp-tls - 4.10.0 - - - com.squareup.okhttp3 - okhttp-urlconnection - 4.10.0 - - - io.opentelemetry - opentelemetry-context - 1.25.0 - - - io.opentelemetry - opentelemetry-api - 1.25.0 - - - io.opentelemetry - opentelemetry-exporter-common - 1.25.0 - - - io.opentelemetry - opentelemetry-exporter-jaeger - 1.25.0 - - - io.opentelemetry - opentelemetry-exporter-jaeger-thrift - 1.25.0 - - - io.opentelemetry - opentelemetry-exporter-logging - 1.25.0 - - - io.opentelemetry - opentelemetry-exporter-logging-otlp - 1.25.0 - - - io.opentelemetry - opentelemetry-exporter-zipkin - 1.25.0 - - - io.opentelemetry - opentelemetry-extension-kotlin - 1.25.0 - - - io.opentelemetry - opentelemetry-extension-trace-propagators - 1.25.0 - - - io.opentelemetry - opentelemetry-sdk - 1.25.0 - - - io.opentelemetry - opentelemetry-sdk-common - 1.25.0 - - - io.opentelemetry - opentelemetry-sdk-metrics - 1.25.0 - - - io.opentelemetry - opentelemetry-sdk-testing - 1.25.0 - - - io.opentelemetry - opentelemetry-sdk-trace - 1.25.0 - - - io.opentelemetry - opentelemetry-sdk-extension-autoconfigure-spi - 1.25.0 - - - io.opentelemetry - opentelemetry-sdk-extension-jaeger-remote-sampler - 1.25.0 - - - io.opentelemetry - opentelemetry-exporter-otlp - 1.25.0 - - - io.opentelemetry - opentelemetry-exporter-otlp-common - 1.25.0 - - - io.opentelemetry - opentelemetry-sdk-extension-aws - 1.19.0 - - - io.opentelemetry - opentelemetry-exporter-jaeger-proto - 1.17.0 - - - io.opentelemetry - opentelemetry-extension-annotations - 1.18.0 - - - io.opentelemetry - opentelemetry-sdk-extension-resources - 1.19.0 - - - io.opentelemetry - opentelemetry-extension-aws - 1.20.1 - - - com.oracle.database.jdbc - ojdbc11 - 21.9.0.0 - - - com.oracle.database.jdbc - ojdbc8 - 21.9.0.0 - - - com.oracle.database.jdbc - ucp - 21.9.0.0 - - - com.oracle.database.jdbc - ucp11 - 21.9.0.0 - - - com.oracle.database.jdbc - rsi - 21.9.0.0 - - - com.oracle.database.security - oraclepki - 21.9.0.0 - - - com.oracle.database.security - osdt_core - 21.9.0.0 - - - com.oracle.database.security - osdt_cert - 21.9.0.0 - - - com.oracle.database.ha - simplefan - 21.9.0.0 - - - com.oracle.database.ha - ons - 21.9.0.0 - - - com.oracle.database.nls - orai18n - 21.9.0.0 - - - com.oracle.database.xml - xdb - 21.9.0.0 - - - com.oracle.database.xml - xmlparserv2 - 21.9.0.0 - - - com.oracle.database.jdbc.debug - ojdbc11_g - 21.9.0.0 - - - com.oracle.database.jdbc.debug - ojdbc8_g - 21.9.0.0 - - - com.oracle.database.jdbc.debug - ojdbc8dms_g - 21.9.0.0 - - - com.oracle.database.jdbc.debug - ojdbc11dms_g - 21.9.0.0 - - - com.oracle.database.observability - dms - 21.9.0.0 - - - com.oracle.database.observability - ojdbc11dms - 21.9.0.0 - - - com.oracle.database.observability - ojdbc8dms - 21.9.0.0 - - - com.oracle.database.jdbc - ojdbc11-production - 21.9.0.0 - pom - - - com.oracle.database.jdbc - ojdbc8-production - 21.9.0.0 - pom - - - com.oracle.database.observability - ojdbc8-observability - 21.9.0.0 - pom - - - com.oracle.database.observability - ojdbc11-observability - 21.9.0.0 - pom - - - com.oracle.database.jdbc.debug - ojdbc8-debug - 21.9.0.0 - pom - - - com.oracle.database.jdbc.debug - ojdbc11-debug - 21.9.0.0 - pom - - - com.oracle.database.jdbc.debug - ojdbc8-observability-debug - 21.9.0.0 - pom - - - com.oracle.database.jdbc.debug - ojdbc11-observability-debug - 21.9.0.0 - pom - - - io.prometheus - simpleclient - 0.16.0 - - - io.prometheus - simpleclient_caffeine - 0.16.0 - - - io.prometheus - simpleclient_common - 0.16.0 - - - io.prometheus - simpleclient_dropwizard - 0.16.0 - - - io.prometheus - simpleclient_graphite_bridge - 0.16.0 - - - io.prometheus - simpleclient_guava - 0.16.0 - - - io.prometheus - simpleclient_hibernate - 0.16.0 - - - io.prometheus - simpleclient_hotspot - 0.16.0 - - - io.prometheus - simpleclient_httpserver - 0.16.0 - - - io.prometheus - simpleclient_tracer_common - 0.16.0 - - - io.prometheus - simpleclient_jetty - 0.16.0 - - - io.prometheus - simpleclient_jetty_jdk8 - 0.16.0 - - - io.prometheus - simpleclient_log4j - 0.16.0 - - - io.prometheus - simpleclient_log4j2 - 0.16.0 - - - io.prometheus - simpleclient_logback - 0.16.0 - - - io.prometheus - simpleclient_pushgateway - 0.16.0 - - - io.prometheus - simpleclient_servlet - 0.16.0 - - - io.prometheus - simpleclient_servlet_jakarta - 0.16.0 - - - io.prometheus - simpleclient_spring_boot - 0.16.0 - - - io.prometheus - simpleclient_spring_web - 0.16.0 - - - io.prometheus - simpleclient_tracer_otel - 0.16.0 - - - io.prometheus - simpleclient_tracer_otel_agent - 0.16.0 - - - io.prometheus - simpleclient_vertx - 0.16.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 - - - io.projectreactor - reactor-core - 3.5.6 - - - io.projectreactor - reactor-test - 3.5.6 - - - io.projectreactor - reactor-tools - 3.5.6 - - - io.projectreactor - reactor-core-micrometer - 1.0.6 - - - io.projectreactor.addons - reactor-extra - 3.5.1 - - - io.projectreactor.addons - reactor-adapter - 3.5.1 - - - io.projectreactor.netty - reactor-netty - 1.1.7 - - - io.projectreactor.netty - reactor-netty-core - 1.1.7 - - - io.projectreactor.netty - reactor-netty-http - 1.1.7 - - - io.projectreactor.netty - reactor-netty-http-brave - 1.1.7 - - - io.projectreactor.addons - reactor-pool - 1.0.0 - - - io.projectreactor.addons - reactor-pool-micrometer - 0.1.0 - - - io.projectreactor.kotlin - reactor-kotlin-extensions - 1.2.2 - - - io.projectreactor.kafka - reactor-kafka - 1.3.18 - - - io.rest-assured - json-schema-validator - 5.3.0 - - - io.rest-assured - rest-assured-common - 5.3.0 - - - io.rest-assured - json-path - 5.3.0 - - - io.rest-assured - xml-path - 5.3.0 - - - io.rest-assured - rest-assured - 5.3.0 - - - io.rest-assured - spring-commons - 5.3.0 - - - io.rest-assured - spring-mock-mvc - 5.3.0 - - - io.rest-assured - scala-support - 5.3.0 - - - io.rest-assured - spring-web-test-client - 5.3.0 - - - io.rest-assured - kotlin-extensions - 5.3.0 - - - io.rest-assured - spring-mock-mvc-kotlin-extensions - 5.3.0 - - - io.rest-assured - rest-assured-all - 5.3.0 - - - io.rsocket - rsocket-core - 1.1.3 - - - io.rsocket - rsocket-load-balancer - 1.1.3 - - - io.rsocket - rsocket-micrometer - 1.1.3 - - - io.rsocket - rsocket-test - 1.1.3 - - - io.rsocket - rsocket-transport-local - 1.1.3 - - - io.rsocket - rsocket-transport-netty - 1.1.3 - - - org.springframework.batch - spring-batch-core - 5.0.2 - - - org.springframework.batch - spring-batch-infrastructure - 5.0.2 - - - org.springframework.batch - spring-batch-integration - 5.0.2 - - - org.springframework.batch - spring-batch-test - 5.0.2 - - - org.springframework.data - spring-data-cassandra - 4.1.0 - - - org.springframework.data - spring-data-commons - 3.1.0 - - - org.springframework.data - spring-data-couchbase - 5.1.0 - - - org.springframework.data - spring-data-elasticsearch - 5.1.0 - - - org.springframework.data - spring-data-jdbc - 3.1.0 - - - org.springframework.data - spring-data-r2dbc - 3.1.0 - - - org.springframework.data - spring-data-relational - 3.1.0 - - - org.springframework.data - spring-data-jpa - 3.1.0 - - - org.springframework.data - spring-data-envers - 3.1.0 - - - org.springframework.data - spring-data-mongodb - 4.1.0 - - - org.springframework.data - spring-data-neo4j - 7.1.0 - - - org.springframework.data - spring-data-redis - 3.1.0 - - - org.springframework.data - spring-data-rest-webmvc - 4.1.0 - - - org.springframework.data - spring-data-rest-core - 4.1.0 - - - org.springframework.data - spring-data-rest-hal-explorer - 4.1.0 - - - org.springframework.data - spring-data-keyvalue - 3.1.0 - - - org.springframework.data - spring-data-ldap - 3.1.0 - - - org.springframework - spring-aop - 6.0.9 - - - org.springframework - spring-aspects - 6.0.9 - - - org.springframework - spring-beans - 6.0.9 - - - org.springframework - spring-context - 6.0.9 - - - org.springframework - spring-context-indexer - 6.0.9 - - - org.springframework - spring-context-support - 6.0.9 - - - org.springframework - spring-core - 6.0.9 - - - org.springframework - spring-core-test - 6.0.9 - - - org.springframework - spring-expression - 6.0.9 - - - org.springframework - spring-instrument - 6.0.9 - - - org.springframework - spring-jcl - 6.0.9 - - - org.springframework - spring-jdbc - 6.0.9 - - - org.springframework - spring-jms - 6.0.9 - - - org.springframework - spring-messaging - 6.0.9 - - - org.springframework - spring-orm - 6.0.9 - - - org.springframework - spring-oxm - 6.0.9 - - - org.springframework - spring-r2dbc - 6.0.9 - - - org.springframework - spring-test - 6.0.9 - - - org.springframework - spring-tx - 6.0.9 - - - org.springframework - spring-web - 6.0.9 - - - org.springframework - spring-webflux - 6.0.9 - - - org.springframework - spring-webmvc - 6.0.9 - - - org.springframework - spring-websocket - 6.0.9 - - - org.springframework.integration - spring-integration-amqp - 6.1.0 - - - org.springframework.integration - spring-integration-camel - 6.1.0 - - - org.springframework.integration - spring-integration-cassandra - 6.1.0 - - - org.springframework.integration - spring-integration-core - 6.1.0 - - - org.springframework.integration - spring-integration-event - 6.1.0 - - - org.springframework.integration - spring-integration-feed - 6.1.0 - - - org.springframework.integration - spring-integration-file - 6.1.0 - - - org.springframework.integration - spring-integration-ftp - 6.1.0 - - - org.springframework.integration - spring-integration-graphql - 6.1.0 - - - org.springframework.integration - spring-integration-groovy - 6.1.0 - - - org.springframework.integration - spring-integration-hazelcast - 6.1.0 - - - org.springframework.integration - spring-integration-http - 6.1.0 - - - org.springframework.integration - spring-integration-ip - 6.1.0 - - - org.springframework.integration - spring-integration-jdbc - 6.1.0 - - - org.springframework.integration - spring-integration-jms - 6.1.0 - - - org.springframework.integration - spring-integration-jmx - 6.1.0 - - - org.springframework.integration - spring-integration-jpa - 6.1.0 - - - org.springframework.integration - spring-integration-kafka - 6.1.0 - - - org.springframework.integration - spring-integration-mail - 6.1.0 - - - org.springframework.integration - spring-integration-mongodb - 6.1.0 - - - org.springframework.integration - spring-integration-mqtt - 6.1.0 - - - org.springframework.integration - spring-integration-r2dbc - 6.1.0 - - - org.springframework.integration - spring-integration-redis - 6.1.0 - - - org.springframework.integration - spring-integration-rsocket - 6.1.0 - - - org.springframework.integration - spring-integration-scripting - 6.1.0 - - - org.springframework.integration - spring-integration-security - 6.1.0 - - - org.springframework.integration - spring-integration-sftp - 6.1.0 - - - org.springframework.integration - spring-integration-smb - 6.1.0 - - - org.springframework.integration - spring-integration-stomp - 6.1.0 - - - org.springframework.integration - spring-integration-stream - 6.1.0 - - - org.springframework.integration - spring-integration-syslog - 6.1.0 - - - org.springframework.integration - spring-integration-test - 6.1.0 - - - org.springframework.integration - spring-integration-test-support - 6.1.0 - - - org.springframework.integration - spring-integration-webflux - 6.1.0 - - - org.springframework.integration - spring-integration-websocket - 6.1.0 - - - org.springframework.integration - spring-integration-ws - 6.1.0 - - - org.springframework.integration - spring-integration-xml - 6.1.0 - - - org.springframework.integration - spring-integration-xmpp - 6.1.0 - - - org.springframework.integration - spring-integration-zeromq - 6.1.0 - - - org.springframework.integration - spring-integration-zip - 6.1.0 - - - org.springframework.integration - spring-integration-zookeeper - 6.1.0 - - - org.springframework.restdocs - spring-restdocs-asciidoctor - 3.0.0 - - - org.springframework.restdocs - spring-restdocs-core - 3.0.0 - - - org.springframework.restdocs - spring-restdocs-mockmvc - 3.0.0 - - - org.springframework.restdocs - spring-restdocs-restassured - 3.0.0 - - - org.springframework.restdocs - spring-restdocs-webtestclient - 3.0.0 - - - org.springframework.security - spring-security-acl - 6.1.0 - - - org.springframework.security - spring-security-aspects - 6.1.0 - - - org.springframework.security - spring-security-cas - 6.1.0 - - - org.springframework.security - spring-security-config - 6.1.0 - - - org.springframework.security - spring-security-core - 6.1.0 - - - org.springframework.security - spring-security-crypto - 6.1.0 - - - org.springframework.security - spring-security-data - 6.1.0 - - - org.springframework.security - spring-security-ldap - 6.1.0 - - - org.springframework.security - spring-security-messaging - 6.1.0 - - - org.springframework.security - spring-security-oauth2-client - 6.1.0 - - - org.springframework.security - spring-security-oauth2-core - 6.1.0 - - - org.springframework.security - spring-security-oauth2-jose - 6.1.0 - - - org.springframework.security - spring-security-oauth2-resource-server - 6.1.0 - - - org.springframework.security - spring-security-rsocket - 6.1.0 - - - org.springframework.security - spring-security-saml2-service-provider - 6.1.0 - - - org.springframework.security - spring-security-taglibs - 6.1.0 - - - org.springframework.security - spring-security-test - 6.1.0 - - - org.springframework.security - spring-security-web - 6.1.0 - - - org.springframework.session - spring-session-core - 3.1.0 - - - org.springframework.session - spring-session-data-mongodb - 3.1.0 - - - org.springframework.session - spring-session-data-redis - 3.1.0 - - - org.springframework.session - spring-session-hazelcast - 3.1.0 - - - org.springframework.session - spring-session-jdbc - 3.1.0 - - - org.springframework.ws - spring-ws-core - 4.0.4 - - - org.springframework.ws - spring-ws-security - 4.0.4 - - - org.springframework.ws - spring-ws-support - 4.0.4 - - - org.springframework.ws - spring-ws-test - 4.0.4 - - - org.springframework.ws - spring-xml - 4.0.4 - - - - - - repo.jenkins-ci.org - https://repo.jenkins-ci.org/public/ - - - - false - - central - Central Repository - https://repo.maven.apache.org/maven2 - - - - - repo.jenkins-ci.org - https://repo.jenkins-ci.org/public/ - - - - never - - - false - - central - Central Repository - https://repo.maven.apache.org/maven2 - - - - D:\jenkins-oss\plugin-health-scoring\src\main\java - D:\jenkins-oss\plugin-health-scoring\src\main\scripts - D:\jenkins-oss\plugin-health-scoring\src\test\java - D:\jenkins-oss\plugin-health-scoring\target\classes - D:\jenkins-oss\plugin-health-scoring\target\test-classes - - - D:\jenkins-oss\plugin-health-scoring\src\main\resources - - - - - D:\jenkins-oss\plugin-health-scoring\src\test\resources - - - D:\jenkins-oss\plugin-health-scoring\target - plugin-health-scoring-parent-2.4.3-SNAPSHOT - - - - maven-antrun-plugin - 1.3 - - - maven-assembly-plugin - 2.2-beta-5 - - - maven-dependency-plugin - 2.8 - - - maven-checkstyle-plugin - 3.3.0 - - - com.puppycrawl.tools - checkstyle - 10.12.0 - - - - false - true - analytics/checkstyle-configuration.xml - - - - maven-compiler-plugin - 3.11.0 - - 17 - - -parameters - - - - - maven-failsafe-plugin - 3.1.0 - - - - integration-test - verify - - - D:\jenkins-oss\plugin-health-scoring\target\classes - - - - - D:\jenkins-oss\plugin-health-scoring\target\classes - - - - maven-release-plugin - 3.0.1 - - verify - true - v@{project.version} - - - - maven-surefire-plugin - 3.1.0 - - - com.github.spotbugs - spotbugs-maven-plugin - 4.7.3.4 - - analytics/spotbugs-exclude.xml - Max - - - - org.jacoco - jacoco-maven-plugin - 0.8.10 - - - XML - - - - - - - - maven-failsafe-plugin - 3.1.0 - - - - integration-test - verify - - - D:\jenkins-oss\plugin-health-scoring\target\classes - - - - - D:\jenkins-oss\plugin-health-scoring\target\classes - - - - org.jacoco - jacoco-maven-plugin - 0.8.10 - - - default-prepare-agent - - prepare-agent - - - - XML - - - - - default-prepare-agent-integration - - prepare-agent-integration - - - - XML - - - - - merge-data-files - post-integration-test - - merge - - - - - D:\jenkins-oss\plugin-health-scoring\target - - jacoco.exec - jacoco-it.exec - - - - D:\jenkins-oss\plugin-health-scoring\target/jacoco-merged.exec - - XML - - - - - merged-report - post-integration-test - - report - - - D:\jenkins-oss\plugin-health-scoring\target/jacoco-merged.exec - - XML - - - - - - - XML - - - - - org.codehaus.mojo - tidy-maven-plugin - 1.2.0 - - - tidy-pom - validate - - pom - - - - - - maven-clean-plugin - 2.5 - - - default-clean - clean - - clean - - - - - - maven-install-plugin - 2.4 - - - default-install - install - - install - - - - - - maven-deploy-plugin - 2.7 - - - default-deploy - deploy - - deploy - - - - - - maven-site-plugin - 3.3 - - - default-site - site - - site - - - D:\jenkins-oss\plugin-health-scoring\target\site - - - org.apache.maven.plugins - maven-project-info-reports-plugin - - - - - - default-deploy - site-deploy - - deploy - - - D:\jenkins-oss\plugin-health-scoring\target\site - - - org.apache.maven.plugins - maven-project-info-reports-plugin - - - - - - - D:\jenkins-oss\plugin-health-scoring\target\site - - - org.apache.maven.plugins - maven-project-info-reports-plugin - - - - - - - - D:\jenkins-oss\plugin-health-scoring\target\site - - - - - - - - - - 4.0.0 - - io.jenkins.pluginhealth.scoring - plugin-health-scoring-parent - 2.4.3-SNAPSHOT - ../ - - io.jenkins.pluginhealth.scoring - plugin-health-scoring-test - 2.4.3-SNAPSHOT - Plugin Health Scoring :: Test - Build and provide health indicators on plugins of the Jenkins ecosystem - 2022 - - Jenkins Infra - https://github.com/jenkins-infra - - - - The MIT license - https://opensource.org/licenses/MIT - repo - - - - - adi10hero - Aditya Srivastava - - - alecharp - Adrien Lecharpentier - - - dheerajodha - Dheeraj Singh Jodha - - - jleon33 - Jake Leon - - - - scm:git:https://github.com/jenkins-infra/plugin-health-scoring.git/plugin-health-scoring-test - scm:git:git@github.com:jenkins-infra/plugin-health-scoring.git/plugin-health-scoring-test - https://github.com/jenkins-infra/plugin-health-scoring/plugin-health-scoring-test - - - - maven.jenkins-ci.org - https://repo.jenkins-ci.org/releases/ - - - maven.jenkins-ci.org - https://repo.jenkins-ci.org/snapshots/ - - - - 17 - 0.11.5 - 17 - 17 - 18.10.0 - UTF-8 - UTF-8 - UTF-8 - 3.1.0 - 1.18.3 - ca1a380d840c676152fbf8635a82d838113fe77e1665466699a4e106df4930d2 - 3.2.4 - false - 1.22.19 - - - - - io.jenkins.pluginhealth.scoring - plugin-health-scoring-core - 2.4.3-SNAPSHOT - - - io.jenkins.pluginhealth.scoring - plugin-health-scoring-test - 2.4.3-SNAPSHOT - - - org.kohsuke - github-api - 1.315 - - - io.jsonwebtoken - jjwt-api - 0.11.5 - - - io.jsonwebtoken - jjwt-impl - 0.11.5 - - - io.jsonwebtoken - jjwt-jackson - 0.11.5 - - - org.apache.maven - maven-model - 3.9.2 - - - org.testcontainers - azure - 1.18.3 - - - org.testcontainers - cassandra - 1.18.3 - - - org.testcontainers - clickhouse - 1.18.3 - - - org.testcontainers - cockroachdb - 1.18.3 - - - org.testcontainers - consul - 1.18.3 - - - org.testcontainers - couchbase - 1.18.3 - - - org.testcontainers - cratedb - 1.18.3 - - - org.testcontainers - database-commons - 1.18.3 - - - org.testcontainers - db2 - 1.18.3 - - - org.testcontainers - dynalite - 1.18.3 - - - org.testcontainers - elasticsearch - 1.18.3 - - - org.testcontainers - gcloud - 1.18.3 - - - org.testcontainers - hivemq - 1.18.3 - - - org.testcontainers - influxdb - 1.18.3 - - - org.testcontainers - jdbc - 1.18.3 - - - org.testcontainers - junit-jupiter - 1.18.3 - - - org.testcontainers - k3s - 1.18.3 - - - org.testcontainers - kafka - 1.18.3 - - - org.testcontainers - localstack - 1.18.3 - - - org.testcontainers - mariadb - 1.18.3 - - - org.testcontainers - mockserver - 1.18.3 - - - org.testcontainers - mongodb - 1.18.3 - - - org.testcontainers - mssqlserver - 1.18.3 - - - org.testcontainers - mysql - 1.18.3 - - - org.testcontainers - neo4j - 1.18.3 - - - org.testcontainers - nginx - 1.18.3 - - - org.testcontainers - oracle-xe - 1.18.3 - - - org.testcontainers - orientdb - 1.18.3 - - - org.testcontainers - postgresql - 1.18.3 - - - org.testcontainers - presto - 1.18.3 - - - org.testcontainers - pulsar - 1.18.3 - - - org.testcontainers - questdb - 1.18.3 - - - org.testcontainers - r2dbc - 1.18.3 - - - org.testcontainers - rabbitmq - 1.18.3 - - - org.testcontainers - redpanda - 1.18.3 - - - org.testcontainers - selenium - 1.18.3 - - - org.testcontainers - solace - 1.18.3 - - - org.testcontainers - solr - 1.18.3 - - - org.testcontainers - spock - 1.18.3 - - - org.testcontainers - testcontainers - 1.18.3 - - - org.testcontainers - tidb - 1.18.3 - - - org.testcontainers - toxiproxy - 1.18.3 - - - org.testcontainers - trino - 1.18.3 - - - org.testcontainers - vault - 1.18.3 - - - org.testcontainers - yugabytedb - 1.18.3 - - - org.apache.activemq - activemq-amqp - 5.18.1 - - - org.apache.activemq - activemq-blueprint - 5.18.1 - - - org.apache.activemq - activemq-broker - 5.18.1 - - - org.apache.activemq - activemq-client - 5.18.1 - - - org.apache.activemq - activemq-client-jakarta - 5.18.1 - - - org.apache.activemq - activemq-console - 5.18.1 - - - commons-logging - commons-logging - - - - - org.apache.activemq - activemq-http - 5.18.1 - - - org.apache.activemq - activemq-jaas - 5.18.1 - - - org.apache.activemq - activemq-jdbc-store - 5.18.1 - - - org.apache.activemq - activemq-jms-pool - 5.18.1 - - - org.apache.activemq - activemq-kahadb-store - 5.18.1 - - - org.apache.activemq - activemq-karaf - 5.18.1 - - - org.apache.activemq - activemq-log4j-appender - 5.18.1 - - - org.apache.activemq - activemq-mqtt - 5.18.1 - - - org.apache.activemq - activemq-openwire-generator - 5.18.1 - - - org.apache.activemq - activemq-openwire-legacy - 5.18.1 - - - org.apache.activemq - activemq-osgi - 5.18.1 - - - org.apache.activemq - activemq-partition - 5.18.1 - - - org.apache.activemq - activemq-pool - 5.18.1 - - - org.apache.activemq - activemq-ra - 5.18.1 - - - org.apache.activemq - activemq-run - 5.18.1 - - - org.apache.activemq - activemq-runtime-config - 5.18.1 - - - org.apache.activemq - activemq-shiro - 5.18.1 - - - org.apache.activemq - activemq-spring - 5.18.1 - - - commons-logging - commons-logging - - - - - org.apache.activemq - activemq-stomp - 5.18.1 - - - org.apache.activemq - activemq-web - 5.18.1 - - - org.eclipse.angus - angus-core - 1.1.0 - - - org.eclipse.angus - angus-mail - 1.1.0 - - - org.eclipse.angus - dsn - 1.1.0 - - - org.eclipse.angus - gimap - 1.1.0 - - - org.eclipse.angus - imap - 1.1.0 - - - org.eclipse.angus - jakarta.mail - 1.1.0 - - - org.eclipse.angus - logging-mailhandler - 1.1.0 - - - org.eclipse.angus - pop3 - 1.1.0 - - - org.eclipse.angus - smtp - 1.1.0 - - - org.apache.activemq - artemis-amqp-protocol - 2.28.0 - - - org.apache.activemq - artemis-commons - 2.28.0 - - - org.apache.activemq - artemis-core-client - 2.28.0 - - - org.apache.activemq - artemis-jakarta-client - 2.28.0 - - - org.apache.activemq - artemis-jakarta-server - 2.28.0 - - - org.apache.activemq - artemis-jakarta-service-extensions - 2.28.0 - - - org.apache.activemq - artemis-jdbc-store - 2.28.0 - - - org.apache.activemq - artemis-journal - 2.28.0 - - - org.apache.activemq - artemis-quorum-api - 2.28.0 - - - org.apache.activemq - artemis-selector - 2.28.0 - - - org.apache.activemq - artemis-server - 2.28.0 - - - org.apache.activemq - artemis-service-extensions - 2.28.0 - - - org.aspectj - aspectjrt - 1.9.19 - - - org.aspectj - aspectjtools - 1.9.19 - - - org.aspectj - aspectjweaver - 1.9.19 - - - org.awaitility - awaitility - 4.2.0 - - - org.awaitility - awaitility-groovy - 4.2.0 - - - org.awaitility - awaitility-kotlin - 4.2.0 - - - org.awaitility - awaitility-scala - 4.2.0 - - - net.bytebuddy - byte-buddy - 1.14.4 - - - net.bytebuddy - byte-buddy-agent - 1.14.4 - - - org.cache2k - cache2k-api - 2.6.1.Final - - - org.cache2k - cache2k-config - 2.6.1.Final - - - org.cache2k - cache2k-core - 2.6.1.Final - - - org.cache2k - cache2k-jcache - 2.6.1.Final - - - org.cache2k - cache2k-micrometer - 2.6.1.Final - - - org.cache2k - cache2k-spring - 2.6.1.Final - - - com.github.ben-manes.caffeine - caffeine - 3.1.6 - - - com.github.ben-manes.caffeine - guava - 3.1.6 - - - com.github.ben-manes.caffeine - jcache - 3.1.6 - - - com.github.ben-manes.caffeine - simulator - 3.1.6 - - - com.datastax.oss - java-driver-core - 4.15.0 - - - org.slf4j - jcl-over-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.4.6 - - - com.ibm.db2 - jcc - 11.5.8.0 - - - io.spring.gradle - dependency-management-plugin - 1.1.0 - - - org.apache.derby - derby - 10.16.1.1 - - - org.apache.derby - derbyclient - 10.16.1.1 - - - org.apache.derby - derbynet - 10.16.1.1 - - - org.apache.derby - derbyoptionaltools - 10.16.1.1 - - - org.apache.derby - derbyshared - 10.16.1.1 - - - org.apache.derby - derbytools - 10.16.1.1 - - - org.ehcache - ehcache - 3.10.8 - jakarta - - - org.ehcache - ehcache-clustered - 3.10.8 - - - org.ehcache - ehcache-transactions - 3.10.8 - jakarta - - - org.elasticsearch.client - elasticsearch-rest-client - 8.7.1 - - - commons-logging - commons-logging - - - - - org.elasticsearch.client - elasticsearch-rest-client-sniffer - 8.7.1 - - - commons-logging - commons-logging - - - - - co.elastic.clients - elasticsearch-java - 8.7.1 - - - org.flywaydb - flyway-core - 9.16.3 - - - org.flywaydb - flyway-firebird - 9.16.3 - - - org.flywaydb - flyway-mysql - 9.16.3 - - - org.flywaydb - flyway-sqlserver - 9.16.3 - - - org.freemarker - freemarker - 2.3.32 - - - org.glassfish.web - jakarta.servlet.jsp.jstl - 3.0.1 - - - com.graphql-java - graphql-java - 20.2 - - - com.google.code.gson - gson - 2.10.1 - - - com.h2database - h2 - 2.1.214 - - - org.hamcrest - hamcrest - 2.2 - - - org.hamcrest - hamcrest-core - 2.2 - - - org.hamcrest - hamcrest-library - 2.2 - - - com.hazelcast - hazelcast - 5.2.3 - - - com.hazelcast - hazelcast-spring - 5.2.3 - - - org.hibernate.orm - hibernate-agroal - 6.2.2.Final - - - org.hibernate.orm - hibernate-ant - 6.2.2.Final - - - org.hibernate.orm - hibernate-c3p0 - 6.2.2.Final - - - org.hibernate.orm - hibernate-community-dialects - 6.2.2.Final - - - org.hibernate.orm - hibernate-core - 6.2.2.Final - - - org.hibernate.orm - hibernate-envers - 6.2.2.Final - - - org.hibernate.orm - hibernate-graalvm - 6.2.2.Final - - - org.hibernate.orm - hibernate-hikaricp - 6.2.2.Final - - - org.hibernate.orm - hibernate-jcache - 6.2.2.Final - - - org.hibernate.orm - hibernate-jpamodelgen - 6.2.2.Final - - - org.hibernate.orm - hibernate-micrometer - 6.2.2.Final - - - org.hibernate.orm - hibernate-proxool - 6.2.2.Final - - - org.hibernate.orm - hibernate-spatial - 6.2.2.Final - - - org.hibernate.orm - hibernate-testing - 6.2.2.Final - - - org.hibernate.orm - hibernate-vibur - 6.2.2.Final - - - org.hibernate.validator - hibernate-validator - 8.0.0.Final - - - org.hibernate.validator - hibernate-validator-annotation-processor - 8.0.0.Final - - - com.zaxxer - HikariCP - 5.0.1 - - - org.hsqldb - hsqldb - 2.7.1 - - - net.sourceforge.htmlunit - htmlunit - 2.70.0 - - - commons-logging - commons-logging - - - - - org.apache.httpcomponents - httpasyncclient - 4.1.5 - - - commons-logging - commons-logging - - - - - org.apache.httpcomponents.client5 - httpclient5 - 5.2.1 - - - org.apache.httpcomponents.client5 - httpclient5-cache - 5.2.1 - - - org.apache.httpcomponents.client5 - httpclient5-fluent - 5.2.1 - - - org.apache.httpcomponents.client5 - httpclient5-win - 5.2.1 - - - org.apache.httpcomponents - httpcore - 4.4.16 - - - org.apache.httpcomponents - httpcore-nio - 4.4.16 - - - org.apache.httpcomponents.core5 - httpcore5 - 5.2.1 - - - org.apache.httpcomponents.core5 - httpcore5-h2 - 5.2.1 - - - org.apache.httpcomponents.core5 - httpcore5-reactive - 5.2.1 - - - org.influxdb - influxdb-java - 2.23 - - - jakarta.activation - jakarta.activation-api - 2.1.2 - - - jakarta.annotation - jakarta.annotation-api - 2.1.1 - - - jakarta.jms - jakarta.jms-api - 3.1.0 - - - jakarta.json - jakarta.json-api - 2.1.1 - - - jakarta.json.bind - jakarta.json.bind-api - 3.0.0 - - - jakarta.mail - jakarta.mail-api - 2.1.1 - - - jakarta.management.j2ee - jakarta.management.j2ee-api - 1.1.4 - - - jakarta.persistence - jakarta.persistence-api - 3.1.0 - - - jakarta.servlet - jakarta.servlet-api - 6.0.0 - - - jakarta.servlet.jsp.jstl - jakarta.servlet.jsp.jstl-api - 3.0.0 - - - jakarta.transaction - jakarta.transaction-api - 2.0.1 - - - jakarta.validation - jakarta.validation-api - 3.0.2 - - - jakarta.websocket - jakarta.websocket-api - 2.1.0 - - - jakarta.websocket - jakarta.websocket-client-api - 2.1.0 - - - jakarta.ws.rs - jakarta.ws.rs-api - 3.1.0 - - - jakarta.xml.bind - jakarta.xml.bind-api - 4.0.0 - - - jakarta.xml.soap - jakarta.xml.soap-api - 3.0.0 - - - jakarta.xml.ws - jakarta.xml.ws-api - 4.0.0 - - - org.codehaus.janino - commons-compiler - 3.1.9 - - - org.codehaus.janino - commons-compiler-jdk - 3.1.9 - - - org.codehaus.janino - janino - 3.1.9 - - - javax.cache - cache-api - 1.1.1 - - - javax.money - money-api - 1.1 - - - jaxen - jaxen - 2.0.0 - - - org.firebirdsql.jdbc - jaybird - 5.0.1.java11 - - - org.jboss.logging - jboss-logging - 3.5.0.Final - - - org.jdom - jdom2 - 2.0.6.1 - - - redis.clients - jedis - 4.3.2 - - - org.eclipse.jetty - jetty-reactive-httpclient - 3.0.8 - - - com.samskivert - jmustache - 1.15 - - - org.jooq - jooq - 3.18.4 - - - org.jooq - jooq-codegen - 3.18.4 - - - org.jooq - jooq-kotlin - 3.18.4 - - - org.jooq - jooq-meta - 3.18.4 - - - com.jayway.jsonpath - json-path - 2.8.0 - - - com.jayway.jsonpath - json-path-assert - 2.8.0 - - - net.minidev - json-smart - 2.4.10 - - - org.skyscreamer - jsonassert - 1.5.1 - - - net.sourceforge.jtds - jtds - 1.3.1 - - - junit - junit - 4.13.2 - - - org.apache.kafka - connect - 3.4.0 - - - org.apache.kafka - connect-api - 3.4.0 - - - org.apache.kafka - connect-basic-auth-extension - 3.4.0 - - - org.apache.kafka - connect-file - 3.4.0 - - - org.apache.kafka - connect-json - 3.4.0 - - - org.apache.kafka - connect-mirror - 3.4.0 - - - org.apache.kafka - connect-mirror-client - 3.4.0 - - - org.apache.kafka - connect-runtime - 3.4.0 - - - org.apache.kafka - connect-transforms - 3.4.0 - - - org.apache.kafka - generator - 3.4.0 - - - org.apache.kafka - kafka-clients - 3.4.0 - - - org.apache.kafka - kafka-clients - 3.4.0 - test - - - org.apache.kafka - kafka-log4j-appender - 3.4.0 - - - org.apache.kafka - kafka-metadata - 3.4.0 - - - org.apache.kafka - kafka-raft - 3.4.0 - - - org.apache.kafka - kafka-server-common - 3.4.0 - - - org.apache.kafka - kafka-shell - 3.4.0 - - - org.apache.kafka - kafka-storage - 3.4.0 - - - org.apache.kafka - kafka-storage-api - 3.4.0 - - - org.apache.kafka - kafka-streams - 3.4.0 - - - org.apache.kafka - kafka-streams-scala_2.12 - 3.4.0 - - - org.apache.kafka - kafka-streams-scala_2.13 - 3.4.0 - - - org.apache.kafka - kafka-streams-test-utils - 3.4.0 - - - org.apache.kafka - kafka-tools - 3.4.0 - - - org.apache.kafka - kafka_2.12 - 3.4.0 - - - org.apache.kafka - kafka_2.12 - 3.4.0 - test - - - org.apache.kafka - kafka_2.13 - 3.4.0 - - - org.apache.kafka - kafka_2.13 - 3.4.0 - test - - - org.apache.kafka - trogdor - 3.4.0 - - - io.lettuce - lettuce-core - 6.2.4.RELEASE - - - org.liquibase - liquibase-cdi - 4.20.0 - - - org.liquibase - liquibase-core - 4.20.0 - - - ch.qos.logback - logback-access - 1.4.7 - - - ch.qos.logback - logback-classic - 1.4.7 - - - ch.qos.logback - logback-core - 1.4.7 - - - org.projectlombok - lombok - 1.18.26 - - - org.mariadb.jdbc - mariadb-java-client - 3.1.4 - - - io.micrometer - micrometer-registry-stackdriver - 1.11.0 - - - javax.annotation - javax.annotation-api - - - - - org.mongodb - bson - 4.9.1 - - - org.mongodb - bson-record-codec - 4.9.1 - - - org.mongodb - mongodb-driver-core - 4.9.1 - - - org.mongodb - mongodb-driver-legacy - 4.9.1 - - - org.mongodb - mongodb-driver-reactivestreams - 4.9.1 - - - org.mongodb - mongodb-driver-sync - 4.9.1 - - - com.microsoft.sqlserver - mssql-jdbc - 11.2.3.jre17 - - - com.mysql - mysql-connector-j - 8.0.33 - - - com.google.protobuf - protobuf-java - - - - - net.sourceforge.nekohtml - nekohtml - 1.9.22 - - - org.neo4j.driver - neo4j-java-driver - 5.8.0 - - - com.oracle.database.r2dbc - oracle-r2dbc - 1.1.1 - - - org.messaginghub - pooled-jms - 3.1.0 - - - org.postgresql - postgresql - 42.6.0 - - - org.quartz-scheduler - quartz - 2.3.2 - - - com.mchange - c3p0 - - - com.zaxxer - * - - - - - org.quartz-scheduler - quartz-jobs - 2.3.2 - - - io.r2dbc - r2dbc-h2 - 1.0.0.RELEASE - - - org.mariadb - r2dbc-mariadb - 1.1.4 - - - io.r2dbc - r2dbc-mssql - 1.0.0.RELEASE - - - io.asyncer - r2dbc-mysql - 1.0.1 - - - io.r2dbc - r2dbc-pool - 1.0.0.RELEASE - - - org.postgresql - r2dbc-postgresql - 1.0.1.RELEASE - - - io.r2dbc - r2dbc-proxy - 1.1.0.RELEASE - - - io.r2dbc - r2dbc-spi - 1.0.0.RELEASE - - - com.rabbitmq - amqp-client - 5.17.0 - - - com.rabbitmq - stream-client - 0.9.0 - - - org.reactivestreams - reactive-streams - 1.0.4 - - - io.reactivex.rxjava3 - rxjava - 3.1.6 - - - org.springframework.boot - spring-boot - 3.1.0 - - - org.springframework.boot - spring-boot-test - 3.1.0 - - - org.springframework.boot - spring-boot-test-autoconfigure - 3.1.0 - - - org.springframework.boot - spring-boot-testcontainers - 3.1.0 - - - org.springframework.boot - spring-boot-actuator - 3.1.0 - - - org.springframework.boot - spring-boot-actuator-autoconfigure - 3.1.0 - - - org.springframework.boot - spring-boot-autoconfigure - 3.1.0 - - - org.springframework.boot - spring-boot-autoconfigure-processor - 3.1.0 - - - org.springframework.boot - spring-boot-buildpack-platform - 3.1.0 - - - org.springframework.boot - spring-boot-configuration-metadata - 3.1.0 - - - org.springframework.boot - spring-boot-configuration-processor - 3.1.0 - - - org.springframework.boot - spring-boot-devtools - 3.1.0 - - - org.springframework.boot - spring-boot-docker-compose - 3.1.0 - - - org.springframework.boot - spring-boot-jarmode-layertools - 3.1.0 - - - org.springframework.boot - spring-boot-loader - 3.1.0 - - - org.springframework.boot - spring-boot-loader-tools - 3.1.0 - - - org.springframework.boot - spring-boot-properties-migrator - 3.1.0 - - - org.springframework.boot - spring-boot-starter - 3.1.0 - - - org.springframework.boot - spring-boot-starter-activemq - 3.1.0 - - - org.springframework.boot - spring-boot-starter-actuator - 3.1.0 - - - org.springframework.boot - spring-boot-starter-amqp - 3.1.0 - - - org.springframework.boot - spring-boot-starter-aop - 3.1.0 - - - org.springframework.boot - spring-boot-starter-artemis - 3.1.0 - - - org.springframework.boot - spring-boot-starter-batch - 3.1.0 - - - org.springframework.boot - spring-boot-starter-cache - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-cassandra - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-cassandra-reactive - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-couchbase - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-couchbase-reactive - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-elasticsearch - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-jdbc - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-jpa - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-ldap - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-mongodb - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-mongodb-reactive - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-r2dbc - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-redis - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-redis-reactive - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-neo4j - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-rest - 3.1.0 - - - org.springframework.boot - spring-boot-starter-freemarker - 3.1.0 - - - org.springframework.boot - spring-boot-starter-graphql - 3.1.0 - - - org.springframework.boot - spring-boot-starter-groovy-templates - 3.1.0 - - - org.springframework.boot - spring-boot-starter-hateoas - 3.1.0 - - - org.springframework.boot - spring-boot-starter-integration - 3.1.0 - - - org.springframework.boot - spring-boot-starter-jdbc - 3.1.0 - - - org.springframework.boot - spring-boot-starter-jersey - 3.1.0 - - - org.springframework.boot - spring-boot-starter-jetty - 3.1.0 - - - org.springframework.boot - spring-boot-starter-jooq - 3.1.0 - - - org.springframework.boot - spring-boot-starter-json - 3.1.0 - - - org.springframework.boot - spring-boot-starter-log4j2 - 3.1.0 - - - org.springframework.boot - spring-boot-starter-logging - 3.1.0 - - - org.springframework.boot - spring-boot-starter-mail - 3.1.0 - - - org.springframework.boot - spring-boot-starter-mustache - 3.1.0 - - - org.springframework.boot - spring-boot-starter-oauth2-authorization-server - 3.1.0 - - - org.springframework.boot - spring-boot-starter-oauth2-client - 3.1.0 - - - org.springframework.boot - spring-boot-starter-oauth2-resource-server - 3.1.0 - - - org.springframework.boot - spring-boot-starter-quartz - 3.1.0 - - - org.springframework.boot - spring-boot-starter-reactor-netty - 3.1.0 - - - org.springframework.boot - spring-boot-starter-rsocket - 3.1.0 - - - org.springframework.boot - spring-boot-starter-security - 3.1.0 - - - org.springframework.boot - spring-boot-starter-test - 3.1.0 - - - org.springframework.boot - spring-boot-starter-thymeleaf - 3.1.0 - - - org.springframework.boot - spring-boot-starter-tomcat - 3.1.0 - - - org.springframework.boot - spring-boot-starter-undertow - 3.1.0 - - - org.springframework.boot - spring-boot-starter-validation - 3.1.0 - - - org.springframework.boot - spring-boot-starter-web - 3.1.0 - - - org.springframework.boot - spring-boot-starter-webflux - 3.1.0 - - - org.springframework.boot - spring-boot-starter-websocket - 3.1.0 - - - org.springframework.boot - spring-boot-starter-web-services - 3.1.0 - - - com.sun.xml.messaging.saaj - saaj-impl - 3.0.2 - - - org.seleniumhq.selenium - lift - 4.8.3 - - - org.seleniumhq.selenium - selenium-api - 4.8.3 - - - org.seleniumhq.selenium - selenium-chrome-driver - 4.8.3 - - - org.seleniumhq.selenium - selenium-chromium-driver - 4.8.3 - - - org.seleniumhq.selenium - selenium-devtools-v108 - 4.8.3 - - - org.seleniumhq.selenium - selenium-devtools-v109 - 4.8.3 - - - org.seleniumhq.selenium - selenium-devtools-v110 - 4.8.3 - - - org.seleniumhq.selenium - selenium-devtools-v85 - 4.8.3 - - - org.seleniumhq.selenium - selenium-edge-driver - 4.8.3 - - - org.seleniumhq.selenium - selenium-firefox-driver - 4.8.3 - - - org.seleniumhq.selenium - selenium-grid - 4.8.3 - - - org.seleniumhq.selenium - selenium-http - 4.8.3 - - - org.seleniumhq.selenium - selenium-http-jdk-client - 4.8.3 - - - org.seleniumhq.selenium - selenium-ie-driver - 4.8.3 - - - org.seleniumhq.selenium - selenium-java - 4.8.3 - - - org.seleniumhq.selenium - selenium-json - 4.8.3 - - - org.seleniumhq.selenium - selenium-manager - 4.8.3 - - - org.seleniumhq.selenium - selenium-remote-driver - 4.8.3 - - - org.seleniumhq.selenium - selenium-safari-driver - 4.8.3 - - - org.seleniumhq.selenium - selenium-session-map-jdbc - 4.8.3 - - - org.seleniumhq.selenium - selenium-session-map-redis - 4.8.3 - - - org.seleniumhq.selenium - selenium-support - 4.8.3 - - - org.seleniumhq.selenium - htmlunit-driver - 4.8.3 - - - com.sendgrid - sendgrid-java - 4.9.3 - - - org.slf4j - jcl-over-slf4j - 2.0.7 - - - org.slf4j - jul-to-slf4j - 2.0.7 - - - org.slf4j - log4j-over-slf4j - 2.0.7 - - - org.slf4j - slf4j-api - 2.0.7 - - - org.slf4j - slf4j-ext - 2.0.7 - - - org.slf4j - slf4j-jdk-platform-logging - 2.0.7 - - - org.slf4j - slf4j-jdk14 - 2.0.7 - - - org.slf4j - slf4j-log4j12 - 2.0.7 - - - org.slf4j - slf4j-nop - 2.0.7 - - - org.slf4j - slf4j-reload4j - 2.0.7 - - - org.slf4j - slf4j-simple - 2.0.7 - - - org.yaml - snakeyaml - 1.33 - - - org.springframework.amqp - spring-amqp - 3.0.4 - - - org.springframework.amqp - spring-rabbit - 3.0.4 - - - org.springframework.amqp - spring-rabbit-stream - 3.0.4 - - - org.springframework.amqp - spring-rabbit-junit - 3.0.4 - - - org.springframework.amqp - spring-rabbit-test - 3.0.4 - - - org.springframework.security - spring-security-oauth2-authorization-server - 1.1.0 - - - org.springframework.graphql - spring-graphql - 1.2.0 - - - org.springframework.graphql - spring-graphql-test - 1.2.0 - - - org.springframework.hateoas - spring-hateoas - 2.1.0 - - - org.springframework.kafka - spring-kafka - 3.0.7 - - - org.springframework.kafka - spring-kafka-test - 3.0.7 - - - org.springframework.ldap - spring-ldap-core - 3.1.0 - - - org.springframework.ldap - spring-ldap-ldif-core - 3.1.0 - - - org.springframework.ldap - spring-ldap-odm - 3.1.0 - - - org.springframework.ldap - spring-ldap-test - 3.1.0 - - - org.springframework.retry - spring-retry - 2.0.1 - - - org.xerial - sqlite-jdbc - 3.41.2.1 - - - org.thymeleaf - thymeleaf - 3.1.1.RELEASE - - - org.thymeleaf - thymeleaf-spring6 - 3.1.1.RELEASE - - - com.github.mxab.thymeleaf.extras - thymeleaf-extras-data-attribute - 2.0.1 - - - org.thymeleaf.extras - thymeleaf-extras-springsecurity6 - 3.1.1.RELEASE - - - nz.net.ultraq.thymeleaf - thymeleaf-layout-dialect - 3.2.1 - - - org.apache.tomcat - tomcat-annotations-api - 10.1.8 - - - org.apache.tomcat - tomcat-jdbc - 10.1.8 - - - org.apache.tomcat - tomcat-jsp-api - 10.1.8 - - - org.apache.tomcat.embed - tomcat-embed-core - 10.1.8 - - - org.apache.tomcat.embed - tomcat-embed-el - 10.1.8 - - - org.apache.tomcat.embed - tomcat-embed-jasper - 10.1.8 - - - org.apache.tomcat.embed - tomcat-embed-websocket - 10.1.8 - - - com.unboundid - unboundid-ldapsdk - 6.0.8 - - - io.undertow - undertow-core - 2.3.6.Final - - - io.undertow - undertow-servlet - 2.3.6.Final - - - io.undertow - undertow-websockets-jsr - 2.3.6.Final - - - org.webjars - webjars-locator-core - 0.52 - - - wsdl4j - wsdl4j - 1.6.3 - - - org.xmlunit - xmlunit-assertj - 2.9.1 - - - org.xmlunit - xmlunit-assertj3 - 2.9.1 - - - org.xmlunit - xmlunit-core - 2.9.1 - - - org.xmlunit - xmlunit-jakarta-jaxb-impl - 2.9.1 - - - org.xmlunit - xmlunit-legacy - 2.9.1 - - - org.xmlunit - xmlunit-matchers - 2.9.1 - - - org.xmlunit - xmlunit-placeholders - 2.9.1 - - - org.eclipse - yasson - 3.0.3 - - - org.assertj - assertj-core - 3.24.2 - - - org.assertj - assertj-guava - 3.24.2 - - - io.zipkin.zipkin2 - zipkin - 2.23.2 - - - io.zipkin.brave - brave - 5.15.1 - - - io.zipkin.brave - brave-tests - 5.15.1 - - - io.zipkin.brave - brave-context-jfr - 5.15.1 - - - io.zipkin.brave - brave-context-log4j2 - 5.15.1 - - - io.zipkin.brave - brave-context-log4j12 - 5.15.1 - - - io.zipkin.brave - brave-context-slf4j - 5.15.1 - - - io.zipkin.brave - brave-context-rxjava2 - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-dubbo - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-dubbo-rpc - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-grpc - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-http - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-http-tests - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-httpasyncclient - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-httpclient - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-jaxrs2 - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-jersey-server - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-jms - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-jms-jakarta - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-kafka-clients - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-kafka-streams - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-messaging - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-mongodb - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-mysql - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-mysql6 - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-mysql8 - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-netty-codec-http - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-okhttp3 - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-p6spy - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-rpc - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-servlet - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-servlet-jakarta - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-sparkjava - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-spring-rabbit - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-spring-web - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-spring-webmvc - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-vertx-web - 5.15.1 - - - io.zipkin.brave - brave-spring-beans - 5.15.1 - - - io.zipkin.proto3 - zipkin-proto3 - 1.0.0 - - - io.zipkin.reporter2 - zipkin-reporter - 2.16.3 - - - io.zipkin.reporter2 - zipkin-sender-okhttp3 - 2.16.3 - - - io.zipkin.reporter2 - zipkin-sender-libthrift - 2.16.3 - - - io.zipkin.reporter2 - zipkin-sender-urlconnection - 2.16.3 - - - io.zipkin.reporter2 - zipkin-sender-kafka08 - 2.16.3 - - - io.zipkin.reporter2 - zipkin-sender-kafka - 2.16.3 - - - io.zipkin.reporter2 - zipkin-sender-amqp-client - 2.16.3 - - - io.zipkin.reporter2 - zipkin-sender-activemq-client - 2.16.3 - - - io.zipkin.reporter2 - zipkin-reporter-spring-beans - 2.16.3 - - - io.zipkin.reporter2 - zipkin-reporter-brave - 2.16.3 - - - io.zipkin.reporter2 - zipkin-reporter-metrics-micrometer - 2.16.3 - - - com.datastax.oss - java-driver-core-shaded - 4.15.0 - - - com.datastax.oss - java-driver-mapper-processor - 4.15.0 - - - com.datastax.oss - java-driver-mapper-runtime - 4.15.0 - - - com.datastax.oss - java-driver-query-builder - 4.15.0 - - - com.datastax.oss - java-driver-test-infra - 4.15.0 - - - com.datastax.oss - java-driver-metrics-micrometer - 4.15.0 - - - com.datastax.oss - java-driver-metrics-microprofile - 4.15.0 - - - com.datastax.oss - native-protocol - 1.5.1 - - - com.datastax.oss - java-driver-shaded-guava - 25.1-jre-graal-sub-1 - - - io.dropwizard.metrics - metrics-annotation - 4.2.18 - - - io.dropwizard.metrics - metrics-caffeine - 4.2.18 - - - io.dropwizard.metrics - metrics-caffeine3 - 4.2.18 - - - io.dropwizard.metrics - metrics-core - 4.2.18 - - - io.dropwizard.metrics - metrics-collectd - 4.2.18 - - - io.dropwizard.metrics - metrics-ehcache - 4.2.18 - - - io.dropwizard.metrics - metrics-graphite - 4.2.18 - - - io.dropwizard.metrics - metrics-healthchecks - 4.2.18 - - - io.dropwizard.metrics - metrics-httpclient - 4.2.18 - - - io.dropwizard.metrics - metrics-httpclient5 - 4.2.18 - - - io.dropwizard.metrics - metrics-httpasyncclient - 4.2.18 - - - io.dropwizard.metrics - metrics-jakarta-servlet - 4.2.18 - - - io.dropwizard.metrics - metrics-jakarta-servlets - 4.2.18 - - - io.dropwizard.metrics - metrics-jcache - 4.2.18 - - - io.dropwizard.metrics - metrics-jdbi - 4.2.18 - - - io.dropwizard.metrics - metrics-jdbi3 - 4.2.18 - - - io.dropwizard.metrics - metrics-jersey2 - 4.2.18 - - - io.dropwizard.metrics - metrics-jersey3 - 4.2.18 - - - io.dropwizard.metrics - metrics-jersey31 - 4.2.18 - - - io.dropwizard.metrics - metrics-jetty9 - 4.2.18 - - - io.dropwizard.metrics - metrics-jetty10 - 4.2.18 - - - io.dropwizard.metrics - metrics-jetty11 - 4.2.18 - - - io.dropwizard.metrics - metrics-jmx - 4.2.18 - - - io.dropwizard.metrics - metrics-json - 4.2.18 - - - io.dropwizard.metrics - metrics-jvm - 4.2.18 - - - io.dropwizard.metrics - metrics-log4j2 - 4.2.18 - - - io.dropwizard.metrics - metrics-logback - 4.2.18 - - - io.dropwizard.metrics - metrics-logback13 - 4.2.18 - - - io.dropwizard.metrics - metrics-logback14 - 4.2.18 - - - io.dropwizard.metrics - metrics-servlet - 4.2.18 - - - io.dropwizard.metrics - metrics-servlets - 4.2.18 - - - org.glassfish.jaxb - jaxb-runtime - 4.0.2 - sources - - - org.glassfish.jaxb - jaxb-core - 4.0.2 - sources - - - org.glassfish.jaxb - jaxb-xjc - 4.0.2 - sources - - - org.glassfish.jaxb - jaxb-jxc - 4.0.2 - sources - - - org.glassfish.jaxb - codemodel - 4.0.2 - sources - - - org.glassfish.jaxb - txw2 - 4.0.2 - sources - - - org.glassfish.jaxb - xsom - 4.0.2 - sources - - - com.sun.xml.bind - jaxb-impl - 4.0.2 - sources - - - com.sun.xml.bind - jaxb-core - 4.0.2 - sources - - - com.sun.xml.bind - jaxb-xjc - 4.0.2 - sources - - - com.sun.xml.bind - jaxb-jxc - 4.0.2 - sources - - - jakarta.xml.bind - jakarta.xml.bind-api - 4.0.0 - sources - - - org.jvnet.staxex - stax-ex - 2.1.0 - sources - - - jakarta.activation - jakarta.activation-api - - - - - com.sun.xml.fastinfoset - FastInfoset - 2.1.0 - sources - - - org.glassfish.jaxb - jaxb-runtime - 4.0.2 - - - org.glassfish.jaxb - jaxb-core - 4.0.2 - - - org.glassfish.jaxb - jaxb-xjc - 4.0.2 - - - org.glassfish.jaxb - jaxb-jxc - 4.0.2 - - - org.glassfish.jaxb - codemodel - 4.0.2 - - - org.glassfish.jaxb - txw2 - 4.0.2 - - - org.glassfish.jaxb - xsom - 4.0.2 - - - com.sun.xml.bind - jaxb-impl - 4.0.2 - - - com.sun.xml.bind - jaxb-core - 4.0.2 - - - com.sun.xml.bind - jaxb-xjc - 4.0.2 - - - com.sun.xml.bind - jaxb-jxc - 4.0.2 - - - com.sun.xml.bind - jaxb-osgi - 4.0.2 - - - com.sun.istack - istack-commons-runtime - 4.1.1 - - - com.sun.xml.fastinfoset - FastInfoset - 2.1.0 - - - org.jvnet.staxex - stax-ex - 2.1.0 - - - org.eclipse.angus - angus-activation - 2.0.0 - - - org.apache.groovy - groovy - 4.0.12 - - - org.apache.groovy - groovy-ant - 4.0.12 - - - org.apache.groovy - groovy-astbuilder - 4.0.12 - - - org.apache.groovy - groovy-cli-commons - 4.0.12 - - - org.apache.groovy - groovy-cli-picocli - 4.0.12 - - - org.apache.groovy - groovy-console - 4.0.12 - - - org.apache.groovy - groovy-contracts - 4.0.12 - - - org.apache.groovy - groovy-datetime - 4.0.12 - - - org.apache.groovy - groovy-dateutil - 4.0.12 - - - org.apache.groovy - groovy-docgenerator - 4.0.12 - - - org.apache.groovy - groovy-ginq - 4.0.12 - - - org.apache.groovy - groovy-groovydoc - 4.0.12 - - - org.apache.groovy - groovy-groovysh - 4.0.12 - - - org.apache.groovy - groovy-jmx - 4.0.12 - - - org.apache.groovy - groovy-json - 4.0.12 - - - org.apache.groovy - groovy-jsr223 - 4.0.12 - - - org.apache.groovy - groovy-macro - 4.0.12 - - - org.apache.groovy - groovy-macro-library - 4.0.12 - - - org.apache.groovy - groovy-nio - 4.0.12 - - - org.apache.groovy - groovy-servlet - 4.0.12 - - - org.apache.groovy - groovy-sql - 4.0.12 - - - org.apache.groovy - groovy-swing - 4.0.12 - - - org.apache.groovy - groovy-templates - 4.0.12 - - - org.apache.groovy - groovy-test - 4.0.12 - - - org.apache.groovy - groovy-test-junit5 - 4.0.12 - - - org.apache.groovy - groovy-testng - 4.0.12 - - - org.apache.groovy - groovy-toml - 4.0.12 - - - org.apache.groovy - groovy-typecheckers - 4.0.12 - - - org.apache.groovy - groovy-xml - 4.0.12 - - - org.apache.groovy - groovy-yaml - 4.0.12 - - - org.infinispan - infinispan-api - 14.0.9.Final - - - org.infinispan - infinispan-cachestore-jdbc - 14.0.9.Final - - - org.infinispan - infinispan-cachestore-jdbc-jakarta - 14.0.9.Final - - - org.infinispan - infinispan-cachestore-jdbc-common - 14.0.9.Final - - - org.infinispan - infinispan-cachestore-jdbc-common-jakarta - 14.0.9.Final - - - org.infinispan - infinispan-cachestore-sql - 14.0.9.Final - - - org.infinispan - infinispan-cachestore-remote - 14.0.9.Final - - - org.infinispan - infinispan-cachestore-rocksdb - 14.0.9.Final - - - org.infinispan - infinispan-cdi-common - 14.0.9.Final - - - org.infinispan - infinispan-cdi-common-jakarta - 14.0.9.Final - - - org.infinispan - infinispan-cdi-embedded - 14.0.9.Final - - - org.infinispan - infinispan-cdi-embedded-jakarta - 14.0.9.Final - - - org.infinispan - infinispan-cdi-remote - 14.0.9.Final - - - org.infinispan - infinispan-cdi-remote-jakarta - 14.0.9.Final - - - org.infinispan - infinispan-checkstyle - 14.0.9.Final - - - org.infinispan - infinispan-cli-client - 14.0.9.Final - - - org.infinispan - infinispan-hotrod - 14.0.9.Final - - - org.infinispan - infinispan-hotrod-jakarta - 14.0.9.Final - - - org.infinispan - infinispan-client-hotrod - 14.0.9.Final - - - org.infinispan - infinispan-client-hotrod-jakarta - 14.0.9.Final - - - org.infinispan - infinispan-client-rest - 14.0.9.Final - - - org.infinispan - infinispan-key-value-store-client - 14.0.9.Final - - - org.infinispan - infinispan-clustered-counter - 14.0.9.Final - - - org.infinispan - infinispan-clustered-lock - 14.0.9.Final - - - org.infinispan - infinispan-commons - 14.0.9.Final - - - org.infinispan - infinispan-commons-jakarta - 14.0.9.Final - - - org.infinispan - infinispan-commons-test - 14.0.9.Final - - - org.infinispan - infinispan-component-annotations - 14.0.9.Final - provided - - - org.infinispan - infinispan-component-processor - 14.0.9.Final - - - org.infinispan - infinispan-core - 14.0.9.Final - - - org.infinispan - infinispan-core-jakarta - 14.0.9.Final - - - org.infinispan - infinispan-jboss-marshalling - 14.0.9.Final - - - org.infinispan - infinispan-extended-statistics - 14.0.9.Final - - - org.infinispan - infinispan-hibernate-cache-commons - 14.0.9.Final - - - org.infinispan - infinispan-hibernate-cache-spi - 14.0.9.Final - - - org.infinispan - infinispan-hibernate-cache-v60 - 14.0.9.Final - - - org.infinispan - infinispan-jcache-commons - 14.0.9.Final - - - org.infinispan - infinispan-jcache - 14.0.9.Final - - - org.infinispan - infinispan-jcache-remote - 14.0.9.Final - - - org.infinispan - infinispan-console - 14.0.8.Final - - - org.infinispan - infinispan-multimap - 14.0.9.Final - - - org.infinispan - infinispan-objectfilter - 14.0.9.Final - - - org.infinispan - infinispan-query-core - 14.0.9.Final - - - org.infinispan - infinispan-query - 14.0.9.Final - - - org.infinispan - infinispan-query-jakarta - 14.0.9.Final - - - org.infinispan - infinispan-query-dsl - 14.0.9.Final - - - org.infinispan - infinispan-remote-query-client - 14.0.9.Final - - - org.infinispan - infinispan-remote-query-server - 14.0.9.Final - - - org.infinispan - infinispan-scripting - 14.0.9.Final - - - org.infinispan - infinispan-server-core - 14.0.9.Final - - - org.infinispan - infinispan-server-hotrod - 14.0.9.Final - - - org.infinispan - infinispan-server-hotrod-jakarta - 14.0.9.Final - - - org.infinispan - infinispan-server-memcached - 14.0.9.Final - - - org.infinispan - infinispan-server-resp - 14.0.9.Final - - - org.infinispan - infinispan-server-rest - 14.0.9.Final - - - org.infinispan - infinispan-server-router - 14.0.9.Final - - - org.infinispan - infinispan-server-runtime - 14.0.9.Final - - - org.infinispan - infinispan-server-runtime - 14.0.9.Final - loader - - - org.infinispan - infinispan-server-testdriver-core - 14.0.9.Final - - - org.infinispan - infinispan-server-testdriver-junit4 - 14.0.9.Final - - - org.infinispan - infinispan-server-testdriver-junit5 - 14.0.9.Final - - - org.infinispan - infinispan-spring5-common - 14.0.9.Final - - - org.infinispan - infinispan-spring5-embedded - 14.0.9.Final - - - org.infinispan - infinispan-spring5-remote - 14.0.9.Final - - - org.infinispan - infinispan-spring-boot-starter-embedded - 14.0.9.Final - - - org.infinispan - infinispan-spring-boot-starter-remote - 14.0.9.Final - - - org.infinispan - infinispan-spring6-common - 14.0.9.Final - - - org.infinispan - infinispan-spring6-embedded - 14.0.9.Final - - - org.infinispan - infinispan-spring6-remote - 14.0.9.Final - - - org.infinispan - infinispan-spring-boot3-starter-embedded - 14.0.9.Final - - - org.infinispan - infinispan-spring-boot3-starter-remote - 14.0.9.Final - - - org.infinispan - infinispan-tasks - 14.0.9.Final - - - org.infinispan - infinispan-tasks-api - 14.0.9.Final - - - org.infinispan - infinispan-tools - 14.0.9.Final - - - org.infinispan - infinispan-tools-jakarta - 14.0.9.Final - - - org.infinispan - infinispan-anchored-keys - 14.0.9.Final - - - org.infinispan.protostream - protostream - 4.6.2.Final - - - org.infinispan.protostream - protostream-types - 4.6.2.Final - - - org.infinispan.protostream - protostream-processor - 4.6.2.Final - provided - - - org.infinispan - infinispan-cloudevents-integration - 14.0.9.Final - - - org.infinispan - infinispan-marshaller-kryo - 14.0.9.Final - - - org.infinispan - infinispan-marshaller-kryo-bundle - 14.0.9.Final - - - org.infinispan - infinispan-marshaller-protostuff - 14.0.9.Final - - - org.infinispan - infinispan-marshaller-protostuff-bundle - 14.0.9.Final - - - com.fasterxml.jackson.core - jackson-annotations - 2.15.0 - - - com.fasterxml.jackson.core - jackson-core - 2.15.0 - - - com.fasterxml.jackson.core - jackson-databind - 2.15.0 - - - com.fasterxml.jackson.dataformat - jackson-dataformat-avro - 2.15.0 - - - com.fasterxml.jackson.dataformat - jackson-dataformat-cbor - 2.15.0 - - - com.fasterxml.jackson.dataformat - jackson-dataformat-csv - 2.15.0 - - - com.fasterxml.jackson.dataformat - jackson-dataformat-ion - 2.15.0 - - - com.fasterxml.jackson.dataformat - jackson-dataformat-properties - 2.15.0 - - - com.fasterxml.jackson.dataformat - jackson-dataformat-protobuf - 2.15.0 - - - com.fasterxml.jackson.dataformat - jackson-dataformat-smile - 2.15.0 - - - com.fasterxml.jackson.dataformat - jackson-dataformat-toml - 2.15.0 - - - com.fasterxml.jackson.dataformat - jackson-dataformat-xml - 2.15.0 - - - com.fasterxml.jackson.dataformat - jackson-dataformat-yaml - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-eclipse-collections - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-guava - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-hibernate4 - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-hibernate5 - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-hibernate5-jakarta - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-hibernate6 - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-hppc - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-jakarta-jsonp - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-jaxrs - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-joda - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-joda-money - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-jdk8 - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-json-org - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-jsr310 - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-jsr353 - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-pcollections - 2.15.0 - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-base - 2.15.0 - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-cbor-provider - 2.15.0 - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-json-provider - 2.15.0 - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-smile-provider - 2.15.0 - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-xml-provider - 2.15.0 - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-yaml-provider - 2.15.0 - - - com.fasterxml.jackson.jakarta.rs - jackson-jakarta-rs-base - 2.15.0 - - - com.fasterxml.jackson.jakarta.rs - jackson-jakarta-rs-cbor-provider - 2.15.0 - - - com.fasterxml.jackson.jakarta.rs - jackson-jakarta-rs-json-provider - 2.15.0 - - - com.fasterxml.jackson.jakarta.rs - jackson-jakarta-rs-smile-provider - 2.15.0 - - - com.fasterxml.jackson.jakarta.rs - jackson-jakarta-rs-xml-provider - 2.15.0 - - - com.fasterxml.jackson.jakarta.rs - jackson-jakarta-rs-yaml-provider - 2.15.0 - - - com.fasterxml.jackson.jr - jackson-jr-all - 2.15.0 - - - com.fasterxml.jackson.jr - jackson-jr-annotation-support - 2.15.0 - - - com.fasterxml.jackson.jr - jackson-jr-objects - 2.15.0 - - - com.fasterxml.jackson.jr - jackson-jr-retrofit2 - 2.15.0 - - - com.fasterxml.jackson.jr - jackson-jr-stree - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-afterburner - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-blackbird - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-guice - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-jaxb-annotations - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-jakarta-xmlbind-annotations - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-jsonSchema - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-jsonSchema-jakarta - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-kotlin - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-mrbean - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-no-ctor-deser - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-osgi - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-parameter-names - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-paranamer - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-scala_2.11 - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-scala_2.12 - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-scala_2.13 - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-scala_3 - 2.15.0 - - - org.glassfish.jersey.core - jersey-common - 3.1.1 - - - org.glassfish.jersey.core - jersey-client - 3.1.1 - - - org.glassfish.jersey.core - jersey-server - 3.1.1 - - - org.glassfish.jersey.bundles - jaxrs-ri - 3.1.1 - - - org.glassfish.jersey.connectors - jersey-apache-connector - 3.1.1 - - - org.glassfish.jersey.connectors - jersey-apache5-connector - 3.1.1 - - - org.glassfish.jersey.connectors - jersey-helidon-connector - 3.1.1 - - - org.glassfish.jersey.connectors - jersey-grizzly-connector - 3.1.1 - - - org.glassfish.jersey.connectors - jersey-jnh-connector - 3.1.1 - - - org.glassfish.jersey.connectors - jersey-jetty-connector - 3.1.1 - - - org.glassfish.jersey.connectors - jersey-jdk-connector - 3.1.1 - - - org.glassfish.jersey.connectors - jersey-netty-connector - 3.1.1 - - - org.glassfish.jersey.containers - jersey-container-jetty-http - 3.1.1 - - - org.glassfish.jersey.containers - jersey-container-grizzly2-http - 3.1.1 - - - org.glassfish.jersey.containers - jersey-container-grizzly2-servlet - 3.1.1 - - - org.glassfish.jersey.containers - jersey-container-jetty-servlet - 3.1.1 - - - org.glassfish.jersey.containers - jersey-container-jdk-http - 3.1.1 - - - org.glassfish.jersey.containers - jersey-container-netty-http - 3.1.1 - - - org.glassfish.jersey.containers - jersey-container-servlet - 3.1.1 - - - org.glassfish.jersey.containers - jersey-container-servlet-core - 3.1.1 - - - org.glassfish.jersey.containers - jersey-container-simple-http - 3.1.1 - - - org.glassfish.jersey.containers.glassfish - jersey-gf-ejb - 3.1.1 - - - org.glassfish.jersey.ext - jersey-bean-validation - 3.1.1 - - - org.glassfish.jersey.ext - jersey-entity-filtering - 3.1.1 - - - org.glassfish.jersey.ext - jersey-metainf-services - 3.1.1 - - - org.glassfish.jersey.ext.microprofile - jersey-mp-config - 3.1.1 - - - org.glassfish.jersey.ext - jersey-mvc - 3.1.1 - - - org.glassfish.jersey.ext - jersey-mvc-bean-validation - 3.1.1 - - - org.glassfish.jersey.ext - jersey-mvc-freemarker - 3.1.1 - - - org.glassfish.jersey.ext - jersey-mvc-jsp - 3.1.1 - - - org.glassfish.jersey.ext - jersey-mvc-mustache - 3.1.1 - - - org.glassfish.jersey.ext - jersey-proxy-client - 3.1.1 - - - org.glassfish.jersey.ext - jersey-spring6 - 3.1.1 - - - org.glassfish.jersey.ext - jersey-declarative-linking - 3.1.1 - - - org.glassfish.jersey.ext - jersey-wadl-doclet - 3.1.1 - - - org.glassfish.jersey.ext.cdi - jersey-weld2-se - 3.1.1 - - - org.glassfish.jersey.ext.cdi - jersey-cdi1x - 3.1.1 - - - org.glassfish.jersey.ext.cdi - jersey-cdi1x-transaction - 3.1.1 - - - org.glassfish.jersey.ext.cdi - jersey-cdi1x-validation - 3.1.1 - - - org.glassfish.jersey.ext.cdi - jersey-cdi1x-servlet - 3.1.1 - - - org.glassfish.jersey.ext.cdi - jersey-cdi1x-ban-custom-hk2-binding - 3.1.1 - - - org.glassfish.jersey.ext.cdi - jersey-cdi-rs-inject - 3.1.1 - - - org.glassfish.jersey.ext.rx - jersey-rx-client-guava - 3.1.1 - - - org.glassfish.jersey.ext.rx - jersey-rx-client-rxjava - 3.1.1 - - - org.glassfish.jersey.ext.rx - jersey-rx-client-rxjava2 - 3.1.1 - - - org.glassfish.jersey.ext.microprofile - jersey-mp-rest-client - 3.1.1 - - - org.glassfish.jersey.media - jersey-media-jaxb - 3.1.1 - - - org.glassfish.jersey.media - jersey-media-json-jackson - 3.1.1 - - - org.glassfish.jersey.media - jersey-media-json-jettison - 3.1.1 - - - org.glassfish.jersey.media - jersey-media-json-processing - 3.1.1 - - - org.glassfish.jersey.media - jersey-media-json-gson - 3.1.1 - - - org.glassfish.jersey.media - jersey-media-json-binding - 3.1.1 - - - org.glassfish.jersey.media - jersey-media-kryo - 3.1.1 - - - org.glassfish.jersey.media - jersey-media-moxy - 3.1.1 - - - org.glassfish.jersey.media - jersey-media-multipart - 3.1.1 - - - org.glassfish.jersey.media - jersey-media-sse - 3.1.1 - - - org.glassfish.jersey.security - oauth1-client - 3.1.1 - - - org.glassfish.jersey.security - oauth1-server - 3.1.1 - - - org.glassfish.jersey.security - oauth1-signature - 3.1.1 - - - org.glassfish.jersey.security - oauth2-client - 3.1.1 - - - org.glassfish.jersey.inject - jersey-hk2 - 3.1.1 - - - org.glassfish.jersey.inject - jersey-cdi2-se - 3.1.1 - - - org.glassfish.jersey.test-framework - jersey-test-framework-core - 3.1.1 - - - org.glassfish.jersey.test-framework.providers - jersey-test-framework-provider-bundle - 3.1.1 - pom - - - org.glassfish.jersey.test-framework.providers - jersey-test-framework-provider-external - 3.1.1 - - - org.glassfish.jersey.test-framework.providers - jersey-test-framework-provider-grizzly2 - 3.1.1 - - - org.glassfish.jersey.test-framework.providers - jersey-test-framework-provider-inmemory - 3.1.1 - - - org.glassfish.jersey.test-framework.providers - jersey-test-framework-provider-jdk-http - 3.1.1 - - - org.glassfish.jersey.test-framework.providers - jersey-test-framework-provider-simple - 3.1.1 - - - org.glassfish.jersey.test-framework.providers - jersey-test-framework-provider-jetty - 3.1.1 - - - org.glassfish.jersey.test-framework - jersey-test-framework-util - 3.1.1 - - - org.eclipse.jetty - apache-jsp - 11.0.15 - - - org.eclipse.jetty - glassfish-jstl - 11.0.15 - - - org.eclipse.jetty - jetty-alpn-client - 11.0.15 - - - org.eclipse.jetty - jetty-alpn-java-client - 11.0.15 - - - org.eclipse.jetty - jetty-alpn-java-server - 11.0.15 - - - org.eclipse.jetty - jetty-alpn-conscrypt-client - 11.0.15 - - - org.eclipse.jetty - jetty-alpn-conscrypt-server - 11.0.15 - - - org.eclipse.jetty - jetty-alpn-server - 11.0.15 - - - org.eclipse.jetty - jetty-annotations - 11.0.15 - - - org.eclipse.jetty - jetty-ant - 11.0.15 - - - org.eclipse.jetty - jetty-client - 11.0.15 - - - org.eclipse.jetty - jetty-cdi - 11.0.15 - - - org.eclipse.jetty - jetty-deploy - 11.0.15 - - - org.eclipse.jetty.fcgi - fcgi-client - 11.0.15 - - - org.eclipse.jetty.fcgi - fcgi-server - 11.0.15 - - - org.eclipse.jetty.gcloud - jetty-gcloud-session-manager - 11.0.15 - - - org.eclipse.jetty - jetty-home - 11.0.15 - zip - - - org.eclipse.jetty - jetty-home - 11.0.15 - tar.gz - - - org.eclipse.jetty - jetty-http - 11.0.15 - - - org.eclipse.jetty.http2 - http2-client - 11.0.15 - - - org.eclipse.jetty.http2 - http2-common - 11.0.15 - - - org.eclipse.jetty.http2 - http2-hpack - 11.0.15 - - - org.eclipse.jetty.http2 - http2-http-client-transport - 11.0.15 - - - org.eclipse.jetty.http2 - http2-server - 11.0.15 - - - org.eclipse.jetty.http3 - http3-client - 11.0.15 - - - org.eclipse.jetty.http3 - http3-common - 11.0.15 - - - org.eclipse.jetty.http3 - http3-http-client-transport - 11.0.15 - - - org.eclipse.jetty.http3 - http3-qpack - 11.0.15 - - - org.eclipse.jetty.http3 - http3-server - 11.0.15 - - - org.eclipse.jetty - jetty-http-spi - 11.0.15 - - - org.eclipse.jetty - infinispan-common - 11.0.15 - - - org.eclipse.jetty - infinispan-remote-query - 11.0.15 - - - org.eclipse.jetty - infinispan-embedded-query - 11.0.15 - - - org.eclipse.jetty - jetty-hazelcast - 11.0.15 - - - org.eclipse.jetty - jetty-io - 11.0.15 - - - org.eclipse.jetty - jetty-jaas - 11.0.15 - - - org.eclipse.jetty - jetty-jaspi - 11.0.15 - - - org.eclipse.jetty - jetty-jmx - 11.0.15 - - - org.eclipse.jetty - jetty-jndi - 11.0.15 - - - org.eclipse.jetty - jetty-keystore - 11.0.15 - - - org.eclipse.jetty.memcached - jetty-memcached-sessions - 11.0.15 - - - org.eclipse.jetty - jetty-nosql - 11.0.15 - - - org.eclipse.jetty.osgi - jetty-osgi-alpn - 11.0.15 - - - org.eclipse.jetty.osgi - jetty-osgi-boot - 11.0.15 - - - org.eclipse.jetty.osgi - jetty-osgi-boot-jsp - 11.0.15 - - - org.eclipse.jetty.osgi - jetty-osgi-boot-warurl - 11.0.15 - - - org.eclipse.jetty.quic - quic-client - 11.0.15 - - - org.eclipse.jetty.quic - quic-common - 11.0.15 - - - org.eclipse.jetty.quic - quic-quiche-common - 11.0.15 - - - org.eclipse.jetty.quic - quic-quiche-jna - 11.0.15 - - - org.eclipse.jetty.quic - quic-server - 11.0.15 - - - org.eclipse.jetty.osgi - jetty-httpservice - 11.0.15 - - - org.eclipse.jetty - jetty-plus - 11.0.15 - - - org.eclipse.jetty - jetty-proxy - 11.0.15 - - - org.eclipse.jetty - jetty-quickstart - 11.0.15 - - - org.eclipse.jetty - jetty-rewrite - 11.0.15 - - - org.eclipse.jetty - jetty-security - 11.0.15 - - - org.eclipse.jetty - jetty-openid - 11.0.15 - - - org.eclipse.jetty - jetty-server - 11.0.15 - - - org.eclipse.jetty - jetty-servlet - 11.0.15 - - - org.eclipse.jetty - jetty-servlets - 11.0.15 - - - org.eclipse.jetty - jetty-slf4j-impl - 11.0.15 - - - org.eclipse.jetty - jetty-unixdomain-server - 11.0.15 - - - org.eclipse.jetty - jetty-unixsocket-common - 11.0.15 - - - org.eclipse.jetty - jetty-unixsocket-client - 11.0.15 - - - org.eclipse.jetty - jetty-unixsocket-server - 11.0.15 - - - org.eclipse.jetty - jetty-util - 11.0.15 - - - org.eclipse.jetty - jetty-util-ajax - 11.0.15 - - - org.eclipse.jetty - jetty-webapp - 11.0.15 - - - org.eclipse.jetty.websocket - websocket-jakarta-client - 11.0.15 - - - org.eclipse.jetty.websocket - websocket-jakarta-server - 11.0.15 - - - org.eclipse.jetty.websocket - websocket-jakarta-common - 11.0.15 - - - org.eclipse.jetty.websocket - websocket-jetty-api - 11.0.15 - - - org.eclipse.jetty.websocket - websocket-jetty-client - 11.0.15 - - - org.eclipse.jetty.websocket - websocket-jetty-common - 11.0.15 - - - org.eclipse.jetty.websocket - websocket-jetty-server - 11.0.15 - - - org.eclipse.jetty.websocket - websocket-servlet - 11.0.15 - - - org.eclipse.jetty.websocket - websocket-core-common - 11.0.15 - - - org.eclipse.jetty.websocket - websocket-core-client - 11.0.15 - - - org.eclipse.jetty.websocket - websocket-core-server - 11.0.15 - - - org.eclipse.jetty - jetty-xml - 11.0.15 - - - org.junit.jupiter - junit-jupiter - 5.9.3 - - - org.junit.jupiter - junit-jupiter-api - 5.9.3 - - - org.junit.jupiter - junit-jupiter-engine - 5.9.3 - - - org.junit.jupiter - junit-jupiter-migrationsupport - 5.9.3 - - - org.junit.jupiter - junit-jupiter-params - 5.9.3 - - - org.junit.platform - junit-platform-commons - 1.9.3 - - - org.junit.platform - junit-platform-console - 1.9.3 - - - org.junit.platform - junit-platform-engine - 1.9.3 - - - org.junit.platform - junit-platform-jfr - 1.9.3 - - - org.junit.platform - junit-platform-launcher - 1.9.3 - - - org.junit.platform - junit-platform-reporting - 1.9.3 - - - org.junit.platform - junit-platform-runner - 1.9.3 - - - org.junit.platform - junit-platform-suite - 1.9.3 - - - org.junit.platform - junit-platform-suite-api - 1.9.3 - - - org.junit.platform - junit-platform-suite-commons - 1.9.3 - - - org.junit.platform - junit-platform-suite-engine - 1.9.3 - - - org.junit.platform - junit-platform-testkit - 1.9.3 - - - org.junit.vintage - junit-vintage-engine - 5.9.3 - - - org.jetbrains.kotlin - kotlin-stdlib - 1.8.21 - - - org.jetbrains.kotlin - kotlin-stdlib-jdk7 - 1.8.21 - - - org.jetbrains.kotlin - kotlin-stdlib-jdk8 - 1.8.21 - - - org.jetbrains.kotlin - kotlin-stdlib-js - 1.8.21 - - - org.jetbrains.kotlin - kotlin-stdlib-common - 1.8.21 - - - org.jetbrains.kotlin - kotlin-reflect - 1.8.21 - - - org.jetbrains.kotlin - kotlin-osgi-bundle - 1.8.21 - - - org.jetbrains.kotlin - kotlin-test - 1.8.21 - - - org.jetbrains.kotlin - kotlin-test-junit - 1.8.21 - - - org.jetbrains.kotlin - kotlin-test-junit5 - 1.8.21 - - - org.jetbrains.kotlin - kotlin-test-testng - 1.8.21 - - - org.jetbrains.kotlin - kotlin-test-js - 1.8.21 - - - org.jetbrains.kotlin - kotlin-test-common - 1.8.21 - - - org.jetbrains.kotlin - kotlin-test-annotations-common - 1.8.21 - - - org.jetbrains.kotlin - kotlin-main-kts - 1.8.21 - - - org.jetbrains.kotlin - kotlin-script-runtime - 1.8.21 - - - org.jetbrains.kotlin - kotlin-script-util - 1.8.21 - - - org.jetbrains.kotlin - kotlin-scripting-common - 1.8.21 - - - org.jetbrains.kotlin - kotlin-scripting-jvm - 1.8.21 - - - org.jetbrains.kotlin - kotlin-scripting-jvm-host - 1.8.21 - - - org.jetbrains.kotlin - kotlin-scripting-ide-services - 1.8.21 - - - org.jetbrains.kotlin - kotlin-compiler - 1.8.21 - - - org.jetbrains.kotlin - kotlin-compiler-embeddable - 1.8.21 - - - org.jetbrains.kotlin - kotlin-daemon-client - 1.8.21 - - - org.jetbrains.kotlinx - kotlinx-coroutines-android - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-core-jvm - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-core - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-debug - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-guava - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-javafx - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-jdk8 - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-jdk9 - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-play-services - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-reactive - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-reactor - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-rx2 - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-rx3 - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-slf4j - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-swing - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-test-jvm - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-test - 1.6.4 - - - org.apache.logging.log4j - log4j-1.2-api - 2.20.0 - - - org.apache.logging.log4j - log4j-api - 2.20.0 - - - org.apache.logging.log4j - log4j-api-test - 2.20.0 - - - org.apache.logging.log4j - log4j-appserver - 2.20.0 - - - org.apache.logging.log4j - log4j-cassandra - 2.20.0 - - - org.apache.logging.log4j - log4j-core - 2.20.0 - - - org.apache.logging.log4j - log4j-core-test - 2.20.0 - - - org.apache.logging.log4j - log4j-couchdb - 2.20.0 - - - org.apache.logging.log4j - log4j-docker - 2.20.0 - - - org.apache.logging.log4j - log4j-flume-ng - 2.20.0 - - - org.apache.logging.log4j - log4j-iostreams - 2.20.0 - - - org.apache.logging.log4j - log4j-jakarta-smtp - 2.20.0 - - - org.apache.logging.log4j - log4j-jakarta-web - 2.20.0 - - - org.apache.logging.log4j - log4j-jcl - 2.20.0 - - - org.apache.logging.log4j - log4j-jmx-gui - 2.20.0 - - - org.apache.logging.log4j - log4j-jpa - 2.20.0 - - - org.apache.logging.log4j - log4j-jpl - 2.20.0 - - - org.apache.logging.log4j - log4j-jul - 2.20.0 - - - org.apache.logging.log4j - log4j-kubernetes - 2.20.0 - - - org.apache.logging.log4j - log4j-layout-template-json - 2.20.0 - - - org.apache.logging.log4j - log4j-layout-template-json-test - 2.20.0 - - - org.apache.logging.log4j - log4j-mongodb3 - 2.20.0 - - - org.apache.logging.log4j - log4j-mongodb4 - 2.20.0 - - - org.apache.logging.log4j - log4j-slf4j2-impl - 2.20.0 - - - org.apache.logging.log4j - log4j-slf4j-impl - 2.20.0 - - - org.apache.logging.log4j - log4j-spring-boot - 2.20.0 - - - org.apache.logging.log4j - log4j-spring-cloud-config-client - 2.20.0 - - - org.apache.logging.log4j - log4j-taglib - 2.20.0 - - - org.apache.logging.log4j - log4j-to-jul - 2.20.0 - - - org.apache.logging.log4j - log4j-to-slf4j - 2.20.0 - - - org.apache.logging.log4j - log4j-web - 2.20.0 - - - org.apache.maven.plugin-tools - maven-plugin-annotations - 3.6.4 - - - io.micrometer - micrometer-commons - 1.11.0 - - - io.micrometer - micrometer-core - 1.11.0 - - - io.micrometer - micrometer-jetty11 - 1.11.0 - - - io.micrometer - micrometer-observation - 1.11.0 - - - io.micrometer - micrometer-observation-test - 1.11.0 - - - io.micrometer - micrometer-osgi-test - 1.11.0 - - - io.micrometer - micrometer-registry-appoptics - 1.11.0 - - - io.micrometer - micrometer-registry-atlas - 1.11.0 - - - io.micrometer - micrometer-registry-azure-monitor - 1.11.0 - - - io.micrometer - micrometer-registry-cloudwatch - 1.11.0 - - - io.micrometer - micrometer-registry-cloudwatch2 - 1.11.0 - - - io.micrometer - micrometer-registry-datadog - 1.11.0 - - - io.micrometer - micrometer-registry-dynatrace - 1.11.0 - - - io.micrometer - micrometer-registry-elastic - 1.11.0 - - - io.micrometer - micrometer-registry-ganglia - 1.11.0 - - - io.micrometer - micrometer-registry-graphite - 1.11.0 - - - io.micrometer - micrometer-registry-health - 1.11.0 - - - io.micrometer - micrometer-registry-humio - 1.11.0 - - - io.micrometer - micrometer-registry-influx - 1.11.0 - - - io.micrometer - micrometer-registry-jmx - 1.11.0 - - - io.micrometer - micrometer-registry-kairos - 1.11.0 - - - io.micrometer - micrometer-registry-new-relic - 1.11.0 - - - io.micrometer - micrometer-registry-opentsdb - 1.11.0 - - - io.micrometer - micrometer-registry-otlp - 1.11.0 - - - io.micrometer - micrometer-registry-prometheus - 1.11.0 - - - io.micrometer - micrometer-registry-signalfx - 1.11.0 - - - io.micrometer - micrometer-registry-statsd - 1.11.0 - - - io.micrometer - micrometer-registry-wavefront - 1.11.0 - - - io.micrometer - micrometer-test - 1.11.0 - - - io.micrometer - micrometer-tracing - 1.1.1 - - - io.micrometer - micrometer-tracing-bridge-brave - 1.1.1 - - - io.micrometer - micrometer-tracing-bridge-otel - 1.1.1 - - - io.micrometer - micrometer-tracing-integration-test - 1.1.1 - - - io.micrometer - micrometer-tracing-reporter-wavefront - 1.1.1 - - - io.micrometer - micrometer-tracing-test - 1.1.1 - - - org.mockito - mockito-core - 5.3.1 - - - org.mockito - mockito-android - 5.3.1 - - - org.mockito - mockito-errorprone - 5.3.1 - - - org.mockito - mockito-junit-jupiter - 5.3.1 - - - org.mockito - mockito-proxy - 5.3.1 - - - org.mockito - mockito-subclass - 5.3.1 - - - io.netty - netty-buffer - 4.1.92.Final - - - io.netty - netty-codec - 4.1.92.Final - - - io.netty - netty-codec-dns - 4.1.92.Final - - - io.netty - netty-codec-haproxy - 4.1.92.Final - - - io.netty - netty-codec-http - 4.1.92.Final - - - io.netty - netty-codec-http2 - 4.1.92.Final - - - io.netty - netty-codec-memcache - 4.1.92.Final - - - io.netty - netty-codec-mqtt - 4.1.92.Final - - - io.netty - netty-codec-redis - 4.1.92.Final - - - io.netty - netty-codec-smtp - 4.1.92.Final - - - io.netty - netty-codec-socks - 4.1.92.Final - - - io.netty - netty-codec-stomp - 4.1.92.Final - - - io.netty - netty-codec-xml - 4.1.92.Final - - - io.netty - netty-common - 4.1.92.Final - - - io.netty - netty-dev-tools - 4.1.92.Final - - - io.netty - netty-handler - 4.1.92.Final - - - io.netty - netty-handler-proxy - 4.1.92.Final - - - io.netty - netty-handler-ssl-ocsp - 4.1.92.Final - - - io.netty - netty-resolver - 4.1.92.Final - - - io.netty - netty-resolver-dns - 4.1.92.Final - - - io.netty - netty-transport - 4.1.92.Final - - - io.netty - netty-transport-rxtx - 4.1.92.Final - - - io.netty - netty-transport-sctp - 4.1.92.Final - - - io.netty - netty-transport-udt - 4.1.92.Final - - - io.netty - netty-example - 4.1.92.Final - - - io.netty - netty-all - 4.1.92.Final - - - io.netty - netty-resolver-dns-classes-macos - 4.1.92.Final - - - io.netty - netty-resolver-dns-native-macos - 4.1.92.Final - - - io.netty - netty-resolver-dns-native-macos - 4.1.92.Final - osx-x86_64 - - - io.netty - netty-resolver-dns-native-macos - 4.1.92.Final - osx-aarch_64 - - - io.netty - netty-transport-native-unix-common - 4.1.92.Final - - - io.netty - netty-transport-native-unix-common - 4.1.92.Final - linux-aarch_64 - - - io.netty - netty-transport-native-unix-common - 4.1.92.Final - linux-x86_64 - - - io.netty - netty-transport-native-unix-common - 4.1.92.Final - osx-x86_64 - - - io.netty - netty-transport-native-unix-common - 4.1.92.Final - osx-aarch_64 - - - io.netty - netty-transport-classes-epoll - 4.1.92.Final - - - io.netty - netty-transport-native-epoll - 4.1.92.Final - - - io.netty - netty-transport-native-epoll - 4.1.92.Final - linux-aarch_64 - - - io.netty - netty-transport-native-epoll - 4.1.92.Final - linux-x86_64 - - - io.netty - netty-transport-classes-kqueue - 4.1.92.Final - - - io.netty - netty-transport-native-kqueue - 4.1.92.Final - - - io.netty - netty-transport-native-kqueue - 4.1.92.Final - osx-x86_64 - - - io.netty - netty-transport-native-kqueue - 4.1.92.Final - osx-aarch_64 - - - io.netty - netty-tcnative-classes - 2.0.60.Final - - - io.netty - netty-tcnative - 2.0.60.Final - linux-x86_64 - - - io.netty - netty-tcnative - 2.0.60.Final - linux-x86_64-fedora - - - io.netty - netty-tcnative - 2.0.60.Final - linux-aarch_64-fedora - - - io.netty - netty-tcnative - 2.0.60.Final - osx-x86_64 - - - io.netty - netty-tcnative-boringssl-static - 2.0.60.Final - - - io.netty - netty-tcnative-boringssl-static - 2.0.60.Final - linux-x86_64 - - - io.netty - netty-tcnative-boringssl-static - 2.0.60.Final - linux-aarch_64 - - - io.netty - netty-tcnative-boringssl-static - 2.0.60.Final - osx-x86_64 - - - io.netty - netty-tcnative-boringssl-static - 2.0.60.Final - osx-aarch_64 - - - io.netty - netty-tcnative-boringssl-static - 2.0.60.Final - windows-x86_64 - - - com.squareup.okhttp3 - mockwebserver - 4.10.0 - - - com.squareup.okhttp3 - okcurl - 4.10.0 - - - com.squareup.okhttp3 - okhttp - 4.10.0 - - - com.squareup.okhttp3 - okhttp-brotli - 4.10.0 - - - com.squareup.okhttp3 - okhttp-dnsoverhttps - 4.10.0 - - - com.squareup.okhttp3 - logging-interceptor - 4.10.0 - - - com.squareup.okhttp3 - okhttp-sse - 4.10.0 - - - com.squareup.okhttp3 - okhttp-tls - 4.10.0 - - - com.squareup.okhttp3 - okhttp-urlconnection - 4.10.0 - - - io.opentelemetry - opentelemetry-context - 1.25.0 - - - io.opentelemetry - opentelemetry-api - 1.25.0 - - - io.opentelemetry - opentelemetry-exporter-common - 1.25.0 - - - io.opentelemetry - opentelemetry-exporter-jaeger - 1.25.0 - - - io.opentelemetry - opentelemetry-exporter-jaeger-thrift - 1.25.0 - - - io.opentelemetry - opentelemetry-exporter-logging - 1.25.0 - - - io.opentelemetry - opentelemetry-exporter-logging-otlp - 1.25.0 - - - io.opentelemetry - opentelemetry-exporter-zipkin - 1.25.0 - - - io.opentelemetry - opentelemetry-extension-kotlin - 1.25.0 - - - io.opentelemetry - opentelemetry-extension-trace-propagators - 1.25.0 - - - io.opentelemetry - opentelemetry-sdk - 1.25.0 - - - io.opentelemetry - opentelemetry-sdk-common - 1.25.0 - - - io.opentelemetry - opentelemetry-sdk-metrics - 1.25.0 - - - io.opentelemetry - opentelemetry-sdk-testing - 1.25.0 - - - io.opentelemetry - opentelemetry-sdk-trace - 1.25.0 - - - io.opentelemetry - opentelemetry-sdk-extension-autoconfigure-spi - 1.25.0 - - - io.opentelemetry - opentelemetry-sdk-extension-jaeger-remote-sampler - 1.25.0 - - - io.opentelemetry - opentelemetry-exporter-otlp - 1.25.0 - - - io.opentelemetry - opentelemetry-exporter-otlp-common - 1.25.0 - - - io.opentelemetry - opentelemetry-sdk-extension-aws - 1.19.0 - - - io.opentelemetry - opentelemetry-exporter-jaeger-proto - 1.17.0 - - - io.opentelemetry - opentelemetry-extension-annotations - 1.18.0 - - - io.opentelemetry - opentelemetry-sdk-extension-resources - 1.19.0 - - - io.opentelemetry - opentelemetry-extension-aws - 1.20.1 - - - com.oracle.database.jdbc - ojdbc11 - 21.9.0.0 - - - com.oracle.database.jdbc - ojdbc8 - 21.9.0.0 - - - com.oracle.database.jdbc - ucp - 21.9.0.0 - - - com.oracle.database.jdbc - ucp11 - 21.9.0.0 - - - com.oracle.database.jdbc - rsi - 21.9.0.0 - - - com.oracle.database.security - oraclepki - 21.9.0.0 - - - com.oracle.database.security - osdt_core - 21.9.0.0 - - - com.oracle.database.security - osdt_cert - 21.9.0.0 - - - com.oracle.database.ha - simplefan - 21.9.0.0 - - - com.oracle.database.ha - ons - 21.9.0.0 - - - com.oracle.database.nls - orai18n - 21.9.0.0 - - - com.oracle.database.xml - xdb - 21.9.0.0 - - - com.oracle.database.xml - xmlparserv2 - 21.9.0.0 - - - com.oracle.database.jdbc.debug - ojdbc11_g - 21.9.0.0 - - - com.oracle.database.jdbc.debug - ojdbc8_g - 21.9.0.0 - - - com.oracle.database.jdbc.debug - ojdbc8dms_g - 21.9.0.0 - - - com.oracle.database.jdbc.debug - ojdbc11dms_g - 21.9.0.0 - - - com.oracle.database.observability - dms - 21.9.0.0 - - - com.oracle.database.observability - ojdbc11dms - 21.9.0.0 - - - com.oracle.database.observability - ojdbc8dms - 21.9.0.0 - - - com.oracle.database.jdbc - ojdbc11-production - 21.9.0.0 - pom - - - com.oracle.database.jdbc - ojdbc8-production - 21.9.0.0 - pom - - - com.oracle.database.observability - ojdbc8-observability - 21.9.0.0 - pom - - - com.oracle.database.observability - ojdbc11-observability - 21.9.0.0 - pom - - - com.oracle.database.jdbc.debug - ojdbc8-debug - 21.9.0.0 - pom - - - com.oracle.database.jdbc.debug - ojdbc11-debug - 21.9.0.0 - pom - - - com.oracle.database.jdbc.debug - ojdbc8-observability-debug - 21.9.0.0 - pom - - - com.oracle.database.jdbc.debug - ojdbc11-observability-debug - 21.9.0.0 - pom - - - io.prometheus - simpleclient - 0.16.0 - - - io.prometheus - simpleclient_caffeine - 0.16.0 - - - io.prometheus - simpleclient_common - 0.16.0 - - - io.prometheus - simpleclient_dropwizard - 0.16.0 - - - io.prometheus - simpleclient_graphite_bridge - 0.16.0 - - - io.prometheus - simpleclient_guava - 0.16.0 - - - io.prometheus - simpleclient_hibernate - 0.16.0 - - - io.prometheus - simpleclient_hotspot - 0.16.0 - - - io.prometheus - simpleclient_httpserver - 0.16.0 - - - io.prometheus - simpleclient_tracer_common - 0.16.0 - - - io.prometheus - simpleclient_jetty - 0.16.0 - - - io.prometheus - simpleclient_jetty_jdk8 - 0.16.0 - - - io.prometheus - simpleclient_log4j - 0.16.0 - - - io.prometheus - simpleclient_log4j2 - 0.16.0 - - - io.prometheus - simpleclient_logback - 0.16.0 - - - io.prometheus - simpleclient_pushgateway - 0.16.0 - - - io.prometheus - simpleclient_servlet - 0.16.0 - - - io.prometheus - simpleclient_servlet_jakarta - 0.16.0 - - - io.prometheus - simpleclient_spring_boot - 0.16.0 - - - io.prometheus - simpleclient_spring_web - 0.16.0 - - - io.prometheus - simpleclient_tracer_otel - 0.16.0 - - - io.prometheus - simpleclient_tracer_otel_agent - 0.16.0 - - - io.prometheus - simpleclient_vertx - 0.16.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 - - - io.projectreactor - reactor-core - 3.5.6 - - - io.projectreactor - reactor-test - 3.5.6 - - - io.projectreactor - reactor-tools - 3.5.6 - - - io.projectreactor - reactor-core-micrometer - 1.0.6 - - - io.projectreactor.addons - reactor-extra - 3.5.1 - - - io.projectreactor.addons - reactor-adapter - 3.5.1 - - - io.projectreactor.netty - reactor-netty - 1.1.7 - - - io.projectreactor.netty - reactor-netty-core - 1.1.7 - - - io.projectreactor.netty - reactor-netty-http - 1.1.7 - - - io.projectreactor.netty - reactor-netty-http-brave - 1.1.7 - - - io.projectreactor.addons - reactor-pool - 1.0.0 - - - io.projectreactor.addons - reactor-pool-micrometer - 0.1.0 - - - io.projectreactor.kotlin - reactor-kotlin-extensions - 1.2.2 - - - io.projectreactor.kafka - reactor-kafka - 1.3.18 - - - io.rest-assured - json-schema-validator - 5.3.0 - - - io.rest-assured - rest-assured-common - 5.3.0 - - - io.rest-assured - json-path - 5.3.0 - - - io.rest-assured - xml-path - 5.3.0 - - - io.rest-assured - rest-assured - 5.3.0 - - - io.rest-assured - spring-commons - 5.3.0 - - - io.rest-assured - spring-mock-mvc - 5.3.0 - - - io.rest-assured - scala-support - 5.3.0 - - - io.rest-assured - spring-web-test-client - 5.3.0 - - - io.rest-assured - kotlin-extensions - 5.3.0 - - - io.rest-assured - spring-mock-mvc-kotlin-extensions - 5.3.0 - - - io.rest-assured - rest-assured-all - 5.3.0 - - - io.rsocket - rsocket-core - 1.1.3 - - - io.rsocket - rsocket-load-balancer - 1.1.3 - - - io.rsocket - rsocket-micrometer - 1.1.3 - - - io.rsocket - rsocket-test - 1.1.3 - - - io.rsocket - rsocket-transport-local - 1.1.3 - - - io.rsocket - rsocket-transport-netty - 1.1.3 - - - org.springframework.batch - spring-batch-core - 5.0.2 - - - org.springframework.batch - spring-batch-infrastructure - 5.0.2 - - - org.springframework.batch - spring-batch-integration - 5.0.2 - - - org.springframework.batch - spring-batch-test - 5.0.2 - - - org.springframework.data - spring-data-cassandra - 4.1.0 - - - org.springframework.data - spring-data-commons - 3.1.0 - - - org.springframework.data - spring-data-couchbase - 5.1.0 - - - org.springframework.data - spring-data-elasticsearch - 5.1.0 - - - org.springframework.data - spring-data-jdbc - 3.1.0 - - - org.springframework.data - spring-data-r2dbc - 3.1.0 - - - org.springframework.data - spring-data-relational - 3.1.0 - - - org.springframework.data - spring-data-jpa - 3.1.0 - - - org.springframework.data - spring-data-envers - 3.1.0 - - - org.springframework.data - spring-data-mongodb - 4.1.0 - - - org.springframework.data - spring-data-neo4j - 7.1.0 - - - org.springframework.data - spring-data-redis - 3.1.0 - - - org.springframework.data - spring-data-rest-webmvc - 4.1.0 - - - org.springframework.data - spring-data-rest-core - 4.1.0 - - - org.springframework.data - spring-data-rest-hal-explorer - 4.1.0 - - - org.springframework.data - spring-data-keyvalue - 3.1.0 - - - org.springframework.data - spring-data-ldap - 3.1.0 - - - org.springframework - spring-aop - 6.0.9 - - - org.springframework - spring-aspects - 6.0.9 - - - org.springframework - spring-beans - 6.0.9 - - - org.springframework - spring-context - 6.0.9 - - - org.springframework - spring-context-indexer - 6.0.9 - - - org.springframework - spring-context-support - 6.0.9 - - - org.springframework - spring-core - 6.0.9 - - - org.springframework - spring-core-test - 6.0.9 - - - org.springframework - spring-expression - 6.0.9 - - - org.springframework - spring-instrument - 6.0.9 - - - org.springframework - spring-jcl - 6.0.9 - - - org.springframework - spring-jdbc - 6.0.9 - - - org.springframework - spring-jms - 6.0.9 - - - org.springframework - spring-messaging - 6.0.9 - - - org.springframework - spring-orm - 6.0.9 - - - org.springframework - spring-oxm - 6.0.9 - - - org.springframework - spring-r2dbc - 6.0.9 - - - org.springframework - spring-test - 6.0.9 - - - org.springframework - spring-tx - 6.0.9 - - - org.springframework - spring-web - 6.0.9 - - - org.springframework - spring-webflux - 6.0.9 - - - org.springframework - spring-webmvc - 6.0.9 - - - org.springframework - spring-websocket - 6.0.9 - - - org.springframework.integration - spring-integration-amqp - 6.1.0 - - - org.springframework.integration - spring-integration-camel - 6.1.0 - - - org.springframework.integration - spring-integration-cassandra - 6.1.0 - - - org.springframework.integration - spring-integration-core - 6.1.0 - - - org.springframework.integration - spring-integration-event - 6.1.0 - - - org.springframework.integration - spring-integration-feed - 6.1.0 - - - org.springframework.integration - spring-integration-file - 6.1.0 - - - org.springframework.integration - spring-integration-ftp - 6.1.0 - - - org.springframework.integration - spring-integration-graphql - 6.1.0 - - - org.springframework.integration - spring-integration-groovy - 6.1.0 - - - org.springframework.integration - spring-integration-hazelcast - 6.1.0 - - - org.springframework.integration - spring-integration-http - 6.1.0 - - - org.springframework.integration - spring-integration-ip - 6.1.0 - - - org.springframework.integration - spring-integration-jdbc - 6.1.0 - - - org.springframework.integration - spring-integration-jms - 6.1.0 - - - org.springframework.integration - spring-integration-jmx - 6.1.0 - - - org.springframework.integration - spring-integration-jpa - 6.1.0 - - - org.springframework.integration - spring-integration-kafka - 6.1.0 - - - org.springframework.integration - spring-integration-mail - 6.1.0 - - - org.springframework.integration - spring-integration-mongodb - 6.1.0 - - - org.springframework.integration - spring-integration-mqtt - 6.1.0 - - - org.springframework.integration - spring-integration-r2dbc - 6.1.0 - - - org.springframework.integration - spring-integration-redis - 6.1.0 - - - org.springframework.integration - spring-integration-rsocket - 6.1.0 - - - org.springframework.integration - spring-integration-scripting - 6.1.0 - - - org.springframework.integration - spring-integration-security - 6.1.0 - - - org.springframework.integration - spring-integration-sftp - 6.1.0 - - - org.springframework.integration - spring-integration-smb - 6.1.0 - - - org.springframework.integration - spring-integration-stomp - 6.1.0 - - - org.springframework.integration - spring-integration-stream - 6.1.0 - - - org.springframework.integration - spring-integration-syslog - 6.1.0 - - - org.springframework.integration - spring-integration-test - 6.1.0 - - - org.springframework.integration - spring-integration-test-support - 6.1.0 - - - org.springframework.integration - spring-integration-webflux - 6.1.0 - - - org.springframework.integration - spring-integration-websocket - 6.1.0 - - - org.springframework.integration - spring-integration-ws - 6.1.0 - - - org.springframework.integration - spring-integration-xml - 6.1.0 - - - org.springframework.integration - spring-integration-xmpp - 6.1.0 - - - org.springframework.integration - spring-integration-zeromq - 6.1.0 - - - org.springframework.integration - spring-integration-zip - 6.1.0 - - - org.springframework.integration - spring-integration-zookeeper - 6.1.0 - - - org.springframework.restdocs - spring-restdocs-asciidoctor - 3.0.0 - - - org.springframework.restdocs - spring-restdocs-core - 3.0.0 - - - org.springframework.restdocs - spring-restdocs-mockmvc - 3.0.0 - - - org.springframework.restdocs - spring-restdocs-restassured - 3.0.0 - - - org.springframework.restdocs - spring-restdocs-webtestclient - 3.0.0 - - - org.springframework.security - spring-security-acl - 6.1.0 - - - org.springframework.security - spring-security-aspects - 6.1.0 - - - org.springframework.security - spring-security-cas - 6.1.0 - - - org.springframework.security - spring-security-config - 6.1.0 - - - org.springframework.security - spring-security-core - 6.1.0 - - - org.springframework.security - spring-security-crypto - 6.1.0 - - - org.springframework.security - spring-security-data - 6.1.0 - - - org.springframework.security - spring-security-ldap - 6.1.0 - - - org.springframework.security - spring-security-messaging - 6.1.0 - - - org.springframework.security - spring-security-oauth2-client - 6.1.0 - - - org.springframework.security - spring-security-oauth2-core - 6.1.0 - - - org.springframework.security - spring-security-oauth2-jose - 6.1.0 - - - org.springframework.security - spring-security-oauth2-resource-server - 6.1.0 - - - org.springframework.security - spring-security-rsocket - 6.1.0 - - - org.springframework.security - spring-security-saml2-service-provider - 6.1.0 - - - org.springframework.security - spring-security-taglibs - 6.1.0 - - - org.springframework.security - spring-security-test - 6.1.0 - - - org.springframework.security - spring-security-web - 6.1.0 - - - org.springframework.session - spring-session-core - 3.1.0 - - - org.springframework.session - spring-session-data-mongodb - 3.1.0 - - - org.springframework.session - spring-session-data-redis - 3.1.0 - - - org.springframework.session - spring-session-hazelcast - 3.1.0 - - - org.springframework.session - spring-session-jdbc - 3.1.0 - - - org.springframework.ws - spring-ws-core - 4.0.4 - - - org.springframework.ws - spring-ws-security - 4.0.4 - - - org.springframework.ws - spring-ws-support - 4.0.4 - - - org.springframework.ws - spring-ws-test - 4.0.4 - - - org.springframework.ws - spring-xml - 4.0.4 - - - - - - org.springframework.boot - spring-boot-starter-test - 3.1.0 - compile - - - junit - junit - - - - - org.testcontainers - junit-jupiter - 1.18.3 - compile - - - org.testcontainers - postgresql - 1.18.3 - compile - - - - - repo.jenkins-ci.org - https://repo.jenkins-ci.org/public/ - - - - false - - central - Central Repository - https://repo.maven.apache.org/maven2 - - - - - repo.jenkins-ci.org - https://repo.jenkins-ci.org/public/ - - - - never - - - false - - central - Central Repository - https://repo.maven.apache.org/maven2 - - - - D:\jenkins-oss\plugin-health-scoring\test\src\main\java - D:\jenkins-oss\plugin-health-scoring\test\src\main\scripts - D:\jenkins-oss\plugin-health-scoring\test\src\test\java - D:\jenkins-oss\plugin-health-scoring\test\target\classes - D:\jenkins-oss\plugin-health-scoring\test\target\test-classes - - - D:\jenkins-oss\plugin-health-scoring\test\src\main\resources - - - - - D:\jenkins-oss\plugin-health-scoring\test\src\test\resources - - - D:\jenkins-oss\plugin-health-scoring\test\target - plugin-health-scoring-test-2.4.3-SNAPSHOT - - - - maven-antrun-plugin - 1.3 - - - maven-assembly-plugin - 2.2-beta-5 - - - maven-dependency-plugin - 2.8 - - - maven-checkstyle-plugin - 3.3.0 - - - com.puppycrawl.tools - checkstyle - 10.12.0 - - - - false - true - analytics/checkstyle-configuration.xml - - - - maven-compiler-plugin - 3.11.0 - - 17 - - -parameters - - - - - maven-failsafe-plugin - 3.1.0 - - - - integration-test - verify - - - D:\jenkins-oss\plugin-health-scoring\test\target\classes - - - - - D:\jenkins-oss\plugin-health-scoring\test\target\classes - - - - maven-release-plugin - 3.0.1 - - verify - true - v@{project.version} - - - - maven-surefire-plugin - 3.1.0 - - - com.github.spotbugs - spotbugs-maven-plugin - 4.7.3.4 - - analytics/spotbugs-exclude.xml - Max - - - - org.jacoco - jacoco-maven-plugin - 0.8.10 - - - XML - - - - - - - - maven-failsafe-plugin - 3.1.0 - - - - integration-test - verify - - - D:\jenkins-oss\plugin-health-scoring\test\target\classes - - - - - D:\jenkins-oss\plugin-health-scoring\test\target\classes - - - - org.jacoco - jacoco-maven-plugin - 0.8.10 - - - default-prepare-agent - - prepare-agent - - - - XML - - - - - default-prepare-agent-integration - - prepare-agent-integration - - - - XML - - - - - merge-data-files - post-integration-test - - merge - - - - - D:\jenkins-oss\plugin-health-scoring\test\target - - jacoco.exec - jacoco-it.exec - - - - D:\jenkins-oss\plugin-health-scoring\test\target/jacoco-merged.exec - - XML - - - - - merged-report - post-integration-test - - report - - - D:\jenkins-oss\plugin-health-scoring\test\target/jacoco-merged.exec - - XML - - - - - - - XML - - - - - org.codehaus.mojo - tidy-maven-plugin - 1.2.0 - - - tidy-pom - validate - - pom - - - - - - maven-clean-plugin - 2.5 - - - default-clean - clean - - clean - - - - - - maven-resources-plugin - 2.6 - - - default-testResources - process-test-resources - - testResources - - - - default-resources - process-resources - - resources - - - - - - maven-jar-plugin - 2.4 - - - default-jar - package - - jar - - - - - - maven-compiler-plugin - 3.11.0 - - - default-compile - compile - - compile - - - 17 - - -parameters - - - - - default-testCompile - test-compile - - testCompile - - - 17 - - -parameters - - - - - - 17 - - -parameters - - - - - maven-surefire-plugin - 3.1.0 - - - default-test - test - - test - - - - - - maven-install-plugin - 2.4 - - - default-install - install - - install - - - - - - maven-deploy-plugin - 2.7 - - - default-deploy - deploy - - deploy - - - - - - maven-site-plugin - 3.3 - - - default-site - site - - site - - - D:\jenkins-oss\plugin-health-scoring\test\target\site - - - org.apache.maven.plugins - maven-project-info-reports-plugin - - - - - - default-deploy - site-deploy - - deploy - - - D:\jenkins-oss\plugin-health-scoring\test\target\site - - - org.apache.maven.plugins - maven-project-info-reports-plugin - - - - - - - D:\jenkins-oss\plugin-health-scoring\test\target\site - - - org.apache.maven.plugins - maven-project-info-reports-plugin - - - - - - - - D:\jenkins-oss\plugin-health-scoring\test\target\site - - - - - - - - - - 4.0.0 - - io.jenkins.pluginhealth.scoring - plugin-health-scoring-parent - 2.4.3-SNAPSHOT - ../ - - io.jenkins.pluginhealth.scoring - plugin-health-scoring-core - 2.4.3-SNAPSHOT - Plugin Health Scoring :: Core - Build and provide health indicators on plugins of the Jenkins ecosystem - 2022 - - Jenkins Infra - https://github.com/jenkins-infra - - - - The MIT license - https://opensource.org/licenses/MIT - repo - - - - - adi10hero - Aditya Srivastava - - - alecharp - Adrien Lecharpentier - - - dheerajodha - Dheeraj Singh Jodha - - - jleon33 - Jake Leon - - - - scm:git:https://github.com/jenkins-infra/plugin-health-scoring.git/plugin-health-scoring-core - scm:git:git@github.com:jenkins-infra/plugin-health-scoring.git/plugin-health-scoring-core - https://github.com/jenkins-infra/plugin-health-scoring/plugin-health-scoring-core - - - - maven.jenkins-ci.org - https://repo.jenkins-ci.org/releases/ - - - maven.jenkins-ci.org - https://repo.jenkins-ci.org/snapshots/ - - - - 17 - 0.11.5 - 17 - 17 - 18.10.0 - UTF-8 - UTF-8 - UTF-8 - 3.1.0 - 1.18.3 - ca1a380d840c676152fbf8635a82d838113fe77e1665466699a4e106df4930d2 - 3.2.4 - false - 1.22.19 - - - - - io.jenkins.pluginhealth.scoring - plugin-health-scoring-core - 2.4.3-SNAPSHOT - - - io.jenkins.pluginhealth.scoring - plugin-health-scoring-test - 2.4.3-SNAPSHOT - - - org.kohsuke - github-api - 1.315 - - - io.jsonwebtoken - jjwt-api - 0.11.5 - - - io.jsonwebtoken - jjwt-impl - 0.11.5 - - - io.jsonwebtoken - jjwt-jackson - 0.11.5 - - - org.apache.maven - maven-model - 3.9.2 - - - org.testcontainers - azure - 1.18.3 - - - org.testcontainers - cassandra - 1.18.3 - - - org.testcontainers - clickhouse - 1.18.3 - - - org.testcontainers - cockroachdb - 1.18.3 - - - org.testcontainers - consul - 1.18.3 - - - org.testcontainers - couchbase - 1.18.3 - - - org.testcontainers - cratedb - 1.18.3 - - - org.testcontainers - database-commons - 1.18.3 - - - org.testcontainers - db2 - 1.18.3 - - - org.testcontainers - dynalite - 1.18.3 - - - org.testcontainers - elasticsearch - 1.18.3 - - - org.testcontainers - gcloud - 1.18.3 - - - org.testcontainers - hivemq - 1.18.3 - - - org.testcontainers - influxdb - 1.18.3 - - - org.testcontainers - jdbc - 1.18.3 - - - org.testcontainers - junit-jupiter - 1.18.3 - - - org.testcontainers - k3s - 1.18.3 - - - org.testcontainers - kafka - 1.18.3 - - - org.testcontainers - localstack - 1.18.3 - - - org.testcontainers - mariadb - 1.18.3 - - - org.testcontainers - mockserver - 1.18.3 - - - org.testcontainers - mongodb - 1.18.3 - - - org.testcontainers - mssqlserver - 1.18.3 - - - org.testcontainers - mysql - 1.18.3 - - - org.testcontainers - neo4j - 1.18.3 - - - org.testcontainers - nginx - 1.18.3 - - - org.testcontainers - oracle-xe - 1.18.3 - - - org.testcontainers - orientdb - 1.18.3 - - - org.testcontainers - postgresql - 1.18.3 - - - org.testcontainers - presto - 1.18.3 - - - org.testcontainers - pulsar - 1.18.3 - - - org.testcontainers - questdb - 1.18.3 - - - org.testcontainers - r2dbc - 1.18.3 - - - org.testcontainers - rabbitmq - 1.18.3 - - - org.testcontainers - redpanda - 1.18.3 - - - org.testcontainers - selenium - 1.18.3 - - - org.testcontainers - solace - 1.18.3 - - - org.testcontainers - solr - 1.18.3 - - - org.testcontainers - spock - 1.18.3 - - - org.testcontainers - testcontainers - 1.18.3 - - - org.testcontainers - tidb - 1.18.3 - - - org.testcontainers - toxiproxy - 1.18.3 - - - org.testcontainers - trino - 1.18.3 - - - org.testcontainers - vault - 1.18.3 - - - org.testcontainers - yugabytedb - 1.18.3 - - - org.apache.activemq - activemq-amqp - 5.18.1 - - - org.apache.activemq - activemq-blueprint - 5.18.1 - - - org.apache.activemq - activemq-broker - 5.18.1 - - - org.apache.activemq - activemq-client - 5.18.1 - - - org.apache.activemq - activemq-client-jakarta - 5.18.1 - - - org.apache.activemq - activemq-console - 5.18.1 - - - commons-logging - commons-logging - - - - - org.apache.activemq - activemq-http - 5.18.1 - - - org.apache.activemq - activemq-jaas - 5.18.1 - - - org.apache.activemq - activemq-jdbc-store - 5.18.1 - - - org.apache.activemq - activemq-jms-pool - 5.18.1 - - - org.apache.activemq - activemq-kahadb-store - 5.18.1 - - - org.apache.activemq - activemq-karaf - 5.18.1 - - - org.apache.activemq - activemq-log4j-appender - 5.18.1 - - - org.apache.activemq - activemq-mqtt - 5.18.1 - - - org.apache.activemq - activemq-openwire-generator - 5.18.1 - - - org.apache.activemq - activemq-openwire-legacy - 5.18.1 - - - org.apache.activemq - activemq-osgi - 5.18.1 - - - org.apache.activemq - activemq-partition - 5.18.1 - - - org.apache.activemq - activemq-pool - 5.18.1 - - - org.apache.activemq - activemq-ra - 5.18.1 - - - org.apache.activemq - activemq-run - 5.18.1 - - - org.apache.activemq - activemq-runtime-config - 5.18.1 - - - org.apache.activemq - activemq-shiro - 5.18.1 - - - org.apache.activemq - activemq-spring - 5.18.1 - - - commons-logging - commons-logging - - - - - org.apache.activemq - activemq-stomp - 5.18.1 - - - org.apache.activemq - activemq-web - 5.18.1 - - - org.eclipse.angus - angus-core - 1.1.0 - - - org.eclipse.angus - angus-mail - 1.1.0 - - - org.eclipse.angus - dsn - 1.1.0 - - - org.eclipse.angus - gimap - 1.1.0 - - - org.eclipse.angus - imap - 1.1.0 - - - org.eclipse.angus - jakarta.mail - 1.1.0 - - - org.eclipse.angus - logging-mailhandler - 1.1.0 - - - org.eclipse.angus - pop3 - 1.1.0 - - - org.eclipse.angus - smtp - 1.1.0 - - - org.apache.activemq - artemis-amqp-protocol - 2.28.0 - - - org.apache.activemq - artemis-commons - 2.28.0 - - - org.apache.activemq - artemis-core-client - 2.28.0 - - - org.apache.activemq - artemis-jakarta-client - 2.28.0 - - - org.apache.activemq - artemis-jakarta-server - 2.28.0 - - - org.apache.activemq - artemis-jakarta-service-extensions - 2.28.0 - - - org.apache.activemq - artemis-jdbc-store - 2.28.0 - - - org.apache.activemq - artemis-journal - 2.28.0 - - - org.apache.activemq - artemis-quorum-api - 2.28.0 - - - org.apache.activemq - artemis-selector - 2.28.0 - - - org.apache.activemq - artemis-server - 2.28.0 - - - org.apache.activemq - artemis-service-extensions - 2.28.0 - - - org.aspectj - aspectjrt - 1.9.19 - - - org.aspectj - aspectjtools - 1.9.19 - - - org.aspectj - aspectjweaver - 1.9.19 - - - org.awaitility - awaitility - 4.2.0 - - - org.awaitility - awaitility-groovy - 4.2.0 - - - org.awaitility - awaitility-kotlin - 4.2.0 - - - org.awaitility - awaitility-scala - 4.2.0 - - - net.bytebuddy - byte-buddy - 1.14.4 - - - net.bytebuddy - byte-buddy-agent - 1.14.4 - - - org.cache2k - cache2k-api - 2.6.1.Final - - - org.cache2k - cache2k-config - 2.6.1.Final - - - org.cache2k - cache2k-core - 2.6.1.Final - - - org.cache2k - cache2k-jcache - 2.6.1.Final - - - org.cache2k - cache2k-micrometer - 2.6.1.Final - - - org.cache2k - cache2k-spring - 2.6.1.Final - - - com.github.ben-manes.caffeine - caffeine - 3.1.6 - - - com.github.ben-manes.caffeine - guava - 3.1.6 - - - com.github.ben-manes.caffeine - jcache - 3.1.6 - - - com.github.ben-manes.caffeine - simulator - 3.1.6 - - - com.datastax.oss - java-driver-core - 4.15.0 - - - org.slf4j - jcl-over-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.4.6 - - - com.ibm.db2 - jcc - 11.5.8.0 - - - io.spring.gradle - dependency-management-plugin - 1.1.0 - - - org.apache.derby - derby - 10.16.1.1 - - - org.apache.derby - derbyclient - 10.16.1.1 - - - org.apache.derby - derbynet - 10.16.1.1 - - - org.apache.derby - derbyoptionaltools - 10.16.1.1 - - - org.apache.derby - derbyshared - 10.16.1.1 - - - org.apache.derby - derbytools - 10.16.1.1 - - - org.ehcache - ehcache - 3.10.8 - jakarta - - - org.ehcache - ehcache-clustered - 3.10.8 - - - org.ehcache - ehcache-transactions - 3.10.8 - jakarta - - - org.elasticsearch.client - elasticsearch-rest-client - 8.7.1 - - - commons-logging - commons-logging - - - - - org.elasticsearch.client - elasticsearch-rest-client-sniffer - 8.7.1 - - - commons-logging - commons-logging - - - - - co.elastic.clients - elasticsearch-java - 8.7.1 - - - org.flywaydb - flyway-core - 9.16.3 - - - org.flywaydb - flyway-firebird - 9.16.3 - - - org.flywaydb - flyway-mysql - 9.16.3 - - - org.flywaydb - flyway-sqlserver - 9.16.3 - - - org.freemarker - freemarker - 2.3.32 - - - org.glassfish.web - jakarta.servlet.jsp.jstl - 3.0.1 - - - com.graphql-java - graphql-java - 20.2 - - - com.google.code.gson - gson - 2.10.1 - - - com.h2database - h2 - 2.1.214 - - - org.hamcrest - hamcrest - 2.2 - - - org.hamcrest - hamcrest-core - 2.2 - - - org.hamcrest - hamcrest-library - 2.2 - - - com.hazelcast - hazelcast - 5.2.3 - - - com.hazelcast - hazelcast-spring - 5.2.3 - - - org.hibernate.orm - hibernate-agroal - 6.2.2.Final - - - org.hibernate.orm - hibernate-ant - 6.2.2.Final - - - org.hibernate.orm - hibernate-c3p0 - 6.2.2.Final - - - org.hibernate.orm - hibernate-community-dialects - 6.2.2.Final - - - org.hibernate.orm - hibernate-core - 6.2.2.Final - - - org.hibernate.orm - hibernate-envers - 6.2.2.Final - - - org.hibernate.orm - hibernate-graalvm - 6.2.2.Final - - - org.hibernate.orm - hibernate-hikaricp - 6.2.2.Final - - - org.hibernate.orm - hibernate-jcache - 6.2.2.Final - - - org.hibernate.orm - hibernate-jpamodelgen - 6.2.2.Final - - - org.hibernate.orm - hibernate-micrometer - 6.2.2.Final - - - org.hibernate.orm - hibernate-proxool - 6.2.2.Final - - - org.hibernate.orm - hibernate-spatial - 6.2.2.Final - - - org.hibernate.orm - hibernate-testing - 6.2.2.Final - - - org.hibernate.orm - hibernate-vibur - 6.2.2.Final - - - org.hibernate.validator - hibernate-validator - 8.0.0.Final - - - org.hibernate.validator - hibernate-validator-annotation-processor - 8.0.0.Final - - - com.zaxxer - HikariCP - 5.0.1 - - - org.hsqldb - hsqldb - 2.7.1 - - - net.sourceforge.htmlunit - htmlunit - 2.70.0 - - - commons-logging - commons-logging - - - - - org.apache.httpcomponents - httpasyncclient - 4.1.5 - - - commons-logging - commons-logging - - - - - org.apache.httpcomponents.client5 - httpclient5 - 5.2.1 - - - org.apache.httpcomponents.client5 - httpclient5-cache - 5.2.1 - - - org.apache.httpcomponents.client5 - httpclient5-fluent - 5.2.1 - - - org.apache.httpcomponents.client5 - httpclient5-win - 5.2.1 - - - org.apache.httpcomponents - httpcore - 4.4.16 - - - org.apache.httpcomponents - httpcore-nio - 4.4.16 - - - org.apache.httpcomponents.core5 - httpcore5 - 5.2.1 - - - org.apache.httpcomponents.core5 - httpcore5-h2 - 5.2.1 - - - org.apache.httpcomponents.core5 - httpcore5-reactive - 5.2.1 - - - org.influxdb - influxdb-java - 2.23 - - - jakarta.activation - jakarta.activation-api - 2.1.2 - - - jakarta.annotation - jakarta.annotation-api - 2.1.1 - - - jakarta.jms - jakarta.jms-api - 3.1.0 - - - jakarta.json - jakarta.json-api - 2.1.1 - - - jakarta.json.bind - jakarta.json.bind-api - 3.0.0 - - - jakarta.mail - jakarta.mail-api - 2.1.1 - - - jakarta.management.j2ee - jakarta.management.j2ee-api - 1.1.4 - - - jakarta.persistence - jakarta.persistence-api - 3.1.0 - - - jakarta.servlet - jakarta.servlet-api - 6.0.0 - - - jakarta.servlet.jsp.jstl - jakarta.servlet.jsp.jstl-api - 3.0.0 - - - jakarta.transaction - jakarta.transaction-api - 2.0.1 - - - jakarta.validation - jakarta.validation-api - 3.0.2 - - - jakarta.websocket - jakarta.websocket-api - 2.1.0 - - - jakarta.websocket - jakarta.websocket-client-api - 2.1.0 - - - jakarta.ws.rs - jakarta.ws.rs-api - 3.1.0 - - - jakarta.xml.bind - jakarta.xml.bind-api - 4.0.0 - - - jakarta.xml.soap - jakarta.xml.soap-api - 3.0.0 - - - jakarta.xml.ws - jakarta.xml.ws-api - 4.0.0 - - - org.codehaus.janino - commons-compiler - 3.1.9 - - - org.codehaus.janino - commons-compiler-jdk - 3.1.9 - - - org.codehaus.janino - janino - 3.1.9 - - - javax.cache - cache-api - 1.1.1 - - - javax.money - money-api - 1.1 - - - jaxen - jaxen - 2.0.0 - - - org.firebirdsql.jdbc - jaybird - 5.0.1.java11 - - - org.jboss.logging - jboss-logging - 3.5.0.Final - - - org.jdom - jdom2 - 2.0.6.1 - - - redis.clients - jedis - 4.3.2 - - - org.eclipse.jetty - jetty-reactive-httpclient - 3.0.8 - - - com.samskivert - jmustache - 1.15 - - - org.jooq - jooq - 3.18.4 - - - org.jooq - jooq-codegen - 3.18.4 - - - org.jooq - jooq-kotlin - 3.18.4 - - - org.jooq - jooq-meta - 3.18.4 - - - com.jayway.jsonpath - json-path - 2.8.0 - - - com.jayway.jsonpath - json-path-assert - 2.8.0 - - - net.minidev - json-smart - 2.4.10 - - - org.skyscreamer - jsonassert - 1.5.1 - - - net.sourceforge.jtds - jtds - 1.3.1 - - - junit - junit - 4.13.2 - - - org.apache.kafka - connect - 3.4.0 - - - org.apache.kafka - connect-api - 3.4.0 - - - org.apache.kafka - connect-basic-auth-extension - 3.4.0 - - - org.apache.kafka - connect-file - 3.4.0 - - - org.apache.kafka - connect-json - 3.4.0 - - - org.apache.kafka - connect-mirror - 3.4.0 - - - org.apache.kafka - connect-mirror-client - 3.4.0 - - - org.apache.kafka - connect-runtime - 3.4.0 - - - org.apache.kafka - connect-transforms - 3.4.0 - - - org.apache.kafka - generator - 3.4.0 - - - org.apache.kafka - kafka-clients - 3.4.0 - - - org.apache.kafka - kafka-clients - 3.4.0 - test - - - org.apache.kafka - kafka-log4j-appender - 3.4.0 - - - org.apache.kafka - kafka-metadata - 3.4.0 - - - org.apache.kafka - kafka-raft - 3.4.0 - - - org.apache.kafka - kafka-server-common - 3.4.0 - - - org.apache.kafka - kafka-shell - 3.4.0 - - - org.apache.kafka - kafka-storage - 3.4.0 - - - org.apache.kafka - kafka-storage-api - 3.4.0 - - - org.apache.kafka - kafka-streams - 3.4.0 - - - org.apache.kafka - kafka-streams-scala_2.12 - 3.4.0 - - - org.apache.kafka - kafka-streams-scala_2.13 - 3.4.0 - - - org.apache.kafka - kafka-streams-test-utils - 3.4.0 - - - org.apache.kafka - kafka-tools - 3.4.0 - - - org.apache.kafka - kafka_2.12 - 3.4.0 - - - org.apache.kafka - kafka_2.12 - 3.4.0 - test - - - org.apache.kafka - kafka_2.13 - 3.4.0 - - - org.apache.kafka - kafka_2.13 - 3.4.0 - test - - - org.apache.kafka - trogdor - 3.4.0 - - - io.lettuce - lettuce-core - 6.2.4.RELEASE - - - org.liquibase - liquibase-cdi - 4.20.0 - - - org.liquibase - liquibase-core - 4.20.0 - - - ch.qos.logback - logback-access - 1.4.7 - - - ch.qos.logback - logback-classic - 1.4.7 - - - ch.qos.logback - logback-core - 1.4.7 - - - org.projectlombok - lombok - 1.18.26 - - - org.mariadb.jdbc - mariadb-java-client - 3.1.4 - - - io.micrometer - micrometer-registry-stackdriver - 1.11.0 - - - javax.annotation - javax.annotation-api - - - - - org.mongodb - bson - 4.9.1 - - - org.mongodb - bson-record-codec - 4.9.1 - - - org.mongodb - mongodb-driver-core - 4.9.1 - - - org.mongodb - mongodb-driver-legacy - 4.9.1 - - - org.mongodb - mongodb-driver-reactivestreams - 4.9.1 - - - org.mongodb - mongodb-driver-sync - 4.9.1 - - - com.microsoft.sqlserver - mssql-jdbc - 11.2.3.jre17 - - - com.mysql - mysql-connector-j - 8.0.33 - - - com.google.protobuf - protobuf-java - - - - - net.sourceforge.nekohtml - nekohtml - 1.9.22 - - - org.neo4j.driver - neo4j-java-driver - 5.8.0 - - - com.oracle.database.r2dbc - oracle-r2dbc - 1.1.1 - - - org.messaginghub - pooled-jms - 3.1.0 - - - org.postgresql - postgresql - 42.6.0 - - - org.quartz-scheduler - quartz - 2.3.2 - - - com.mchange - c3p0 - - - com.zaxxer - * - - - - - org.quartz-scheduler - quartz-jobs - 2.3.2 - - - io.r2dbc - r2dbc-h2 - 1.0.0.RELEASE - - - org.mariadb - r2dbc-mariadb - 1.1.4 - - - io.r2dbc - r2dbc-mssql - 1.0.0.RELEASE - - - io.asyncer - r2dbc-mysql - 1.0.1 - - - io.r2dbc - r2dbc-pool - 1.0.0.RELEASE - - - org.postgresql - r2dbc-postgresql - 1.0.1.RELEASE - - - io.r2dbc - r2dbc-proxy - 1.1.0.RELEASE - - - io.r2dbc - r2dbc-spi - 1.0.0.RELEASE - - - com.rabbitmq - amqp-client - 5.17.0 - - - com.rabbitmq - stream-client - 0.9.0 - - - org.reactivestreams - reactive-streams - 1.0.4 - - - io.reactivex.rxjava3 - rxjava - 3.1.6 - - - org.springframework.boot - spring-boot - 3.1.0 - - - org.springframework.boot - spring-boot-test - 3.1.0 - - - org.springframework.boot - spring-boot-test-autoconfigure - 3.1.0 - - - org.springframework.boot - spring-boot-testcontainers - 3.1.0 - - - org.springframework.boot - spring-boot-actuator - 3.1.0 - - - org.springframework.boot - spring-boot-actuator-autoconfigure - 3.1.0 - - - org.springframework.boot - spring-boot-autoconfigure - 3.1.0 - - - org.springframework.boot - spring-boot-autoconfigure-processor - 3.1.0 - - - org.springframework.boot - spring-boot-buildpack-platform - 3.1.0 - - - org.springframework.boot - spring-boot-configuration-metadata - 3.1.0 - - - org.springframework.boot - spring-boot-configuration-processor - 3.1.0 - - - org.springframework.boot - spring-boot-devtools - 3.1.0 - - - org.springframework.boot - spring-boot-docker-compose - 3.1.0 - - - org.springframework.boot - spring-boot-jarmode-layertools - 3.1.0 - - - org.springframework.boot - spring-boot-loader - 3.1.0 - - - org.springframework.boot - spring-boot-loader-tools - 3.1.0 - - - org.springframework.boot - spring-boot-properties-migrator - 3.1.0 - - - org.springframework.boot - spring-boot-starter - 3.1.0 - - - org.springframework.boot - spring-boot-starter-activemq - 3.1.0 - - - org.springframework.boot - spring-boot-starter-actuator - 3.1.0 - - - org.springframework.boot - spring-boot-starter-amqp - 3.1.0 - - - org.springframework.boot - spring-boot-starter-aop - 3.1.0 - - - org.springframework.boot - spring-boot-starter-artemis - 3.1.0 - - - org.springframework.boot - spring-boot-starter-batch - 3.1.0 - - - org.springframework.boot - spring-boot-starter-cache - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-cassandra - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-cassandra-reactive - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-couchbase - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-couchbase-reactive - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-elasticsearch - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-jdbc - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-jpa - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-ldap - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-mongodb - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-mongodb-reactive - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-r2dbc - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-redis - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-redis-reactive - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-neo4j - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-rest - 3.1.0 - - - org.springframework.boot - spring-boot-starter-freemarker - 3.1.0 - - - org.springframework.boot - spring-boot-starter-graphql - 3.1.0 - - - org.springframework.boot - spring-boot-starter-groovy-templates - 3.1.0 - - - org.springframework.boot - spring-boot-starter-hateoas - 3.1.0 - - - org.springframework.boot - spring-boot-starter-integration - 3.1.0 - - - org.springframework.boot - spring-boot-starter-jdbc - 3.1.0 - - - org.springframework.boot - spring-boot-starter-jersey - 3.1.0 - - - org.springframework.boot - spring-boot-starter-jetty - 3.1.0 - - - org.springframework.boot - spring-boot-starter-jooq - 3.1.0 - - - org.springframework.boot - spring-boot-starter-json - 3.1.0 - - - org.springframework.boot - spring-boot-starter-log4j2 - 3.1.0 - - - org.springframework.boot - spring-boot-starter-logging - 3.1.0 - - - org.springframework.boot - spring-boot-starter-mail - 3.1.0 - - - org.springframework.boot - spring-boot-starter-mustache - 3.1.0 - - - org.springframework.boot - spring-boot-starter-oauth2-authorization-server - 3.1.0 - - - org.springframework.boot - spring-boot-starter-oauth2-client - 3.1.0 - - - org.springframework.boot - spring-boot-starter-oauth2-resource-server - 3.1.0 - - - org.springframework.boot - spring-boot-starter-quartz - 3.1.0 - - - org.springframework.boot - spring-boot-starter-reactor-netty - 3.1.0 - - - org.springframework.boot - spring-boot-starter-rsocket - 3.1.0 - - - org.springframework.boot - spring-boot-starter-security - 3.1.0 - - - org.springframework.boot - spring-boot-starter-test - 3.1.0 - - - org.springframework.boot - spring-boot-starter-thymeleaf - 3.1.0 - - - org.springframework.boot - spring-boot-starter-tomcat - 3.1.0 - - - org.springframework.boot - spring-boot-starter-undertow - 3.1.0 - - - org.springframework.boot - spring-boot-starter-validation - 3.1.0 - - - org.springframework.boot - spring-boot-starter-web - 3.1.0 - - - org.springframework.boot - spring-boot-starter-webflux - 3.1.0 - - - org.springframework.boot - spring-boot-starter-websocket - 3.1.0 - - - org.springframework.boot - spring-boot-starter-web-services - 3.1.0 - - - com.sun.xml.messaging.saaj - saaj-impl - 3.0.2 - - - org.seleniumhq.selenium - lift - 4.8.3 - - - org.seleniumhq.selenium - selenium-api - 4.8.3 - - - org.seleniumhq.selenium - selenium-chrome-driver - 4.8.3 - - - org.seleniumhq.selenium - selenium-chromium-driver - 4.8.3 - - - org.seleniumhq.selenium - selenium-devtools-v108 - 4.8.3 - - - org.seleniumhq.selenium - selenium-devtools-v109 - 4.8.3 - - - org.seleniumhq.selenium - selenium-devtools-v110 - 4.8.3 - - - org.seleniumhq.selenium - selenium-devtools-v85 - 4.8.3 - - - org.seleniumhq.selenium - selenium-edge-driver - 4.8.3 - - - org.seleniumhq.selenium - selenium-firefox-driver - 4.8.3 - - - org.seleniumhq.selenium - selenium-grid - 4.8.3 - - - org.seleniumhq.selenium - selenium-http - 4.8.3 - - - org.seleniumhq.selenium - selenium-http-jdk-client - 4.8.3 - - - org.seleniumhq.selenium - selenium-ie-driver - 4.8.3 - - - org.seleniumhq.selenium - selenium-java - 4.8.3 - - - org.seleniumhq.selenium - selenium-json - 4.8.3 - - - org.seleniumhq.selenium - selenium-manager - 4.8.3 - - - org.seleniumhq.selenium - selenium-remote-driver - 4.8.3 - - - org.seleniumhq.selenium - selenium-safari-driver - 4.8.3 - - - org.seleniumhq.selenium - selenium-session-map-jdbc - 4.8.3 - - - org.seleniumhq.selenium - selenium-session-map-redis - 4.8.3 - - - org.seleniumhq.selenium - selenium-support - 4.8.3 - - - org.seleniumhq.selenium - htmlunit-driver - 4.8.3 - - - com.sendgrid - sendgrid-java - 4.9.3 - - - org.slf4j - jcl-over-slf4j - 2.0.7 - - - org.slf4j - jul-to-slf4j - 2.0.7 - - - org.slf4j - log4j-over-slf4j - 2.0.7 - - - org.slf4j - slf4j-api - 2.0.7 - - - org.slf4j - slf4j-ext - 2.0.7 - - - org.slf4j - slf4j-jdk-platform-logging - 2.0.7 - - - org.slf4j - slf4j-jdk14 - 2.0.7 - - - org.slf4j - slf4j-log4j12 - 2.0.7 - - - org.slf4j - slf4j-nop - 2.0.7 - - - org.slf4j - slf4j-reload4j - 2.0.7 - - - org.slf4j - slf4j-simple - 2.0.7 - - - org.yaml - snakeyaml - 1.33 - - - org.springframework.amqp - spring-amqp - 3.0.4 - - - org.springframework.amqp - spring-rabbit - 3.0.4 - - - org.springframework.amqp - spring-rabbit-stream - 3.0.4 - - - org.springframework.amqp - spring-rabbit-junit - 3.0.4 - - - org.springframework.amqp - spring-rabbit-test - 3.0.4 - - - org.springframework.security - spring-security-oauth2-authorization-server - 1.1.0 - - - org.springframework.graphql - spring-graphql - 1.2.0 - - - org.springframework.graphql - spring-graphql-test - 1.2.0 - - - org.springframework.hateoas - spring-hateoas - 2.1.0 - - - org.springframework.kafka - spring-kafka - 3.0.7 - - - org.springframework.kafka - spring-kafka-test - 3.0.7 - - - org.springframework.ldap - spring-ldap-core - 3.1.0 - - - org.springframework.ldap - spring-ldap-ldif-core - 3.1.0 - - - org.springframework.ldap - spring-ldap-odm - 3.1.0 - - - org.springframework.ldap - spring-ldap-test - 3.1.0 - - - org.springframework.retry - spring-retry - 2.0.1 - - - org.xerial - sqlite-jdbc - 3.41.2.1 - - - org.thymeleaf - thymeleaf - 3.1.1.RELEASE - - - org.thymeleaf - thymeleaf-spring6 - 3.1.1.RELEASE - - - com.github.mxab.thymeleaf.extras - thymeleaf-extras-data-attribute - 2.0.1 - - - org.thymeleaf.extras - thymeleaf-extras-springsecurity6 - 3.1.1.RELEASE - - - nz.net.ultraq.thymeleaf - thymeleaf-layout-dialect - 3.2.1 - - - org.apache.tomcat - tomcat-annotations-api - 10.1.8 - - - org.apache.tomcat - tomcat-jdbc - 10.1.8 - - - org.apache.tomcat - tomcat-jsp-api - 10.1.8 - - - org.apache.tomcat.embed - tomcat-embed-core - 10.1.8 - - - org.apache.tomcat.embed - tomcat-embed-el - 10.1.8 - - - org.apache.tomcat.embed - tomcat-embed-jasper - 10.1.8 - - - org.apache.tomcat.embed - tomcat-embed-websocket - 10.1.8 - - - com.unboundid - unboundid-ldapsdk - 6.0.8 - - - io.undertow - undertow-core - 2.3.6.Final - - - io.undertow - undertow-servlet - 2.3.6.Final - - - io.undertow - undertow-websockets-jsr - 2.3.6.Final - - - org.webjars - webjars-locator-core - 0.52 - - - wsdl4j - wsdl4j - 1.6.3 - - - org.xmlunit - xmlunit-assertj - 2.9.1 - - - org.xmlunit - xmlunit-assertj3 - 2.9.1 - - - org.xmlunit - xmlunit-core - 2.9.1 - - - org.xmlunit - xmlunit-jakarta-jaxb-impl - 2.9.1 - - - org.xmlunit - xmlunit-legacy - 2.9.1 - - - org.xmlunit - xmlunit-matchers - 2.9.1 - - - org.xmlunit - xmlunit-placeholders - 2.9.1 - - - org.eclipse - yasson - 3.0.3 - - - org.assertj - assertj-core - 3.24.2 - - - org.assertj - assertj-guava - 3.24.2 - - - io.zipkin.zipkin2 - zipkin - 2.23.2 - - - io.zipkin.brave - brave - 5.15.1 - - - io.zipkin.brave - brave-tests - 5.15.1 - - - io.zipkin.brave - brave-context-jfr - 5.15.1 - - - io.zipkin.brave - brave-context-log4j2 - 5.15.1 - - - io.zipkin.brave - brave-context-log4j12 - 5.15.1 - - - io.zipkin.brave - brave-context-slf4j - 5.15.1 - - - io.zipkin.brave - brave-context-rxjava2 - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-dubbo - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-dubbo-rpc - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-grpc - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-http - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-http-tests - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-httpasyncclient - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-httpclient - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-jaxrs2 - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-jersey-server - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-jms - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-jms-jakarta - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-kafka-clients - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-kafka-streams - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-messaging - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-mongodb - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-mysql - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-mysql6 - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-mysql8 - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-netty-codec-http - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-okhttp3 - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-p6spy - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-rpc - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-servlet - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-servlet-jakarta - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-sparkjava - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-spring-rabbit - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-spring-web - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-spring-webmvc - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-vertx-web - 5.15.1 - - - io.zipkin.brave - brave-spring-beans - 5.15.1 - - - io.zipkin.proto3 - zipkin-proto3 - 1.0.0 - - - io.zipkin.reporter2 - zipkin-reporter - 2.16.3 - - - io.zipkin.reporter2 - zipkin-sender-okhttp3 - 2.16.3 - - - io.zipkin.reporter2 - zipkin-sender-libthrift - 2.16.3 - - - io.zipkin.reporter2 - zipkin-sender-urlconnection - 2.16.3 - - - io.zipkin.reporter2 - zipkin-sender-kafka08 - 2.16.3 - - - io.zipkin.reporter2 - zipkin-sender-kafka - 2.16.3 - - - io.zipkin.reporter2 - zipkin-sender-amqp-client - 2.16.3 - - - io.zipkin.reporter2 - zipkin-sender-activemq-client - 2.16.3 - - - io.zipkin.reporter2 - zipkin-reporter-spring-beans - 2.16.3 - - - io.zipkin.reporter2 - zipkin-reporter-brave - 2.16.3 - - - io.zipkin.reporter2 - zipkin-reporter-metrics-micrometer - 2.16.3 - - - com.datastax.oss - java-driver-core-shaded - 4.15.0 - - - com.datastax.oss - java-driver-mapper-processor - 4.15.0 - - - com.datastax.oss - java-driver-mapper-runtime - 4.15.0 - - - com.datastax.oss - java-driver-query-builder - 4.15.0 - - - com.datastax.oss - java-driver-test-infra - 4.15.0 - - - com.datastax.oss - java-driver-metrics-micrometer - 4.15.0 - - - com.datastax.oss - java-driver-metrics-microprofile - 4.15.0 - - - com.datastax.oss - native-protocol - 1.5.1 - - - com.datastax.oss - java-driver-shaded-guava - 25.1-jre-graal-sub-1 - - - io.dropwizard.metrics - metrics-annotation - 4.2.18 - - - io.dropwizard.metrics - metrics-caffeine - 4.2.18 - - - io.dropwizard.metrics - metrics-caffeine3 - 4.2.18 - - - io.dropwizard.metrics - metrics-core - 4.2.18 - - - io.dropwizard.metrics - metrics-collectd - 4.2.18 - - - io.dropwizard.metrics - metrics-ehcache - 4.2.18 - - - io.dropwizard.metrics - metrics-graphite - 4.2.18 - - - io.dropwizard.metrics - metrics-healthchecks - 4.2.18 - - - io.dropwizard.metrics - metrics-httpclient - 4.2.18 - - - io.dropwizard.metrics - metrics-httpclient5 - 4.2.18 - - - io.dropwizard.metrics - metrics-httpasyncclient - 4.2.18 - - - io.dropwizard.metrics - metrics-jakarta-servlet - 4.2.18 - - - io.dropwizard.metrics - metrics-jakarta-servlets - 4.2.18 - - - io.dropwizard.metrics - metrics-jcache - 4.2.18 - - - io.dropwizard.metrics - metrics-jdbi - 4.2.18 - - - io.dropwizard.metrics - metrics-jdbi3 - 4.2.18 - - - io.dropwizard.metrics - metrics-jersey2 - 4.2.18 - - - io.dropwizard.metrics - metrics-jersey3 - 4.2.18 - - - io.dropwizard.metrics - metrics-jersey31 - 4.2.18 - - - io.dropwizard.metrics - metrics-jetty9 - 4.2.18 - - - io.dropwizard.metrics - metrics-jetty10 - 4.2.18 - - - io.dropwizard.metrics - metrics-jetty11 - 4.2.18 - - - io.dropwizard.metrics - metrics-jmx - 4.2.18 - - - io.dropwizard.metrics - metrics-json - 4.2.18 - - - io.dropwizard.metrics - metrics-jvm - 4.2.18 - - - io.dropwizard.metrics - metrics-log4j2 - 4.2.18 - - - io.dropwizard.metrics - metrics-logback - 4.2.18 - - - io.dropwizard.metrics - metrics-logback13 - 4.2.18 - - - io.dropwizard.metrics - metrics-logback14 - 4.2.18 - - - io.dropwizard.metrics - metrics-servlet - 4.2.18 - - - io.dropwizard.metrics - metrics-servlets - 4.2.18 - - - org.glassfish.jaxb - jaxb-runtime - 4.0.2 - sources - - - org.glassfish.jaxb - jaxb-core - 4.0.2 - sources - - - org.glassfish.jaxb - jaxb-xjc - 4.0.2 - sources - - - org.glassfish.jaxb - jaxb-jxc - 4.0.2 - sources - - - org.glassfish.jaxb - codemodel - 4.0.2 - sources - - - org.glassfish.jaxb - txw2 - 4.0.2 - sources - - - org.glassfish.jaxb - xsom - 4.0.2 - sources - - - com.sun.xml.bind - jaxb-impl - 4.0.2 - sources - - - com.sun.xml.bind - jaxb-core - 4.0.2 - sources - - - com.sun.xml.bind - jaxb-xjc - 4.0.2 - sources - - - com.sun.xml.bind - jaxb-jxc - 4.0.2 - sources - - - jakarta.xml.bind - jakarta.xml.bind-api - 4.0.0 - sources - - - org.jvnet.staxex - stax-ex - 2.1.0 - sources - - - jakarta.activation - jakarta.activation-api - - - - - com.sun.xml.fastinfoset - FastInfoset - 2.1.0 - sources - - - org.glassfish.jaxb - jaxb-runtime - 4.0.2 - - - org.glassfish.jaxb - jaxb-core - 4.0.2 - - - org.glassfish.jaxb - jaxb-xjc - 4.0.2 - - - org.glassfish.jaxb - jaxb-jxc - 4.0.2 - - - org.glassfish.jaxb - codemodel - 4.0.2 - - - org.glassfish.jaxb - txw2 - 4.0.2 - - - org.glassfish.jaxb - xsom - 4.0.2 - - - com.sun.xml.bind - jaxb-impl - 4.0.2 - - - com.sun.xml.bind - jaxb-core - 4.0.2 - - - com.sun.xml.bind - jaxb-xjc - 4.0.2 - - - com.sun.xml.bind - jaxb-jxc - 4.0.2 - - - com.sun.xml.bind - jaxb-osgi - 4.0.2 - - - com.sun.istack - istack-commons-runtime - 4.1.1 - - - com.sun.xml.fastinfoset - FastInfoset - 2.1.0 - - - org.jvnet.staxex - stax-ex - 2.1.0 - - - org.eclipse.angus - angus-activation - 2.0.0 - - - org.apache.groovy - groovy - 4.0.12 - - - org.apache.groovy - groovy-ant - 4.0.12 - - - org.apache.groovy - groovy-astbuilder - 4.0.12 - - - org.apache.groovy - groovy-cli-commons - 4.0.12 - - - org.apache.groovy - groovy-cli-picocli - 4.0.12 - - - org.apache.groovy - groovy-console - 4.0.12 - - - org.apache.groovy - groovy-contracts - 4.0.12 - - - org.apache.groovy - groovy-datetime - 4.0.12 - - - org.apache.groovy - groovy-dateutil - 4.0.12 - - - org.apache.groovy - groovy-docgenerator - 4.0.12 - - - org.apache.groovy - groovy-ginq - 4.0.12 - - - org.apache.groovy - groovy-groovydoc - 4.0.12 - - - org.apache.groovy - groovy-groovysh - 4.0.12 - - - org.apache.groovy - groovy-jmx - 4.0.12 - - - org.apache.groovy - groovy-json - 4.0.12 - - - org.apache.groovy - groovy-jsr223 - 4.0.12 - - - org.apache.groovy - groovy-macro - 4.0.12 - - - org.apache.groovy - groovy-macro-library - 4.0.12 - - - org.apache.groovy - groovy-nio - 4.0.12 - - - org.apache.groovy - groovy-servlet - 4.0.12 - - - org.apache.groovy - groovy-sql - 4.0.12 - - - org.apache.groovy - groovy-swing - 4.0.12 - - - org.apache.groovy - groovy-templates - 4.0.12 - - - org.apache.groovy - groovy-test - 4.0.12 - - - org.apache.groovy - groovy-test-junit5 - 4.0.12 - - - org.apache.groovy - groovy-testng - 4.0.12 - - - org.apache.groovy - groovy-toml - 4.0.12 - - - org.apache.groovy - groovy-typecheckers - 4.0.12 - - - org.apache.groovy - groovy-xml - 4.0.12 - - - org.apache.groovy - groovy-yaml - 4.0.12 - - - org.infinispan - infinispan-api - 14.0.9.Final - - - org.infinispan - infinispan-cachestore-jdbc - 14.0.9.Final - - - org.infinispan - infinispan-cachestore-jdbc-jakarta - 14.0.9.Final - - - org.infinispan - infinispan-cachestore-jdbc-common - 14.0.9.Final - - - org.infinispan - infinispan-cachestore-jdbc-common-jakarta - 14.0.9.Final - - - org.infinispan - infinispan-cachestore-sql - 14.0.9.Final - - - org.infinispan - infinispan-cachestore-remote - 14.0.9.Final - - - org.infinispan - infinispan-cachestore-rocksdb - 14.0.9.Final - - - org.infinispan - infinispan-cdi-common - 14.0.9.Final - - - org.infinispan - infinispan-cdi-common-jakarta - 14.0.9.Final - - - org.infinispan - infinispan-cdi-embedded - 14.0.9.Final - - - org.infinispan - infinispan-cdi-embedded-jakarta - 14.0.9.Final - - - org.infinispan - infinispan-cdi-remote - 14.0.9.Final - - - org.infinispan - infinispan-cdi-remote-jakarta - 14.0.9.Final - - - org.infinispan - infinispan-checkstyle - 14.0.9.Final - - - org.infinispan - infinispan-cli-client - 14.0.9.Final - - - org.infinispan - infinispan-hotrod - 14.0.9.Final - - - org.infinispan - infinispan-hotrod-jakarta - 14.0.9.Final - - - org.infinispan - infinispan-client-hotrod - 14.0.9.Final - - - org.infinispan - infinispan-client-hotrod-jakarta - 14.0.9.Final - - - org.infinispan - infinispan-client-rest - 14.0.9.Final - - - org.infinispan - infinispan-key-value-store-client - 14.0.9.Final - - - org.infinispan - infinispan-clustered-counter - 14.0.9.Final - - - org.infinispan - infinispan-clustered-lock - 14.0.9.Final - - - org.infinispan - infinispan-commons - 14.0.9.Final - - - org.infinispan - infinispan-commons-jakarta - 14.0.9.Final - - - org.infinispan - infinispan-commons-test - 14.0.9.Final - - - org.infinispan - infinispan-component-annotations - 14.0.9.Final - provided - - - org.infinispan - infinispan-component-processor - 14.0.9.Final - - - org.infinispan - infinispan-core - 14.0.9.Final - - - org.infinispan - infinispan-core-jakarta - 14.0.9.Final - - - org.infinispan - infinispan-jboss-marshalling - 14.0.9.Final - - - org.infinispan - infinispan-extended-statistics - 14.0.9.Final - - - org.infinispan - infinispan-hibernate-cache-commons - 14.0.9.Final - - - org.infinispan - infinispan-hibernate-cache-spi - 14.0.9.Final - - - org.infinispan - infinispan-hibernate-cache-v60 - 14.0.9.Final - - - org.infinispan - infinispan-jcache-commons - 14.0.9.Final - - - org.infinispan - infinispan-jcache - 14.0.9.Final - - - org.infinispan - infinispan-jcache-remote - 14.0.9.Final - - - org.infinispan - infinispan-console - 14.0.8.Final - - - org.infinispan - infinispan-multimap - 14.0.9.Final - - - org.infinispan - infinispan-objectfilter - 14.0.9.Final - - - org.infinispan - infinispan-query-core - 14.0.9.Final - - - org.infinispan - infinispan-query - 14.0.9.Final - - - org.infinispan - infinispan-query-jakarta - 14.0.9.Final - - - org.infinispan - infinispan-query-dsl - 14.0.9.Final - - - org.infinispan - infinispan-remote-query-client - 14.0.9.Final - - - org.infinispan - infinispan-remote-query-server - 14.0.9.Final - - - org.infinispan - infinispan-scripting - 14.0.9.Final - - - org.infinispan - infinispan-server-core - 14.0.9.Final - - - org.infinispan - infinispan-server-hotrod - 14.0.9.Final - - - org.infinispan - infinispan-server-hotrod-jakarta - 14.0.9.Final - - - org.infinispan - infinispan-server-memcached - 14.0.9.Final - - - org.infinispan - infinispan-server-resp - 14.0.9.Final - - - org.infinispan - infinispan-server-rest - 14.0.9.Final - - - org.infinispan - infinispan-server-router - 14.0.9.Final - - - org.infinispan - infinispan-server-runtime - 14.0.9.Final - - - org.infinispan - infinispan-server-runtime - 14.0.9.Final - loader - - - org.infinispan - infinispan-server-testdriver-core - 14.0.9.Final - - - org.infinispan - infinispan-server-testdriver-junit4 - 14.0.9.Final - - - org.infinispan - infinispan-server-testdriver-junit5 - 14.0.9.Final - - - org.infinispan - infinispan-spring5-common - 14.0.9.Final - - - org.infinispan - infinispan-spring5-embedded - 14.0.9.Final - - - org.infinispan - infinispan-spring5-remote - 14.0.9.Final - - - org.infinispan - infinispan-spring-boot-starter-embedded - 14.0.9.Final - - - org.infinispan - infinispan-spring-boot-starter-remote - 14.0.9.Final - - - org.infinispan - infinispan-spring6-common - 14.0.9.Final - - - org.infinispan - infinispan-spring6-embedded - 14.0.9.Final - - - org.infinispan - infinispan-spring6-remote - 14.0.9.Final - - - org.infinispan - infinispan-spring-boot3-starter-embedded - 14.0.9.Final - - - org.infinispan - infinispan-spring-boot3-starter-remote - 14.0.9.Final - - - org.infinispan - infinispan-tasks - 14.0.9.Final - - - org.infinispan - infinispan-tasks-api - 14.0.9.Final - - - org.infinispan - infinispan-tools - 14.0.9.Final - - - org.infinispan - infinispan-tools-jakarta - 14.0.9.Final - - - org.infinispan - infinispan-anchored-keys - 14.0.9.Final - - - org.infinispan.protostream - protostream - 4.6.2.Final - - - org.infinispan.protostream - protostream-types - 4.6.2.Final - - - org.infinispan.protostream - protostream-processor - 4.6.2.Final - provided - - - org.infinispan - infinispan-cloudevents-integration - 14.0.9.Final - - - org.infinispan - infinispan-marshaller-kryo - 14.0.9.Final - - - org.infinispan - infinispan-marshaller-kryo-bundle - 14.0.9.Final - - - org.infinispan - infinispan-marshaller-protostuff - 14.0.9.Final - - - org.infinispan - infinispan-marshaller-protostuff-bundle - 14.0.9.Final - - - com.fasterxml.jackson.core - jackson-annotations - 2.15.0 - - - com.fasterxml.jackson.core - jackson-core - 2.15.0 - - - com.fasterxml.jackson.core - jackson-databind - 2.15.0 - - - com.fasterxml.jackson.dataformat - jackson-dataformat-avro - 2.15.0 - - - com.fasterxml.jackson.dataformat - jackson-dataformat-cbor - 2.15.0 - - - com.fasterxml.jackson.dataformat - jackson-dataformat-csv - 2.15.0 - - - com.fasterxml.jackson.dataformat - jackson-dataformat-ion - 2.15.0 - - - com.fasterxml.jackson.dataformat - jackson-dataformat-properties - 2.15.0 - - - com.fasterxml.jackson.dataformat - jackson-dataformat-protobuf - 2.15.0 - - - com.fasterxml.jackson.dataformat - jackson-dataformat-smile - 2.15.0 - - - com.fasterxml.jackson.dataformat - jackson-dataformat-toml - 2.15.0 - - - com.fasterxml.jackson.dataformat - jackson-dataformat-xml - 2.15.0 - - - com.fasterxml.jackson.dataformat - jackson-dataformat-yaml - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-eclipse-collections - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-guava - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-hibernate4 - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-hibernate5 - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-hibernate5-jakarta - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-hibernate6 - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-hppc - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-jakarta-jsonp - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-jaxrs - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-joda - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-joda-money - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-jdk8 - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-json-org - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-jsr310 - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-jsr353 - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-pcollections - 2.15.0 - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-base - 2.15.0 - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-cbor-provider - 2.15.0 - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-json-provider - 2.15.0 - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-smile-provider - 2.15.0 - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-xml-provider - 2.15.0 - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-yaml-provider - 2.15.0 - - - com.fasterxml.jackson.jakarta.rs - jackson-jakarta-rs-base - 2.15.0 - - - com.fasterxml.jackson.jakarta.rs - jackson-jakarta-rs-cbor-provider - 2.15.0 - - - com.fasterxml.jackson.jakarta.rs - jackson-jakarta-rs-json-provider - 2.15.0 - - - com.fasterxml.jackson.jakarta.rs - jackson-jakarta-rs-smile-provider - 2.15.0 - - - com.fasterxml.jackson.jakarta.rs - jackson-jakarta-rs-xml-provider - 2.15.0 - - - com.fasterxml.jackson.jakarta.rs - jackson-jakarta-rs-yaml-provider - 2.15.0 - - - com.fasterxml.jackson.jr - jackson-jr-all - 2.15.0 - - - com.fasterxml.jackson.jr - jackson-jr-annotation-support - 2.15.0 - - - com.fasterxml.jackson.jr - jackson-jr-objects - 2.15.0 - - - com.fasterxml.jackson.jr - jackson-jr-retrofit2 - 2.15.0 - - - com.fasterxml.jackson.jr - jackson-jr-stree - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-afterburner - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-blackbird - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-guice - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-jaxb-annotations - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-jakarta-xmlbind-annotations - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-jsonSchema - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-jsonSchema-jakarta - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-kotlin - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-mrbean - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-no-ctor-deser - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-osgi - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-parameter-names - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-paranamer - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-scala_2.11 - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-scala_2.12 - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-scala_2.13 - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-scala_3 - 2.15.0 - - - org.glassfish.jersey.core - jersey-common - 3.1.1 - - - org.glassfish.jersey.core - jersey-client - 3.1.1 - - - org.glassfish.jersey.core - jersey-server - 3.1.1 - - - org.glassfish.jersey.bundles - jaxrs-ri - 3.1.1 - - - org.glassfish.jersey.connectors - jersey-apache-connector - 3.1.1 - - - org.glassfish.jersey.connectors - jersey-apache5-connector - 3.1.1 - - - org.glassfish.jersey.connectors - jersey-helidon-connector - 3.1.1 - - - org.glassfish.jersey.connectors - jersey-grizzly-connector - 3.1.1 - - - org.glassfish.jersey.connectors - jersey-jnh-connector - 3.1.1 - - - org.glassfish.jersey.connectors - jersey-jetty-connector - 3.1.1 - - - org.glassfish.jersey.connectors - jersey-jdk-connector - 3.1.1 - - - org.glassfish.jersey.connectors - jersey-netty-connector - 3.1.1 - - - org.glassfish.jersey.containers - jersey-container-jetty-http - 3.1.1 - - - org.glassfish.jersey.containers - jersey-container-grizzly2-http - 3.1.1 - - - org.glassfish.jersey.containers - jersey-container-grizzly2-servlet - 3.1.1 - - - org.glassfish.jersey.containers - jersey-container-jetty-servlet - 3.1.1 - - - org.glassfish.jersey.containers - jersey-container-jdk-http - 3.1.1 - - - org.glassfish.jersey.containers - jersey-container-netty-http - 3.1.1 - - - org.glassfish.jersey.containers - jersey-container-servlet - 3.1.1 - - - org.glassfish.jersey.containers - jersey-container-servlet-core - 3.1.1 - - - org.glassfish.jersey.containers - jersey-container-simple-http - 3.1.1 - - - org.glassfish.jersey.containers.glassfish - jersey-gf-ejb - 3.1.1 - - - org.glassfish.jersey.ext - jersey-bean-validation - 3.1.1 - - - org.glassfish.jersey.ext - jersey-entity-filtering - 3.1.1 - - - org.glassfish.jersey.ext - jersey-metainf-services - 3.1.1 - - - org.glassfish.jersey.ext.microprofile - jersey-mp-config - 3.1.1 - - - org.glassfish.jersey.ext - jersey-mvc - 3.1.1 - - - org.glassfish.jersey.ext - jersey-mvc-bean-validation - 3.1.1 - - - org.glassfish.jersey.ext - jersey-mvc-freemarker - 3.1.1 - - - org.glassfish.jersey.ext - jersey-mvc-jsp - 3.1.1 - - - org.glassfish.jersey.ext - jersey-mvc-mustache - 3.1.1 - - - org.glassfish.jersey.ext - jersey-proxy-client - 3.1.1 - - - org.glassfish.jersey.ext - jersey-spring6 - 3.1.1 - - - org.glassfish.jersey.ext - jersey-declarative-linking - 3.1.1 - - - org.glassfish.jersey.ext - jersey-wadl-doclet - 3.1.1 - - - org.glassfish.jersey.ext.cdi - jersey-weld2-se - 3.1.1 - - - org.glassfish.jersey.ext.cdi - jersey-cdi1x - 3.1.1 - - - org.glassfish.jersey.ext.cdi - jersey-cdi1x-transaction - 3.1.1 - - - org.glassfish.jersey.ext.cdi - jersey-cdi1x-validation - 3.1.1 - - - org.glassfish.jersey.ext.cdi - jersey-cdi1x-servlet - 3.1.1 - - - org.glassfish.jersey.ext.cdi - jersey-cdi1x-ban-custom-hk2-binding - 3.1.1 - - - org.glassfish.jersey.ext.cdi - jersey-cdi-rs-inject - 3.1.1 - - - org.glassfish.jersey.ext.rx - jersey-rx-client-guava - 3.1.1 - - - org.glassfish.jersey.ext.rx - jersey-rx-client-rxjava - 3.1.1 - - - org.glassfish.jersey.ext.rx - jersey-rx-client-rxjava2 - 3.1.1 - - - org.glassfish.jersey.ext.microprofile - jersey-mp-rest-client - 3.1.1 - - - org.glassfish.jersey.media - jersey-media-jaxb - 3.1.1 - - - org.glassfish.jersey.media - jersey-media-json-jackson - 3.1.1 - - - org.glassfish.jersey.media - jersey-media-json-jettison - 3.1.1 - - - org.glassfish.jersey.media - jersey-media-json-processing - 3.1.1 - - - org.glassfish.jersey.media - jersey-media-json-gson - 3.1.1 - - - org.glassfish.jersey.media - jersey-media-json-binding - 3.1.1 - - - org.glassfish.jersey.media - jersey-media-kryo - 3.1.1 - - - org.glassfish.jersey.media - jersey-media-moxy - 3.1.1 - - - org.glassfish.jersey.media - jersey-media-multipart - 3.1.1 - - - org.glassfish.jersey.media - jersey-media-sse - 3.1.1 - - - org.glassfish.jersey.security - oauth1-client - 3.1.1 - - - org.glassfish.jersey.security - oauth1-server - 3.1.1 - - - org.glassfish.jersey.security - oauth1-signature - 3.1.1 - - - org.glassfish.jersey.security - oauth2-client - 3.1.1 - - - org.glassfish.jersey.inject - jersey-hk2 - 3.1.1 - - - org.glassfish.jersey.inject - jersey-cdi2-se - 3.1.1 - - - org.glassfish.jersey.test-framework - jersey-test-framework-core - 3.1.1 - - - org.glassfish.jersey.test-framework.providers - jersey-test-framework-provider-bundle - 3.1.1 - pom - - - org.glassfish.jersey.test-framework.providers - jersey-test-framework-provider-external - 3.1.1 - - - org.glassfish.jersey.test-framework.providers - jersey-test-framework-provider-grizzly2 - 3.1.1 - - - org.glassfish.jersey.test-framework.providers - jersey-test-framework-provider-inmemory - 3.1.1 - - - org.glassfish.jersey.test-framework.providers - jersey-test-framework-provider-jdk-http - 3.1.1 - - - org.glassfish.jersey.test-framework.providers - jersey-test-framework-provider-simple - 3.1.1 - - - org.glassfish.jersey.test-framework.providers - jersey-test-framework-provider-jetty - 3.1.1 - - - org.glassfish.jersey.test-framework - jersey-test-framework-util - 3.1.1 - - - org.eclipse.jetty - apache-jsp - 11.0.15 - - - org.eclipse.jetty - glassfish-jstl - 11.0.15 - - - org.eclipse.jetty - jetty-alpn-client - 11.0.15 - - - org.eclipse.jetty - jetty-alpn-java-client - 11.0.15 - - - org.eclipse.jetty - jetty-alpn-java-server - 11.0.15 - - - org.eclipse.jetty - jetty-alpn-conscrypt-client - 11.0.15 - - - org.eclipse.jetty - jetty-alpn-conscrypt-server - 11.0.15 - - - org.eclipse.jetty - jetty-alpn-server - 11.0.15 - - - org.eclipse.jetty - jetty-annotations - 11.0.15 - - - org.eclipse.jetty - jetty-ant - 11.0.15 - - - org.eclipse.jetty - jetty-client - 11.0.15 - - - org.eclipse.jetty - jetty-cdi - 11.0.15 - - - org.eclipse.jetty - jetty-deploy - 11.0.15 - - - org.eclipse.jetty.fcgi - fcgi-client - 11.0.15 - - - org.eclipse.jetty.fcgi - fcgi-server - 11.0.15 - - - org.eclipse.jetty.gcloud - jetty-gcloud-session-manager - 11.0.15 - - - org.eclipse.jetty - jetty-home - 11.0.15 - zip - - - org.eclipse.jetty - jetty-home - 11.0.15 - tar.gz - - - org.eclipse.jetty - jetty-http - 11.0.15 - - - org.eclipse.jetty.http2 - http2-client - 11.0.15 - - - org.eclipse.jetty.http2 - http2-common - 11.0.15 - - - org.eclipse.jetty.http2 - http2-hpack - 11.0.15 - - - org.eclipse.jetty.http2 - http2-http-client-transport - 11.0.15 - - - org.eclipse.jetty.http2 - http2-server - 11.0.15 - - - org.eclipse.jetty.http3 - http3-client - 11.0.15 - - - org.eclipse.jetty.http3 - http3-common - 11.0.15 - - - org.eclipse.jetty.http3 - http3-http-client-transport - 11.0.15 - - - org.eclipse.jetty.http3 - http3-qpack - 11.0.15 - - - org.eclipse.jetty.http3 - http3-server - 11.0.15 - - - org.eclipse.jetty - jetty-http-spi - 11.0.15 - - - org.eclipse.jetty - infinispan-common - 11.0.15 - - - org.eclipse.jetty - infinispan-remote-query - 11.0.15 - - - org.eclipse.jetty - infinispan-embedded-query - 11.0.15 - - - org.eclipse.jetty - jetty-hazelcast - 11.0.15 - - - org.eclipse.jetty - jetty-io - 11.0.15 - - - org.eclipse.jetty - jetty-jaas - 11.0.15 - - - org.eclipse.jetty - jetty-jaspi - 11.0.15 - - - org.eclipse.jetty - jetty-jmx - 11.0.15 - - - org.eclipse.jetty - jetty-jndi - 11.0.15 - - - org.eclipse.jetty - jetty-keystore - 11.0.15 - - - org.eclipse.jetty.memcached - jetty-memcached-sessions - 11.0.15 - - - org.eclipse.jetty - jetty-nosql - 11.0.15 - - - org.eclipse.jetty.osgi - jetty-osgi-alpn - 11.0.15 - - - org.eclipse.jetty.osgi - jetty-osgi-boot - 11.0.15 - - - org.eclipse.jetty.osgi - jetty-osgi-boot-jsp - 11.0.15 - - - org.eclipse.jetty.osgi - jetty-osgi-boot-warurl - 11.0.15 - - - org.eclipse.jetty.quic - quic-client - 11.0.15 - - - org.eclipse.jetty.quic - quic-common - 11.0.15 - - - org.eclipse.jetty.quic - quic-quiche-common - 11.0.15 - - - org.eclipse.jetty.quic - quic-quiche-jna - 11.0.15 - - - org.eclipse.jetty.quic - quic-server - 11.0.15 - - - org.eclipse.jetty.osgi - jetty-httpservice - 11.0.15 - - - org.eclipse.jetty - jetty-plus - 11.0.15 - - - org.eclipse.jetty - jetty-proxy - 11.0.15 - - - org.eclipse.jetty - jetty-quickstart - 11.0.15 - - - org.eclipse.jetty - jetty-rewrite - 11.0.15 - - - org.eclipse.jetty - jetty-security - 11.0.15 - - - org.eclipse.jetty - jetty-openid - 11.0.15 - - - org.eclipse.jetty - jetty-server - 11.0.15 - - - org.eclipse.jetty - jetty-servlet - 11.0.15 - - - org.eclipse.jetty - jetty-servlets - 11.0.15 - - - org.eclipse.jetty - jetty-slf4j-impl - 11.0.15 - - - org.eclipse.jetty - jetty-unixdomain-server - 11.0.15 - - - org.eclipse.jetty - jetty-unixsocket-common - 11.0.15 - - - org.eclipse.jetty - jetty-unixsocket-client - 11.0.15 - - - org.eclipse.jetty - jetty-unixsocket-server - 11.0.15 - - - org.eclipse.jetty - jetty-util - 11.0.15 - - - org.eclipse.jetty - jetty-util-ajax - 11.0.15 - - - org.eclipse.jetty - jetty-webapp - 11.0.15 - - - org.eclipse.jetty.websocket - websocket-jakarta-client - 11.0.15 - - - org.eclipse.jetty.websocket - websocket-jakarta-server - 11.0.15 - - - org.eclipse.jetty.websocket - websocket-jakarta-common - 11.0.15 - - - org.eclipse.jetty.websocket - websocket-jetty-api - 11.0.15 - - - org.eclipse.jetty.websocket - websocket-jetty-client - 11.0.15 - - - org.eclipse.jetty.websocket - websocket-jetty-common - 11.0.15 - - - org.eclipse.jetty.websocket - websocket-jetty-server - 11.0.15 - - - org.eclipse.jetty.websocket - websocket-servlet - 11.0.15 - - - org.eclipse.jetty.websocket - websocket-core-common - 11.0.15 - - - org.eclipse.jetty.websocket - websocket-core-client - 11.0.15 - - - org.eclipse.jetty.websocket - websocket-core-server - 11.0.15 - - - org.eclipse.jetty - jetty-xml - 11.0.15 - - - org.junit.jupiter - junit-jupiter - 5.9.3 - - - org.junit.jupiter - junit-jupiter-api - 5.9.3 - - - org.junit.jupiter - junit-jupiter-engine - 5.9.3 - - - org.junit.jupiter - junit-jupiter-migrationsupport - 5.9.3 - - - org.junit.jupiter - junit-jupiter-params - 5.9.3 - - - org.junit.platform - junit-platform-commons - 1.9.3 - - - org.junit.platform - junit-platform-console - 1.9.3 - - - org.junit.platform - junit-platform-engine - 1.9.3 - - - org.junit.platform - junit-platform-jfr - 1.9.3 - - - org.junit.platform - junit-platform-launcher - 1.9.3 - - - org.junit.platform - junit-platform-reporting - 1.9.3 - - - org.junit.platform - junit-platform-runner - 1.9.3 - - - org.junit.platform - junit-platform-suite - 1.9.3 - - - org.junit.platform - junit-platform-suite-api - 1.9.3 - - - org.junit.platform - junit-platform-suite-commons - 1.9.3 - - - org.junit.platform - junit-platform-suite-engine - 1.9.3 - - - org.junit.platform - junit-platform-testkit - 1.9.3 - - - org.junit.vintage - junit-vintage-engine - 5.9.3 - - - org.jetbrains.kotlin - kotlin-stdlib - 1.8.21 - - - org.jetbrains.kotlin - kotlin-stdlib-jdk7 - 1.8.21 - - - org.jetbrains.kotlin - kotlin-stdlib-jdk8 - 1.8.21 - - - org.jetbrains.kotlin - kotlin-stdlib-js - 1.8.21 - - - org.jetbrains.kotlin - kotlin-stdlib-common - 1.8.21 - - - org.jetbrains.kotlin - kotlin-reflect - 1.8.21 - - - org.jetbrains.kotlin - kotlin-osgi-bundle - 1.8.21 - - - org.jetbrains.kotlin - kotlin-test - 1.8.21 - - - org.jetbrains.kotlin - kotlin-test-junit - 1.8.21 - - - org.jetbrains.kotlin - kotlin-test-junit5 - 1.8.21 - - - org.jetbrains.kotlin - kotlin-test-testng - 1.8.21 - - - org.jetbrains.kotlin - kotlin-test-js - 1.8.21 - - - org.jetbrains.kotlin - kotlin-test-common - 1.8.21 - - - org.jetbrains.kotlin - kotlin-test-annotations-common - 1.8.21 - - - org.jetbrains.kotlin - kotlin-main-kts - 1.8.21 - - - org.jetbrains.kotlin - kotlin-script-runtime - 1.8.21 - - - org.jetbrains.kotlin - kotlin-script-util - 1.8.21 - - - org.jetbrains.kotlin - kotlin-scripting-common - 1.8.21 - - - org.jetbrains.kotlin - kotlin-scripting-jvm - 1.8.21 - - - org.jetbrains.kotlin - kotlin-scripting-jvm-host - 1.8.21 - - - org.jetbrains.kotlin - kotlin-scripting-ide-services - 1.8.21 - - - org.jetbrains.kotlin - kotlin-compiler - 1.8.21 - - - org.jetbrains.kotlin - kotlin-compiler-embeddable - 1.8.21 - - - org.jetbrains.kotlin - kotlin-daemon-client - 1.8.21 - - - org.jetbrains.kotlinx - kotlinx-coroutines-android - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-core-jvm - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-core - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-debug - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-guava - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-javafx - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-jdk8 - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-jdk9 - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-play-services - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-reactive - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-reactor - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-rx2 - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-rx3 - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-slf4j - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-swing - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-test-jvm - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-test - 1.6.4 - - - org.apache.logging.log4j - log4j-1.2-api - 2.20.0 - - - org.apache.logging.log4j - log4j-api - 2.20.0 - - - org.apache.logging.log4j - log4j-api-test - 2.20.0 - - - org.apache.logging.log4j - log4j-appserver - 2.20.0 - - - org.apache.logging.log4j - log4j-cassandra - 2.20.0 - - - org.apache.logging.log4j - log4j-core - 2.20.0 - - - org.apache.logging.log4j - log4j-core-test - 2.20.0 - - - org.apache.logging.log4j - log4j-couchdb - 2.20.0 - - - org.apache.logging.log4j - log4j-docker - 2.20.0 - - - org.apache.logging.log4j - log4j-flume-ng - 2.20.0 - - - org.apache.logging.log4j - log4j-iostreams - 2.20.0 - - - org.apache.logging.log4j - log4j-jakarta-smtp - 2.20.0 - - - org.apache.logging.log4j - log4j-jakarta-web - 2.20.0 - - - org.apache.logging.log4j - log4j-jcl - 2.20.0 - - - org.apache.logging.log4j - log4j-jmx-gui - 2.20.0 - - - org.apache.logging.log4j - log4j-jpa - 2.20.0 - - - org.apache.logging.log4j - log4j-jpl - 2.20.0 - - - org.apache.logging.log4j - log4j-jul - 2.20.0 - - - org.apache.logging.log4j - log4j-kubernetes - 2.20.0 - - - org.apache.logging.log4j - log4j-layout-template-json - 2.20.0 - - - org.apache.logging.log4j - log4j-layout-template-json-test - 2.20.0 - - - org.apache.logging.log4j - log4j-mongodb3 - 2.20.0 - - - org.apache.logging.log4j - log4j-mongodb4 - 2.20.0 - - - org.apache.logging.log4j - log4j-slf4j2-impl - 2.20.0 - - - org.apache.logging.log4j - log4j-slf4j-impl - 2.20.0 - - - org.apache.logging.log4j - log4j-spring-boot - 2.20.0 - - - org.apache.logging.log4j - log4j-spring-cloud-config-client - 2.20.0 - - - org.apache.logging.log4j - log4j-taglib - 2.20.0 - - - org.apache.logging.log4j - log4j-to-jul - 2.20.0 - - - org.apache.logging.log4j - log4j-to-slf4j - 2.20.0 - - - org.apache.logging.log4j - log4j-web - 2.20.0 - - - org.apache.maven.plugin-tools - maven-plugin-annotations - 3.6.4 - - - io.micrometer - micrometer-commons - 1.11.0 - - - io.micrometer - micrometer-core - 1.11.0 - - - io.micrometer - micrometer-jetty11 - 1.11.0 - - - io.micrometer - micrometer-observation - 1.11.0 - - - io.micrometer - micrometer-observation-test - 1.11.0 - - - io.micrometer - micrometer-osgi-test - 1.11.0 - - - io.micrometer - micrometer-registry-appoptics - 1.11.0 - - - io.micrometer - micrometer-registry-atlas - 1.11.0 - - - io.micrometer - micrometer-registry-azure-monitor - 1.11.0 - - - io.micrometer - micrometer-registry-cloudwatch - 1.11.0 - - - io.micrometer - micrometer-registry-cloudwatch2 - 1.11.0 - - - io.micrometer - micrometer-registry-datadog - 1.11.0 - - - io.micrometer - micrometer-registry-dynatrace - 1.11.0 - - - io.micrometer - micrometer-registry-elastic - 1.11.0 - - - io.micrometer - micrometer-registry-ganglia - 1.11.0 - - - io.micrometer - micrometer-registry-graphite - 1.11.0 - - - io.micrometer - micrometer-registry-health - 1.11.0 - - - io.micrometer - micrometer-registry-humio - 1.11.0 - - - io.micrometer - micrometer-registry-influx - 1.11.0 - - - io.micrometer - micrometer-registry-jmx - 1.11.0 - - - io.micrometer - micrometer-registry-kairos - 1.11.0 - - - io.micrometer - micrometer-registry-new-relic - 1.11.0 - - - io.micrometer - micrometer-registry-opentsdb - 1.11.0 - - - io.micrometer - micrometer-registry-otlp - 1.11.0 - - - io.micrometer - micrometer-registry-prometheus - 1.11.0 - - - io.micrometer - micrometer-registry-signalfx - 1.11.0 - - - io.micrometer - micrometer-registry-statsd - 1.11.0 - - - io.micrometer - micrometer-registry-wavefront - 1.11.0 - - - io.micrometer - micrometer-test - 1.11.0 - - - io.micrometer - micrometer-tracing - 1.1.1 - - - io.micrometer - micrometer-tracing-bridge-brave - 1.1.1 - - - io.micrometer - micrometer-tracing-bridge-otel - 1.1.1 - - - io.micrometer - micrometer-tracing-integration-test - 1.1.1 - - - io.micrometer - micrometer-tracing-reporter-wavefront - 1.1.1 - - - io.micrometer - micrometer-tracing-test - 1.1.1 - - - org.mockito - mockito-core - 5.3.1 - - - org.mockito - mockito-android - 5.3.1 - - - org.mockito - mockito-errorprone - 5.3.1 - - - org.mockito - mockito-junit-jupiter - 5.3.1 - - - org.mockito - mockito-proxy - 5.3.1 - - - org.mockito - mockito-subclass - 5.3.1 - - - io.netty - netty-buffer - 4.1.92.Final - - - io.netty - netty-codec - 4.1.92.Final - - - io.netty - netty-codec-dns - 4.1.92.Final - - - io.netty - netty-codec-haproxy - 4.1.92.Final - - - io.netty - netty-codec-http - 4.1.92.Final - - - io.netty - netty-codec-http2 - 4.1.92.Final - - - io.netty - netty-codec-memcache - 4.1.92.Final - - - io.netty - netty-codec-mqtt - 4.1.92.Final - - - io.netty - netty-codec-redis - 4.1.92.Final - - - io.netty - netty-codec-smtp - 4.1.92.Final - - - io.netty - netty-codec-socks - 4.1.92.Final - - - io.netty - netty-codec-stomp - 4.1.92.Final - - - io.netty - netty-codec-xml - 4.1.92.Final - - - io.netty - netty-common - 4.1.92.Final - - - io.netty - netty-dev-tools - 4.1.92.Final - - - io.netty - netty-handler - 4.1.92.Final - - - io.netty - netty-handler-proxy - 4.1.92.Final - - - io.netty - netty-handler-ssl-ocsp - 4.1.92.Final - - - io.netty - netty-resolver - 4.1.92.Final - - - io.netty - netty-resolver-dns - 4.1.92.Final - - - io.netty - netty-transport - 4.1.92.Final - - - io.netty - netty-transport-rxtx - 4.1.92.Final - - - io.netty - netty-transport-sctp - 4.1.92.Final - - - io.netty - netty-transport-udt - 4.1.92.Final - - - io.netty - netty-example - 4.1.92.Final - - - io.netty - netty-all - 4.1.92.Final - - - io.netty - netty-resolver-dns-classes-macos - 4.1.92.Final - - - io.netty - netty-resolver-dns-native-macos - 4.1.92.Final - - - io.netty - netty-resolver-dns-native-macos - 4.1.92.Final - osx-x86_64 - - - io.netty - netty-resolver-dns-native-macos - 4.1.92.Final - osx-aarch_64 - - - io.netty - netty-transport-native-unix-common - 4.1.92.Final - - - io.netty - netty-transport-native-unix-common - 4.1.92.Final - linux-aarch_64 - - - io.netty - netty-transport-native-unix-common - 4.1.92.Final - linux-x86_64 - - - io.netty - netty-transport-native-unix-common - 4.1.92.Final - osx-x86_64 - - - io.netty - netty-transport-native-unix-common - 4.1.92.Final - osx-aarch_64 - - - io.netty - netty-transport-classes-epoll - 4.1.92.Final - - - io.netty - netty-transport-native-epoll - 4.1.92.Final - - - io.netty - netty-transport-native-epoll - 4.1.92.Final - linux-aarch_64 - - - io.netty - netty-transport-native-epoll - 4.1.92.Final - linux-x86_64 - - - io.netty - netty-transport-classes-kqueue - 4.1.92.Final - - - io.netty - netty-transport-native-kqueue - 4.1.92.Final - - - io.netty - netty-transport-native-kqueue - 4.1.92.Final - osx-x86_64 - - - io.netty - netty-transport-native-kqueue - 4.1.92.Final - osx-aarch_64 - - - io.netty - netty-tcnative-classes - 2.0.60.Final - - - io.netty - netty-tcnative - 2.0.60.Final - linux-x86_64 - - - io.netty - netty-tcnative - 2.0.60.Final - linux-x86_64-fedora - - - io.netty - netty-tcnative - 2.0.60.Final - linux-aarch_64-fedora - - - io.netty - netty-tcnative - 2.0.60.Final - osx-x86_64 - - - io.netty - netty-tcnative-boringssl-static - 2.0.60.Final - - - io.netty - netty-tcnative-boringssl-static - 2.0.60.Final - linux-x86_64 - - - io.netty - netty-tcnative-boringssl-static - 2.0.60.Final - linux-aarch_64 - - - io.netty - netty-tcnative-boringssl-static - 2.0.60.Final - osx-x86_64 - - - io.netty - netty-tcnative-boringssl-static - 2.0.60.Final - osx-aarch_64 - - - io.netty - netty-tcnative-boringssl-static - 2.0.60.Final - windows-x86_64 - - - com.squareup.okhttp3 - mockwebserver - 4.10.0 - - - com.squareup.okhttp3 - okcurl - 4.10.0 - - - com.squareup.okhttp3 - okhttp - 4.10.0 - - - com.squareup.okhttp3 - okhttp-brotli - 4.10.0 - - - com.squareup.okhttp3 - okhttp-dnsoverhttps - 4.10.0 - - - com.squareup.okhttp3 - logging-interceptor - 4.10.0 - - - com.squareup.okhttp3 - okhttp-sse - 4.10.0 - - - com.squareup.okhttp3 - okhttp-tls - 4.10.0 - - - com.squareup.okhttp3 - okhttp-urlconnection - 4.10.0 - - - io.opentelemetry - opentelemetry-context - 1.25.0 - - - io.opentelemetry - opentelemetry-api - 1.25.0 - - - io.opentelemetry - opentelemetry-exporter-common - 1.25.0 - - - io.opentelemetry - opentelemetry-exporter-jaeger - 1.25.0 - - - io.opentelemetry - opentelemetry-exporter-jaeger-thrift - 1.25.0 - - - io.opentelemetry - opentelemetry-exporter-logging - 1.25.0 - - - io.opentelemetry - opentelemetry-exporter-logging-otlp - 1.25.0 - - - io.opentelemetry - opentelemetry-exporter-zipkin - 1.25.0 - - - io.opentelemetry - opentelemetry-extension-kotlin - 1.25.0 - - - io.opentelemetry - opentelemetry-extension-trace-propagators - 1.25.0 - - - io.opentelemetry - opentelemetry-sdk - 1.25.0 - - - io.opentelemetry - opentelemetry-sdk-common - 1.25.0 - - - io.opentelemetry - opentelemetry-sdk-metrics - 1.25.0 - - - io.opentelemetry - opentelemetry-sdk-testing - 1.25.0 - - - io.opentelemetry - opentelemetry-sdk-trace - 1.25.0 - - - io.opentelemetry - opentelemetry-sdk-extension-autoconfigure-spi - 1.25.0 - - - io.opentelemetry - opentelemetry-sdk-extension-jaeger-remote-sampler - 1.25.0 - - - io.opentelemetry - opentelemetry-exporter-otlp - 1.25.0 - - - io.opentelemetry - opentelemetry-exporter-otlp-common - 1.25.0 - - - io.opentelemetry - opentelemetry-sdk-extension-aws - 1.19.0 - - - io.opentelemetry - opentelemetry-exporter-jaeger-proto - 1.17.0 - - - io.opentelemetry - opentelemetry-extension-annotations - 1.18.0 - - - io.opentelemetry - opentelemetry-sdk-extension-resources - 1.19.0 - - - io.opentelemetry - opentelemetry-extension-aws - 1.20.1 - - - com.oracle.database.jdbc - ojdbc11 - 21.9.0.0 - - - com.oracle.database.jdbc - ojdbc8 - 21.9.0.0 - - - com.oracle.database.jdbc - ucp - 21.9.0.0 - - - com.oracle.database.jdbc - ucp11 - 21.9.0.0 - - - com.oracle.database.jdbc - rsi - 21.9.0.0 - - - com.oracle.database.security - oraclepki - 21.9.0.0 - - - com.oracle.database.security - osdt_core - 21.9.0.0 - - - com.oracle.database.security - osdt_cert - 21.9.0.0 - - - com.oracle.database.ha - simplefan - 21.9.0.0 - - - com.oracle.database.ha - ons - 21.9.0.0 - - - com.oracle.database.nls - orai18n - 21.9.0.0 - - - com.oracle.database.xml - xdb - 21.9.0.0 - - - com.oracle.database.xml - xmlparserv2 - 21.9.0.0 - - - com.oracle.database.jdbc.debug - ojdbc11_g - 21.9.0.0 - - - com.oracle.database.jdbc.debug - ojdbc8_g - 21.9.0.0 - - - com.oracle.database.jdbc.debug - ojdbc8dms_g - 21.9.0.0 - - - com.oracle.database.jdbc.debug - ojdbc11dms_g - 21.9.0.0 - - - com.oracle.database.observability - dms - 21.9.0.0 - - - com.oracle.database.observability - ojdbc11dms - 21.9.0.0 - - - com.oracle.database.observability - ojdbc8dms - 21.9.0.0 - - - com.oracle.database.jdbc - ojdbc11-production - 21.9.0.0 - pom - - - com.oracle.database.jdbc - ojdbc8-production - 21.9.0.0 - pom - - - com.oracle.database.observability - ojdbc8-observability - 21.9.0.0 - pom - - - com.oracle.database.observability - ojdbc11-observability - 21.9.0.0 - pom - - - com.oracle.database.jdbc.debug - ojdbc8-debug - 21.9.0.0 - pom - - - com.oracle.database.jdbc.debug - ojdbc11-debug - 21.9.0.0 - pom - - - com.oracle.database.jdbc.debug - ojdbc8-observability-debug - 21.9.0.0 - pom - - - com.oracle.database.jdbc.debug - ojdbc11-observability-debug - 21.9.0.0 - pom - - - io.prometheus - simpleclient - 0.16.0 - - - io.prometheus - simpleclient_caffeine - 0.16.0 - - - io.prometheus - simpleclient_common - 0.16.0 - - - io.prometheus - simpleclient_dropwizard - 0.16.0 - - - io.prometheus - simpleclient_graphite_bridge - 0.16.0 - - - io.prometheus - simpleclient_guava - 0.16.0 - - - io.prometheus - simpleclient_hibernate - 0.16.0 - - - io.prometheus - simpleclient_hotspot - 0.16.0 - - - io.prometheus - simpleclient_httpserver - 0.16.0 - - - io.prometheus - simpleclient_tracer_common - 0.16.0 - - - io.prometheus - simpleclient_jetty - 0.16.0 - - - io.prometheus - simpleclient_jetty_jdk8 - 0.16.0 - - - io.prometheus - simpleclient_log4j - 0.16.0 - - - io.prometheus - simpleclient_log4j2 - 0.16.0 - - - io.prometheus - simpleclient_logback - 0.16.0 - - - io.prometheus - simpleclient_pushgateway - 0.16.0 - - - io.prometheus - simpleclient_servlet - 0.16.0 - - - io.prometheus - simpleclient_servlet_jakarta - 0.16.0 - - - io.prometheus - simpleclient_spring_boot - 0.16.0 - - - io.prometheus - simpleclient_spring_web - 0.16.0 - - - io.prometheus - simpleclient_tracer_otel - 0.16.0 - - - io.prometheus - simpleclient_tracer_otel_agent - 0.16.0 - - - io.prometheus - simpleclient_vertx - 0.16.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 - - - io.projectreactor - reactor-core - 3.5.6 - - - io.projectreactor - reactor-test - 3.5.6 - - - io.projectreactor - reactor-tools - 3.5.6 - - - io.projectreactor - reactor-core-micrometer - 1.0.6 - - - io.projectreactor.addons - reactor-extra - 3.5.1 - - - io.projectreactor.addons - reactor-adapter - 3.5.1 - - - io.projectreactor.netty - reactor-netty - 1.1.7 - - - io.projectreactor.netty - reactor-netty-core - 1.1.7 - - - io.projectreactor.netty - reactor-netty-http - 1.1.7 - - - io.projectreactor.netty - reactor-netty-http-brave - 1.1.7 - - - io.projectreactor.addons - reactor-pool - 1.0.0 - - - io.projectreactor.addons - reactor-pool-micrometer - 0.1.0 - - - io.projectreactor.kotlin - reactor-kotlin-extensions - 1.2.2 - - - io.projectreactor.kafka - reactor-kafka - 1.3.18 - - - io.rest-assured - json-schema-validator - 5.3.0 - - - io.rest-assured - rest-assured-common - 5.3.0 - - - io.rest-assured - json-path - 5.3.0 - - - io.rest-assured - xml-path - 5.3.0 - - - io.rest-assured - rest-assured - 5.3.0 - - - io.rest-assured - spring-commons - 5.3.0 - - - io.rest-assured - spring-mock-mvc - 5.3.0 - - - io.rest-assured - scala-support - 5.3.0 - - - io.rest-assured - spring-web-test-client - 5.3.0 - - - io.rest-assured - kotlin-extensions - 5.3.0 - - - io.rest-assured - spring-mock-mvc-kotlin-extensions - 5.3.0 - - - io.rest-assured - rest-assured-all - 5.3.0 - - - io.rsocket - rsocket-core - 1.1.3 - - - io.rsocket - rsocket-load-balancer - 1.1.3 - - - io.rsocket - rsocket-micrometer - 1.1.3 - - - io.rsocket - rsocket-test - 1.1.3 - - - io.rsocket - rsocket-transport-local - 1.1.3 - - - io.rsocket - rsocket-transport-netty - 1.1.3 - - - org.springframework.batch - spring-batch-core - 5.0.2 - - - org.springframework.batch - spring-batch-infrastructure - 5.0.2 - - - org.springframework.batch - spring-batch-integration - 5.0.2 - - - org.springframework.batch - spring-batch-test - 5.0.2 - - - org.springframework.data - spring-data-cassandra - 4.1.0 - - - org.springframework.data - spring-data-commons - 3.1.0 - - - org.springframework.data - spring-data-couchbase - 5.1.0 - - - org.springframework.data - spring-data-elasticsearch - 5.1.0 - - - org.springframework.data - spring-data-jdbc - 3.1.0 - - - org.springframework.data - spring-data-r2dbc - 3.1.0 - - - org.springframework.data - spring-data-relational - 3.1.0 - - - org.springframework.data - spring-data-jpa - 3.1.0 - - - org.springframework.data - spring-data-envers - 3.1.0 - - - org.springframework.data - spring-data-mongodb - 4.1.0 - - - org.springframework.data - spring-data-neo4j - 7.1.0 - - - org.springframework.data - spring-data-redis - 3.1.0 - - - org.springframework.data - spring-data-rest-webmvc - 4.1.0 - - - org.springframework.data - spring-data-rest-core - 4.1.0 - - - org.springframework.data - spring-data-rest-hal-explorer - 4.1.0 - - - org.springframework.data - spring-data-keyvalue - 3.1.0 - - - org.springframework.data - spring-data-ldap - 3.1.0 - - - org.springframework - spring-aop - 6.0.9 - - - org.springframework - spring-aspects - 6.0.9 - - - org.springframework - spring-beans - 6.0.9 - - - org.springframework - spring-context - 6.0.9 - - - org.springframework - spring-context-indexer - 6.0.9 - - - org.springframework - spring-context-support - 6.0.9 - - - org.springframework - spring-core - 6.0.9 - - - org.springframework - spring-core-test - 6.0.9 - - - org.springframework - spring-expression - 6.0.9 - - - org.springframework - spring-instrument - 6.0.9 - - - org.springframework - spring-jcl - 6.0.9 - - - org.springframework - spring-jdbc - 6.0.9 - - - org.springframework - spring-jms - 6.0.9 - - - org.springframework - spring-messaging - 6.0.9 - - - org.springframework - spring-orm - 6.0.9 - - - org.springframework - spring-oxm - 6.0.9 - - - org.springframework - spring-r2dbc - 6.0.9 - - - org.springframework - spring-test - 6.0.9 - - - org.springframework - spring-tx - 6.0.9 - - - org.springframework - spring-web - 6.0.9 - - - org.springframework - spring-webflux - 6.0.9 - - - org.springframework - spring-webmvc - 6.0.9 - - - org.springframework - spring-websocket - 6.0.9 - - - org.springframework.integration - spring-integration-amqp - 6.1.0 - - - org.springframework.integration - spring-integration-camel - 6.1.0 - - - org.springframework.integration - spring-integration-cassandra - 6.1.0 - - - org.springframework.integration - spring-integration-core - 6.1.0 - - - org.springframework.integration - spring-integration-event - 6.1.0 - - - org.springframework.integration - spring-integration-feed - 6.1.0 - - - org.springframework.integration - spring-integration-file - 6.1.0 - - - org.springframework.integration - spring-integration-ftp - 6.1.0 - - - org.springframework.integration - spring-integration-graphql - 6.1.0 - - - org.springframework.integration - spring-integration-groovy - 6.1.0 - - - org.springframework.integration - spring-integration-hazelcast - 6.1.0 - - - org.springframework.integration - spring-integration-http - 6.1.0 - - - org.springframework.integration - spring-integration-ip - 6.1.0 - - - org.springframework.integration - spring-integration-jdbc - 6.1.0 - - - org.springframework.integration - spring-integration-jms - 6.1.0 - - - org.springframework.integration - spring-integration-jmx - 6.1.0 - - - org.springframework.integration - spring-integration-jpa - 6.1.0 - - - org.springframework.integration - spring-integration-kafka - 6.1.0 - - - org.springframework.integration - spring-integration-mail - 6.1.0 - - - org.springframework.integration - spring-integration-mongodb - 6.1.0 - - - org.springframework.integration - spring-integration-mqtt - 6.1.0 - - - org.springframework.integration - spring-integration-r2dbc - 6.1.0 - - - org.springframework.integration - spring-integration-redis - 6.1.0 - - - org.springframework.integration - spring-integration-rsocket - 6.1.0 - - - org.springframework.integration - spring-integration-scripting - 6.1.0 - - - org.springframework.integration - spring-integration-security - 6.1.0 - - - org.springframework.integration - spring-integration-sftp - 6.1.0 - - - org.springframework.integration - spring-integration-smb - 6.1.0 - - - org.springframework.integration - spring-integration-stomp - 6.1.0 - - - org.springframework.integration - spring-integration-stream - 6.1.0 - - - org.springframework.integration - spring-integration-syslog - 6.1.0 - - - org.springframework.integration - spring-integration-test - 6.1.0 - - - org.springframework.integration - spring-integration-test-support - 6.1.0 - - - org.springframework.integration - spring-integration-webflux - 6.1.0 - - - org.springframework.integration - spring-integration-websocket - 6.1.0 - - - org.springframework.integration - spring-integration-ws - 6.1.0 - - - org.springframework.integration - spring-integration-xml - 6.1.0 - - - org.springframework.integration - spring-integration-xmpp - 6.1.0 - - - org.springframework.integration - spring-integration-zeromq - 6.1.0 - - - org.springframework.integration - spring-integration-zip - 6.1.0 - - - org.springframework.integration - spring-integration-zookeeper - 6.1.0 - - - org.springframework.restdocs - spring-restdocs-asciidoctor - 3.0.0 - - - org.springframework.restdocs - spring-restdocs-core - 3.0.0 - - - org.springframework.restdocs - spring-restdocs-mockmvc - 3.0.0 - - - org.springframework.restdocs - spring-restdocs-restassured - 3.0.0 - - - org.springframework.restdocs - spring-restdocs-webtestclient - 3.0.0 - - - org.springframework.security - spring-security-acl - 6.1.0 - - - org.springframework.security - spring-security-aspects - 6.1.0 - - - org.springframework.security - spring-security-cas - 6.1.0 - - - org.springframework.security - spring-security-config - 6.1.0 - - - org.springframework.security - spring-security-core - 6.1.0 - - - org.springframework.security - spring-security-crypto - 6.1.0 - - - org.springframework.security - spring-security-data - 6.1.0 - - - org.springframework.security - spring-security-ldap - 6.1.0 - - - org.springframework.security - spring-security-messaging - 6.1.0 - - - org.springframework.security - spring-security-oauth2-client - 6.1.0 - - - org.springframework.security - spring-security-oauth2-core - 6.1.0 - - - org.springframework.security - spring-security-oauth2-jose - 6.1.0 - - - org.springframework.security - spring-security-oauth2-resource-server - 6.1.0 - - - org.springframework.security - spring-security-rsocket - 6.1.0 - - - org.springframework.security - spring-security-saml2-service-provider - 6.1.0 - - - org.springframework.security - spring-security-taglibs - 6.1.0 - - - org.springframework.security - spring-security-test - 6.1.0 - - - org.springframework.security - spring-security-web - 6.1.0 - - - org.springframework.session - spring-session-core - 3.1.0 - - - org.springframework.session - spring-session-data-mongodb - 3.1.0 - - - org.springframework.session - spring-session-data-redis - 3.1.0 - - - org.springframework.session - spring-session-hazelcast - 3.1.0 - - - org.springframework.session - spring-session-jdbc - 3.1.0 - - - org.springframework.ws - spring-ws-core - 4.0.4 - - - org.springframework.ws - spring-ws-security - 4.0.4 - - - org.springframework.ws - spring-ws-support - 4.0.4 - - - org.springframework.ws - spring-ws-test - 4.0.4 - - - org.springframework.ws - spring-xml - 4.0.4 - - - - - - org.jenkins-ci - version-number - 1.11 - compile - - - org.kohsuke - github-api - 1.315 - compile - - - org.eclipse.jgit - org.eclipse.jgit - 6.6.0.202305301015-r - compile - - - com.fasterxml.jackson.dataformat - jackson-dataformat-yaml - 2.15.0 - compile - - - org.springframework.boot - spring-boot-starter-data-jpa - 3.1.0 - compile - - - org.springframework.boot - spring-boot-starter-validation - 3.1.0 - compile - - - com.vladmihalcea - hibernate-types-60 - 2.21.1 - compile - - - io.jenkins.pluginhealth.scoring - plugin-health-scoring-test - 2.4.3-SNAPSHOT - test - - - org.springframework.boot - spring-boot-starter-test - 3.1.0 - test - - - junit - junit - - - - - org.junit.jupiter - junit-jupiter-engine - 5.9.3 - test - - - org.junit.jupiter - junit-jupiter-params - 5.9.3 - test - - - org.postgresql - postgresql - 42.6.0 - test - - - org.apache.maven - maven-model - 3.9.2 - compile - - - - - repo.jenkins-ci.org - https://repo.jenkins-ci.org/public/ - - - - false - - central - Central Repository - https://repo.maven.apache.org/maven2 - - - - - repo.jenkins-ci.org - https://repo.jenkins-ci.org/public/ - - - - never - - - false - - central - Central Repository - https://repo.maven.apache.org/maven2 - - - - D:\jenkins-oss\plugin-health-scoring\core\src\main\java - D:\jenkins-oss\plugin-health-scoring\core\src\main\scripts - D:\jenkins-oss\plugin-health-scoring\core\src\test\java - D:\jenkins-oss\plugin-health-scoring\core\target\classes - D:\jenkins-oss\plugin-health-scoring\core\target\test-classes - - - D:\jenkins-oss\plugin-health-scoring\core\src\main\resources - - - - - D:\jenkins-oss\plugin-health-scoring\core\src\test\resources - - - D:\jenkins-oss\plugin-health-scoring\core\target - plugin-health-scoring-core-2.4.3-SNAPSHOT - - - - maven-antrun-plugin - 1.3 - - - maven-assembly-plugin - 2.2-beta-5 - - - maven-dependency-plugin - 2.8 - - - maven-checkstyle-plugin - 3.3.0 - - - com.puppycrawl.tools - checkstyle - 10.12.0 - - - - false - true - analytics/checkstyle-configuration.xml - - - - maven-compiler-plugin - 3.11.0 - - 17 - - -parameters - - - - - maven-failsafe-plugin - 3.1.0 - - - - integration-test - verify - - - D:\jenkins-oss\plugin-health-scoring\core\target\classes - - - - - D:\jenkins-oss\plugin-health-scoring\core\target\classes - - - - maven-release-plugin - 3.0.1 - - verify - true - v@{project.version} - - - - maven-surefire-plugin - 3.1.0 - - - com.github.spotbugs - spotbugs-maven-plugin - 4.7.3.4 - - analytics/spotbugs-exclude.xml - Max - - - - org.jacoco - jacoco-maven-plugin - 0.8.10 - - - XML - - - - - - - - maven-failsafe-plugin - 3.1.0 - - - - integration-test - verify - - - D:\jenkins-oss\plugin-health-scoring\core\target\classes - - - - - D:\jenkins-oss\plugin-health-scoring\core\target\classes - - - - org.jacoco - jacoco-maven-plugin - 0.8.10 - - - default-prepare-agent - - prepare-agent - - - - XML - - - - - default-prepare-agent-integration - - prepare-agent-integration - - - - XML - - - - - merge-data-files - post-integration-test - - merge - - - - - D:\jenkins-oss\plugin-health-scoring\core\target - - jacoco.exec - jacoco-it.exec - - - - D:\jenkins-oss\plugin-health-scoring\core\target/jacoco-merged.exec - - XML - - - - - merged-report - post-integration-test - - report - - - D:\jenkins-oss\plugin-health-scoring\core\target/jacoco-merged.exec - - XML - - - - - - - XML - - - - - org.codehaus.mojo - tidy-maven-plugin - 1.2.0 - - - tidy-pom - validate - - pom - - - - - - maven-clean-plugin - 2.5 - - - default-clean - clean - - clean - - - - - - maven-resources-plugin - 2.6 - - - default-testResources - process-test-resources - - testResources - - - - default-resources - process-resources - - resources - - - - - - maven-jar-plugin - 2.4 - - - default-jar - package - - jar - - - - - - maven-compiler-plugin - 3.11.0 - - - default-compile - compile - - compile - - - 17 - - -parameters - - - - - default-testCompile - test-compile - - testCompile - - - 17 - - -parameters - - - - - - 17 - - -parameters - - - - - maven-surefire-plugin - 3.1.0 - - - default-test - test - - test - - - - - - maven-install-plugin - 2.4 - - - default-install - install - - install - - - - - - maven-deploy-plugin - 2.7 - - - default-deploy - deploy - - deploy - - - - - - maven-site-plugin - 3.3 - - - default-site - site - - site - - - D:\jenkins-oss\plugin-health-scoring\core\target\site - - - org.apache.maven.plugins - maven-project-info-reports-plugin - - - - - - default-deploy - site-deploy - - deploy - - - D:\jenkins-oss\plugin-health-scoring\core\target\site - - - org.apache.maven.plugins - maven-project-info-reports-plugin - - - - - - - D:\jenkins-oss\plugin-health-scoring\core\target\site - - - org.apache.maven.plugins - maven-project-info-reports-plugin - - - - - - - - D:\jenkins-oss\plugin-health-scoring\core\target\site - - - - - - - - - - 4.0.0 - - io.jenkins.pluginhealth.scoring - plugin-health-scoring-parent - 2.4.3-SNAPSHOT - ../ - - io.jenkins.pluginhealth.scoring - plugin-health-scoring-war - 2.4.3-SNAPSHOT - Plugin Health Scoring :: WAR - Build and provide health indicators on plugins of the Jenkins ecosystem - 2022 - - Jenkins Infra - https://github.com/jenkins-infra - - - - The MIT license - https://opensource.org/licenses/MIT - repo - - - - - adi10hero - Aditya Srivastava - - - alecharp - Adrien Lecharpentier - - - dheerajodha - Dheeraj Singh Jodha - - - jleon33 - Jake Leon - - - - scm:git:https://github.com/jenkins-infra/plugin-health-scoring.git/plugin-health-scoring-war - scm:git:git@github.com:jenkins-infra/plugin-health-scoring.git/plugin-health-scoring-war - https://github.com/jenkins-infra/plugin-health-scoring/plugin-health-scoring-war - - - - maven.jenkins-ci.org - https://repo.jenkins-ci.org/releases/ - - - maven.jenkins-ci.org - https://repo.jenkins-ci.org/snapshots/ - - - - 17 - 0.11.5 - 17 - 17 - 18.10.0 - UTF-8 - UTF-8 - UTF-8 - 3.1.0 - 1.18.3 - ca1a380d840c676152fbf8635a82d838113fe77e1665466699a4e106df4930d2 - 3.2.4 - false - 1.22.19 - - - - - io.jenkins.pluginhealth.scoring - plugin-health-scoring-core - 2.4.3-SNAPSHOT - - - io.jenkins.pluginhealth.scoring - plugin-health-scoring-test - 2.4.3-SNAPSHOT - - - org.kohsuke - github-api - 1.315 - - - io.jsonwebtoken - jjwt-api - 0.11.5 - - - io.jsonwebtoken - jjwt-impl - 0.11.5 - - - io.jsonwebtoken - jjwt-jackson - 0.11.5 - - - org.apache.maven - maven-model - 3.9.2 - - - org.testcontainers - azure - 1.18.3 - - - org.testcontainers - cassandra - 1.18.3 - - - org.testcontainers - clickhouse - 1.18.3 - - - org.testcontainers - cockroachdb - 1.18.3 - - - org.testcontainers - consul - 1.18.3 - - - org.testcontainers - couchbase - 1.18.3 - - - org.testcontainers - cratedb - 1.18.3 - - - org.testcontainers - database-commons - 1.18.3 - - - org.testcontainers - db2 - 1.18.3 - - - org.testcontainers - dynalite - 1.18.3 - - - org.testcontainers - elasticsearch - 1.18.3 - - - org.testcontainers - gcloud - 1.18.3 - - - org.testcontainers - hivemq - 1.18.3 - - - org.testcontainers - influxdb - 1.18.3 - - - org.testcontainers - jdbc - 1.18.3 - - - org.testcontainers - junit-jupiter - 1.18.3 - - - org.testcontainers - k3s - 1.18.3 - - - org.testcontainers - kafka - 1.18.3 - - - org.testcontainers - localstack - 1.18.3 - - - org.testcontainers - mariadb - 1.18.3 - - - org.testcontainers - mockserver - 1.18.3 - - - org.testcontainers - mongodb - 1.18.3 - - - org.testcontainers - mssqlserver - 1.18.3 - - - org.testcontainers - mysql - 1.18.3 - - - org.testcontainers - neo4j - 1.18.3 - - - org.testcontainers - nginx - 1.18.3 - - - org.testcontainers - oracle-xe - 1.18.3 - - - org.testcontainers - orientdb - 1.18.3 - - - org.testcontainers - postgresql - 1.18.3 - - - org.testcontainers - presto - 1.18.3 - - - org.testcontainers - pulsar - 1.18.3 - - - org.testcontainers - questdb - 1.18.3 - - - org.testcontainers - r2dbc - 1.18.3 - - - org.testcontainers - rabbitmq - 1.18.3 - - - org.testcontainers - redpanda - 1.18.3 - - - org.testcontainers - selenium - 1.18.3 - - - org.testcontainers - solace - 1.18.3 - - - org.testcontainers - solr - 1.18.3 - - - org.testcontainers - spock - 1.18.3 - - - org.testcontainers - testcontainers - 1.18.3 - - - org.testcontainers - tidb - 1.18.3 - - - org.testcontainers - toxiproxy - 1.18.3 - - - org.testcontainers - trino - 1.18.3 - - - org.testcontainers - vault - 1.18.3 - - - org.testcontainers - yugabytedb - 1.18.3 - - - org.apache.activemq - activemq-amqp - 5.18.1 - - - org.apache.activemq - activemq-blueprint - 5.18.1 - - - org.apache.activemq - activemq-broker - 5.18.1 - - - org.apache.activemq - activemq-client - 5.18.1 - - - org.apache.activemq - activemq-client-jakarta - 5.18.1 - - - org.apache.activemq - activemq-console - 5.18.1 - - - commons-logging - commons-logging - - - - - org.apache.activemq - activemq-http - 5.18.1 - - - org.apache.activemq - activemq-jaas - 5.18.1 - - - org.apache.activemq - activemq-jdbc-store - 5.18.1 - - - org.apache.activemq - activemq-jms-pool - 5.18.1 - - - org.apache.activemq - activemq-kahadb-store - 5.18.1 - - - org.apache.activemq - activemq-karaf - 5.18.1 - - - org.apache.activemq - activemq-log4j-appender - 5.18.1 - - - org.apache.activemq - activemq-mqtt - 5.18.1 - - - org.apache.activemq - activemq-openwire-generator - 5.18.1 - - - org.apache.activemq - activemq-openwire-legacy - 5.18.1 - - - org.apache.activemq - activemq-osgi - 5.18.1 - - - org.apache.activemq - activemq-partition - 5.18.1 - - - org.apache.activemq - activemq-pool - 5.18.1 - - - org.apache.activemq - activemq-ra - 5.18.1 - - - org.apache.activemq - activemq-run - 5.18.1 - - - org.apache.activemq - activemq-runtime-config - 5.18.1 - - - org.apache.activemq - activemq-shiro - 5.18.1 - - - org.apache.activemq - activemq-spring - 5.18.1 - - - commons-logging - commons-logging - - - - - org.apache.activemq - activemq-stomp - 5.18.1 - - - org.apache.activemq - activemq-web - 5.18.1 - - - org.eclipse.angus - angus-core - 1.1.0 - - - org.eclipse.angus - angus-mail - 1.1.0 - - - org.eclipse.angus - dsn - 1.1.0 - - - org.eclipse.angus - gimap - 1.1.0 - - - org.eclipse.angus - imap - 1.1.0 - - - org.eclipse.angus - jakarta.mail - 1.1.0 - - - org.eclipse.angus - logging-mailhandler - 1.1.0 - - - org.eclipse.angus - pop3 - 1.1.0 - - - org.eclipse.angus - smtp - 1.1.0 - - - org.apache.activemq - artemis-amqp-protocol - 2.28.0 - - - org.apache.activemq - artemis-commons - 2.28.0 - - - org.apache.activemq - artemis-core-client - 2.28.0 - - - org.apache.activemq - artemis-jakarta-client - 2.28.0 - - - org.apache.activemq - artemis-jakarta-server - 2.28.0 - - - org.apache.activemq - artemis-jakarta-service-extensions - 2.28.0 - - - org.apache.activemq - artemis-jdbc-store - 2.28.0 - - - org.apache.activemq - artemis-journal - 2.28.0 - - - org.apache.activemq - artemis-quorum-api - 2.28.0 - - - org.apache.activemq - artemis-selector - 2.28.0 - - - org.apache.activemq - artemis-server - 2.28.0 - - - org.apache.activemq - artemis-service-extensions - 2.28.0 - - - org.aspectj - aspectjrt - 1.9.19 - - - org.aspectj - aspectjtools - 1.9.19 - - - org.aspectj - aspectjweaver - 1.9.19 - - - org.awaitility - awaitility - 4.2.0 - - - org.awaitility - awaitility-groovy - 4.2.0 - - - org.awaitility - awaitility-kotlin - 4.2.0 - - - org.awaitility - awaitility-scala - 4.2.0 - - - net.bytebuddy - byte-buddy - 1.14.4 - - - net.bytebuddy - byte-buddy-agent - 1.14.4 - - - org.cache2k - cache2k-api - 2.6.1.Final - - - org.cache2k - cache2k-config - 2.6.1.Final - - - org.cache2k - cache2k-core - 2.6.1.Final - - - org.cache2k - cache2k-jcache - 2.6.1.Final - - - org.cache2k - cache2k-micrometer - 2.6.1.Final - - - org.cache2k - cache2k-spring - 2.6.1.Final - - - com.github.ben-manes.caffeine - caffeine - 3.1.6 - - - com.github.ben-manes.caffeine - guava - 3.1.6 - - - com.github.ben-manes.caffeine - jcache - 3.1.6 - - - com.github.ben-manes.caffeine - simulator - 3.1.6 - - - com.datastax.oss - java-driver-core - 4.15.0 - - - org.slf4j - jcl-over-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.4.6 - - - com.ibm.db2 - jcc - 11.5.8.0 - - - io.spring.gradle - dependency-management-plugin - 1.1.0 - - - org.apache.derby - derby - 10.16.1.1 - - - org.apache.derby - derbyclient - 10.16.1.1 - - - org.apache.derby - derbynet - 10.16.1.1 - - - org.apache.derby - derbyoptionaltools - 10.16.1.1 - - - org.apache.derby - derbyshared - 10.16.1.1 - - - org.apache.derby - derbytools - 10.16.1.1 - - - org.ehcache - ehcache - 3.10.8 - jakarta - - - org.ehcache - ehcache-clustered - 3.10.8 - - - org.ehcache - ehcache-transactions - 3.10.8 - jakarta - - - org.elasticsearch.client - elasticsearch-rest-client - 8.7.1 - - - commons-logging - commons-logging - - - - - org.elasticsearch.client - elasticsearch-rest-client-sniffer - 8.7.1 - - - commons-logging - commons-logging - - - - - co.elastic.clients - elasticsearch-java - 8.7.1 - - - org.flywaydb - flyway-core - 9.16.3 - - - org.flywaydb - flyway-firebird - 9.16.3 - - - org.flywaydb - flyway-mysql - 9.16.3 - - - org.flywaydb - flyway-sqlserver - 9.16.3 - - - org.freemarker - freemarker - 2.3.32 - - - org.glassfish.web - jakarta.servlet.jsp.jstl - 3.0.1 - - - com.graphql-java - graphql-java - 20.2 - - - com.google.code.gson - gson - 2.10.1 - - - com.h2database - h2 - 2.1.214 - - - org.hamcrest - hamcrest - 2.2 - - - org.hamcrest - hamcrest-core - 2.2 - - - org.hamcrest - hamcrest-library - 2.2 - - - com.hazelcast - hazelcast - 5.2.3 - - - com.hazelcast - hazelcast-spring - 5.2.3 - - - org.hibernate.orm - hibernate-agroal - 6.2.2.Final - - - org.hibernate.orm - hibernate-ant - 6.2.2.Final - - - org.hibernate.orm - hibernate-c3p0 - 6.2.2.Final - - - org.hibernate.orm - hibernate-community-dialects - 6.2.2.Final - - - org.hibernate.orm - hibernate-core - 6.2.2.Final - - - org.hibernate.orm - hibernate-envers - 6.2.2.Final - - - org.hibernate.orm - hibernate-graalvm - 6.2.2.Final - - - org.hibernate.orm - hibernate-hikaricp - 6.2.2.Final - - - org.hibernate.orm - hibernate-jcache - 6.2.2.Final - - - org.hibernate.orm - hibernate-jpamodelgen - 6.2.2.Final - - - org.hibernate.orm - hibernate-micrometer - 6.2.2.Final - - - org.hibernate.orm - hibernate-proxool - 6.2.2.Final - - - org.hibernate.orm - hibernate-spatial - 6.2.2.Final - - - org.hibernate.orm - hibernate-testing - 6.2.2.Final - - - org.hibernate.orm - hibernate-vibur - 6.2.2.Final - - - org.hibernate.validator - hibernate-validator - 8.0.0.Final - - - org.hibernate.validator - hibernate-validator-annotation-processor - 8.0.0.Final - - - com.zaxxer - HikariCP - 5.0.1 - - - org.hsqldb - hsqldb - 2.7.1 - - - net.sourceforge.htmlunit - htmlunit - 2.70.0 - - - commons-logging - commons-logging - - - - - org.apache.httpcomponents - httpasyncclient - 4.1.5 - - - commons-logging - commons-logging - - - - - org.apache.httpcomponents.client5 - httpclient5 - 5.2.1 - - - org.apache.httpcomponents.client5 - httpclient5-cache - 5.2.1 - - - org.apache.httpcomponents.client5 - httpclient5-fluent - 5.2.1 - - - org.apache.httpcomponents.client5 - httpclient5-win - 5.2.1 - - - org.apache.httpcomponents - httpcore - 4.4.16 - - - org.apache.httpcomponents - httpcore-nio - 4.4.16 - - - org.apache.httpcomponents.core5 - httpcore5 - 5.2.1 - - - org.apache.httpcomponents.core5 - httpcore5-h2 - 5.2.1 - - - org.apache.httpcomponents.core5 - httpcore5-reactive - 5.2.1 - - - org.influxdb - influxdb-java - 2.23 - - - jakarta.activation - jakarta.activation-api - 2.1.2 - - - jakarta.annotation - jakarta.annotation-api - 2.1.1 - - - jakarta.jms - jakarta.jms-api - 3.1.0 - - - jakarta.json - jakarta.json-api - 2.1.1 - - - jakarta.json.bind - jakarta.json.bind-api - 3.0.0 - - - jakarta.mail - jakarta.mail-api - 2.1.1 - - - jakarta.management.j2ee - jakarta.management.j2ee-api - 1.1.4 - - - jakarta.persistence - jakarta.persistence-api - 3.1.0 - - - jakarta.servlet - jakarta.servlet-api - 6.0.0 - - - jakarta.servlet.jsp.jstl - jakarta.servlet.jsp.jstl-api - 3.0.0 - - - jakarta.transaction - jakarta.transaction-api - 2.0.1 - - - jakarta.validation - jakarta.validation-api - 3.0.2 - - - jakarta.websocket - jakarta.websocket-api - 2.1.0 - - - jakarta.websocket - jakarta.websocket-client-api - 2.1.0 - - - jakarta.ws.rs - jakarta.ws.rs-api - 3.1.0 - - - jakarta.xml.bind - jakarta.xml.bind-api - 4.0.0 - - - jakarta.xml.soap - jakarta.xml.soap-api - 3.0.0 - - - jakarta.xml.ws - jakarta.xml.ws-api - 4.0.0 - - - org.codehaus.janino - commons-compiler - 3.1.9 - - - org.codehaus.janino - commons-compiler-jdk - 3.1.9 - - - org.codehaus.janino - janino - 3.1.9 - - - javax.cache - cache-api - 1.1.1 - - - javax.money - money-api - 1.1 - - - jaxen - jaxen - 2.0.0 - - - org.firebirdsql.jdbc - jaybird - 5.0.1.java11 - - - org.jboss.logging - jboss-logging - 3.5.0.Final - - - org.jdom - jdom2 - 2.0.6.1 - - - redis.clients - jedis - 4.3.2 - - - org.eclipse.jetty - jetty-reactive-httpclient - 3.0.8 - - - com.samskivert - jmustache - 1.15 - - - org.jooq - jooq - 3.18.4 - - - org.jooq - jooq-codegen - 3.18.4 - - - org.jooq - jooq-kotlin - 3.18.4 - - - org.jooq - jooq-meta - 3.18.4 - - - com.jayway.jsonpath - json-path - 2.8.0 - - - com.jayway.jsonpath - json-path-assert - 2.8.0 - - - net.minidev - json-smart - 2.4.10 - - - org.skyscreamer - jsonassert - 1.5.1 - - - net.sourceforge.jtds - jtds - 1.3.1 - - - junit - junit - 4.13.2 - - - org.apache.kafka - connect - 3.4.0 - - - org.apache.kafka - connect-api - 3.4.0 - - - org.apache.kafka - connect-basic-auth-extension - 3.4.0 - - - org.apache.kafka - connect-file - 3.4.0 - - - org.apache.kafka - connect-json - 3.4.0 - - - org.apache.kafka - connect-mirror - 3.4.0 - - - org.apache.kafka - connect-mirror-client - 3.4.0 - - - org.apache.kafka - connect-runtime - 3.4.0 - - - org.apache.kafka - connect-transforms - 3.4.0 - - - org.apache.kafka - generator - 3.4.0 - - - org.apache.kafka - kafka-clients - 3.4.0 - - - org.apache.kafka - kafka-clients - 3.4.0 - test - - - org.apache.kafka - kafka-log4j-appender - 3.4.0 - - - org.apache.kafka - kafka-metadata - 3.4.0 - - - org.apache.kafka - kafka-raft - 3.4.0 - - - org.apache.kafka - kafka-server-common - 3.4.0 - - - org.apache.kafka - kafka-shell - 3.4.0 - - - org.apache.kafka - kafka-storage - 3.4.0 - - - org.apache.kafka - kafka-storage-api - 3.4.0 - - - org.apache.kafka - kafka-streams - 3.4.0 - - - org.apache.kafka - kafka-streams-scala_2.12 - 3.4.0 - - - org.apache.kafka - kafka-streams-scala_2.13 - 3.4.0 - - - org.apache.kafka - kafka-streams-test-utils - 3.4.0 - - - org.apache.kafka - kafka-tools - 3.4.0 - - - org.apache.kafka - kafka_2.12 - 3.4.0 - - - org.apache.kafka - kafka_2.12 - 3.4.0 - test - - - org.apache.kafka - kafka_2.13 - 3.4.0 - - - org.apache.kafka - kafka_2.13 - 3.4.0 - test - - - org.apache.kafka - trogdor - 3.4.0 - - - io.lettuce - lettuce-core - 6.2.4.RELEASE - - - org.liquibase - liquibase-cdi - 4.20.0 - - - org.liquibase - liquibase-core - 4.20.0 - - - ch.qos.logback - logback-access - 1.4.7 - - - ch.qos.logback - logback-classic - 1.4.7 - - - ch.qos.logback - logback-core - 1.4.7 - - - org.projectlombok - lombok - 1.18.26 - - - org.mariadb.jdbc - mariadb-java-client - 3.1.4 - - - io.micrometer - micrometer-registry-stackdriver - 1.11.0 - - - javax.annotation - javax.annotation-api - - - - - org.mongodb - bson - 4.9.1 - - - org.mongodb - bson-record-codec - 4.9.1 - - - org.mongodb - mongodb-driver-core - 4.9.1 - - - org.mongodb - mongodb-driver-legacy - 4.9.1 - - - org.mongodb - mongodb-driver-reactivestreams - 4.9.1 - - - org.mongodb - mongodb-driver-sync - 4.9.1 - - - com.microsoft.sqlserver - mssql-jdbc - 11.2.3.jre17 - - - com.mysql - mysql-connector-j - 8.0.33 - - - com.google.protobuf - protobuf-java - - - - - net.sourceforge.nekohtml - nekohtml - 1.9.22 - - - org.neo4j.driver - neo4j-java-driver - 5.8.0 - - - com.oracle.database.r2dbc - oracle-r2dbc - 1.1.1 - - - org.messaginghub - pooled-jms - 3.1.0 - - - org.postgresql - postgresql - 42.6.0 - - - org.quartz-scheduler - quartz - 2.3.2 - - - com.mchange - c3p0 - - - com.zaxxer - * - - - - - org.quartz-scheduler - quartz-jobs - 2.3.2 - - - io.r2dbc - r2dbc-h2 - 1.0.0.RELEASE - - - org.mariadb - r2dbc-mariadb - 1.1.4 - - - io.r2dbc - r2dbc-mssql - 1.0.0.RELEASE - - - io.asyncer - r2dbc-mysql - 1.0.1 - - - io.r2dbc - r2dbc-pool - 1.0.0.RELEASE - - - org.postgresql - r2dbc-postgresql - 1.0.1.RELEASE - - - io.r2dbc - r2dbc-proxy - 1.1.0.RELEASE - - - io.r2dbc - r2dbc-spi - 1.0.0.RELEASE - - - com.rabbitmq - amqp-client - 5.17.0 - - - com.rabbitmq - stream-client - 0.9.0 - - - org.reactivestreams - reactive-streams - 1.0.4 - - - io.reactivex.rxjava3 - rxjava - 3.1.6 - - - org.springframework.boot - spring-boot - 3.1.0 - - - org.springframework.boot - spring-boot-test - 3.1.0 - - - org.springframework.boot - spring-boot-test-autoconfigure - 3.1.0 - - - org.springframework.boot - spring-boot-testcontainers - 3.1.0 - - - org.springframework.boot - spring-boot-actuator - 3.1.0 - - - org.springframework.boot - spring-boot-actuator-autoconfigure - 3.1.0 - - - org.springframework.boot - spring-boot-autoconfigure - 3.1.0 - - - org.springframework.boot - spring-boot-autoconfigure-processor - 3.1.0 - - - org.springframework.boot - spring-boot-buildpack-platform - 3.1.0 - - - org.springframework.boot - spring-boot-configuration-metadata - 3.1.0 - - - org.springframework.boot - spring-boot-configuration-processor - 3.1.0 - - - org.springframework.boot - spring-boot-devtools - 3.1.0 - - - org.springframework.boot - spring-boot-docker-compose - 3.1.0 - - - org.springframework.boot - spring-boot-jarmode-layertools - 3.1.0 - - - org.springframework.boot - spring-boot-loader - 3.1.0 - - - org.springframework.boot - spring-boot-loader-tools - 3.1.0 - - - org.springframework.boot - spring-boot-properties-migrator - 3.1.0 - - - org.springframework.boot - spring-boot-starter - 3.1.0 - - - org.springframework.boot - spring-boot-starter-activemq - 3.1.0 - - - org.springframework.boot - spring-boot-starter-actuator - 3.1.0 - - - org.springframework.boot - spring-boot-starter-amqp - 3.1.0 - - - org.springframework.boot - spring-boot-starter-aop - 3.1.0 - - - org.springframework.boot - spring-boot-starter-artemis - 3.1.0 - - - org.springframework.boot - spring-boot-starter-batch - 3.1.0 - - - org.springframework.boot - spring-boot-starter-cache - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-cassandra - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-cassandra-reactive - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-couchbase - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-couchbase-reactive - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-elasticsearch - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-jdbc - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-jpa - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-ldap - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-mongodb - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-mongodb-reactive - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-r2dbc - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-redis - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-redis-reactive - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-neo4j - 3.1.0 - - - org.springframework.boot - spring-boot-starter-data-rest - 3.1.0 - - - org.springframework.boot - spring-boot-starter-freemarker - 3.1.0 - - - org.springframework.boot - spring-boot-starter-graphql - 3.1.0 - - - org.springframework.boot - spring-boot-starter-groovy-templates - 3.1.0 - - - org.springframework.boot - spring-boot-starter-hateoas - 3.1.0 - - - org.springframework.boot - spring-boot-starter-integration - 3.1.0 - - - org.springframework.boot - spring-boot-starter-jdbc - 3.1.0 - - - org.springframework.boot - spring-boot-starter-jersey - 3.1.0 - - - org.springframework.boot - spring-boot-starter-jetty - 3.1.0 - - - org.springframework.boot - spring-boot-starter-jooq - 3.1.0 - - - org.springframework.boot - spring-boot-starter-json - 3.1.0 - - - org.springframework.boot - spring-boot-starter-log4j2 - 3.1.0 - - - org.springframework.boot - spring-boot-starter-logging - 3.1.0 - - - org.springframework.boot - spring-boot-starter-mail - 3.1.0 - - - org.springframework.boot - spring-boot-starter-mustache - 3.1.0 - - - org.springframework.boot - spring-boot-starter-oauth2-authorization-server - 3.1.0 - - - org.springframework.boot - spring-boot-starter-oauth2-client - 3.1.0 - - - org.springframework.boot - spring-boot-starter-oauth2-resource-server - 3.1.0 - - - org.springframework.boot - spring-boot-starter-quartz - 3.1.0 - - - org.springframework.boot - spring-boot-starter-reactor-netty - 3.1.0 - - - org.springframework.boot - spring-boot-starter-rsocket - 3.1.0 - - - org.springframework.boot - spring-boot-starter-security - 3.1.0 - - - org.springframework.boot - spring-boot-starter-test - 3.1.0 - - - org.springframework.boot - spring-boot-starter-thymeleaf - 3.1.0 - - - org.springframework.boot - spring-boot-starter-tomcat - 3.1.0 - - - org.springframework.boot - spring-boot-starter-undertow - 3.1.0 - - - org.springframework.boot - spring-boot-starter-validation - 3.1.0 - - - org.springframework.boot - spring-boot-starter-web - 3.1.0 - - - org.springframework.boot - spring-boot-starter-webflux - 3.1.0 - - - org.springframework.boot - spring-boot-starter-websocket - 3.1.0 - - - org.springframework.boot - spring-boot-starter-web-services - 3.1.0 - - - com.sun.xml.messaging.saaj - saaj-impl - 3.0.2 - - - org.seleniumhq.selenium - lift - 4.8.3 - - - org.seleniumhq.selenium - selenium-api - 4.8.3 - - - org.seleniumhq.selenium - selenium-chrome-driver - 4.8.3 - - - org.seleniumhq.selenium - selenium-chromium-driver - 4.8.3 - - - org.seleniumhq.selenium - selenium-devtools-v108 - 4.8.3 - - - org.seleniumhq.selenium - selenium-devtools-v109 - 4.8.3 - - - org.seleniumhq.selenium - selenium-devtools-v110 - 4.8.3 - - - org.seleniumhq.selenium - selenium-devtools-v85 - 4.8.3 - - - org.seleniumhq.selenium - selenium-edge-driver - 4.8.3 - - - org.seleniumhq.selenium - selenium-firefox-driver - 4.8.3 - - - org.seleniumhq.selenium - selenium-grid - 4.8.3 - - - org.seleniumhq.selenium - selenium-http - 4.8.3 - - - org.seleniumhq.selenium - selenium-http-jdk-client - 4.8.3 - - - org.seleniumhq.selenium - selenium-ie-driver - 4.8.3 - - - org.seleniumhq.selenium - selenium-java - 4.8.3 - - - org.seleniumhq.selenium - selenium-json - 4.8.3 - - - org.seleniumhq.selenium - selenium-manager - 4.8.3 - - - org.seleniumhq.selenium - selenium-remote-driver - 4.8.3 - - - org.seleniumhq.selenium - selenium-safari-driver - 4.8.3 - - - org.seleniumhq.selenium - selenium-session-map-jdbc - 4.8.3 - - - org.seleniumhq.selenium - selenium-session-map-redis - 4.8.3 - - - org.seleniumhq.selenium - selenium-support - 4.8.3 - - - org.seleniumhq.selenium - htmlunit-driver - 4.8.3 - - - com.sendgrid - sendgrid-java - 4.9.3 - - - org.slf4j - jcl-over-slf4j - 2.0.7 - - - org.slf4j - jul-to-slf4j - 2.0.7 - - - org.slf4j - log4j-over-slf4j - 2.0.7 - - - org.slf4j - slf4j-api - 2.0.7 - - - org.slf4j - slf4j-ext - 2.0.7 - - - org.slf4j - slf4j-jdk-platform-logging - 2.0.7 - - - org.slf4j - slf4j-jdk14 - 2.0.7 - - - org.slf4j - slf4j-log4j12 - 2.0.7 - - - org.slf4j - slf4j-nop - 2.0.7 - - - org.slf4j - slf4j-reload4j - 2.0.7 - - - org.slf4j - slf4j-simple - 2.0.7 - - - org.yaml - snakeyaml - 1.33 - - - org.springframework.amqp - spring-amqp - 3.0.4 - - - org.springframework.amqp - spring-rabbit - 3.0.4 - - - org.springframework.amqp - spring-rabbit-stream - 3.0.4 - - - org.springframework.amqp - spring-rabbit-junit - 3.0.4 - - - org.springframework.amqp - spring-rabbit-test - 3.0.4 - - - org.springframework.security - spring-security-oauth2-authorization-server - 1.1.0 - - - org.springframework.graphql - spring-graphql - 1.2.0 - - - org.springframework.graphql - spring-graphql-test - 1.2.0 - - - org.springframework.hateoas - spring-hateoas - 2.1.0 - - - org.springframework.kafka - spring-kafka - 3.0.7 - - - org.springframework.kafka - spring-kafka-test - 3.0.7 - - - org.springframework.ldap - spring-ldap-core - 3.1.0 - - - org.springframework.ldap - spring-ldap-ldif-core - 3.1.0 - - - org.springframework.ldap - spring-ldap-odm - 3.1.0 - - - org.springframework.ldap - spring-ldap-test - 3.1.0 - - - org.springframework.retry - spring-retry - 2.0.1 - - - org.xerial - sqlite-jdbc - 3.41.2.1 - - - org.thymeleaf - thymeleaf - 3.1.1.RELEASE - - - org.thymeleaf - thymeleaf-spring6 - 3.1.1.RELEASE - - - com.github.mxab.thymeleaf.extras - thymeleaf-extras-data-attribute - 2.0.1 - - - org.thymeleaf.extras - thymeleaf-extras-springsecurity6 - 3.1.1.RELEASE - - - nz.net.ultraq.thymeleaf - thymeleaf-layout-dialect - 3.2.1 - - - org.apache.tomcat - tomcat-annotations-api - 10.1.8 - - - org.apache.tomcat - tomcat-jdbc - 10.1.8 - - - org.apache.tomcat - tomcat-jsp-api - 10.1.8 - - - org.apache.tomcat.embed - tomcat-embed-core - 10.1.8 - - - org.apache.tomcat.embed - tomcat-embed-el - 10.1.8 - - - org.apache.tomcat.embed - tomcat-embed-jasper - 10.1.8 - - - org.apache.tomcat.embed - tomcat-embed-websocket - 10.1.8 - - - com.unboundid - unboundid-ldapsdk - 6.0.8 - - - io.undertow - undertow-core - 2.3.6.Final - - - io.undertow - undertow-servlet - 2.3.6.Final - - - io.undertow - undertow-websockets-jsr - 2.3.6.Final - - - org.webjars - webjars-locator-core - 0.52 - - - wsdl4j - wsdl4j - 1.6.3 - - - org.xmlunit - xmlunit-assertj - 2.9.1 - - - org.xmlunit - xmlunit-assertj3 - 2.9.1 - - - org.xmlunit - xmlunit-core - 2.9.1 - - - org.xmlunit - xmlunit-jakarta-jaxb-impl - 2.9.1 - - - org.xmlunit - xmlunit-legacy - 2.9.1 - - - org.xmlunit - xmlunit-matchers - 2.9.1 - - - org.xmlunit - xmlunit-placeholders - 2.9.1 - - - org.eclipse - yasson - 3.0.3 - - - org.assertj - assertj-core - 3.24.2 - - - org.assertj - assertj-guava - 3.24.2 - - - io.zipkin.zipkin2 - zipkin - 2.23.2 - - - io.zipkin.brave - brave - 5.15.1 - - - io.zipkin.brave - brave-tests - 5.15.1 - - - io.zipkin.brave - brave-context-jfr - 5.15.1 - - - io.zipkin.brave - brave-context-log4j2 - 5.15.1 - - - io.zipkin.brave - brave-context-log4j12 - 5.15.1 - - - io.zipkin.brave - brave-context-slf4j - 5.15.1 - - - io.zipkin.brave - brave-context-rxjava2 - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-dubbo - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-dubbo-rpc - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-grpc - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-http - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-http-tests - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-httpasyncclient - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-httpclient - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-jaxrs2 - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-jersey-server - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-jms - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-jms-jakarta - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-kafka-clients - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-kafka-streams - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-messaging - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-mongodb - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-mysql - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-mysql6 - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-mysql8 - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-netty-codec-http - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-okhttp3 - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-p6spy - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-rpc - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-servlet - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-servlet-jakarta - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-sparkjava - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-spring-rabbit - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-spring-web - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-spring-webmvc - 5.15.1 - - - io.zipkin.brave - brave-instrumentation-vertx-web - 5.15.1 - - - io.zipkin.brave - brave-spring-beans - 5.15.1 - - - io.zipkin.proto3 - zipkin-proto3 - 1.0.0 - - - io.zipkin.reporter2 - zipkin-reporter - 2.16.3 - - - io.zipkin.reporter2 - zipkin-sender-okhttp3 - 2.16.3 - - - io.zipkin.reporter2 - zipkin-sender-libthrift - 2.16.3 - - - io.zipkin.reporter2 - zipkin-sender-urlconnection - 2.16.3 - - - io.zipkin.reporter2 - zipkin-sender-kafka08 - 2.16.3 - - - io.zipkin.reporter2 - zipkin-sender-kafka - 2.16.3 - - - io.zipkin.reporter2 - zipkin-sender-amqp-client - 2.16.3 - - - io.zipkin.reporter2 - zipkin-sender-activemq-client - 2.16.3 - - - io.zipkin.reporter2 - zipkin-reporter-spring-beans - 2.16.3 - - - io.zipkin.reporter2 - zipkin-reporter-brave - 2.16.3 - - - io.zipkin.reporter2 - zipkin-reporter-metrics-micrometer - 2.16.3 - - - com.datastax.oss - java-driver-core-shaded - 4.15.0 - - - com.datastax.oss - java-driver-mapper-processor - 4.15.0 - - - com.datastax.oss - java-driver-mapper-runtime - 4.15.0 - - - com.datastax.oss - java-driver-query-builder - 4.15.0 - - - com.datastax.oss - java-driver-test-infra - 4.15.0 - - - com.datastax.oss - java-driver-metrics-micrometer - 4.15.0 - - - com.datastax.oss - java-driver-metrics-microprofile - 4.15.0 - - - com.datastax.oss - native-protocol - 1.5.1 - - - com.datastax.oss - java-driver-shaded-guava - 25.1-jre-graal-sub-1 - - - io.dropwizard.metrics - metrics-annotation - 4.2.18 - - - io.dropwizard.metrics - metrics-caffeine - 4.2.18 - - - io.dropwizard.metrics - metrics-caffeine3 - 4.2.18 - - - io.dropwizard.metrics - metrics-core - 4.2.18 - - - io.dropwizard.metrics - metrics-collectd - 4.2.18 - - - io.dropwizard.metrics - metrics-ehcache - 4.2.18 - - - io.dropwizard.metrics - metrics-graphite - 4.2.18 - - - io.dropwizard.metrics - metrics-healthchecks - 4.2.18 - - - io.dropwizard.metrics - metrics-httpclient - 4.2.18 - - - io.dropwizard.metrics - metrics-httpclient5 - 4.2.18 - - - io.dropwizard.metrics - metrics-httpasyncclient - 4.2.18 - - - io.dropwizard.metrics - metrics-jakarta-servlet - 4.2.18 - - - io.dropwizard.metrics - metrics-jakarta-servlets - 4.2.18 - - - io.dropwizard.metrics - metrics-jcache - 4.2.18 - - - io.dropwizard.metrics - metrics-jdbi - 4.2.18 - - - io.dropwizard.metrics - metrics-jdbi3 - 4.2.18 - - - io.dropwizard.metrics - metrics-jersey2 - 4.2.18 - - - io.dropwizard.metrics - metrics-jersey3 - 4.2.18 - - - io.dropwizard.metrics - metrics-jersey31 - 4.2.18 - - - io.dropwizard.metrics - metrics-jetty9 - 4.2.18 - - - io.dropwizard.metrics - metrics-jetty10 - 4.2.18 - - - io.dropwizard.metrics - metrics-jetty11 - 4.2.18 - - - io.dropwizard.metrics - metrics-jmx - 4.2.18 - - - io.dropwizard.metrics - metrics-json - 4.2.18 - - - io.dropwizard.metrics - metrics-jvm - 4.2.18 - - - io.dropwizard.metrics - metrics-log4j2 - 4.2.18 - - - io.dropwizard.metrics - metrics-logback - 4.2.18 - - - io.dropwizard.metrics - metrics-logback13 - 4.2.18 - - - io.dropwizard.metrics - metrics-logback14 - 4.2.18 - - - io.dropwizard.metrics - metrics-servlet - 4.2.18 - - - io.dropwizard.metrics - metrics-servlets - 4.2.18 - - - org.glassfish.jaxb - jaxb-runtime - 4.0.2 - sources - - - org.glassfish.jaxb - jaxb-core - 4.0.2 - sources - - - org.glassfish.jaxb - jaxb-xjc - 4.0.2 - sources - - - org.glassfish.jaxb - jaxb-jxc - 4.0.2 - sources - - - org.glassfish.jaxb - codemodel - 4.0.2 - sources - - - org.glassfish.jaxb - txw2 - 4.0.2 - sources - - - org.glassfish.jaxb - xsom - 4.0.2 - sources - - - com.sun.xml.bind - jaxb-impl - 4.0.2 - sources - - - com.sun.xml.bind - jaxb-core - 4.0.2 - sources - - - com.sun.xml.bind - jaxb-xjc - 4.0.2 - sources - - - com.sun.xml.bind - jaxb-jxc - 4.0.2 - sources - - - jakarta.xml.bind - jakarta.xml.bind-api - 4.0.0 - sources - - - org.jvnet.staxex - stax-ex - 2.1.0 - sources - - - jakarta.activation - jakarta.activation-api - - - - - com.sun.xml.fastinfoset - FastInfoset - 2.1.0 - sources - - - org.glassfish.jaxb - jaxb-runtime - 4.0.2 - - - org.glassfish.jaxb - jaxb-core - 4.0.2 - - - org.glassfish.jaxb - jaxb-xjc - 4.0.2 - - - org.glassfish.jaxb - jaxb-jxc - 4.0.2 - - - org.glassfish.jaxb - codemodel - 4.0.2 - - - org.glassfish.jaxb - txw2 - 4.0.2 - - - org.glassfish.jaxb - xsom - 4.0.2 - - - com.sun.xml.bind - jaxb-impl - 4.0.2 - - - com.sun.xml.bind - jaxb-core - 4.0.2 - - - com.sun.xml.bind - jaxb-xjc - 4.0.2 - - - com.sun.xml.bind - jaxb-jxc - 4.0.2 - - - com.sun.xml.bind - jaxb-osgi - 4.0.2 - - - com.sun.istack - istack-commons-runtime - 4.1.1 - - - com.sun.xml.fastinfoset - FastInfoset - 2.1.0 - - - org.jvnet.staxex - stax-ex - 2.1.0 - - - org.eclipse.angus - angus-activation - 2.0.0 - - - org.apache.groovy - groovy - 4.0.12 - - - org.apache.groovy - groovy-ant - 4.0.12 - - - org.apache.groovy - groovy-astbuilder - 4.0.12 - - - org.apache.groovy - groovy-cli-commons - 4.0.12 - - - org.apache.groovy - groovy-cli-picocli - 4.0.12 - - - org.apache.groovy - groovy-console - 4.0.12 - - - org.apache.groovy - groovy-contracts - 4.0.12 - - - org.apache.groovy - groovy-datetime - 4.0.12 - - - org.apache.groovy - groovy-dateutil - 4.0.12 - - - org.apache.groovy - groovy-docgenerator - 4.0.12 - - - org.apache.groovy - groovy-ginq - 4.0.12 - - - org.apache.groovy - groovy-groovydoc - 4.0.12 - - - org.apache.groovy - groovy-groovysh - 4.0.12 - - - org.apache.groovy - groovy-jmx - 4.0.12 - - - org.apache.groovy - groovy-json - 4.0.12 - - - org.apache.groovy - groovy-jsr223 - 4.0.12 - - - org.apache.groovy - groovy-macro - 4.0.12 - - - org.apache.groovy - groovy-macro-library - 4.0.12 - - - org.apache.groovy - groovy-nio - 4.0.12 - - - org.apache.groovy - groovy-servlet - 4.0.12 - - - org.apache.groovy - groovy-sql - 4.0.12 - - - org.apache.groovy - groovy-swing - 4.0.12 - - - org.apache.groovy - groovy-templates - 4.0.12 - - - org.apache.groovy - groovy-test - 4.0.12 - - - org.apache.groovy - groovy-test-junit5 - 4.0.12 - - - org.apache.groovy - groovy-testng - 4.0.12 - - - org.apache.groovy - groovy-toml - 4.0.12 - - - org.apache.groovy - groovy-typecheckers - 4.0.12 - - - org.apache.groovy - groovy-xml - 4.0.12 - - - org.apache.groovy - groovy-yaml - 4.0.12 - - - org.infinispan - infinispan-api - 14.0.9.Final - - - org.infinispan - infinispan-cachestore-jdbc - 14.0.9.Final - - - org.infinispan - infinispan-cachestore-jdbc-jakarta - 14.0.9.Final - - - org.infinispan - infinispan-cachestore-jdbc-common - 14.0.9.Final - - - org.infinispan - infinispan-cachestore-jdbc-common-jakarta - 14.0.9.Final - - - org.infinispan - infinispan-cachestore-sql - 14.0.9.Final - - - org.infinispan - infinispan-cachestore-remote - 14.0.9.Final - - - org.infinispan - infinispan-cachestore-rocksdb - 14.0.9.Final - - - org.infinispan - infinispan-cdi-common - 14.0.9.Final - - - org.infinispan - infinispan-cdi-common-jakarta - 14.0.9.Final - - - org.infinispan - infinispan-cdi-embedded - 14.0.9.Final - - - org.infinispan - infinispan-cdi-embedded-jakarta - 14.0.9.Final - - - org.infinispan - infinispan-cdi-remote - 14.0.9.Final - - - org.infinispan - infinispan-cdi-remote-jakarta - 14.0.9.Final - - - org.infinispan - infinispan-checkstyle - 14.0.9.Final - - - org.infinispan - infinispan-cli-client - 14.0.9.Final - - - org.infinispan - infinispan-hotrod - 14.0.9.Final - - - org.infinispan - infinispan-hotrod-jakarta - 14.0.9.Final - - - org.infinispan - infinispan-client-hotrod - 14.0.9.Final - - - org.infinispan - infinispan-client-hotrod-jakarta - 14.0.9.Final - - - org.infinispan - infinispan-client-rest - 14.0.9.Final - - - org.infinispan - infinispan-key-value-store-client - 14.0.9.Final - - - org.infinispan - infinispan-clustered-counter - 14.0.9.Final - - - org.infinispan - infinispan-clustered-lock - 14.0.9.Final - - - org.infinispan - infinispan-commons - 14.0.9.Final - - - org.infinispan - infinispan-commons-jakarta - 14.0.9.Final - - - org.infinispan - infinispan-commons-test - 14.0.9.Final - - - org.infinispan - infinispan-component-annotations - 14.0.9.Final - provided - - - org.infinispan - infinispan-component-processor - 14.0.9.Final - - - org.infinispan - infinispan-core - 14.0.9.Final - - - org.infinispan - infinispan-core-jakarta - 14.0.9.Final - - - org.infinispan - infinispan-jboss-marshalling - 14.0.9.Final - - - org.infinispan - infinispan-extended-statistics - 14.0.9.Final - - - org.infinispan - infinispan-hibernate-cache-commons - 14.0.9.Final - - - org.infinispan - infinispan-hibernate-cache-spi - 14.0.9.Final - - - org.infinispan - infinispan-hibernate-cache-v60 - 14.0.9.Final - - - org.infinispan - infinispan-jcache-commons - 14.0.9.Final - - - org.infinispan - infinispan-jcache - 14.0.9.Final - - - org.infinispan - infinispan-jcache-remote - 14.0.9.Final - - - org.infinispan - infinispan-console - 14.0.8.Final - - - org.infinispan - infinispan-multimap - 14.0.9.Final - - - org.infinispan - infinispan-objectfilter - 14.0.9.Final - - - org.infinispan - infinispan-query-core - 14.0.9.Final - - - org.infinispan - infinispan-query - 14.0.9.Final - - - org.infinispan - infinispan-query-jakarta - 14.0.9.Final - - - org.infinispan - infinispan-query-dsl - 14.0.9.Final - - - org.infinispan - infinispan-remote-query-client - 14.0.9.Final - - - org.infinispan - infinispan-remote-query-server - 14.0.9.Final - - - org.infinispan - infinispan-scripting - 14.0.9.Final - - - org.infinispan - infinispan-server-core - 14.0.9.Final - - - org.infinispan - infinispan-server-hotrod - 14.0.9.Final - - - org.infinispan - infinispan-server-hotrod-jakarta - 14.0.9.Final - - - org.infinispan - infinispan-server-memcached - 14.0.9.Final - - - org.infinispan - infinispan-server-resp - 14.0.9.Final - - - org.infinispan - infinispan-server-rest - 14.0.9.Final - - - org.infinispan - infinispan-server-router - 14.0.9.Final - - - org.infinispan - infinispan-server-runtime - 14.0.9.Final - - - org.infinispan - infinispan-server-runtime - 14.0.9.Final - loader - - - org.infinispan - infinispan-server-testdriver-core - 14.0.9.Final - - - org.infinispan - infinispan-server-testdriver-junit4 - 14.0.9.Final - - - org.infinispan - infinispan-server-testdriver-junit5 - 14.0.9.Final - - - org.infinispan - infinispan-spring5-common - 14.0.9.Final - - - org.infinispan - infinispan-spring5-embedded - 14.0.9.Final - - - org.infinispan - infinispan-spring5-remote - 14.0.9.Final - - - org.infinispan - infinispan-spring-boot-starter-embedded - 14.0.9.Final - - - org.infinispan - infinispan-spring-boot-starter-remote - 14.0.9.Final - - - org.infinispan - infinispan-spring6-common - 14.0.9.Final - - - org.infinispan - infinispan-spring6-embedded - 14.0.9.Final - - - org.infinispan - infinispan-spring6-remote - 14.0.9.Final - - - org.infinispan - infinispan-spring-boot3-starter-embedded - 14.0.9.Final - - - org.infinispan - infinispan-spring-boot3-starter-remote - 14.0.9.Final - - - org.infinispan - infinispan-tasks - 14.0.9.Final - - - org.infinispan - infinispan-tasks-api - 14.0.9.Final - - - org.infinispan - infinispan-tools - 14.0.9.Final - - - org.infinispan - infinispan-tools-jakarta - 14.0.9.Final - - - org.infinispan - infinispan-anchored-keys - 14.0.9.Final - - - org.infinispan.protostream - protostream - 4.6.2.Final - - - org.infinispan.protostream - protostream-types - 4.6.2.Final - - - org.infinispan.protostream - protostream-processor - 4.6.2.Final - provided - - - org.infinispan - infinispan-cloudevents-integration - 14.0.9.Final - - - org.infinispan - infinispan-marshaller-kryo - 14.0.9.Final - - - org.infinispan - infinispan-marshaller-kryo-bundle - 14.0.9.Final - - - org.infinispan - infinispan-marshaller-protostuff - 14.0.9.Final - - - org.infinispan - infinispan-marshaller-protostuff-bundle - 14.0.9.Final - - - com.fasterxml.jackson.core - jackson-annotations - 2.15.0 - - - com.fasterxml.jackson.core - jackson-core - 2.15.0 - - - com.fasterxml.jackson.core - jackson-databind - 2.15.0 - - - com.fasterxml.jackson.dataformat - jackson-dataformat-avro - 2.15.0 - - - com.fasterxml.jackson.dataformat - jackson-dataformat-cbor - 2.15.0 - - - com.fasterxml.jackson.dataformat - jackson-dataformat-csv - 2.15.0 - - - com.fasterxml.jackson.dataformat - jackson-dataformat-ion - 2.15.0 - - - com.fasterxml.jackson.dataformat - jackson-dataformat-properties - 2.15.0 - - - com.fasterxml.jackson.dataformat - jackson-dataformat-protobuf - 2.15.0 - - - com.fasterxml.jackson.dataformat - jackson-dataformat-smile - 2.15.0 - - - com.fasterxml.jackson.dataformat - jackson-dataformat-toml - 2.15.0 - - - com.fasterxml.jackson.dataformat - jackson-dataformat-xml - 2.15.0 - - - com.fasterxml.jackson.dataformat - jackson-dataformat-yaml - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-eclipse-collections - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-guava - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-hibernate4 - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-hibernate5 - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-hibernate5-jakarta - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-hibernate6 - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-hppc - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-jakarta-jsonp - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-jaxrs - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-joda - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-joda-money - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-jdk8 - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-json-org - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-jsr310 - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-jsr353 - 2.15.0 - - - com.fasterxml.jackson.datatype - jackson-datatype-pcollections - 2.15.0 - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-base - 2.15.0 - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-cbor-provider - 2.15.0 - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-json-provider - 2.15.0 - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-smile-provider - 2.15.0 - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-xml-provider - 2.15.0 - - - com.fasterxml.jackson.jaxrs - jackson-jaxrs-yaml-provider - 2.15.0 - - - com.fasterxml.jackson.jakarta.rs - jackson-jakarta-rs-base - 2.15.0 - - - com.fasterxml.jackson.jakarta.rs - jackson-jakarta-rs-cbor-provider - 2.15.0 - - - com.fasterxml.jackson.jakarta.rs - jackson-jakarta-rs-json-provider - 2.15.0 - - - com.fasterxml.jackson.jakarta.rs - jackson-jakarta-rs-smile-provider - 2.15.0 - - - com.fasterxml.jackson.jakarta.rs - jackson-jakarta-rs-xml-provider - 2.15.0 - - - com.fasterxml.jackson.jakarta.rs - jackson-jakarta-rs-yaml-provider - 2.15.0 - - - com.fasterxml.jackson.jr - jackson-jr-all - 2.15.0 - - - com.fasterxml.jackson.jr - jackson-jr-annotation-support - 2.15.0 - - - com.fasterxml.jackson.jr - jackson-jr-objects - 2.15.0 - - - com.fasterxml.jackson.jr - jackson-jr-retrofit2 - 2.15.0 - - - com.fasterxml.jackson.jr - jackson-jr-stree - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-afterburner - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-blackbird - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-guice - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-jaxb-annotations - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-jakarta-xmlbind-annotations - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-jsonSchema - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-jsonSchema-jakarta - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-kotlin - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-mrbean - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-no-ctor-deser - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-osgi - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-parameter-names - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-paranamer - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-scala_2.11 - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-scala_2.12 - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-scala_2.13 - 2.15.0 - - - com.fasterxml.jackson.module - jackson-module-scala_3 - 2.15.0 - - - org.glassfish.jersey.core - jersey-common - 3.1.1 - - - org.glassfish.jersey.core - jersey-client - 3.1.1 - - - org.glassfish.jersey.core - jersey-server - 3.1.1 - - - org.glassfish.jersey.bundles - jaxrs-ri - 3.1.1 - - - org.glassfish.jersey.connectors - jersey-apache-connector - 3.1.1 - - - org.glassfish.jersey.connectors - jersey-apache5-connector - 3.1.1 - - - org.glassfish.jersey.connectors - jersey-helidon-connector - 3.1.1 - - - org.glassfish.jersey.connectors - jersey-grizzly-connector - 3.1.1 - - - org.glassfish.jersey.connectors - jersey-jnh-connector - 3.1.1 - - - org.glassfish.jersey.connectors - jersey-jetty-connector - 3.1.1 - - - org.glassfish.jersey.connectors - jersey-jdk-connector - 3.1.1 - - - org.glassfish.jersey.connectors - jersey-netty-connector - 3.1.1 - - - org.glassfish.jersey.containers - jersey-container-jetty-http - 3.1.1 - - - org.glassfish.jersey.containers - jersey-container-grizzly2-http - 3.1.1 - - - org.glassfish.jersey.containers - jersey-container-grizzly2-servlet - 3.1.1 - - - org.glassfish.jersey.containers - jersey-container-jetty-servlet - 3.1.1 - - - org.glassfish.jersey.containers - jersey-container-jdk-http - 3.1.1 - - - org.glassfish.jersey.containers - jersey-container-netty-http - 3.1.1 - - - org.glassfish.jersey.containers - jersey-container-servlet - 3.1.1 - - - org.glassfish.jersey.containers - jersey-container-servlet-core - 3.1.1 - - - org.glassfish.jersey.containers - jersey-container-simple-http - 3.1.1 - - - org.glassfish.jersey.containers.glassfish - jersey-gf-ejb - 3.1.1 - - - org.glassfish.jersey.ext - jersey-bean-validation - 3.1.1 - - - org.glassfish.jersey.ext - jersey-entity-filtering - 3.1.1 - - - org.glassfish.jersey.ext - jersey-metainf-services - 3.1.1 - - - org.glassfish.jersey.ext.microprofile - jersey-mp-config - 3.1.1 - - - org.glassfish.jersey.ext - jersey-mvc - 3.1.1 - - - org.glassfish.jersey.ext - jersey-mvc-bean-validation - 3.1.1 - - - org.glassfish.jersey.ext - jersey-mvc-freemarker - 3.1.1 - - - org.glassfish.jersey.ext - jersey-mvc-jsp - 3.1.1 - - - org.glassfish.jersey.ext - jersey-mvc-mustache - 3.1.1 - - - org.glassfish.jersey.ext - jersey-proxy-client - 3.1.1 - - - org.glassfish.jersey.ext - jersey-spring6 - 3.1.1 - - - org.glassfish.jersey.ext - jersey-declarative-linking - 3.1.1 - - - org.glassfish.jersey.ext - jersey-wadl-doclet - 3.1.1 - - - org.glassfish.jersey.ext.cdi - jersey-weld2-se - 3.1.1 - - - org.glassfish.jersey.ext.cdi - jersey-cdi1x - 3.1.1 - - - org.glassfish.jersey.ext.cdi - jersey-cdi1x-transaction - 3.1.1 - - - org.glassfish.jersey.ext.cdi - jersey-cdi1x-validation - 3.1.1 - - - org.glassfish.jersey.ext.cdi - jersey-cdi1x-servlet - 3.1.1 - - - org.glassfish.jersey.ext.cdi - jersey-cdi1x-ban-custom-hk2-binding - 3.1.1 - - - org.glassfish.jersey.ext.cdi - jersey-cdi-rs-inject - 3.1.1 - - - org.glassfish.jersey.ext.rx - jersey-rx-client-guava - 3.1.1 - - - org.glassfish.jersey.ext.rx - jersey-rx-client-rxjava - 3.1.1 - - - org.glassfish.jersey.ext.rx - jersey-rx-client-rxjava2 - 3.1.1 - - - org.glassfish.jersey.ext.microprofile - jersey-mp-rest-client - 3.1.1 - - - org.glassfish.jersey.media - jersey-media-jaxb - 3.1.1 - - - org.glassfish.jersey.media - jersey-media-json-jackson - 3.1.1 - - - org.glassfish.jersey.media - jersey-media-json-jettison - 3.1.1 - - - org.glassfish.jersey.media - jersey-media-json-processing - 3.1.1 - - - org.glassfish.jersey.media - jersey-media-json-gson - 3.1.1 - - - org.glassfish.jersey.media - jersey-media-json-binding - 3.1.1 - - - org.glassfish.jersey.media - jersey-media-kryo - 3.1.1 - - - org.glassfish.jersey.media - jersey-media-moxy - 3.1.1 - - - org.glassfish.jersey.media - jersey-media-multipart - 3.1.1 - - - org.glassfish.jersey.media - jersey-media-sse - 3.1.1 - - - org.glassfish.jersey.security - oauth1-client - 3.1.1 - - - org.glassfish.jersey.security - oauth1-server - 3.1.1 - - - org.glassfish.jersey.security - oauth1-signature - 3.1.1 - - - org.glassfish.jersey.security - oauth2-client - 3.1.1 - - - org.glassfish.jersey.inject - jersey-hk2 - 3.1.1 - - - org.glassfish.jersey.inject - jersey-cdi2-se - 3.1.1 - - - org.glassfish.jersey.test-framework - jersey-test-framework-core - 3.1.1 - - - org.glassfish.jersey.test-framework.providers - jersey-test-framework-provider-bundle - 3.1.1 - pom - - - org.glassfish.jersey.test-framework.providers - jersey-test-framework-provider-external - 3.1.1 - - - org.glassfish.jersey.test-framework.providers - jersey-test-framework-provider-grizzly2 - 3.1.1 - - - org.glassfish.jersey.test-framework.providers - jersey-test-framework-provider-inmemory - 3.1.1 - - - org.glassfish.jersey.test-framework.providers - jersey-test-framework-provider-jdk-http - 3.1.1 - - - org.glassfish.jersey.test-framework.providers - jersey-test-framework-provider-simple - 3.1.1 - - - org.glassfish.jersey.test-framework.providers - jersey-test-framework-provider-jetty - 3.1.1 - - - org.glassfish.jersey.test-framework - jersey-test-framework-util - 3.1.1 - - - org.eclipse.jetty - apache-jsp - 11.0.15 - - - org.eclipse.jetty - glassfish-jstl - 11.0.15 - - - org.eclipse.jetty - jetty-alpn-client - 11.0.15 - - - org.eclipse.jetty - jetty-alpn-java-client - 11.0.15 - - - org.eclipse.jetty - jetty-alpn-java-server - 11.0.15 - - - org.eclipse.jetty - jetty-alpn-conscrypt-client - 11.0.15 - - - org.eclipse.jetty - jetty-alpn-conscrypt-server - 11.0.15 - - - org.eclipse.jetty - jetty-alpn-server - 11.0.15 - - - org.eclipse.jetty - jetty-annotations - 11.0.15 - - - org.eclipse.jetty - jetty-ant - 11.0.15 - - - org.eclipse.jetty - jetty-client - 11.0.15 - - - org.eclipse.jetty - jetty-cdi - 11.0.15 - - - org.eclipse.jetty - jetty-deploy - 11.0.15 - - - org.eclipse.jetty.fcgi - fcgi-client - 11.0.15 - - - org.eclipse.jetty.fcgi - fcgi-server - 11.0.15 - - - org.eclipse.jetty.gcloud - jetty-gcloud-session-manager - 11.0.15 - - - org.eclipse.jetty - jetty-home - 11.0.15 - zip - - - org.eclipse.jetty - jetty-home - 11.0.15 - tar.gz - - - org.eclipse.jetty - jetty-http - 11.0.15 - - - org.eclipse.jetty.http2 - http2-client - 11.0.15 - - - org.eclipse.jetty.http2 - http2-common - 11.0.15 - - - org.eclipse.jetty.http2 - http2-hpack - 11.0.15 - - - org.eclipse.jetty.http2 - http2-http-client-transport - 11.0.15 - - - org.eclipse.jetty.http2 - http2-server - 11.0.15 - - - org.eclipse.jetty.http3 - http3-client - 11.0.15 - - - org.eclipse.jetty.http3 - http3-common - 11.0.15 - - - org.eclipse.jetty.http3 - http3-http-client-transport - 11.0.15 - - - org.eclipse.jetty.http3 - http3-qpack - 11.0.15 - - - org.eclipse.jetty.http3 - http3-server - 11.0.15 - - - org.eclipse.jetty - jetty-http-spi - 11.0.15 - - - org.eclipse.jetty - infinispan-common - 11.0.15 - - - org.eclipse.jetty - infinispan-remote-query - 11.0.15 - - - org.eclipse.jetty - infinispan-embedded-query - 11.0.15 - - - org.eclipse.jetty - jetty-hazelcast - 11.0.15 - - - org.eclipse.jetty - jetty-io - 11.0.15 - - - org.eclipse.jetty - jetty-jaas - 11.0.15 - - - org.eclipse.jetty - jetty-jaspi - 11.0.15 - - - org.eclipse.jetty - jetty-jmx - 11.0.15 - - - org.eclipse.jetty - jetty-jndi - 11.0.15 - - - org.eclipse.jetty - jetty-keystore - 11.0.15 - - - org.eclipse.jetty.memcached - jetty-memcached-sessions - 11.0.15 - - - org.eclipse.jetty - jetty-nosql - 11.0.15 - - - org.eclipse.jetty.osgi - jetty-osgi-alpn - 11.0.15 - - - org.eclipse.jetty.osgi - jetty-osgi-boot - 11.0.15 - - - org.eclipse.jetty.osgi - jetty-osgi-boot-jsp - 11.0.15 - - - org.eclipse.jetty.osgi - jetty-osgi-boot-warurl - 11.0.15 - - - org.eclipse.jetty.quic - quic-client - 11.0.15 - - - org.eclipse.jetty.quic - quic-common - 11.0.15 - - - org.eclipse.jetty.quic - quic-quiche-common - 11.0.15 - - - org.eclipse.jetty.quic - quic-quiche-jna - 11.0.15 - - - org.eclipse.jetty.quic - quic-server - 11.0.15 - - - org.eclipse.jetty.osgi - jetty-httpservice - 11.0.15 - - - org.eclipse.jetty - jetty-plus - 11.0.15 - - - org.eclipse.jetty - jetty-proxy - 11.0.15 - - - org.eclipse.jetty - jetty-quickstart - 11.0.15 - - - org.eclipse.jetty - jetty-rewrite - 11.0.15 - - - org.eclipse.jetty - jetty-security - 11.0.15 - - - org.eclipse.jetty - jetty-openid - 11.0.15 - - - org.eclipse.jetty - jetty-server - 11.0.15 - - - org.eclipse.jetty - jetty-servlet - 11.0.15 - - - org.eclipse.jetty - jetty-servlets - 11.0.15 - - - org.eclipse.jetty - jetty-slf4j-impl - 11.0.15 - - - org.eclipse.jetty - jetty-unixdomain-server - 11.0.15 - - - org.eclipse.jetty - jetty-unixsocket-common - 11.0.15 - - - org.eclipse.jetty - jetty-unixsocket-client - 11.0.15 - - - org.eclipse.jetty - jetty-unixsocket-server - 11.0.15 - - - org.eclipse.jetty - jetty-util - 11.0.15 - - - org.eclipse.jetty - jetty-util-ajax - 11.0.15 - - - org.eclipse.jetty - jetty-webapp - 11.0.15 - - - org.eclipse.jetty.websocket - websocket-jakarta-client - 11.0.15 - - - org.eclipse.jetty.websocket - websocket-jakarta-server - 11.0.15 - - - org.eclipse.jetty.websocket - websocket-jakarta-common - 11.0.15 - - - org.eclipse.jetty.websocket - websocket-jetty-api - 11.0.15 - - - org.eclipse.jetty.websocket - websocket-jetty-client - 11.0.15 - - - org.eclipse.jetty.websocket - websocket-jetty-common - 11.0.15 - - - org.eclipse.jetty.websocket - websocket-jetty-server - 11.0.15 - - - org.eclipse.jetty.websocket - websocket-servlet - 11.0.15 - - - org.eclipse.jetty.websocket - websocket-core-common - 11.0.15 - - - org.eclipse.jetty.websocket - websocket-core-client - 11.0.15 - - - org.eclipse.jetty.websocket - websocket-core-server - 11.0.15 - - - org.eclipse.jetty - jetty-xml - 11.0.15 - - - org.junit.jupiter - junit-jupiter - 5.9.3 - - - org.junit.jupiter - junit-jupiter-api - 5.9.3 - - - org.junit.jupiter - junit-jupiter-engine - 5.9.3 - - - org.junit.jupiter - junit-jupiter-migrationsupport - 5.9.3 - - - org.junit.jupiter - junit-jupiter-params - 5.9.3 - - - org.junit.platform - junit-platform-commons - 1.9.3 - - - org.junit.platform - junit-platform-console - 1.9.3 - - - org.junit.platform - junit-platform-engine - 1.9.3 - - - org.junit.platform - junit-platform-jfr - 1.9.3 - - - org.junit.platform - junit-platform-launcher - 1.9.3 - - - org.junit.platform - junit-platform-reporting - 1.9.3 - - - org.junit.platform - junit-platform-runner - 1.9.3 - - - org.junit.platform - junit-platform-suite - 1.9.3 - - - org.junit.platform - junit-platform-suite-api - 1.9.3 - - - org.junit.platform - junit-platform-suite-commons - 1.9.3 - - - org.junit.platform - junit-platform-suite-engine - 1.9.3 - - - org.junit.platform - junit-platform-testkit - 1.9.3 - - - org.junit.vintage - junit-vintage-engine - 5.9.3 - - - org.jetbrains.kotlin - kotlin-stdlib - 1.8.21 - - - org.jetbrains.kotlin - kotlin-stdlib-jdk7 - 1.8.21 - - - org.jetbrains.kotlin - kotlin-stdlib-jdk8 - 1.8.21 - - - org.jetbrains.kotlin - kotlin-stdlib-js - 1.8.21 - - - org.jetbrains.kotlin - kotlin-stdlib-common - 1.8.21 - - - org.jetbrains.kotlin - kotlin-reflect - 1.8.21 - - - org.jetbrains.kotlin - kotlin-osgi-bundle - 1.8.21 - - - org.jetbrains.kotlin - kotlin-test - 1.8.21 - - - org.jetbrains.kotlin - kotlin-test-junit - 1.8.21 - - - org.jetbrains.kotlin - kotlin-test-junit5 - 1.8.21 - - - org.jetbrains.kotlin - kotlin-test-testng - 1.8.21 - - - org.jetbrains.kotlin - kotlin-test-js - 1.8.21 - - - org.jetbrains.kotlin - kotlin-test-common - 1.8.21 - - - org.jetbrains.kotlin - kotlin-test-annotations-common - 1.8.21 - - - org.jetbrains.kotlin - kotlin-main-kts - 1.8.21 - - - org.jetbrains.kotlin - kotlin-script-runtime - 1.8.21 - - - org.jetbrains.kotlin - kotlin-script-util - 1.8.21 - - - org.jetbrains.kotlin - kotlin-scripting-common - 1.8.21 - - - org.jetbrains.kotlin - kotlin-scripting-jvm - 1.8.21 - - - org.jetbrains.kotlin - kotlin-scripting-jvm-host - 1.8.21 - - - org.jetbrains.kotlin - kotlin-scripting-ide-services - 1.8.21 - - - org.jetbrains.kotlin - kotlin-compiler - 1.8.21 - - - org.jetbrains.kotlin - kotlin-compiler-embeddable - 1.8.21 - - - org.jetbrains.kotlin - kotlin-daemon-client - 1.8.21 - - - org.jetbrains.kotlinx - kotlinx-coroutines-android - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-core-jvm - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-core - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-debug - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-guava - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-javafx - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-jdk8 - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-jdk9 - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-play-services - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-reactive - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-reactor - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-rx2 - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-rx3 - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-slf4j - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-swing - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-test-jvm - 1.6.4 - - - org.jetbrains.kotlinx - kotlinx-coroutines-test - 1.6.4 - - - org.apache.logging.log4j - log4j-1.2-api - 2.20.0 - - - org.apache.logging.log4j - log4j-api - 2.20.0 - - - org.apache.logging.log4j - log4j-api-test - 2.20.0 - - - org.apache.logging.log4j - log4j-appserver - 2.20.0 - - - org.apache.logging.log4j - log4j-cassandra - 2.20.0 - - - org.apache.logging.log4j - log4j-core - 2.20.0 - - - org.apache.logging.log4j - log4j-core-test - 2.20.0 - - - org.apache.logging.log4j - log4j-couchdb - 2.20.0 - - - org.apache.logging.log4j - log4j-docker - 2.20.0 - - - org.apache.logging.log4j - log4j-flume-ng - 2.20.0 - - - org.apache.logging.log4j - log4j-iostreams - 2.20.0 - - - org.apache.logging.log4j - log4j-jakarta-smtp - 2.20.0 - - - org.apache.logging.log4j - log4j-jakarta-web - 2.20.0 - - - org.apache.logging.log4j - log4j-jcl - 2.20.0 - - - org.apache.logging.log4j - log4j-jmx-gui - 2.20.0 - - - org.apache.logging.log4j - log4j-jpa - 2.20.0 - - - org.apache.logging.log4j - log4j-jpl - 2.20.0 - - - org.apache.logging.log4j - log4j-jul - 2.20.0 - - - org.apache.logging.log4j - log4j-kubernetes - 2.20.0 - - - org.apache.logging.log4j - log4j-layout-template-json - 2.20.0 - - - org.apache.logging.log4j - log4j-layout-template-json-test - 2.20.0 - - - org.apache.logging.log4j - log4j-mongodb3 - 2.20.0 - - - org.apache.logging.log4j - log4j-mongodb4 - 2.20.0 - - - org.apache.logging.log4j - log4j-slf4j2-impl - 2.20.0 - - - org.apache.logging.log4j - log4j-slf4j-impl - 2.20.0 - - - org.apache.logging.log4j - log4j-spring-boot - 2.20.0 - - - org.apache.logging.log4j - log4j-spring-cloud-config-client - 2.20.0 - - - org.apache.logging.log4j - log4j-taglib - 2.20.0 - - - org.apache.logging.log4j - log4j-to-jul - 2.20.0 - - - org.apache.logging.log4j - log4j-to-slf4j - 2.20.0 - - - org.apache.logging.log4j - log4j-web - 2.20.0 - - - org.apache.maven.plugin-tools - maven-plugin-annotations - 3.6.4 - - - io.micrometer - micrometer-commons - 1.11.0 - - - io.micrometer - micrometer-core - 1.11.0 - - - io.micrometer - micrometer-jetty11 - 1.11.0 - - - io.micrometer - micrometer-observation - 1.11.0 - - - io.micrometer - micrometer-observation-test - 1.11.0 - - - io.micrometer - micrometer-osgi-test - 1.11.0 - - - io.micrometer - micrometer-registry-appoptics - 1.11.0 - - - io.micrometer - micrometer-registry-atlas - 1.11.0 - - - io.micrometer - micrometer-registry-azure-monitor - 1.11.0 - - - io.micrometer - micrometer-registry-cloudwatch - 1.11.0 - - - io.micrometer - micrometer-registry-cloudwatch2 - 1.11.0 - - - io.micrometer - micrometer-registry-datadog - 1.11.0 - - - io.micrometer - micrometer-registry-dynatrace - 1.11.0 - - - io.micrometer - micrometer-registry-elastic - 1.11.0 - - - io.micrometer - micrometer-registry-ganglia - 1.11.0 - - - io.micrometer - micrometer-registry-graphite - 1.11.0 - - - io.micrometer - micrometer-registry-health - 1.11.0 - - - io.micrometer - micrometer-registry-humio - 1.11.0 - - - io.micrometer - micrometer-registry-influx - 1.11.0 - - - io.micrometer - micrometer-registry-jmx - 1.11.0 - - - io.micrometer - micrometer-registry-kairos - 1.11.0 - - - io.micrometer - micrometer-registry-new-relic - 1.11.0 - - - io.micrometer - micrometer-registry-opentsdb - 1.11.0 - - - io.micrometer - micrometer-registry-otlp - 1.11.0 - - - io.micrometer - micrometer-registry-prometheus - 1.11.0 - - - io.micrometer - micrometer-registry-signalfx - 1.11.0 - - - io.micrometer - micrometer-registry-statsd - 1.11.0 - - - io.micrometer - micrometer-registry-wavefront - 1.11.0 - - - io.micrometer - micrometer-test - 1.11.0 - - - io.micrometer - micrometer-tracing - 1.1.1 - - - io.micrometer - micrometer-tracing-bridge-brave - 1.1.1 - - - io.micrometer - micrometer-tracing-bridge-otel - 1.1.1 - - - io.micrometer - micrometer-tracing-integration-test - 1.1.1 - - - io.micrometer - micrometer-tracing-reporter-wavefront - 1.1.1 - - - io.micrometer - micrometer-tracing-test - 1.1.1 - - - org.mockito - mockito-core - 5.3.1 - - - org.mockito - mockito-android - 5.3.1 - - - org.mockito - mockito-errorprone - 5.3.1 - - - org.mockito - mockito-junit-jupiter - 5.3.1 - - - org.mockito - mockito-proxy - 5.3.1 - - - org.mockito - mockito-subclass - 5.3.1 - - - io.netty - netty-buffer - 4.1.92.Final - - - io.netty - netty-codec - 4.1.92.Final - - - io.netty - netty-codec-dns - 4.1.92.Final - - - io.netty - netty-codec-haproxy - 4.1.92.Final - - - io.netty - netty-codec-http - 4.1.92.Final - - - io.netty - netty-codec-http2 - 4.1.92.Final - - - io.netty - netty-codec-memcache - 4.1.92.Final - - - io.netty - netty-codec-mqtt - 4.1.92.Final - - - io.netty - netty-codec-redis - 4.1.92.Final - - - io.netty - netty-codec-smtp - 4.1.92.Final - - - io.netty - netty-codec-socks - 4.1.92.Final - - - io.netty - netty-codec-stomp - 4.1.92.Final - - - io.netty - netty-codec-xml - 4.1.92.Final - - - io.netty - netty-common - 4.1.92.Final - - - io.netty - netty-dev-tools - 4.1.92.Final - - - io.netty - netty-handler - 4.1.92.Final - - - io.netty - netty-handler-proxy - 4.1.92.Final - - - io.netty - netty-handler-ssl-ocsp - 4.1.92.Final - - - io.netty - netty-resolver - 4.1.92.Final - - - io.netty - netty-resolver-dns - 4.1.92.Final - - - io.netty - netty-transport - 4.1.92.Final - - - io.netty - netty-transport-rxtx - 4.1.92.Final - - - io.netty - netty-transport-sctp - 4.1.92.Final - - - io.netty - netty-transport-udt - 4.1.92.Final - - - io.netty - netty-example - 4.1.92.Final - - - io.netty - netty-all - 4.1.92.Final - - - io.netty - netty-resolver-dns-classes-macos - 4.1.92.Final - - - io.netty - netty-resolver-dns-native-macos - 4.1.92.Final - - - io.netty - netty-resolver-dns-native-macos - 4.1.92.Final - osx-x86_64 - - - io.netty - netty-resolver-dns-native-macos - 4.1.92.Final - osx-aarch_64 - - - io.netty - netty-transport-native-unix-common - 4.1.92.Final - - - io.netty - netty-transport-native-unix-common - 4.1.92.Final - linux-aarch_64 - - - io.netty - netty-transport-native-unix-common - 4.1.92.Final - linux-x86_64 - - - io.netty - netty-transport-native-unix-common - 4.1.92.Final - osx-x86_64 - - - io.netty - netty-transport-native-unix-common - 4.1.92.Final - osx-aarch_64 - - - io.netty - netty-transport-classes-epoll - 4.1.92.Final - - - io.netty - netty-transport-native-epoll - 4.1.92.Final - - - io.netty - netty-transport-native-epoll - 4.1.92.Final - linux-aarch_64 - - - io.netty - netty-transport-native-epoll - 4.1.92.Final - linux-x86_64 - - - io.netty - netty-transport-classes-kqueue - 4.1.92.Final - - - io.netty - netty-transport-native-kqueue - 4.1.92.Final - - - io.netty - netty-transport-native-kqueue - 4.1.92.Final - osx-x86_64 - - - io.netty - netty-transport-native-kqueue - 4.1.92.Final - osx-aarch_64 - - - io.netty - netty-tcnative-classes - 2.0.60.Final - - - io.netty - netty-tcnative - 2.0.60.Final - linux-x86_64 - - - io.netty - netty-tcnative - 2.0.60.Final - linux-x86_64-fedora - - - io.netty - netty-tcnative - 2.0.60.Final - linux-aarch_64-fedora - - - io.netty - netty-tcnative - 2.0.60.Final - osx-x86_64 - - - io.netty - netty-tcnative-boringssl-static - 2.0.60.Final - - - io.netty - netty-tcnative-boringssl-static - 2.0.60.Final - linux-x86_64 - - - io.netty - netty-tcnative-boringssl-static - 2.0.60.Final - linux-aarch_64 - - - io.netty - netty-tcnative-boringssl-static - 2.0.60.Final - osx-x86_64 - - - io.netty - netty-tcnative-boringssl-static - 2.0.60.Final - osx-aarch_64 - - - io.netty - netty-tcnative-boringssl-static - 2.0.60.Final - windows-x86_64 - - - com.squareup.okhttp3 - mockwebserver - 4.10.0 - - - com.squareup.okhttp3 - okcurl - 4.10.0 - - - com.squareup.okhttp3 - okhttp - 4.10.0 - - - com.squareup.okhttp3 - okhttp-brotli - 4.10.0 - - - com.squareup.okhttp3 - okhttp-dnsoverhttps - 4.10.0 - - - com.squareup.okhttp3 - logging-interceptor - 4.10.0 - - - com.squareup.okhttp3 - okhttp-sse - 4.10.0 - - - com.squareup.okhttp3 - okhttp-tls - 4.10.0 - - - com.squareup.okhttp3 - okhttp-urlconnection - 4.10.0 - - - io.opentelemetry - opentelemetry-context - 1.25.0 - - - io.opentelemetry - opentelemetry-api - 1.25.0 - - - io.opentelemetry - opentelemetry-exporter-common - 1.25.0 - - - io.opentelemetry - opentelemetry-exporter-jaeger - 1.25.0 - - - io.opentelemetry - opentelemetry-exporter-jaeger-thrift - 1.25.0 - - - io.opentelemetry - opentelemetry-exporter-logging - 1.25.0 - - - io.opentelemetry - opentelemetry-exporter-logging-otlp - 1.25.0 - - - io.opentelemetry - opentelemetry-exporter-zipkin - 1.25.0 - - - io.opentelemetry - opentelemetry-extension-kotlin - 1.25.0 - - - io.opentelemetry - opentelemetry-extension-trace-propagators - 1.25.0 - - - io.opentelemetry - opentelemetry-sdk - 1.25.0 - - - io.opentelemetry - opentelemetry-sdk-common - 1.25.0 - - - io.opentelemetry - opentelemetry-sdk-metrics - 1.25.0 - - - io.opentelemetry - opentelemetry-sdk-testing - 1.25.0 - - - io.opentelemetry - opentelemetry-sdk-trace - 1.25.0 - - - io.opentelemetry - opentelemetry-sdk-extension-autoconfigure-spi - 1.25.0 - - - io.opentelemetry - opentelemetry-sdk-extension-jaeger-remote-sampler - 1.25.0 - - - io.opentelemetry - opentelemetry-exporter-otlp - 1.25.0 - - - io.opentelemetry - opentelemetry-exporter-otlp-common - 1.25.0 - - - io.opentelemetry - opentelemetry-sdk-extension-aws - 1.19.0 - - - io.opentelemetry - opentelemetry-exporter-jaeger-proto - 1.17.0 - - - io.opentelemetry - opentelemetry-extension-annotations - 1.18.0 - - - io.opentelemetry - opentelemetry-sdk-extension-resources - 1.19.0 - - - io.opentelemetry - opentelemetry-extension-aws - 1.20.1 - - - com.oracle.database.jdbc - ojdbc11 - 21.9.0.0 - - - com.oracle.database.jdbc - ojdbc8 - 21.9.0.0 - - - com.oracle.database.jdbc - ucp - 21.9.0.0 - - - com.oracle.database.jdbc - ucp11 - 21.9.0.0 - - - com.oracle.database.jdbc - rsi - 21.9.0.0 - - - com.oracle.database.security - oraclepki - 21.9.0.0 - - - com.oracle.database.security - osdt_core - 21.9.0.0 - - - com.oracle.database.security - osdt_cert - 21.9.0.0 - - - com.oracle.database.ha - simplefan - 21.9.0.0 - - - com.oracle.database.ha - ons - 21.9.0.0 - - - com.oracle.database.nls - orai18n - 21.9.0.0 - - - com.oracle.database.xml - xdb - 21.9.0.0 - - - com.oracle.database.xml - xmlparserv2 - 21.9.0.0 - - - com.oracle.database.jdbc.debug - ojdbc11_g - 21.9.0.0 - - - com.oracle.database.jdbc.debug - ojdbc8_g - 21.9.0.0 - - - com.oracle.database.jdbc.debug - ojdbc8dms_g - 21.9.0.0 - - - com.oracle.database.jdbc.debug - ojdbc11dms_g - 21.9.0.0 - - - com.oracle.database.observability - dms - 21.9.0.0 - - - com.oracle.database.observability - ojdbc11dms - 21.9.0.0 - - - com.oracle.database.observability - ojdbc8dms - 21.9.0.0 - - - com.oracle.database.jdbc - ojdbc11-production - 21.9.0.0 - pom - - - com.oracle.database.jdbc - ojdbc8-production - 21.9.0.0 - pom - - - com.oracle.database.observability - ojdbc8-observability - 21.9.0.0 - pom - - - com.oracle.database.observability - ojdbc11-observability - 21.9.0.0 - pom - - - com.oracle.database.jdbc.debug - ojdbc8-debug - 21.9.0.0 - pom - - - com.oracle.database.jdbc.debug - ojdbc11-debug - 21.9.0.0 - pom - - - com.oracle.database.jdbc.debug - ojdbc8-observability-debug - 21.9.0.0 - pom - - - com.oracle.database.jdbc.debug - ojdbc11-observability-debug - 21.9.0.0 - pom - - - io.prometheus - simpleclient - 0.16.0 - - - io.prometheus - simpleclient_caffeine - 0.16.0 - - - io.prometheus - simpleclient_common - 0.16.0 - - - io.prometheus - simpleclient_dropwizard - 0.16.0 - - - io.prometheus - simpleclient_graphite_bridge - 0.16.0 - - - io.prometheus - simpleclient_guava - 0.16.0 - - - io.prometheus - simpleclient_hibernate - 0.16.0 - - - io.prometheus - simpleclient_hotspot - 0.16.0 - - - io.prometheus - simpleclient_httpserver - 0.16.0 - - - io.prometheus - simpleclient_tracer_common - 0.16.0 - - - io.prometheus - simpleclient_jetty - 0.16.0 - - - io.prometheus - simpleclient_jetty_jdk8 - 0.16.0 - - - io.prometheus - simpleclient_log4j - 0.16.0 - - - io.prometheus - simpleclient_log4j2 - 0.16.0 - - - io.prometheus - simpleclient_logback - 0.16.0 - - - io.prometheus - simpleclient_pushgateway - 0.16.0 - - - io.prometheus - simpleclient_servlet - 0.16.0 - - - io.prometheus - simpleclient_servlet_jakarta - 0.16.0 - - - io.prometheus - simpleclient_spring_boot - 0.16.0 - - - io.prometheus - simpleclient_spring_web - 0.16.0 - - - io.prometheus - simpleclient_tracer_otel - 0.16.0 - - - io.prometheus - simpleclient_tracer_otel_agent - 0.16.0 - - - io.prometheus - simpleclient_vertx - 0.16.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 - - - io.projectreactor - reactor-core - 3.5.6 - - - io.projectreactor - reactor-test - 3.5.6 - - - io.projectreactor - reactor-tools - 3.5.6 - - - io.projectreactor - reactor-core-micrometer - 1.0.6 - - - io.projectreactor.addons - reactor-extra - 3.5.1 - - - io.projectreactor.addons - reactor-adapter - 3.5.1 - - - io.projectreactor.netty - reactor-netty - 1.1.7 - - - io.projectreactor.netty - reactor-netty-core - 1.1.7 - - - io.projectreactor.netty - reactor-netty-http - 1.1.7 - - - io.projectreactor.netty - reactor-netty-http-brave - 1.1.7 - - - io.projectreactor.addons - reactor-pool - 1.0.0 - - - io.projectreactor.addons - reactor-pool-micrometer - 0.1.0 - - - io.projectreactor.kotlin - reactor-kotlin-extensions - 1.2.2 - - - io.projectreactor.kafka - reactor-kafka - 1.3.18 - - - io.rest-assured - json-schema-validator - 5.3.0 - - - io.rest-assured - rest-assured-common - 5.3.0 - - - io.rest-assured - json-path - 5.3.0 - - - io.rest-assured - xml-path - 5.3.0 - - - io.rest-assured - rest-assured - 5.3.0 - - - io.rest-assured - spring-commons - 5.3.0 - - - io.rest-assured - spring-mock-mvc - 5.3.0 - - - io.rest-assured - scala-support - 5.3.0 - - - io.rest-assured - spring-web-test-client - 5.3.0 - - - io.rest-assured - kotlin-extensions - 5.3.0 - - - io.rest-assured - spring-mock-mvc-kotlin-extensions - 5.3.0 - - - io.rest-assured - rest-assured-all - 5.3.0 - - - io.rsocket - rsocket-core - 1.1.3 - - - io.rsocket - rsocket-load-balancer - 1.1.3 - - - io.rsocket - rsocket-micrometer - 1.1.3 - - - io.rsocket - rsocket-test - 1.1.3 - - - io.rsocket - rsocket-transport-local - 1.1.3 - - - io.rsocket - rsocket-transport-netty - 1.1.3 - - - org.springframework.batch - spring-batch-core - 5.0.2 - - - org.springframework.batch - spring-batch-infrastructure - 5.0.2 - - - org.springframework.batch - spring-batch-integration - 5.0.2 - - - org.springframework.batch - spring-batch-test - 5.0.2 - - - org.springframework.data - spring-data-cassandra - 4.1.0 - - - org.springframework.data - spring-data-commons - 3.1.0 - - - org.springframework.data - spring-data-couchbase - 5.1.0 - - - org.springframework.data - spring-data-elasticsearch - 5.1.0 - - - org.springframework.data - spring-data-jdbc - 3.1.0 - - - org.springframework.data - spring-data-r2dbc - 3.1.0 - - - org.springframework.data - spring-data-relational - 3.1.0 - - - org.springframework.data - spring-data-jpa - 3.1.0 - - - org.springframework.data - spring-data-envers - 3.1.0 - - - org.springframework.data - spring-data-mongodb - 4.1.0 - - - org.springframework.data - spring-data-neo4j - 7.1.0 - - - org.springframework.data - spring-data-redis - 3.1.0 - - - org.springframework.data - spring-data-rest-webmvc - 4.1.0 - - - org.springframework.data - spring-data-rest-core - 4.1.0 - - - org.springframework.data - spring-data-rest-hal-explorer - 4.1.0 - - - org.springframework.data - spring-data-keyvalue - 3.1.0 - - - org.springframework.data - spring-data-ldap - 3.1.0 - - - org.springframework - spring-aop - 6.0.9 - - - org.springframework - spring-aspects - 6.0.9 - - - org.springframework - spring-beans - 6.0.9 - - - org.springframework - spring-context - 6.0.9 - - - org.springframework - spring-context-indexer - 6.0.9 - - - org.springframework - spring-context-support - 6.0.9 - - - org.springframework - spring-core - 6.0.9 - - - org.springframework - spring-core-test - 6.0.9 - - - org.springframework - spring-expression - 6.0.9 - - - org.springframework - spring-instrument - 6.0.9 - - - org.springframework - spring-jcl - 6.0.9 - - - org.springframework - spring-jdbc - 6.0.9 - - - org.springframework - spring-jms - 6.0.9 - - - org.springframework - spring-messaging - 6.0.9 - - - org.springframework - spring-orm - 6.0.9 - - - org.springframework - spring-oxm - 6.0.9 - - - org.springframework - spring-r2dbc - 6.0.9 - - - org.springframework - spring-test - 6.0.9 - - - org.springframework - spring-tx - 6.0.9 - - - org.springframework - spring-web - 6.0.9 - - - org.springframework - spring-webflux - 6.0.9 - - - org.springframework - spring-webmvc - 6.0.9 - - - org.springframework - spring-websocket - 6.0.9 - - - org.springframework.integration - spring-integration-amqp - 6.1.0 - - - org.springframework.integration - spring-integration-camel - 6.1.0 - - - org.springframework.integration - spring-integration-cassandra - 6.1.0 - - - org.springframework.integration - spring-integration-core - 6.1.0 - - - org.springframework.integration - spring-integration-event - 6.1.0 - - - org.springframework.integration - spring-integration-feed - 6.1.0 - - - org.springframework.integration - spring-integration-file - 6.1.0 - - - org.springframework.integration - spring-integration-ftp - 6.1.0 - - - org.springframework.integration - spring-integration-graphql - 6.1.0 - - - org.springframework.integration - spring-integration-groovy - 6.1.0 - - - org.springframework.integration - spring-integration-hazelcast - 6.1.0 - - - org.springframework.integration - spring-integration-http - 6.1.0 - - - org.springframework.integration - spring-integration-ip - 6.1.0 - - - org.springframework.integration - spring-integration-jdbc - 6.1.0 - - - org.springframework.integration - spring-integration-jms - 6.1.0 - - - org.springframework.integration - spring-integration-jmx - 6.1.0 - - - org.springframework.integration - spring-integration-jpa - 6.1.0 - - - org.springframework.integration - spring-integration-kafka - 6.1.0 - - - org.springframework.integration - spring-integration-mail - 6.1.0 - - - org.springframework.integration - spring-integration-mongodb - 6.1.0 - - - org.springframework.integration - spring-integration-mqtt - 6.1.0 - - - org.springframework.integration - spring-integration-r2dbc - 6.1.0 - - - org.springframework.integration - spring-integration-redis - 6.1.0 - - - org.springframework.integration - spring-integration-rsocket - 6.1.0 - - - org.springframework.integration - spring-integration-scripting - 6.1.0 - - - org.springframework.integration - spring-integration-security - 6.1.0 - - - org.springframework.integration - spring-integration-sftp - 6.1.0 - - - org.springframework.integration - spring-integration-smb - 6.1.0 - - - org.springframework.integration - spring-integration-stomp - 6.1.0 - - - org.springframework.integration - spring-integration-stream - 6.1.0 - - - org.springframework.integration - spring-integration-syslog - 6.1.0 - - - org.springframework.integration - spring-integration-test - 6.1.0 - - - org.springframework.integration - spring-integration-test-support - 6.1.0 - - - org.springframework.integration - spring-integration-webflux - 6.1.0 - - - org.springframework.integration - spring-integration-websocket - 6.1.0 - - - org.springframework.integration - spring-integration-ws - 6.1.0 - - - org.springframework.integration - spring-integration-xml - 6.1.0 - - - org.springframework.integration - spring-integration-xmpp - 6.1.0 - - - org.springframework.integration - spring-integration-zeromq - 6.1.0 - - - org.springframework.integration - spring-integration-zip - 6.1.0 - - - org.springframework.integration - spring-integration-zookeeper - 6.1.0 - - - org.springframework.restdocs - spring-restdocs-asciidoctor - 3.0.0 - - - org.springframework.restdocs - spring-restdocs-core - 3.0.0 - - - org.springframework.restdocs - spring-restdocs-mockmvc - 3.0.0 - - - org.springframework.restdocs - spring-restdocs-restassured - 3.0.0 - - - org.springframework.restdocs - spring-restdocs-webtestclient - 3.0.0 - - - org.springframework.security - spring-security-acl - 6.1.0 - - - org.springframework.security - spring-security-aspects - 6.1.0 - - - org.springframework.security - spring-security-cas - 6.1.0 - - - org.springframework.security - spring-security-config - 6.1.0 - - - org.springframework.security - spring-security-core - 6.1.0 - - - org.springframework.security - spring-security-crypto - 6.1.0 - - - org.springframework.security - spring-security-data - 6.1.0 - - - org.springframework.security - spring-security-ldap - 6.1.0 - - - org.springframework.security - spring-security-messaging - 6.1.0 - - - org.springframework.security - spring-security-oauth2-client - 6.1.0 - - - org.springframework.security - spring-security-oauth2-core - 6.1.0 - - - org.springframework.security - spring-security-oauth2-jose - 6.1.0 - - - org.springframework.security - spring-security-oauth2-resource-server - 6.1.0 - - - org.springframework.security - spring-security-rsocket - 6.1.0 - - - org.springframework.security - spring-security-saml2-service-provider - 6.1.0 - - - org.springframework.security - spring-security-taglibs - 6.1.0 - - - org.springframework.security - spring-security-test - 6.1.0 - - - org.springframework.security - spring-security-web - 6.1.0 - - - org.springframework.session - spring-session-core - 3.1.0 - - - org.springframework.session - spring-session-data-mongodb - 3.1.0 - - - org.springframework.session - spring-session-data-redis - 3.1.0 - - - org.springframework.session - spring-session-hazelcast - 3.1.0 - - - org.springframework.session - spring-session-jdbc - 3.1.0 - - - org.springframework.ws - spring-ws-core - 4.0.4 - - - org.springframework.ws - spring-ws-security - 4.0.4 - - - org.springframework.ws - spring-ws-support - 4.0.4 - - - org.springframework.ws - spring-ws-test - 4.0.4 - - - org.springframework.ws - spring-xml - 4.0.4 - - - - - - io.jenkins.pluginhealth.scoring - plugin-health-scoring-core - 2.4.3-SNAPSHOT - compile - - - org.kohsuke - github-api - 1.315 - compile - - - io.jsonwebtoken - jjwt-jackson - 0.11.5 - runtime - - - com.squareup.okhttp3 - okhttp - 4.10.0 - compile - - - org.springframework.boot - spring-boot-starter-web - 3.1.0 - compile - - - org.springframework.boot - spring-boot-starter-security - 3.1.0 - compile - - - org.springframework.boot - spring-boot-starter-thymeleaf - 3.1.0 - compile - - - nz.net.ultraq.thymeleaf - thymeleaf-layout-dialect - 3.2.1 - compile - - - org.springframework.boot - spring-boot-starter-data-jpa - 3.1.0 - compile - - - org.springframework.boot - spring-boot-starter-validation - 3.1.0 - compile - - - com.vladmihalcea - hibernate-types-60 - 2.21.1 - compile - - - org.postgresql - postgresql - 42.6.0 - runtime - - - org.springframework.boot - spring-boot-starter-actuator - 3.1.0 - compile - - - org.springframework.boot - spring-boot-configuration-processor - 3.1.0 - compile - true - - - org.springframework.boot - spring-boot-devtools - 3.1.0 - runtime - true - - - io.jenkins.pluginhealth.scoring - plugin-health-scoring-test - 2.4.3-SNAPSHOT - test - - - org.springframework.boot - spring-boot-starter-test - 3.1.0 - test - - - junit - junit - - - - - org.junit.jupiter - junit-jupiter-engine - 5.9.3 - test - - - org.junit.jupiter - junit-jupiter-params - 5.9.3 - test - - - org.testcontainers - junit-jupiter - 1.18.3 - test - - - org.testcontainers - postgresql - 1.18.3 - test - - - - - repo.jenkins-ci.org - https://repo.jenkins-ci.org/public/ - - - - false - - central - Central Repository - https://repo.maven.apache.org/maven2 - - - - - repo.jenkins-ci.org - https://repo.jenkins-ci.org/public/ - - - - never - - - false - - central - Central Repository - https://repo.maven.apache.org/maven2 - - - - D:\jenkins-oss\plugin-health-scoring\war\src\main\java - D:\jenkins-oss\plugin-health-scoring\war\src\main\scripts - D:\jenkins-oss\plugin-health-scoring\war\src\test\java - D:\jenkins-oss\plugin-health-scoring\war\target\classes - D:\jenkins-oss\plugin-health-scoring\war\target\test-classes - - - D:\jenkins-oss\plugin-health-scoring\war\src\main\resources - - - - - D:\jenkins-oss\plugin-health-scoring\war\src\test\resources - - - D:\jenkins-oss\plugin-health-scoring\war\target - plugin-health-scoring - - - - maven-antrun-plugin - 1.3 - - - maven-assembly-plugin - 2.2-beta-5 - - - maven-dependency-plugin - 2.8 - - - maven-checkstyle-plugin - 3.3.0 - - - com.puppycrawl.tools - checkstyle - 10.12.0 - - - - false - true - analytics/checkstyle-configuration.xml - - - - maven-compiler-plugin - 3.11.0 - - 17 - - -parameters - - - - - maven-failsafe-plugin - 3.1.0 - - - - integration-test - verify - - - D:\jenkins-oss\plugin-health-scoring\war\target\classes - - - - - D:\jenkins-oss\plugin-health-scoring\war\target\classes - - - - maven-release-plugin - 3.0.1 - - verify - true - v@{project.version} - - - - maven-surefire-plugin - 3.1.0 - - - com.github.spotbugs - spotbugs-maven-plugin - 4.7.3.4 - - analytics/spotbugs-exclude.xml - Max - - - - org.jacoco - jacoco-maven-plugin - 0.8.10 - - - XML - - - - - maven-jar-plugin - - - - 2.4.3-SNAPSHOT - - - - - - - - - maven-failsafe-plugin - 3.1.0 - - - - integration-test - verify - - - D:\jenkins-oss\plugin-health-scoring\war\target\classes - - - - - D:\jenkins-oss\plugin-health-scoring\war\target\classes - - - - org.jacoco - jacoco-maven-plugin - 0.8.10 - - - default-prepare-agent - - prepare-agent - - - - XML - - - - - default-prepare-agent-integration - - prepare-agent-integration - - - - XML - - - - - merge-data-files - post-integration-test - - merge - - - - - D:\jenkins-oss\plugin-health-scoring\war\target - - jacoco.exec - jacoco-it.exec - - - - D:\jenkins-oss\plugin-health-scoring\war\target/jacoco-merged.exec - - XML - - - - - merged-report - post-integration-test - - report - - - D:\jenkins-oss\plugin-health-scoring\war\target/jacoco-merged.exec - - XML - - - - - - - XML - - - - - org.codehaus.mojo - tidy-maven-plugin - 1.2.0 - - - tidy-pom - validate - - pom - - - - - - maven-antrun-plugin - 1.3 - - - download-yarn - validate - - run - - - - - - - - - - - - Checksum error - - - - - - - com.github.eirslett - frontend-maven-plugin - 1.12.1 - - - install node and yarn - initialize - - install-node-and-yarn - - - v18.10.0 - v1.22.19 - https://repo.jenkins-ci.org/nodejs-dist/ - - - - yarn install - initialize - - yarn - - - install - - - - yarn build - generate-sources - - yarn - - - build - - - - - - org.springframework.boot - spring-boot-maven-plugin - 3.1.0 - - - - build-info - repackage - - - - false - - - time - group - artifact - name - - - - - - - false - - - time - group - artifact - name - - - - - pl.project13.maven - git-commit-id-plugin - 4.9.10 - - - generate-resources - - revision - - - true - D:\jenkins-oss\plugin-health-scoring\war\target\classes/git.properties - - git.commit.id.abbrev - - - - - - true - D:\jenkins-oss\plugin-health-scoring\war\target\classes/git.properties - - git.commit.id.abbrev - - - - - maven-clean-plugin - 2.5 - - - default-clean - clean - - clean - - - - - - maven-resources-plugin - 2.6 - - - default-testResources - process-test-resources - - testResources - - - - default-resources - process-resources - - resources - - - - - - maven-jar-plugin - 2.4 - - - default-jar - package - - jar - - - - - 2.4.3-SNAPSHOT - - - - - - - - - 2.4.3-SNAPSHOT - - - - - - maven-compiler-plugin - 3.11.0 - - - default-compile - compile - - compile - - - 17 - - -parameters - - - - - default-testCompile - test-compile - - testCompile - - - 17 - - -parameters - - - - - - 17 - - -parameters - - - - - maven-surefire-plugin - 3.1.0 - - - default-test - test - - test - - - - - - maven-install-plugin - 2.4 - - - default-install - install - - install - - - - - - maven-deploy-plugin - 2.7 - - - default-deploy - deploy - - deploy - - - - - - maven-site-plugin - 3.3 - - - default-site - site - - site - - - D:\jenkins-oss\plugin-health-scoring\war\target\site - - - org.apache.maven.plugins - maven-project-info-reports-plugin - - - - - - default-deploy - site-deploy - - deploy - - - D:\jenkins-oss\plugin-health-scoring\war\target\site - - - org.apache.maven.plugins - maven-project-info-reports-plugin - - - - - - - D:\jenkins-oss\plugin-health-scoring\war\target\site - - - org.apache.maven.plugins - maven-project-info-reports-plugin - - - - - - - - D:\jenkins-oss\plugin-health-scoring\war\target\site - - - From 148d4dda3c0fd707b0959aedc5fa658ea1b896d2 Mon Sep 17 00:00:00 2001 From: Jagruti Date: Tue, 13 Jun 2023 21:18:24 +0530 Subject: [PATCH 37/46] Added spotbugs fixes --- .../pluginhealth/scoring/probes/Probe.java | 9 +++-- .../ThirdPartyRepositoryDetectionProbe.java | 33 +++++++++++++++---- 2 files changed, 33 insertions(+), 9 deletions(-) diff --git a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/Probe.java b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/Probe.java index 52abcde6c..6c27a559f 100644 --- a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/Probe.java +++ b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/Probe.java @@ -24,6 +24,7 @@ package io.jenkins.pluginhealth.scoring.probes; +import java.io.IOException; import java.time.ZonedDateTime; import java.util.Optional; @@ -53,7 +54,11 @@ public final ProbeResult apply(Plugin plugin, ProbeContext context) { if (LOGGER.isTraceEnabled()) { LOGGER.trace("Running {} on {}", this.key(), plugin.getName()); } - return doApply(plugin, context); + try { + return doApply(plugin, context); + } catch (IOException e) { + throw new RuntimeException(e); + } } return ProbeResult.error(key(), key() + " does not meet the criteria to be executed on " + plugin.getName()); } @@ -104,7 +109,7 @@ private boolean shouldBeExecuted(Plugin plugin, ProbeContext context) { * @param context holder of information passed across the probes executed on a single plugin * @return a ProbeResult representing the result of the analysis */ - protected abstract ProbeResult doApply(Plugin plugin, ProbeContext context); + protected abstract ProbeResult doApply(Plugin plugin, ProbeContext context) throws IOException; /** * List of probe key to be present in the {@link Plugin#details} map and to be {@link ResultStatus#SUCCESS} in diff --git a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java index a8448c824..75f1156db 100644 --- a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java +++ b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java @@ -36,13 +36,15 @@ public class ThirdPartyRepositoryDetectionProbe extends Probe { protected ProbeResult doApply(Plugin plugin, ProbeContext context) { MavenXpp3Reader mavenReader = new MavenXpp3Reader(); Set allRepositories = new HashSet<>(); + FileReader fileReader = null; try { - Model model = mavenReader.read(new FileReader(context.getScmRepository() + "/pom.xml")); + fileReader = new FileReader(context.getScmRepository() + "/pom.xml"); + Model model = mavenReader.read(fileReader); allRepositories.addAll(model.getRepositories()); allRepositories.addAll(model.getPluginRepositories()); - if (! model.getParent().getRelativePath().isBlank()) { + if (!model.getParent().getRelativePath().isBlank()) { Model parentPomModel = parsePomFromUrl(model.getParent().getRelativePath()); allRepositories.addAll(parentPomModel.getRepositories()); allRepositories.addAll(parentPomModel.getPluginRepositories()); @@ -62,8 +64,14 @@ protected ProbeResult doApply(Plugin plugin, ProbeContext context) { LOGGER.error("File reading exception at {}", plugin.getName()); return ProbeResult.error(KEY, e.getMessage()); - } catch (Exception e) { - throw new RuntimeException(e); + } finally { + if (fileReader!=null) { + try { + fileReader.close(); + } catch (IOException e) { + throw new RuntimeException(e); + } + } } return allRepositories.size() > 0 ? ProbeResult.success(KEY, "The plugin has no third party repositories") : ProbeResult.failure(KEY, "No repositories detected"); @@ -86,23 +94,34 @@ public String[] getProbeResultRequirement() { public Model parsePomFromUrl(String pomUrl) { Model model = null; + FileReader reader = null; try { if (pomUrl.startsWith(("https"))) { URL url = new URL(pomUrl); try (InputStream inputStream = url.openStream()) { - MavenXpp3Reader reader = new MavenXpp3Reader(); - model = reader.read(inputStream); + MavenXpp3Reader mavenReader = new MavenXpp3Reader(); + model = mavenReader.read(inputStream); } } else { // for test cases Path absolutePath = Paths.get(pomUrl).toAbsolutePath().normalize(); - model = new MavenXpp3Reader().read(new FileReader(absolutePath.toString())); + reader = new FileReader(absolutePath.toString()); + model = new MavenXpp3Reader().read(reader); + } } catch (IOException e) { LOGGER.error("File could not be found {}", e.getMessage()); } catch (XmlPullParserException e) { LOGGER.error("Pom file could not be parsed {}", e.getMessage()); + } finally { + if (reader != null ) { + try { + reader.close(); + } catch (IOException e) { + throw new RuntimeException(e); + } + } } return model; } From dbe70d5a0888f0f63157c3a990a42b861c4b995b Mon Sep 17 00:00:00 2001 From: Jagruti Date: Tue, 13 Jun 2023 21:57:55 +0530 Subject: [PATCH 38/46] Added spotbugs fixes --- .../pluginhealth/scoring/probes/Probe.java | 14 ++++----- .../ThirdPartyRepositoryDetectionProbe.java | 29 ++++++------------- 2 files changed, 16 insertions(+), 27 deletions(-) diff --git a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/Probe.java b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/Probe.java index 6c27a559f..76aa30cf0 100644 --- a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/Probe.java +++ b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/Probe.java @@ -50,15 +50,15 @@ public abstract class Probe { * @return the result of the analyze in a {@link ProbeResult} */ public final ProbeResult apply(Plugin plugin, ProbeContext context) { - if (shouldBeExecuted(plugin, context)) { - if (LOGGER.isTraceEnabled()) { - LOGGER.trace("Running {} on {}", this.key(), plugin.getName()); - } - try { + try { + if (shouldBeExecuted(plugin, context)) { + if (LOGGER.isTraceEnabled()) { + LOGGER.trace("Running {} on {}", this.key(), plugin.getName()); + } return doApply(plugin, context); - } catch (IOException e) { - throw new RuntimeException(e); } + } catch (IOException e) { + LOGGER.error("File Reading exception {}", e); } return ProbeResult.error(key(), key() + " does not meet the criteria to be executed on " + plugin.getName()); } diff --git a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java index 75f1156db..dd5b7993d 100644 --- a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java +++ b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java @@ -1,9 +1,12 @@ package io.jenkins.pluginhealth.scoring.probes; +import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.FileReader; import java.io.IOException; import java.io.InputStream; +import java.io.InputStreamReader; +import java.io.Reader; import java.net.URL; import java.nio.file.Path; import java.nio.file.Paths; @@ -36,11 +39,11 @@ public class ThirdPartyRepositoryDetectionProbe extends Probe { protected ProbeResult doApply(Plugin plugin, ProbeContext context) { MavenXpp3Reader mavenReader = new MavenXpp3Reader(); Set allRepositories = new HashSet<>(); - FileReader fileReader = null; try { - fileReader = new FileReader(context.getScmRepository() + "/pom.xml"); - Model model = mavenReader.read(fileReader); + InputStream inputStream = new FileInputStream(context.getScmRepository() + "/pom.xml"); + Reader reader = new InputStreamReader(inputStream, "UTF-8"); + Model model = mavenReader.read(reader); allRepositories.addAll(model.getRepositories()); allRepositories.addAll(model.getPluginRepositories()); @@ -64,14 +67,6 @@ protected ProbeResult doApply(Plugin plugin, ProbeContext context) { LOGGER.error("File reading exception at {}", plugin.getName()); return ProbeResult.error(KEY, e.getMessage()); - } finally { - if (fileReader!=null) { - try { - fileReader.close(); - } catch (IOException e) { - throw new RuntimeException(e); - } - } } return allRepositories.size() > 0 ? ProbeResult.success(KEY, "The plugin has no third party repositories") : ProbeResult.failure(KEY, "No repositories detected"); @@ -94,7 +89,7 @@ public String[] getProbeResultRequirement() { public Model parsePomFromUrl(String pomUrl) { Model model = null; - FileReader reader = null; + try { if (pomUrl.startsWith(("https"))) { URL url = new URL(pomUrl); @@ -105,6 +100,8 @@ public Model parsePomFromUrl(String pomUrl) { } else { // for test cases + InputStream inputStream = new FileInputStream(pomUrl); + Reader reader = new InputStreamReader(inputStream, "UTF-8"); Path absolutePath = Paths.get(pomUrl).toAbsolutePath().normalize(); reader = new FileReader(absolutePath.toString()); model = new MavenXpp3Reader().read(reader); @@ -114,14 +111,6 @@ public Model parsePomFromUrl(String pomUrl) { LOGGER.error("File could not be found {}", e.getMessage()); } catch (XmlPullParserException e) { LOGGER.error("Pom file could not be parsed {}", e.getMessage()); - } finally { - if (reader != null ) { - try { - reader.close(); - } catch (IOException e) { - throw new RuntimeException(e); - } - } } return model; } From 0be6114e48446c77dc754cf328b1f3d1e3ed13fe Mon Sep 17 00:00:00 2001 From: Jagruti Date: Tue, 13 Jun 2023 22:10:51 +0530 Subject: [PATCH 39/46] Added spotbugs fixes --- .../scoring/probes/ThirdPartyRepositoryDetectionProbe.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java index dd5b7993d..5bcfdbafc 100644 --- a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java +++ b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java @@ -102,10 +102,7 @@ public Model parsePomFromUrl(String pomUrl) { // for test cases InputStream inputStream = new FileInputStream(pomUrl); Reader reader = new InputStreamReader(inputStream, "UTF-8"); - Path absolutePath = Paths.get(pomUrl).toAbsolutePath().normalize(); - reader = new FileReader(absolutePath.toString()); model = new MavenXpp3Reader().read(reader); - } } catch (IOException e) { LOGGER.error("File could not be found {}", e.getMessage()); From 9d43283ea31baef6a61d97877d5fd2fd60be0bdf Mon Sep 17 00:00:00 2001 From: Jagruti Date: Tue, 13 Jun 2023 22:13:17 +0530 Subject: [PATCH 40/46] Removing unused imports --- .../scoring/probes/ThirdPartyRepositoryDetectionProbe.java | 3 --- 1 file changed, 3 deletions(-) diff --git a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java index 5bcfdbafc..4c11a549f 100644 --- a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java +++ b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java @@ -2,14 +2,11 @@ import java.io.FileInputStream; import java.io.FileNotFoundException; -import java.io.FileReader; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.io.Reader; import java.net.URL; -import java.nio.file.Path; -import java.nio.file.Paths; import java.util.HashSet; import java.util.Set; From 6d425580aa6a67978bc0e0e34c387def561cff32 Mon Sep 17 00:00:00 2001 From: Jagruti Tiwari Date: Wed, 14 Jun 2023 20:45:08 +0530 Subject: [PATCH 41/46] Apply suggestions from code review Co-authored-by: Adrien Lecharpentier --- .../probes/ThirdPartyRepositoryDetectionProbe.java | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java index 4c11a549f..1f05d2625 100644 --- a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java +++ b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java @@ -28,7 +28,7 @@ public class ThirdPartyRepositoryDetectionProbe extends Probe { private static final Logger LOGGER = LoggerFactory.getLogger(ThirdPartyRepositoryDetectionProbe.class); public static final int ORDER = SCMLinkValidationProbe.ORDER + 100; public static final String KEY = "third-party-repository-detection-probe"; - final String hostName = "https://repo.jenkins-ci.org"; + private static final String JENKINS_CI_REPO_URL = "https://repo.jenkins-ci.org"; // final String parentPom = "https://raw.githubusercontent.com/jenkinsci/plugin-pom/master/pom.xml"; final String parentPom = "https://github.com/jenkinsci/plugin-pom/blob/master/pom.xml"; @@ -37,9 +37,8 @@ protected ProbeResult doApply(Plugin plugin, ProbeContext context) { MavenXpp3Reader mavenReader = new MavenXpp3Reader(); Set allRepositories = new HashSet<>(); - try { - InputStream inputStream = new FileInputStream(context.getScmRepository() + "/pom.xml"); - Reader reader = new InputStreamReader(inputStream, "UTF-8"); + try(InputStream inputStream = new FileInputStream(context.getScmRepository() + "/pom.xml"); + Reader reader = new InputStreamReader(inputStream, "UTF-8")) { Model model = mavenReader.read(reader); allRepositories.addAll(model.getRepositories()); allRepositories.addAll(model.getPluginRepositories()); @@ -81,7 +80,7 @@ public String getDescription() { @Override public String[] getProbeResultRequirement() { - return new String[] { SCMLinkValidationProbe.KEY}; + return new String[] { SCMLinkValidationProbe.KEY }; } public Model parsePomFromUrl(String pomUrl) { From 36591373f0d8049299e7f7da795b8f1ef8a80368 Mon Sep 17 00:00:00 2001 From: Jagruti Date: Wed, 14 Jun 2023 21:31:39 +0530 Subject: [PATCH 42/46] Fixed missing symbols error --- .../jenkins/pluginhealth/scoring/probes/Probe.java | 14 +++++--------- .../probes/ThirdPartyRepositoryDetectionProbe.java | 4 +--- 2 files changed, 6 insertions(+), 12 deletions(-) diff --git a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/Probe.java b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/Probe.java index 76aa30cf0..f86e4c728 100644 --- a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/Probe.java +++ b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/Probe.java @@ -50,15 +50,11 @@ public abstract class Probe { * @return the result of the analyze in a {@link ProbeResult} */ public final ProbeResult apply(Plugin plugin, ProbeContext context) { - try { - if (shouldBeExecuted(plugin, context)) { - if (LOGGER.isTraceEnabled()) { - LOGGER.trace("Running {} on {}", this.key(), plugin.getName()); - } - return doApply(plugin, context); + if (shouldBeExecuted(plugin, context)) { + if (LOGGER.isTraceEnabled()) { + LOGGER.trace("Running {} on {}", this.key(), plugin.getName()); } - } catch (IOException e) { - LOGGER.error("File Reading exception {}", e); + return doApply(plugin, context); } return ProbeResult.error(key(), key() + " does not meet the criteria to be executed on " + plugin.getName()); } @@ -109,7 +105,7 @@ private boolean shouldBeExecuted(Plugin plugin, ProbeContext context) { * @param context holder of information passed across the probes executed on a single plugin * @return a ProbeResult representing the result of the analysis */ - protected abstract ProbeResult doApply(Plugin plugin, ProbeContext context) throws IOException; + protected abstract ProbeResult doApply(Plugin plugin, ProbeContext context); /** * List of probe key to be present in the {@link Plugin#details} map and to be {@link ResultStatus#SUCCESS} in diff --git a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java index 1f05d2625..42faf03ab 100644 --- a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java +++ b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java @@ -29,8 +29,6 @@ public class ThirdPartyRepositoryDetectionProbe extends Probe { public static final int ORDER = SCMLinkValidationProbe.ORDER + 100; public static final String KEY = "third-party-repository-detection-probe"; private static final String JENKINS_CI_REPO_URL = "https://repo.jenkins-ci.org"; -// final String parentPom = "https://raw.githubusercontent.com/jenkinsci/plugin-pom/master/pom.xml"; - final String parentPom = "https://github.com/jenkinsci/plugin-pom/blob/master/pom.xml"; @Override protected ProbeResult doApply(Plugin plugin, ProbeContext context) { @@ -49,7 +47,7 @@ protected ProbeResult doApply(Plugin plugin, ProbeContext context) { allRepositories.addAll(parentPomModel.getPluginRepositories()); } for (Repository repository : allRepositories) { - if (!repository.getUrl().startsWith(hostName)) { + if (!repository.getUrl().startsWith(JENKINS_CI_REPO_URL)) { return ProbeResult.failure(KEY, "Third party repositories detected in the plugin"); } } From 58ba0b17072b78e27ed63e5ce2fac4e4c66323a5 Mon Sep 17 00:00:00 2001 From: Jagruti Date: Wed, 14 Jun 2023 21:48:13 +0530 Subject: [PATCH 43/46] Fixing checkstyle issues --- .../jenkins/pluginhealth/scoring/probes/Probe.java | 1 - .../probes/ThirdPartyRepositoryDetectionProbe.java | 14 +++++++------- 2 files changed, 7 insertions(+), 8 deletions(-) diff --git a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/Probe.java b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/Probe.java index f86e4c728..52abcde6c 100644 --- a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/Probe.java +++ b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/Probe.java @@ -24,7 +24,6 @@ package io.jenkins.pluginhealth.scoring.probes; -import java.io.IOException; import java.time.ZonedDateTime; import java.util.Optional; diff --git a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java index 42faf03ab..98f9f27ff 100644 --- a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java +++ b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java @@ -7,6 +7,7 @@ import java.io.InputStreamReader; import java.io.Reader; import java.net.URL; +import java.nio.charset.StandardCharsets; import java.util.HashSet; import java.util.Set; @@ -25,9 +26,9 @@ @Component @Order(value = ThirdPartyRepositoryDetectionProbe.ORDER) public class ThirdPartyRepositoryDetectionProbe extends Probe { - private static final Logger LOGGER = LoggerFactory.getLogger(ThirdPartyRepositoryDetectionProbe.class); public static final int ORDER = SCMLinkValidationProbe.ORDER + 100; public static final String KEY = "third-party-repository-detection-probe"; + private static final Logger LOGGER = LoggerFactory.getLogger(ThirdPartyRepositoryDetectionProbe.class); private static final String JENKINS_CI_REPO_URL = "https://repo.jenkins-ci.org"; @Override @@ -35,8 +36,8 @@ protected ProbeResult doApply(Plugin plugin, ProbeContext context) { MavenXpp3Reader mavenReader = new MavenXpp3Reader(); Set allRepositories = new HashSet<>(); - try(InputStream inputStream = new FileInputStream(context.getScmRepository() + "/pom.xml"); - Reader reader = new InputStreamReader(inputStream, "UTF-8")) { + try (InputStream inputStream = new FileInputStream(context.getScmRepository() + "/pom.xml"); + Reader reader = new InputStreamReader(inputStream, StandardCharsets.UTF_8)) { Model model = mavenReader.read(reader); allRepositories.addAll(model.getRepositories()); allRepositories.addAll(model.getPluginRepositories()); @@ -78,7 +79,7 @@ public String getDescription() { @Override public String[] getProbeResultRequirement() { - return new String[] { SCMLinkValidationProbe.KEY }; + return new String[]{SCMLinkValidationProbe.KEY}; } public Model parsePomFromUrl(String pomUrl) { @@ -91,11 +92,10 @@ public Model parsePomFromUrl(String pomUrl) { MavenXpp3Reader mavenReader = new MavenXpp3Reader(); model = mavenReader.read(inputStream); } - } - else { + } else { // for test cases InputStream inputStream = new FileInputStream(pomUrl); - Reader reader = new InputStreamReader(inputStream, "UTF-8"); + Reader reader = new InputStreamReader(inputStream, StandardCharsets.UTF_8); model = new MavenXpp3Reader().read(reader); } } catch (IOException e) { From fc8ec3be1eee4399969827ea82cf8003f73d446e Mon Sep 17 00:00:00 2001 From: Jagruti Date: Sun, 3 Sep 2023 17:30:58 +0530 Subject: [PATCH 44/46] Adding code for effective-pom generation and updated the test cases: --- core/pom.xml | 8 +- .../ThirdPartyRepositoryDetectionProbe.java | 73 ++++---- ...hirdPartyRepositoryDetectionProbeTest.java | 166 +++++++++++------- .../resources/pom-test-both-paths/pom.xml | 4 +- .../pom-test-no-repository-tag/pom.xml | 23 ++- .../plugin/pom.xml | 5 +- .../pom.xml | 28 +++ .../plugin/pom.xml | 7 +- .../pom.xml | 20 +++ .../plugin/pom.xml | 2 +- .../pom.xml | 49 ++++-- .../plugin/pom.xml | 10 +- .../pom.xml | 78 ++++---- .../dummy-test-module/pom.xml | 36 ++++ .../pom-to-create-effective-pom-from/pom.xml | 108 ++++++++++++ 15 files changed, 456 insertions(+), 161 deletions(-) create mode 100644 core/src/test/resources/pom-to-create-effective-pom-from/dummy-test-module/pom.xml create mode 100644 core/src/test/resources/pom-to-create-effective-pom-from/pom.xml diff --git a/core/pom.xml b/core/pom.xml index f5ade86f6..9e94b43f0 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -23,7 +23,8 @@ ~ SOFTWARE. --> - + 4.0.0 @@ -106,5 +107,10 @@ org.apache.maven maven-model + + org.apache.maven.shared + maven-invoker + 3.2.0 + diff --git a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java index 98f9f27ff..579937b63 100644 --- a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java +++ b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java @@ -1,13 +1,14 @@ package io.jenkins.pluginhealth.scoring.probes; +import java.io.File; import java.io.FileInputStream; import java.io.FileNotFoundException; import java.io.IOException; import java.io.InputStream; import java.io.InputStreamReader; import java.io.Reader; -import java.net.URL; import java.nio.charset.StandardCharsets; +import java.util.Collections; import java.util.HashSet; import java.util.Set; @@ -17,6 +18,12 @@ import org.apache.maven.model.Model; import org.apache.maven.model.Repository; import org.apache.maven.model.io.xpp3.MavenXpp3Reader; +import org.apache.maven.shared.invoker.DefaultInvocationRequest; +import org.apache.maven.shared.invoker.DefaultInvoker; +import org.apache.maven.shared.invoker.InvocationRequest; +import org.apache.maven.shared.invoker.InvocationResult; +import org.apache.maven.shared.invoker.Invoker; +import org.apache.maven.shared.invoker.MavenInvocationException; import org.codehaus.plexus.util.xml.pull.XmlPullParserException; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -36,17 +43,16 @@ protected ProbeResult doApply(Plugin plugin, ProbeContext context) { MavenXpp3Reader mavenReader = new MavenXpp3Reader(); Set allRepositories = new HashSet<>(); - try (InputStream inputStream = new FileInputStream(context.getScmRepository() + "/pom.xml"); + if (!generateEffectivePom(context.getScmRepository() + "/pom.xml")) { + return ProbeResult.failure(KEY, "Failure in generating effective-pom in the plugin."); + } + + try (InputStream inputStream = new FileInputStream(context.getScmRepository() + "/effective-pom.xml"); Reader reader = new InputStreamReader(inputStream, StandardCharsets.UTF_8)) { Model model = mavenReader.read(reader); allRepositories.addAll(model.getRepositories()); allRepositories.addAll(model.getPluginRepositories()); - if (!model.getParent().getRelativePath().isBlank()) { - Model parentPomModel = parsePomFromUrl(model.getParent().getRelativePath()); - allRepositories.addAll(parentPomModel.getRepositories()); - allRepositories.addAll(parentPomModel.getPluginRepositories()); - } for (Repository repository : allRepositories) { if (!repository.getUrl().startsWith(JENKINS_CI_REPO_URL)) { return ProbeResult.failure(KEY, "Third party repositories detected in the plugin"); @@ -67,6 +73,11 @@ protected ProbeResult doApply(Plugin plugin, ProbeContext context) { : ProbeResult.failure(KEY, "No repositories detected"); } + @Override + public String[] getProbeResultRequirement() { + return new String[]{SCMLinkValidationProbe.KEY}; + } + @Override public String key() { return KEY; @@ -77,32 +88,34 @@ public String getDescription() { return "Detects third-party repositories in a plugin."; } - @Override - public String[] getProbeResultRequirement() { - return new String[]{SCMLinkValidationProbe.KEY}; - } - - public Model parsePomFromUrl(String pomUrl) { - Model model = null; - + /** + * This method generates {@code effective-pom} based on the root {@code pom} in a plugin repository. + * + * @param effectivePomPath path of the effective pom file + * @return true if the {@code effective-pom} is generated successfully. False otherwise. + */ + public boolean generateEffectivePom(String effectivePomPath) { + // https://maven.apache.org/shared/maven-invoker/usage.html + InvocationRequest request = new DefaultInvocationRequest(); + request.setPomFile(new File(effectivePomPath)); // setting the parent pom that will be at the root. Parent of all the modules (the super parent) + request.setGoals(Collections.singletonList("help:effective-pom -Doutput=effective-pom.xml")); try { - if (pomUrl.startsWith(("https"))) { - URL url = new URL(pomUrl); - try (InputStream inputStream = url.openStream()) { - MavenXpp3Reader mavenReader = new MavenXpp3Reader(); - model = mavenReader.read(inputStream); + Invoker invoker = new DefaultInvoker(); + invoker.setMavenHome(new File(System.getenv("MAVEN_HOME"))); + InvocationResult result = invoker.execute(request); + + if (result.getExitCode() != 0) { + if (result.getExecutionException() != null) { + LOGGER.error("Exception occurred when invoking maven request {}", result.getExecutionException()); + } else { + LOGGER.error("Exception occurred when invoking maven request. The exit code is {}", result.getExitCode()); } - } else { - // for test cases - InputStream inputStream = new FileInputStream(pomUrl); - Reader reader = new InputStreamReader(inputStream, StandardCharsets.UTF_8); - model = new MavenXpp3Reader().read(reader); + return false; } - } catch (IOException e) { - LOGGER.error("File could not be found {}", e.getMessage()); - } catch (XmlPullParserException e) { - LOGGER.error("Pom file could not be parsed {}", e.getMessage()); + return true; + } catch (MavenInvocationException e) { + LOGGER.error("Exception occurred when invoking maven command {}", e); + return false; } - return model; } } diff --git a/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java b/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java index 9705d53ba..e1fbf04b2 100644 --- a/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java +++ b/core/src/test/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbeTest.java @@ -1,6 +1,7 @@ package io.jenkins.pluginhealth.scoring.probes; import static org.assertj.core.api.Assertions.assertThat; +import static org.junit.jupiter.api.Assertions.assertTrue; import static org.junit.jupiter.params.provider.Arguments.arguments; import static org.mockito.ArgumentMatchers.any; import static org.mockito.Mockito.mock; @@ -9,6 +10,7 @@ import static org.mockito.Mockito.verify; import static org.mockito.Mockito.when; +import java.io.File; import java.nio.file.Path; import java.nio.file.Paths; import java.util.Map; @@ -23,24 +25,6 @@ import org.junit.jupiter.params.provider.MethodSource; class ThirdPartyRepositoryDetectionProbeTest extends AbstractProbeTest { - @Override - ThirdPartyRepositoryDetectionProbe getSpy() { - return spy(ThirdPartyRepositoryDetectionProbe.class); - } - - @Test - void shouldBeExecutedAfterSCMLinkValidationProbeProbe() { - final Plugin plugin = mock(Plugin.class); - final ProbeContext ctx = mock(ProbeContext.class); - final ThirdPartyRepositoryDetectionProbe probe = getSpy(); - when(plugin.getName()).thenReturn("foo-bar"); - assertThat(probe.apply(plugin, ctx)) - .usingRecursiveComparison() - .comparingOnlyFields("id", "status") - .isEqualTo(ProbeResult.error(ThirdPartyRepositoryDetectionProbe.KEY, "")); - verify(probe, never()).doApply(plugin, ctx); - } - private static Stream successes() { return Stream.of( arguments( @@ -54,26 +38,6 @@ private static Stream successes() { ); } - @ParameterizedTest - @MethodSource("successes") - void shouldPassIfNoThirdPartyRepositoriesDetected(Path resourceDirectory, String scm) { - final Plugin plugin = mock(Plugin.class); - final ProbeContext ctx = mock(ProbeContext.class); - - when(ctx.getScmRepository()).thenReturn(resourceDirectory); - when(plugin.getDetails()).thenReturn(Map.of( - SCMLinkValidationProbe.KEY, ProbeResult.success(SCMLinkValidationProbe.KEY, "") - )); - when(plugin.getScm()).thenReturn(scm); - - final ThirdPartyRepositoryDetectionProbe probe = getSpy(); - assertThat(probe.apply(plugin, ctx)) - .usingRecursiveComparison() - .comparingOnlyFields("id", "message", "status") - .isEqualTo(ProbeResult.success(ThirdPartyRepositoryDetectionProbe.KEY, "The plugin has no third party repositories")); - verify(probe).doApply(any(Plugin.class), any(ProbeContext.class)); - } - private static Stream failures() { return Stream.of( arguments( @@ -95,9 +59,40 @@ private static Stream failures() { ); } + private static Stream failures2() { + return Stream.of( + arguments( + Paths.get("src", "test", "resources", "pom-test-no-repository-tag"), + "https://github.com/jenkinsci/test-plugin" + ), + arguments( + Paths.get("src", "test", "resources", "pom-test-parent-child-no-repository-tag-failure", "plugin"), + "https://github.com/jenkinsci/test-plugin" + ) + ); + } + + @Test + void shouldBeExecutedAfterSCMLinkValidationProbeProbe() { + final Plugin plugin = mock(Plugin.class); + final ProbeContext ctx = mock(ProbeContext.class); + final ThirdPartyRepositoryDetectionProbe probe = getSpy(); + when(plugin.getName()).thenReturn("foo-bar"); + assertThat(probe.apply(plugin, ctx)) + .usingRecursiveComparison() + .comparingOnlyFields("id", "status") + .isEqualTo(ProbeResult.error(ThirdPartyRepositoryDetectionProbe.KEY, "")); + verify(probe, never()).doApply(plugin, ctx); + } + + @Override + ThirdPartyRepositoryDetectionProbe getSpy() { + return spy(ThirdPartyRepositoryDetectionProbe.class); + } + @ParameterizedTest - @MethodSource("failures") - void shouldFailIfThirdPartRepositoriesDetected(Path resourceDirectory, String scm) { + @MethodSource("successes") + void shouldPassIfNoThirdPartyRepositoriesDetected(Path resourceDirectory, String scm) { final Plugin plugin = mock(Plugin.class); final ProbeContext ctx = mock(ProbeContext.class); @@ -107,25 +102,42 @@ void shouldFailIfThirdPartRepositoriesDetected(Path resourceDirectory, String sc )); when(plugin.getScm()).thenReturn(scm); - final ThirdPartyRepositoryDetectionProbe probe = getSpy(); - assertThat(probe.apply(plugin, ctx)) - .usingRecursiveComparison() - .comparingOnlyFields("id", "message", "status") - .isEqualTo(ProbeResult.failure(ThirdPartyRepositoryDetectionProbe.KEY, "Third party repositories detected in the plugin")); - verify(probe).doApply(any(Plugin.class), any(ProbeContext.class)); + try { + final ThirdPartyRepositoryDetectionProbe probe = getSpy(); + assertThat(probe.apply(plugin, ctx)) + .usingRecursiveComparison() + .comparingOnlyFields("id", "message", "status") + .isEqualTo(ProbeResult.success(ThirdPartyRepositoryDetectionProbe.KEY, "The plugin has no third party repositories")); + verify(probe).doApply(any(Plugin.class), any(ProbeContext.class)); + } finally { + File effectivePomFile = new File(resourceDirectory + "/effective-pom.xml"); + effectivePomFile.delete(); + } } - private static Stream failures2() { - return Stream.of( - arguments( - Paths.get("src", "test", "resources", "pom-test-no-repository-tag"), - "https://github.com/jenkinsci/test-plugin" - ), - arguments( - Paths.get("src", "test", "resources", "pom-test-parent-child-no-repository-tag-failure", "plugin"), - "https://github.com/jenkinsci/test-plugin" - ) - ); + @ParameterizedTest + @MethodSource("failures") + void shouldFailIfThirdPartRepositoriesDetected(Path resourceDirectory, String scm) { + final Plugin plugin = mock(Plugin.class); + final ProbeContext ctx = mock(ProbeContext.class); + + when(ctx.getScmRepository()).thenReturn(resourceDirectory); + when(plugin.getDetails()).thenReturn(Map.of( + SCMLinkValidationProbe.KEY, ProbeResult.success(SCMLinkValidationProbe.KEY, "") + )); + when(plugin.getScm()).thenReturn(scm); + + try { + final ThirdPartyRepositoryDetectionProbe probe = getSpy(); + assertThat(probe.apply(plugin, ctx)) + .usingRecursiveComparison() + .comparingOnlyFields("id", "message", "status") + .isEqualTo(ProbeResult.failure(ThirdPartyRepositoryDetectionProbe.KEY, "Third party repositories detected in the plugin")); + verify(probe).doApply(any(Plugin.class), any(ProbeContext.class)); + } finally { + File effectivePomFile = new File(resourceDirectory + "/effective-pom.xml"); + effectivePomFile.delete(); + } } @ParameterizedTest @@ -140,13 +152,41 @@ void shouldFailWhenNoRepositoriesDetected(Path resourceDirectory, String scm) { )); when(plugin.getScm()).thenReturn(scm); - final ThirdPartyRepositoryDetectionProbe probe = getSpy(); - assertThat(probe.apply(plugin, ctx)) - .usingRecursiveComparison() - .comparingOnlyFields("id", "message", "status") - .isEqualTo(ProbeResult.failure(ThirdPartyRepositoryDetectionProbe.KEY, "No repositories detected")); - verify(probe).doApply(any(Plugin.class), any(ProbeContext.class)); + try { + final ThirdPartyRepositoryDetectionProbe probe = getSpy(); + assertThat(probe.apply(plugin, ctx)) + .usingRecursiveComparison() + .comparingOnlyFields("id", "message", "status") + .isEqualTo(ProbeResult.failure(ThirdPartyRepositoryDetectionProbe.KEY, "No repositories detected")); + verify(probe).doApply(any(Plugin.class), any(ProbeContext.class)); + } finally { + File effectivePomFile = new File(resourceDirectory + "/effective-pom.xml"); + effectivePomFile.delete(); + } } + @Test + public void testGenerateEffectivePom() { + final Plugin plugin = mock(Plugin.class); + final ProbeContext ctx = mock(ProbeContext.class); + when(plugin.getDetails()).thenReturn(Map.of( + SCMLinkValidationProbe.KEY, ProbeResult.success(SCMLinkValidationProbe.KEY, "") + )); + + when(ctx.getScmRepository()).thenReturn(Path.of("src/test/resources/pom-to-create-effective-pom-from")); + final ThirdPartyRepositoryDetectionProbe probe = getSpy(); + + try { + // Call the method to be tested + probe.generateEffectivePom(ctx.getScmRepository() + "/pom.xml"); // will get the root pom the current repo + // Verify the result + File effectivePomFile = new File("src/test/resources/pom-to-create-effective-pom-from/effective-pom.xml"); + assertTrue(effectivePomFile.exists()); + } finally { + // Clean up files + File effectivePomFile = new File("src/test/resources/pom-to-create-effective-pom-from/effective-pom.xml"); + effectivePomFile.delete(); + } + } } diff --git a/core/src/test/resources/pom-test-both-paths/pom.xml b/core/src/test/resources/pom-test-both-paths/pom.xml index 77b18d6ee..5585eed9c 100644 --- a/core/src/test/resources/pom-test-both-paths/pom.xml +++ b/core/src/test/resources/pom-test-both-paths/pom.xml @@ -21,7 +21,7 @@ not-a-real-publisher Fake Publisher For testing purpose - ${changelist} + 1.1 hpi https://test.com/test/${project.artifactId}-plugin @@ -46,7 +46,7 @@ https://repo.jenkins-ci.org/public/ - repo.jenkins-ci.org + atlassian-public https://packages.atlassian.com/mvn/maven-external/ diff --git a/core/src/test/resources/pom-test-no-repository-tag/pom.xml b/core/src/test/resources/pom-test-no-repository-tag/pom.xml index 217f9651b..ed989329b 100644 --- a/core/src/test/resources/pom-test-no-repository-tag/pom.xml +++ b/core/src/test/resources/pom-test-no-repository-tag/pom.xml @@ -5,6 +5,8 @@ 4.0.0 + test.plugins + org.jenkins-ci.plugins plugin @@ -12,6 +14,25 @@ + + + + repo.jenkins-ci.org + https://repo.jenkins-ci.org/public/ + + + releases-repo.jenkins-ci.org + https://repo.jenkins-ci.org/releases/ + + + + + + repo.jenkins-ci.org + https://repo.jenkins-ci.org/public/ + + + 9999-SNAPSHOT 2.361.4 @@ -21,7 +42,7 @@ not-a-real-publisher Fake Publisher For testing purpose - ${changelist} + 1 hpi https://test.com/test/${project.artifactId}-plugin diff --git a/core/src/test/resources/pom-test-parent-child-no-repository-tag-failure/plugin/pom.xml b/core/src/test/resources/pom-test-parent-child-no-repository-tag-failure/plugin/pom.xml index 3474fb6b2..46831fd85 100644 --- a/core/src/test/resources/pom-test-parent-child-no-repository-tag-failure/plugin/pom.xml +++ b/core/src/test/resources/pom-test-parent-child-no-repository-tag-failure/plugin/pom.xml @@ -11,7 +11,7 @@ test.pom.group-id test-pom-artifact 1.0.1 - src/test/resources/pom-test-parent-child-no-repository-tag-failure/pom.xml + ../ @@ -22,8 +22,7 @@ not-a-real-publisher Fake Publisher For testing purpose - ${changelist} + 1.1 hpi - https://test.com/test/${project.artifactId}-plugin diff --git a/core/src/test/resources/pom-test-parent-child-no-repository-tag-failure/pom.xml b/core/src/test/resources/pom-test-parent-child-no-repository-tag-failure/pom.xml index e4b33b0db..61bd4cae2 100644 --- a/core/src/test/resources/pom-test-parent-child-no-repository-tag-failure/pom.xml +++ b/core/src/test/resources/pom-test-parent-child-no-repository-tag-failure/pom.xml @@ -6,9 +6,37 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> 4.0.0 + + + org.jenkins-ci.plugins + plugin + 4.72 + + + test.pom.group-id test-pom-artifact 1.0.1 + pom + + + + repo.jenkins-ci.org + https://repo.jenkins-ci.org/public/ + + + releases-repo.jenkins-ci.org + https://repo.jenkins-ci.org/releases/ + + + + + + repo.jenkins-ci.org + https://repo.jenkins-ci.org/public/ + + + 9999-SNAPSHOT diff --git a/core/src/test/resources/pom-test-parent-child-no-third-party-repository-success/plugin/pom.xml b/core/src/test/resources/pom-test-parent-child-no-third-party-repository-success/plugin/pom.xml index b1ef0ccb5..433321406 100644 --- a/core/src/test/resources/pom-test-parent-child-no-third-party-repository-success/plugin/pom.xml +++ b/core/src/test/resources/pom-test-parent-child-no-third-party-repository-success/plugin/pom.xml @@ -11,7 +11,7 @@ test.pom.group-id test-pom-artifact 1.0.1 - src/test/resources/pom-test-parent-child-no-third-party-repository-success/pom.xml + ../ @@ -38,8 +38,7 @@ not-a-real-publisher Fake Publisher For testing purpose - ${changelist} + 1.1 hpi - https://test.com/test/${project.artifactId}-plugin - + diff --git a/core/src/test/resources/pom-test-parent-child-no-third-party-repository-success/pom.xml b/core/src/test/resources/pom-test-parent-child-no-third-party-repository-success/pom.xml index 9b0c172c7..e06511c39 100644 --- a/core/src/test/resources/pom-test-parent-child-no-third-party-repository-success/pom.xml +++ b/core/src/test/resources/pom-test-parent-child-no-third-party-repository-success/pom.xml @@ -6,8 +6,17 @@ xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> 4.0.0 + + + org.jenkins-ci.plugins + plugin + 4.58 + + + test.pom.group-id test-pom-artifact + pom 1.0.1 @@ -15,8 +24,19 @@ repo.jenkins-ci.org https://repo.jenkins-ci.org/public/ + + releases-repo.jenkins-ci.org + https://repo.jenkins-ci.org/releases/ + + + + repo.jenkins-ci.org + https://repo.jenkins-ci.org/public/ + + + 9999-SNAPSHOT 2.361.4 diff --git a/core/src/test/resources/pom-test-third-party-probe-in-child-failure/plugin/pom.xml b/core/src/test/resources/pom-test-third-party-probe-in-child-failure/plugin/pom.xml index 82f135a69..48b6a48ec 100644 --- a/core/src/test/resources/pom-test-third-party-probe-in-child-failure/plugin/pom.xml +++ b/core/src/test/resources/pom-test-third-party-probe-in-child-failure/plugin/pom.xml @@ -11,7 +11,7 @@ test.pom.group-id test-pom-artifact 1.0.1 - src/test/resources/pom-test-third-party-probe-in-child-failure/pom.xml + ../ diff --git a/core/src/test/resources/pom-test-third-party-probe-in-child-failure/pom.xml b/core/src/test/resources/pom-test-third-party-probe-in-child-failure/pom.xml index 4eb7c461a..145c93c36 100644 --- a/core/src/test/resources/pom-test-third-party-probe-in-child-failure/pom.xml +++ b/core/src/test/resources/pom-test-third-party-probe-in-child-failure/pom.xml @@ -3,23 +3,42 @@ This is a fake pom used for test cases --> + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> - 4.0.0 - test.pom.group-id - test-pom-artifact - 1.0.1 + 4.0.0 + test.pom.group-id + test-pom-artifact + pom + 1.0.1 - - - repo.jenkins-ci.org - https://repo.jenkins-ci.org/public/ - - + + org.jenkins-ci.plugins + plugin + 4.58 + + - - 9999-SNAPSHOT - 2.361.4 - + + + repo.jenkins-ci.org + https://repo.jenkins-ci.org/public/ + + + releases-repo.jenkins-ci.org + https://repo.jenkins-ci.org/releases/ + + + + + + repo.jenkins-ci.org + https://repo.jenkins-ci.org/public/ + + + + + 9999-SNAPSHOT + 2.361.4 + diff --git a/core/src/test/resources/pom-test-third-party-probe-in-parent-failure/plugin/pom.xml b/core/src/test/resources/pom-test-third-party-probe-in-parent-failure/plugin/pom.xml index 9094713c7..1cb304bfd 100644 --- a/core/src/test/resources/pom-test-third-party-probe-in-parent-failure/plugin/pom.xml +++ b/core/src/test/resources/pom-test-third-party-probe-in-parent-failure/plugin/pom.xml @@ -11,20 +11,14 @@ test.pom.group-id test-pom-artifact 1 - src/test/resources/pom-test-third-party-probe-in-parent-failure/pom.xml + ../ - - 9999-SNAPSHOT - 2.361.4 - - not-a-real-publisher Fake Publisher For testing purpose - ${changelist} + 1.1 hpi - https://test.com/test/${project.artifactId}-plugin diff --git a/core/src/test/resources/pom-test-third-party-probe-in-parent-failure/pom.xml b/core/src/test/resources/pom-test-third-party-probe-in-parent-failure/pom.xml index fc4e339ac..325744828 100644 --- a/core/src/test/resources/pom-test-third-party-probe-in-parent-failure/pom.xml +++ b/core/src/test/resources/pom-test-third-party-probe-in-parent-failure/pom.xml @@ -3,42 +3,54 @@ This is a fake pom used for test cases --> + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> - 4.0.0 - test.pom.group-id - test-pom-artifact - 1 + 4.0.0 + test.pom.group-id + test-pom-artifact + pom + 1 - - - repo.jenkins-ci.org - https://repo.jenkins-ci.org/public/ - - - atlassian-public - https://packages.atlassian.com/mvn/maven-external/ - - + + org.jenkins-ci.plugins + plugin + 4.58 + + - - - central - Test Repository - https://repo.maven.apache.org/maven2 - default - - false - - - never - - - + + + repo.jenkins-ci.org + https://repo.jenkins-ci.org/public/ + + + atlassian-public + https://packages.atlassian.com/mvn/maven-external/ + + - - 9999-SNAPSHOT - 2.361.4 - + + + central + Test Repository + https://repo.maven.apache.org/maven2 + default + + false + + + never + + + + repo.jenkins-ci.org + https://repo.jenkins-ci.org/public/ + + + + + 9999-SNAPSHOT + 2.361.4 + diff --git a/core/src/test/resources/pom-to-create-effective-pom-from/dummy-test-module/pom.xml b/core/src/test/resources/pom-to-create-effective-pom-from/dummy-test-module/pom.xml new file mode 100644 index 000000000..c4b88cbcc --- /dev/null +++ b/core/src/test/resources/pom-to-create-effective-pom-from/dummy-test-module/pom.xml @@ -0,0 +1,36 @@ + + + 4.0.0 + + + org.jenkins-ci.plugins.aws-java-sdk + test-parent-pom-artifact + 1 + + dummy-test-module + hpi + + Amazon Web Services SDK :: CloudFormation + https://github.com/jenkinsci/aws-java-sdk-plugin + + + ${project.groupId} + aws-java-sdk-minimal + ${project.version} + + + com.amazonaws + aws-java-sdk-cloudformation + + + com.amazonaws + aws-java-sdk-core + + + com.amazonaws + jmespath-java + + + + + diff --git a/core/src/test/resources/pom-to-create-effective-pom-from/pom.xml b/core/src/test/resources/pom-to-create-effective-pom-from/pom.xml new file mode 100644 index 000000000..2515bd79d --- /dev/null +++ b/core/src/test/resources/pom-to-create-effective-pom-from/pom.xml @@ -0,0 +1,108 @@ + + + 4.0.0 + + + org.jenkins-ci.plugins + plugin + 4.72 + + + org.jenkins-ci.plugins.aws-java-sdk + test-parent-pom-artifact + 1 + pom + + Amazon Web Services SDK :: Parent + This plugin provides AWS SDK for Java for other plugins. + https://github.com/jenkinsci/aws-java-sdk-plugin + + + MIT License + https://opensource.org/licenses/MIT + + + + + vlatombe + Vincent Latombe + vincent@latombe.net + + + + dummy-test-module + + + 1.12.529 + 999999-SNAPSHOT + 2.15.2-350.v0c2f3f8fc595 + 2.361.x + 2.361.4 + true + + + + repo.jenkins-ci.org + https://repo.jenkins-ci.org/public/ + + + + + repo.jenkins-ci.org + https://repo.jenkins-ci.org/public/ + + + + + + io.jenkins.tools.bom + bom-${bom} + 2102.v854b_fec19c92 + pom + import + + + com.amazonaws + aws-java-sdk-bom + ${revision} + pom + import + + + com.amazonaws + aws-java-sdk + ${revision} + + + + commons-codec + commons-codec + + + + com.fasterxml.jackson.core + jackson-databind + + + com.fasterxml.jackson.core + jackson-core + + + com.fasterxml.jackson.dataformat + jackson-dataformat-cbor + + + + org.apache.httpcomponents + httpclient + + + + + org.jenkins-ci.plugins + jackson2-api + ${jackson.version} + + + + From d77baf11a2c2437ccb5f3231af8426e17f7fb6e0 Mon Sep 17 00:00:00 2001 From: Jagruti Date: Sun, 3 Sep 2023 17:37:55 +0530 Subject: [PATCH 45/46] Adding comments --- core/pom.xml | 3 +++ .../scoring/probes/ThirdPartyRepositoryDetectionProbe.java | 1 - 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/core/pom.xml b/core/pom.xml index 9e94b43f0..03030cd5d 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -107,6 +107,9 @@ org.apache.maven maven-model + org.apache.maven.shared maven-invoker diff --git a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java index 579937b63..8a829f5f7 100644 --- a/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java +++ b/core/src/main/java/io/jenkins/pluginhealth/scoring/probes/ThirdPartyRepositoryDetectionProbe.java @@ -95,7 +95,6 @@ public String getDescription() { * @return true if the {@code effective-pom} is generated successfully. False otherwise. */ public boolean generateEffectivePom(String effectivePomPath) { - // https://maven.apache.org/shared/maven-invoker/usage.html InvocationRequest request = new DefaultInvocationRequest(); request.setPomFile(new File(effectivePomPath)); // setting the parent pom that will be at the root. Parent of all the modules (the super parent) request.setGoals(Collections.singletonList("help:effective-pom -Doutput=effective-pom.xml")); From 1fa7c2be3cefac1ba9fbfb6934e4efd85c98c371 Mon Sep 17 00:00:00 2001 From: Jagruti Date: Thu, 7 Sep 2023 22:53:53 +0530 Subject: [PATCH 46/46] Fixed merge issues --- core/pom.xml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/core/pom.xml b/core/pom.xml index c6994721f..b21250d02 100644 --- a/core/pom.xml +++ b/core/pom.xml @@ -23,8 +23,7 @@ ~ SOFTWARE. --> - + 4.0.0