aquasecurity / trivy

Find vulnerabilities, misconfigurations, secrets, SBOM in containers, Kubernetes, code repositories, clouds and more
https://aquasecurity.github.io/trivy
Apache License 2.0
23.57k stars 2.32k forks source link

0.50.0 : big time increase of FS scanning vs 0.49.1 #6374

Closed DmitriyLewen closed 6 months ago

DmitriyLewen commented 7 months ago

Discussed in https://github.com/aquasecurity/trivy/discussions/6355

Originally posted by **jlamande** March 20, 2024 ### Question Scanning in a CI job with exactly the same setup (only changed the trivy version, scanned fs is the same). With trivy 0.50.0 _(done multiple times with equivalent durations)_ ``` time trivy fs --exit-code 0 --scanners vuln --ignore-unfixed "pom.xml" 2024-03-20T05:21:41.521Z INFO Vulnerability scanning is enabled 2024-03-20T05:25:47.917Z INFO Number of language-specific files: 1 2024-03-20T05:25:47.917Z INFO Detecting pom vulnerabilities... pom.xml (pom) ============= Total: 6 (UNKNOWN: 0, LOW: 0, MEDIUM: 2, HIGH: 4, CRITICAL: 0) real 4m 7.63s user 0m 12.08s sys 0m 2.10s ``` With trivy 0.49.1 _(done multiple times with equivalent durations)_ ``` time trivy fs --exit-code 0 --scanners vuln --ignore-unfixed "pom.xml" 2024-03-20T07:36:22.530Z INFO Vulnerability scanning is enabled 2024-03-20T07:36:30.896Z INFO Number of language-specific files: 1 2024-03-20T07:36:30.896Z INFO Detecting pom vulnerabilities... pom.xml (pom) ============= Total: 6 (UNKNOWN: 0, LOW: 0, MEDIUM: 2, HIGH: 4, CRITICAL: 0) real 0m 9.59s user 0m 6.63s sys 0m 0.31s ``` Does anyone see the same behavior ? Is there some new option to enable in 0.50 to avoid this time increase ? ### Target Filesystem ### Scanner Vulnerability ### Output Format None ### Mode Standalone ### Operating System Docker ### Version ```bash Version: 0.50.0 ```
awakenine commented 7 months ago

I can confirm the issue.

Below is scan output for the same repo. Scan output for 0.49.1 trimmed.

for trivy 0.49.1

trivy fs --scanners vuln,misconfig .    
2024-03-26T09:47:04.895+0100    INFO    Need to update DB
2024-03-26T09:47:04.895+0100    INFO    DB Repository: ghcr.io/aquasecurity/trivy-db
2024-03-26T09:47:04.895+0100    INFO    Downloading DB...
44.64 MiB / 44.64 MiB [------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------] 100.00% 15.69 MiB p/s 3.0s
2024-03-26T09:47:08.874+0100    INFO    Vulnerability scanning is enabled
2024-03-26T09:47:08.874+0100    INFO    Misconfiguration scanning is enabled
2024-03-26T09:49:27.265+0100    INFO    Number of language-specific files: 28
2024-03-26T09:49:27.265+0100    INFO    Detecting pom vulnerabilities...
2024-03-26T09:49:27.380+0100    INFO    Detected config files: 7

for trivy 0.50.0

trivy fs --scanners vuln,misconfig .
2024-03-26T09:52:01.415+0100    INFO    Vulnerability scanning is enabled
2024-03-26T09:52:01.415+0100    INFO    Misconfiguration scanning is enabled
2024-03-26T09:57:01.403+0100    WARN    Increase --timeout value
2024-03-26T09:57:01.403+0100    FATAL   filesystem scan error: scan error: scan failed: failed analysis: walk filesystem: walk error: unknown error with ./ums: failed to analyze file: analyze file (ums/pom.xml): semaphore acquire: context deadline exceeded
knqyf263 commented 6 months ago

It was fixed in v0.50.2. Please let us know if it still persists.

azdanov commented 6 months ago

@knqyf263 For me there are quite big speed improvements, but it's still 1.5-2x slower than 0.49. And I see many Failed to fetch.

Logs
$ trivy filesystem -d --exit-code 0 --scanners=misconfig,vuln --format=template --template="@/contrib/gitlab-codequality.tpl" --output=gl-codeclimate.json --severity HIGH,CRITICAL --timeout 15m .
2024-04-23T06:39:19.748Z    DEBUG   Severities: ["HIGH" "CRITICAL"]
2024-04-23T06:39:19.749Z    DEBUG   Ignore statuses {"statuses": null}
2024-04-23T06:39:19.749Z    DEBUG   cache dir:  .trivycache/
2024-04-23T06:39:19.749Z    INFO    Need to update DB
2024-04-23T06:39:19.749Z    INFO    DB Repository: ghcr.io/aquasecurity/trivy-db:2
2024-04-23T06:39:19.749Z    INFO    Downloading DB...
2024-04-23T06:39:25.475Z    DEBUG   Updating database metadata...
2024-04-23T06:39:25.476Z    DEBUG   DB Schema: 2, UpdatedAt: 2024-04-23 06:12:13.734267443 +0000 UTC, NextUpdate: 2024-04-23 12:12:13.734267082 +0000 UTC, DownloadedAt: 2024-04-23 06:39:25.476009382 +0000 UTC
2024-04-23T06:39:25.476Z    INFO    Vulnerability scanning is enabled
2024-04-23T06:39:25.476Z    DEBUG   Vulnerability type:  [os library]
2024-04-23T06:39:25.476Z    INFO    Misconfiguration scanning is enabled
2024-04-23T06:39:25.476Z    DEBUG   Policies successfully loaded from disk
2024-04-23T06:39:25.476Z    DEBUG   Enabling misconfiguration scanners: [azure-arm cloudformation dockerfile helm kubernetes terraform terraformplan-json terraformplan-snapshot]
2024-04-23T06:39:25.520Z    DEBUG   The nuget packages directory couldn't be found. License search disabled
2024-04-23T06:39:25.520Z    DEBUG   Walk the file tree rooted at '.' in parallel
2024-04-23T06:39:25.527Z    DEBUG   Start parent: org.springframework.boot:spring-boot-starter-parent:3.2.4
2024-04-23T06:39:25.579Z    DEBUG   Start parent: org.springframework.boot:spring-boot-dependencies:3.2.4
2024-04-23T06:39:25.627Z    DEBUG   Exit parent: org.springframework.boot:spring-boot-dependencies:3.2.4
2024-04-23T06:39:25.630Z    DEBUG   Exit parent: org.springframework.boot:spring-boot-starter-parent:3.2.4
2024-04-23T06:39:25.638Z    DEBUG   Resolving org.assertj:assertj-bom:3.24.2...
2024-04-23T06:39:25.645Z    DEBUG   Resolving io.zipkin.brave:brave-bom:5.16.0...
2024-04-23T06:39:25.652Z    DEBUG   Resolving io.zipkin.reporter2:zipkin-reporter-bom:2.16.3...
2024-04-23T06:39:25.661Z    DEBUG   Resolving com.datastax.oss:java-driver-bom:4.17.0...
2024-04-23T06:39:25.668Z    DEBUG   Resolving io.dropwizard.metrics:metrics-bom:4.2.25...
2024-04-23T06:39:25.675Z    DEBUG   Start parent: io.dropwizard.metrics:metrics-parent:4.2.25
2024-04-23T06:39:25.684Z    DEBUG   Exit parent: io.dropwizard.metrics:metrics-parent:4.2.25
2024-04-23T06:39:25.686Z    DEBUG   Resolving org.glassfish.jaxb:jaxb-bom:4.0.5...
2024-04-23T06:39:25.694Z    DEBUG   Start parent: org.eclipse.ee4j:project:1.0.9
2024-04-23T06:39:25.700Z    DEBUG   Exit parent: org.eclipse.ee4j:project:1.0.9
2024-04-23T06:39:25.701Z    DEBUG   Resolving org.apache.groovy:groovy-bom:4.0.20...
2024-04-23T06:39:25.715Z    DEBUG   Resolving org.infinispan:infinispan-bom:14.0.27.Final...
2024-04-23T06:39:25.723Z    DEBUG   Start parent: org.infinispan:infinispan-build-configuration-parent:14.0.27.Final
2024-04-23T06:39:25.733Z    DEBUG   Start parent: org.jboss:jboss-parent:39
2024-04-23T06:39:25.745Z    DEBUG   Exit parent: org.jboss:jboss-parent:39
2024-04-23T06:39:25.745Z    DEBUG   Exit parent: org.infinispan:infinispan-build-configuration-parent:14.0.27.Final
2024-04-23T06:39:25.748Z    DEBUG   Resolving com.fasterxml.jackson:jackson-bom:2.15.4...
2024-04-23T06:39:25.757Z    DEBUG   Adding repository sonatype-nexus-snapshots: https://oss.sonatype.org/content/repositories/snapshots
2024-04-23T06:39:25.757Z    DEBUG   Start parent: com.fasterxml.jackson:jackson-parent:2.15
2024-04-23T06:39:25.763Z    DEBUG   Adding repository sonatype-nexus-snapshots: https://oss.sonatype.org/content/repositories/snapshots
2024-04-23T06:39:25.763Z    DEBUG   Start parent: com.fasterxml:oss-parent:50
2024-04-23T06:39:25.772Z    DEBUG   Adding repository sonatype-nexus-snapshots: https://oss.sonatype.org/content/repositories/snapshots
2024-04-23T06:39:25.772Z    DEBUG   Exit parent: com.fasterxml:oss-parent:50
2024-04-23T06:39:25.773Z    DEBUG   Exit parent: com.fasterxml.jackson:jackson-parent:2.15
2024-04-23T06:39:25.777Z    DEBUG   Resolving org.glassfish.jersey:jersey-bom:3.1.5...
2024-04-23T06:39:25.786Z    DEBUG   Start parent: org.eclipse.ee4j:project:1.0.8
2024-04-23T06:39:25.793Z    DEBUG   Exit parent: org.eclipse.ee4j:project:1.0.8
2024-04-23T06:39:25.795Z    DEBUG   Resolving org.eclipse.jetty.ee10:jetty-ee10-bom:12.0.7...
2024-04-23T06:39:25.805Z    DEBUG   Resolving org.eclipse.jetty:jetty-bom:12.0.7...
2024-04-23T06:39:25.814Z    DEBUG   Resolving org.junit:junit-bom:5.10.2...
2024-04-23T06:39:25.821Z    DEBUG   Resolving org.jetbrains.kotlin:kotlin-bom:1.9.23...
2024-04-23T06:39:25.830Z    DEBUG   Resolving org.jetbrains.kotlinx:kotlinx-coroutines-bom:1.7.3...
2024-04-23T06:39:25.840Z    DEBUG   Resolving org.jetbrains.kotlinx:kotlinx-serialization-bom:1.6.3...
2024-04-23T06:39:25.850Z    DEBUG   Resolving org.apache.logging.log4j:log4j-bom:2.21.1...
2024-04-23T06:39:25.860Z    DEBUG   Start parent: org.apache.logging:logging-parent:10.1.1
2024-04-23T06:39:25.877Z    DEBUG   Start parent: org.apache:apache:30
2024-04-23T06:39:25.890Z    DEBUG   Exit parent: org.apache:apache:30
2024-04-23T06:39:25.890Z    DEBUG   Exit parent: org.apache.logging:logging-parent:10.1.1
2024-04-23T06:39:25.895Z    DEBUG   Resolving io.micrometer:micrometer-bom:1.12.4...
2024-04-23T06:39:25.909Z    DEBUG   Resolving io.micrometer:micrometer-tracing-bom:1.2.4...
2024-04-23T06:39:25.921Z    DEBUG   Resolving org.mockito:mockito-bom:5.7.0...
2024-04-23T06:39:25.931Z    DEBUG   Resolving io.netty:netty-bom:4.1.107.Final...
2024-04-23T06:39:25.941Z    DEBUG   Start parent: org.sonatype.oss:oss-parent:7
2024-04-23T06:39:25.948Z    DEBUG   Adding repository sonatype-nexus-snapshots: https://oss.sonatype.org/content/repositories/snapshots
2024-04-23T06:39:25.948Z    DEBUG   Exit parent: org.sonatype.oss:oss-parent:7
2024-04-23T06:39:25.954Z    DEBUG   Resolving com.squareup.okhttp3:okhttp-bom:4.12.0...
2024-04-23T06:39:25.966Z    DEBUG   Resolving io.opentelemetry:opentelemetry-bom:1.31.0...
2024-04-23T06:39:25.979Z    DEBUG   Resolving com.oracle.database.jdbc:ojdbc-bom:21.9.0.0...
2024-04-23T06:39:25.996Z    DEBUG   Resolving io.prometheus:simpleclient_bom:0.16.0...
2024-04-23T06:39:26.003Z    DEBUG   Start parent: io.prometheus:parent:0.16.0
2024-04-23T06:39:26.012Z    DEBUG   Exit parent: io.prometheus:parent:0.16.0
2024-04-23T06:39:26.019Z    DEBUG   Resolving com.querydsl:querydsl-bom:5.0.0...
2024-04-23T06:39:26.040Z    DEBUG   Resolving io.projectreactor:reactor-bom:2023.0.4...
2024-04-23T06:39:26.053Z    DEBUG   Resolving io.rest-assured:rest-assured-bom:5.3.2...
2024-04-23T06:39:26.066Z    DEBUG   Resolving io.rsocket:rsocket-bom:1.1.3...
2024-04-23T06:39:26.078Z    DEBUG   Resolving org.seleniumhq.selenium:selenium-bom:4.14.1...
2024-04-23T06:39:26.094Z    DEBUG   Resolving org.springframework.amqp:spring-amqp-bom:3.1.3...
2024-04-23T06:39:26.107Z    DEBUG   Resolving org.springframework.batch:spring-batch-bom:5.1.1...
2024-04-23T06:39:26.120Z    DEBUG   Resolving org.springframework.data:spring-data-bom:2023.1.4...
2024-04-23T06:39:26.134Z    DEBUG   Resolving org.springframework:spring-framework-bom:6.1.5...
2024-04-23T06:39:26.151Z    DEBUG   Resolving org.springframework.integration:spring-integration-bom:6.2.3...
2024-04-23T06:39:26.174Z    DEBUG   Resolving org.springframework.pulsar:spring-pulsar-bom:1.0.4...
2024-04-23T06:39:26.185Z    DEBUG   Resolving org.springframework.restdocs:spring-restdocs-bom:3.0.1...
2024-04-23T06:39:26.197Z    DEBUG   Resolving org.springframework.security:spring-security-bom:6.2.3...
2024-04-23T06:39:26.210Z    DEBUG   Resolving org.springframework.session:spring-session-bom:3.2.2...
2024-04-23T06:39:26.222Z    DEBUG   Resolving org.springframework.ws:spring-ws-bom:4.0.10...
2024-04-23T06:39:26.234Z    DEBUG   Resolving org.testcontainers:testcontainers-bom:1.19.7...
2024-04-23T06:39:26.416Z    DEBUG   Resolving org.springframework.boot:spring-boot-starter:3.2.4...
2024-04-23T06:39:26.423Z    DEBUG   Resolving org.springframework.vault:spring-vault-core:3.1.1...
2024-04-23T06:39:26.431Z    DEBUG   Start parent: org.springframework.vault:spring-vault-parent:3.1.1
2024-04-23T06:39:26.437Z    DEBUG   Exit parent: org.springframework.vault:spring-vault-parent:3.1.1
2024-04-23T06:39:26.454Z    DEBUG   Resolving org.springframework.boot:spring-boot-starter-web-services:3.2.4...
2024-04-23T06:39:26.466Z    DEBUG   Resolving org.springframework.boot:spring-boot-starter-webflux:3.2.4...
2024-04-23T06:39:26.476Z    DEBUG   Resolving org.springframework.boot:spring-boot-starter-actuator:3.2.4...
2024-04-23T06:39:26.486Z    DEBUG   Resolving org.springframework.boot:spring-boot-starter-web:3.2.4...
2024-04-23T06:39:26.496Z    DEBUG   Resolving org.springframework.boot:spring-boot-starter-validation:3.2.4...
2024-04-23T06:39:26.503Z    DEBUG   Resolving org.springframework.boot:spring-boot-starter-security:3.2.4...
2024-04-23T06:39:26.516Z    DEBUG   Resolving org.springframework.boot:spring-boot-starter-log4j2:3.2.4...
2024-04-23T06:39:26.526Z    DEBUG   Resolving org.springframework.boot:spring-boot-starter-oauth2-client:3.2.4...
2024-04-23T06:39:26.539Z    DEBUG   Resolving org.springframework.boot:spring-boot-starter-oauth2-resource-server:3.2.4...
2024-04-23T06:39:26.553Z    DEBUG   Resolving org.liquibase:liquibase-core:4.24.0...
2024-04-23T06:39:26.570Z    DEBUG   Resolving org.mariadb.jdbc:mariadb-java-client:3.3.3...
2024-04-23T06:39:26.582Z    DEBUG   Resolving org.junit:junit-bom:5.7.0...
2024-04-23T06:39:26.590Z    DEBUG   Resolving software.amazon.awssdk:bom:2.21.1...
2024-04-23T06:39:26.625Z    DEBUG   Start parent: software.amazon.awssdk:aws-sdk-java-pom:2.21.1
2024-04-23T06:39:26.650Z    DEBUG   Exit parent: software.amazon.awssdk:aws-sdk-java-pom:2.21.1
2024-04-23T06:39:26.675Z    DEBUG   Resolving org.springframework.boot:spring-boot-starter-data-jpa:3.2.4...
2024-04-23T06:39:26.686Z    DEBUG   Resolving nz.net.ultraq.thymeleaf:thymeleaf-layout-dialect:3.3.0...
2024-04-23T06:39:26.697Z    DEBUG   Resolving org.thymeleaf.extras:thymeleaf-extras-springsecurity6:3.1.2.RELEASE...
2024-04-23T06:39:26.707Z    DEBUG   Start parent: org.thymeleaf:thymeleaf-lib:3.1.2.RELEASE
2024-04-23T06:39:26.714Z    DEBUG   Start parent: org.thymeleaf:thymeleaf-parent:3.1.2.RELEASE
2024-04-23T06:39:26.734Z    DEBUG   Adding repository sonatype-nexus-snapshots: https://oss.sonatype.org/content/repositories/snapshots
2024-04-23T06:39:26.734Z    DEBUG   Adding repository springio-snapshots: https://repo.spring.io/snapshot
2024-04-23T06:39:26.734Z    DEBUG   Exit parent: org.thymeleaf:thymeleaf-parent:3.1.2.RELEASE
2024-04-23T06:39:26.735Z    DEBUG   Exit parent: org.thymeleaf:thymeleaf-lib:3.1.2.RELEASE
2024-04-23T06:39:26.737Z    DEBUG   Resolving org.springframework:spring-framework-bom:6.0.11...
2024-04-23T06:39:26.745Z    DEBUG   Resolving org.springframework.security:spring-security-bom:6.1.2...
2024-04-23T06:39:26.752Z    DEBUG   Resolving com.fasterxml.jackson:jackson-bom:2.15.2...
2024-04-23T06:39:26.764Z    DEBUG   Adding repository sonatype-nexus-snapshots: https://oss.sonatype.org/content/repositories/snapshots
2024-04-23T06:39:26.764Z    DEBUG   Start parent: com.fasterxml.jackson:jackson-parent:2.15
2024-04-23T06:39:26.764Z    DEBUG   Exit parent: com.fasterxml.jackson:jackson-parent:2.15
2024-04-23T06:39:26.768Z    DEBUG   Resolving io.projectreactor:reactor-bom:2022.0.9...
2024-04-23T06:39:26.776Z    DEBUG   Resolving org.apache.logging.log4j:log4j-bom:2.20.0...
2024-04-23T06:39:26.784Z    DEBUG   Start parent: org.apache.logging:logging-parent:7
2024-04-23T06:39:26.790Z    DEBUG   Start parent: org.apache:apache:27
2024-04-23T06:39:26.801Z    DEBUG   Exit parent: org.apache:apache:27
2024-04-23T06:39:26.801Z    DEBUG   Exit parent: org.apache.logging:logging-parent:7
2024-04-23T06:39:26.803Z    DEBUG   Resolving org.junit:junit-bom:5.10.0...
2024-04-23T06:39:26.822Z    DEBUG   Resolving org.springframework.boot:spring-boot-starter-thymeleaf:3.2.4...
2024-04-23T06:39:26.830Z    DEBUG   Resolving com.nimbusds:nimbus-jose-jwt:9.35...
2024-04-23T06:39:26.856Z    DEBUG   Resolving org.apache.tika:tika-core:2.9.1...
2024-04-23T06:39:26.865Z    DEBUG   Start parent: org.apache.tika:tika-parent:2.9.1
2024-04-23T06:39:26.886Z    DEBUG   Start parent: org.apache:apache:30
2024-04-23T06:39:26.886Z    DEBUG   Exit parent: org.apache:apache:30
2024-04-23T06:39:26.894Z    DEBUG   Resolving io.netty:netty-bom:4.1.100.Final...
2024-04-23T06:39:26.904Z    DEBUG   Start parent: org.sonatype.oss:oss-parent:7
2024-04-23T06:39:26.904Z    DEBUG   Exit parent: org.sonatype.oss:oss-parent:7
2024-04-23T06:39:26.906Z    DEBUG   Resolving org.apache.cxf:cxf-bom:3.5.6...
2024-04-23T06:39:26.914Z    DEBUG   Start parent: org.apache.cxf:cxf:3.5.6
2024-04-23T06:39:26.923Z    DEBUG   Adding repository apache.snapshots: https://repository.apache.org/snapshots/
2024-04-23T06:39:26.923Z    DEBUG   Exit parent: org.apache.cxf:cxf:3.5.6
2024-04-23T06:39:26.925Z    DEBUG   Resolving org.eclipse.jetty:jetty-bom:9.4.53.v20231009...
2024-04-23T06:39:26.942Z    DEBUG   Resolving org.testcontainers:testcontainers-bom:1.19.1...
2024-04-23T06:39:26.950Z    DEBUG   Exit parent: org.apache.tika:tika-parent:2.9.1
2024-04-23T06:39:26.966Z    DEBUG   Resolving commons-io:commons-io:2.13.0...
2024-04-23T06:39:26.978Z    DEBUG   Start parent: org.apache.commons:commons-parent:58
2024-04-23T06:39:26.991Z    DEBUG   Start parent: org.apache:apache:29
2024-04-23T06:39:26.998Z    DEBUG   Exit parent: org.apache:apache:29
2024-04-23T06:39:26.998Z    DEBUG   Exit parent: org.apache.commons:commons-parent:58
2024-04-23T06:39:26.998Z    DEBUG   Resolving org.junit:junit-bom:5.9.3...
2024-04-23T06:39:27.010Z    DEBUG   Resolving org.codehaus.mojo:exec-maven-plugin:3.1.0...
2024-04-23T06:39:27.017Z    DEBUG   Start parent: org.codehaus.mojo:mojo-parent:69
2024-04-23T06:39:27.028Z    DEBUG   Adding repository ossrh-snapshots: https://oss.sonatype.org/content/repositories/snapshots
2024-04-23T06:39:27.029Z    DEBUG   Exit parent: org.codehaus.mojo:mojo-parent:69
2024-04-23T06:39:27.029Z    DEBUG   Resolving org.junit:junit-bom:5.8.2...
2024-04-23T06:39:27.050Z    DEBUG   Resolving dev.fitko.fitconnect.sdk:client:2.0.0...
2024-04-23T06:39:27.057Z    DEBUG   Start parent: dev.fitko.fitconnect.sdk:sdk-java:2.0.0
2024-04-23T06:39:27.065Z    DEBUG   Exit parent: dev.fitko.fitconnect.sdk:sdk-java:2.0.0
2024-04-23T06:39:27.069Z    DEBUG   Resolving org.passay:passay:1.6.4...
2024-04-23T06:39:27.083Z    DEBUG   Resolving org.keycloak:keycloak-admin-client:23.0.0...
2024-04-23T06:39:27.089Z    DEBUG   Start parent: org.keycloak:keycloak-integration-parent:23.0.0
2024-04-23T06:39:27.095Z    DEBUG   Start parent: org.keycloak:keycloak-parent:23.0.0
2024-04-23T06:39:27.116Z    DEBUG   Start parent: org.jboss:jboss-parent:39
2024-04-23T06:39:27.116Z    DEBUG   Exit parent: org.jboss:jboss-parent:39
2024-04-23T06:39:27.118Z    DEBUG   Exit parent: org.keycloak:keycloak-parent:23.0.0
2024-04-23T06:39:27.119Z    DEBUG   Exit parent: org.keycloak:keycloak-integration-parent:23.0.0
2024-04-23T06:39:27.123Z    DEBUG   Resolving io.quarkus.platform:quarkus-bom:3.2.9.Final...
2024-04-23T06:39:27.251Z    DEBUG   Resolving org.bouncycastle:bcprov-jdk18on:1.78...
2024-04-23T06:39:27.256Z    DEBUG   Resolving org.springframework:spring-web:6.1.6...
2024-04-23T06:39:27.264Z    DEBUG   Resolving org.springframework.boot:spring-boot:3.2.4...
2024-04-23T06:39:27.274Z    DEBUG   Resolving org.springframework.boot:spring-boot-autoconfigure:3.2.4...
2024-04-23T06:39:27.279Z    DEBUG   Resolving jakarta.annotation:jakarta.annotation-api:2.1.1...
2024-04-23T06:39:27.286Z    DEBUG   Start parent: org.eclipse.ee4j:project:1.0.7
2024-04-23T06:39:27.293Z    DEBUG   Exit parent: org.eclipse.ee4j:project:1.0.7
2024-04-23T06:39:27.293Z    DEBUG   Resolving org.springframework:spring-core:6.1.5...
2024-04-23T06:39:27.300Z    DEBUG   Resolving org.yaml:snakeyaml:2.2...
2024-04-23T06:39:27.319Z    DEBUG   Resolving org.springframework:spring-context:6.1.5...
2024-04-23T06:39:27.333Z    DEBUG   Resolving org.springframework:spring-beans:6.1.5...
2024-04-23T06:39:27.341Z    DEBUG   Resolving com.fasterxml.jackson.core:jackson-databind:2.15.4...
2024-04-23T06:39:27.352Z    DEBUG   Adding repository sonatype-nexus-snapshots: https://oss.sonatype.org/content/repositories/snapshots
2024-04-23T06:39:27.352Z    DEBUG   Start parent: com.fasterxml.jackson:jackson-base:2.15.4
2024-04-23T06:39:27.360Z    DEBUG   Start parent: com.fasterxml.jackson:jackson-bom:2.15.4
2024-04-23T06:39:27.360Z    DEBUG   Exit parent: com.fasterxml.jackson:jackson-bom:2.15.4
2024-04-23T06:39:27.363Z    DEBUG   Exit parent: com.fasterxml.jackson:jackson-base:2.15.4
2024-04-23T06:39:27.366Z    DEBUG   Resolving org.junit:junit-bom:5.9.2...
2024-04-23T06:39:27.379Z    DEBUG   Resolving com.sun.xml.messaging.saaj:saaj-impl:3.0.3...
2024-04-23T06:39:27.387Z    DEBUG   Start parent: com.sun.xml.messaging.saaj:metro-saaj:3.0.3
2024-04-23T06:39:27.394Z    DEBUG   Start parent: org.eclipse.ee4j:project:1.0.8
2024-04-23T06:39:27.395Z    DEBUG   Exit parent: org.eclipse.ee4j:project:1.0.8
2024-04-23T06:39:27.395Z    DEBUG   Exit parent: com.sun.xml.messaging.saaj:metro-saaj:3.0.3
2024-04-23T06:39:27.397Z    DEBUG   Resolving jakarta.xml.ws:jakarta.xml.ws-api:4.0.1...
2024-04-23T06:39:27.407Z    DEBUG   Start parent: org.eclipse.ee4j:project:1.0.8
2024-04-23T06:39:27.407Z    DEBUG   Exit parent: org.eclipse.ee4j:project:1.0.8
2024-04-23T06:39:27.408Z    DEBUG   Resolving org.springframework:spring-oxm:6.1.5...
2024-04-23T06:39:27.415Z    DEBUG   Resolving org.springframework.ws:spring-ws-core:4.0.10...
2024-04-23T06:39:27.423Z    DEBUG   Start parent: org.springframework.ws:spring-ws:4.0.10
2024-04-23T06:39:27.440Z    DEBUG   Adding repository spring-snapshot: https://repo.spring.io/snapshot
2024-04-23T06:39:27.441Z    DEBUG   Resolving org.springframework:spring-framework-bom:6.0.16...
2024-04-23T06:39:27.449Z    DEBUG   Resolving org.springframework.security:spring-security-bom:6.0.8...
2024-04-23T06:39:27.457Z    DEBUG   Resolving org.junit:junit-bom:5.9.1...
2024-04-23T06:39:27.464Z    DEBUG   Resolving org.eclipse.jetty:jetty-bom:11.0.12...
2024-04-23T06:39:27.480Z    DEBUG   Exit parent: org.springframework.ws:spring-ws:4.0.10
2024-04-23T06:39:27.516Z    DEBUG   Resolving org.springframework.boot:spring-boot-starter-json:3.2.4...
2024-04-23T06:39:27.526Z    DEBUG   Resolving org.springframework.boot:spring-boot-starter-reactor-netty:3.2.4...
2024-04-23T06:39:27.533Z    DEBUG   Resolving org.springframework:spring-webflux:6.1.5...
2024-04-23T06:39:27.544Z    DEBUG   Resolving org.springframework.boot:spring-boot-actuator-autoconfigure:3.2.4...
2024-04-23T06:39:27.552Z    DEBUG   Resolving io.micrometer:micrometer-observation:1.12.4...
2024-04-23T06:39:27.563Z    DEBUG   Resolving io.micrometer:micrometer-jakarta9:1.12.4...
2024-04-23T06:39:27.574Z    DEBUG   Resolving org.springframework.boot:spring-boot-starter-tomcat:3.2.4...
2024-04-23T06:39:27.582Z    DEBUG   Resolving org.springframework:spring-webmvc:6.1.5...
2024-04-23T06:39:27.596Z    DEBUG   Resolving org.apache.tomcat.embed:tomcat-embed-el:10.1.19...
2024-04-23T06:39:27.601Z    DEBUG   Resolving org.hibernate.validator:hibernate-validator:8.0.1.Final...
2024-04-23T06:39:27.609Z    DEBUG   Start parent: org.hibernate.validator:hibernate-validator-parent:8.0.1.Final
2024-04-23T06:39:27.630Z    DEBUG   Exit parent: org.hibernate.validator:hibernate-validator-parent:8.0.1.Final
2024-04-23T06:39:27.632Z    DEBUG   Resolving org.jboss.arquillian:arquillian-bom:1.7.0.Alpha10...
2024-04-23T06:39:27.639Z    DEBUG   Resolving org.jboss.shrinkwrap:shrinkwrap-bom:1.2.6...
2024-04-23T06:39:27.645Z    DEBUG   Resolving org.jboss.shrinkwrap.resolver:shrinkwrap-resolver-bom:3.1.4...
2024-04-23T06:39:27.654Z    DEBUG   Resolving org.apache.maven:maven:3.6.3...
2024-04-23T06:39:27.668Z    DEBUG   Start parent: org.apache.maven:maven-parent:33
2024-04-23T06:39:27.678Z    DEBUG   Start parent: org.apache:apache:21
2024-04-23T06:39:27.687Z    DEBUG   Exit parent: org.apache:apache:21
2024-04-23T06:39:27.688Z    DEBUG   Exit parent: org.apache.maven:maven-parent:33
2024-04-23T06:39:27.691Z    DEBUG   Resolving org.jboss.shrinkwrap.descriptors:shrinkwrap-descriptors-bom:2.0.0...
2024-04-23T06:39:27.730Z    DEBUG   Resolving org.springframework:spring-aop:6.1.5...
2024-04-23T06:39:27.737Z    DEBUG   Resolving org.springframework.security:spring-security-config:6.2.3...
2024-04-23T06:39:27.746Z    DEBUG   Resolving org.springframework.security:spring-security-web:6.2.3...
2024-04-23T06:39:27.761Z    DEBUG   Resolving org.apache.logging.log4j:log4j-slf4j2-impl:2.21.1...
2024-04-23T06:39:27.768Z    DEBUG   Start parent: org.apache.logging.log4j:log4j:2.21.1
2024-04-23T06:39:27.785Z    DEBUG   Start parent: org.apache.logging.log4j:log4j-bom:2.21.1
2024-04-23T06:39:27.785Z    DEBUG   Exit parent: org.apache.logging.log4j:log4j-bom:2.21.1
2024-04-23T06:39:27.789Z    DEBUG   Resolving org.ow2.asm:asm-bom:9.5...
2024-04-23T06:39:27.795Z    DEBUG   Start parent: org.ow2:ow2:1.5.1
2024-04-23T06:39:27.801Z    DEBUG   Exit parent: org.ow2:ow2:1.5.1
2024-04-23T06:39:27.801Z    DEBUG   Resolving org.codehaus.groovy:groovy-bom:3.0.19...
2024-04-23T06:39:27.819Z    DEBUG   Resolving jakarta.platform:jakarta.jakartaee-bom:9.1.0...
2024-04-23T06:39:27.825Z    DEBUG   Start parent: jakarta.platform:jakartaee-api-parent:9.1.0
2024-04-23T06:39:27.832Z    DEBUG   Start parent: org.eclipse.ee4j:project:1.0.7
2024-04-23T06:39:27.832Z    DEBUG   Exit parent: org.eclipse.ee4j:project:1.0.7
2024-04-23T06:39:27.832Z    DEBUG   Exit parent: jakarta.platform:jakartaee-api-parent:9.1.0
2024-04-23T06:39:27.834Z    DEBUG   Resolving io.fabric8:kubernetes-client-bom:5.12.4...
2024-04-23T06:39:27.844Z    DEBUG   Resolving org.mockito:mockito-bom:4.11.0...
2024-04-23T06:39:27.851Z    DEBUG   Resolving io.netty:netty-bom:4.1.97.Final...
2024-04-23T06:39:27.858Z    DEBUG   Start parent: org.sonatype.oss:oss-parent:7
2024-04-23T06:39:27.858Z    DEBUG   Exit parent: org.sonatype.oss:oss-parent:7
2024-04-23T06:39:27.859Z    DEBUG   Resolving org.springframework:spring-framework-bom:5.3.29...
2024-04-23T06:39:27.869Z    DEBUG   Exit parent: org.apache.logging.log4j:log4j:2.21.1
2024-04-23T06:39:27.909Z    DEBUG   Resolving org.apache.logging.log4j:log4j-core:2.21.1...
2024-04-23T06:39:27.918Z    DEBUG   Start parent: org.apache.logging.log4j:log4j:2.21.1
2024-04-23T06:39:27.918Z    DEBUG   Exit parent: org.apache.logging.log4j:log4j:2.21.1
2024-04-23T06:39:27.970Z    DEBUG   Resolving org.apache.logging.log4j:log4j-jul:2.21.1...
2024-04-23T06:39:27.977Z    DEBUG   Start parent: org.apache.logging.log4j:log4j:2.21.1
2024-04-23T06:39:27.977Z    DEBUG   Exit parent: org.apache.logging.log4j:log4j:2.21.1
2024-04-23T06:39:28.012Z    DEBUG   Resolving org.springframework.security:spring-security-core:6.2.3...
2024-04-23T06:39:28.030Z    DEBUG   Resolving org.springframework.security:spring-security-oauth2-client:6.2.3...
2024-04-23T06:39:28.045Z    DEBUG   Resolving org.springframework.security:spring-security-oauth2-jose:6.2.3...
2024-04-23T06:39:28.059Z    DEBUG   Resolving org.springframework.security:spring-security-oauth2-resource-server:6.2.3...
2024-04-23T06:39:28.070Z    DEBUG   Resolving com.opencsv:opencsv:5.8...
2024-04-23T06:39:28.086Z    DEBUG   Resolving org.apache.commons:commons-lang3:3.13.0...
2024-04-23T06:39:28.097Z    DEBUG   Start parent: org.apache.commons:commons-parent:58
2024-04-23T06:39:28.097Z    DEBUG   Exit parent: org.apache.commons:commons-parent:58
2024-04-23T06:39:28.107Z    DEBUG   Resolving org.apache.commons:commons-text:1.10.0...
2024-04-23T06:39:28.116Z    DEBUG   Start parent: org.apache.commons:commons-parent:54
2024-04-23T06:39:28.128Z    DEBUG   Start parent: org.apache:apache:27
2024-04-23T06:39:28.128Z    DEBUG   Exit parent: org.apache:apache:27
2024-04-23T06:39:28.129Z    DEBUG   Exit parent: org.apache.commons:commons-parent:54
2024-04-23T06:39:28.136Z    DEBUG   Resolving org.apache.commons:commons-collections4:4.4...
2024-04-23T06:39:28.146Z    DEBUG   Start parent: org.apache.commons:commons-parent:48
2024-04-23T06:39:28.158Z    DEBUG   Start parent: org.apache:apache:21
2024-04-23T06:39:28.158Z    DEBUG   Exit parent: org.apache:apache:21
2024-04-23T06:39:28.158Z    DEBUG   Exit parent: org.apache.commons:commons-parent:48
2024-04-23T06:39:28.160Z    DEBUG   Resolving javax.xml.bind:jaxb-api:2.3.1...
2024-04-23T06:39:28.168Z    DEBUG   Start parent: javax.xml.bind:jaxb-api-parent:2.3.1
2024-04-23T06:39:28.175Z    DEBUG   Start parent: net.java:jvnet-parent:5
2024-04-23T06:39:28.181Z    DEBUG   Adding repository jvnet-nexus-releases: https://maven.java.net/content/repositories/releases/
2024-04-23T06:39:28.181Z    DEBUG   Exit parent: net.java:jvnet-parent:5
2024-04-23T06:39:28.181Z    DEBUG   Exit parent: javax.xml.bind:jaxb-api-parent:2.3.1
2024-04-23T06:39:28.182Z    DEBUG   Resolving com.github.waffle:waffle-jna:3.3.0...
2024-04-23T06:39:28.416Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/com/github/waffle/waffle-jna/3.3.0/waffle-jna-3.3.0.pom
2024-04-23T06:39:28.422Z    DEBUG   Start parent: com.github.waffle:waffle-parent:3.3.0
2024-04-23T06:39:28.602Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/com/github/waffle/waffle-parent/3.3.0/waffle-parent-3.3.0.pom
2024-04-23T06:39:28.616Z    DEBUG   Exit parent: com.github.waffle:waffle-parent:3.3.0
2024-04-23T06:39:28.621Z    DEBUG   Resolving org.springframework.boot:spring-boot-starter-aop:3.2.4...
2024-04-23T06:39:28.803Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/springframework/boot/spring-boot-starter-aop/3.2.4/spring-boot-starter-aop-3.2.4.pom
2024-04-23T06:39:28.812Z    DEBUG   Resolving org.springframework.boot:spring-boot-starter-jdbc:3.2.4...
2024-04-23T06:39:28.994Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/springframework/boot/spring-boot-starter-jdbc/3.2.4/spring-boot-starter-jdbc-3.2.4.pom
2024-04-23T06:39:29.003Z    DEBUG   Resolving org.hibernate.orm:hibernate-core:6.4.4.Final...
2024-04-23T06:39:29.185Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/hibernate/orm/hibernate-core/6.4.4.Final/hibernate-core-6.4.4.Final.pom
2024-04-23T06:39:29.202Z    DEBUG   Resolving org.springframework.data:spring-data-jpa:3.2.4...
2024-04-23T06:39:29.384Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/springframework/data/spring-data-jpa/3.2.4/spring-data-jpa-3.2.4.pom
2024-04-23T06:39:29.393Z    DEBUG   Start parent: org.springframework.data:spring-data-jpa-parent:3.2.4
2024-04-23T06:39:29.573Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/springframework/data/spring-data-jpa-parent/3.2.4/spring-data-jpa-parent-3.2.4.pom
2024-04-23T06:39:29.581Z    DEBUG   Start parent: org.springframework.data.build:spring-data-parent:3.2.4
2024-04-23T06:39:29.761Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/springframework/data/build/spring-data-parent/3.2.4/spring-data-parent-3.2.4.pom
2024-04-23T06:39:29.778Z    DEBUG   Start parent: org.springframework.data.build:spring-data-build:3.2.4
2024-04-23T06:39:29.959Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/springframework/data/build/spring-data-build/3.2.4/spring-data-build-3.2.4.pom
2024-04-23T06:39:29.965Z    DEBUG   Exit parent: org.springframework.data.build:spring-data-build:3.2.4
2024-04-23T06:39:29.969Z    DEBUG   Exit parent: org.springframework.data.build:spring-data-parent:3.2.4
2024-04-23T06:39:29.973Z    DEBUG   Exit parent: org.springframework.data:spring-data-jpa-parent:3.2.4
2024-04-23T06:39:29.994Z    DEBUG   Resolving org.springframework:spring-aspects:6.1.5...
2024-04-23T06:39:30.174Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/springframework/spring-aspects/6.1.5/spring-aspects-6.1.5.pom
2024-04-23T06:39:30.179Z    DEBUG   Resolving org.apache.groovy:groovy:4.0.20...
2024-04-23T06:39:30.358Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/apache/groovy/groovy/4.0.20/groovy-4.0.20.pom
2024-04-23T06:39:30.376Z    DEBUG   Resolving nz.net.ultraq.groovy:groovy-extensions:2.1.0...
2024-04-23T06:39:30.556Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/nz/net/ultraq/groovy/groovy-extensions/2.1.0/groovy-extensions-2.1.0.pom
2024-04-23T06:39:30.562Z    DEBUG   Resolving nz.net.ultraq.thymeleaf:thymeleaf-expression-processor:3.2.0...
2024-04-23T06:39:30.741Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/nz/net/ultraq/thymeleaf/thymeleaf-expression-processor/3.2.0/thymeleaf-expression-processor-3.2.0.pom
2024-04-23T06:39:30.748Z    DEBUG   Resolving org.thymeleaf:thymeleaf:3.1.2.RELEASE...
2024-04-23T06:39:30.928Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/thymeleaf/thymeleaf/3.1.2.RELEASE/thymeleaf-3.1.2.RELEASE.pom
2024-04-23T06:39:30.935Z    DEBUG   Start parent: org.thymeleaf:thymeleaf-lib:3.1.2.RELEASE
2024-04-23T06:39:30.935Z    DEBUG   Exit parent: org.thymeleaf:thymeleaf-lib:3.1.2.RELEASE
2024-04-23T06:39:30.953Z    DEBUG   Resolving org.slf4j:slf4j-api:2.0.12...
2024-04-23T06:39:31.134Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/slf4j/slf4j-api/2.0.12/slf4j-api-2.0.12.pom
2024-04-23T06:39:31.140Z    DEBUG   Start parent: org.slf4j:slf4j-parent:2.0.12
2024-04-23T06:39:31.319Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/slf4j/slf4j-parent/2.0.12/slf4j-parent-2.0.12.pom
2024-04-23T06:39:31.328Z    DEBUG   Start parent: org.slf4j:slf4j-bom:2.0.12
2024-04-23T06:39:31.511Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/slf4j/slf4j-bom/2.0.12/slf4j-bom-2.0.12.pom
2024-04-23T06:39:31.519Z    DEBUG   Exit parent: org.slf4j:slf4j-bom:2.0.12
2024-04-23T06:39:31.520Z    DEBUG   Exit parent: org.slf4j:slf4j-parent:2.0.12
2024-04-23T06:39:31.520Z    DEBUG   Resolving org.thymeleaf:thymeleaf-spring6:3.1.2.RELEASE...
2024-04-23T06:39:31.702Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/thymeleaf/thymeleaf-spring6/3.1.2.RELEASE/thymeleaf-spring6-3.1.2.RELEASE.pom
2024-04-23T06:39:31.709Z    DEBUG   Start parent: org.thymeleaf:thymeleaf-lib:3.1.2.RELEASE
2024-04-23T06:39:31.709Z    DEBUG   Exit parent: org.thymeleaf:thymeleaf-lib:3.1.2.RELEASE
2024-04-23T06:39:31.729Z    DEBUG   Resolving com.github.stephenc.jcip:jcip-annotations:1.0-1...
2024-04-23T06:39:31.910Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/com/github/stephenc/jcip/jcip-annotations/1.0-1/jcip-annotations-1.0-1.pom
2024-04-23T06:39:31.916Z    DEBUG   Start parent: org.sonatype.oss:oss-parent:7
2024-04-23T06:39:31.916Z    DEBUG   Exit parent: org.sonatype.oss:oss-parent:7
2024-04-23T06:39:31.917Z    DEBUG   Resolving org.codehaus.plexus:plexus-utils:3.4.2...
2024-04-23T06:39:32.097Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/codehaus/plexus/plexus-utils/3.4.2/plexus-utils-3.4.2.pom
2024-04-23T06:39:32.104Z    DEBUG   Start parent: org.codehaus.plexus:plexus:8
2024-04-23T06:39:32.286Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/codehaus/plexus/plexus/8/plexus-8.pom
2024-04-23T06:39:32.299Z    DEBUG   Exit parent: org.codehaus.plexus:plexus:8
2024-04-23T06:39:32.305Z    DEBUG   Resolving org.apache.commons:commons-exec:1.3...
2024-04-23T06:39:32.486Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/apache/commons/commons-exec/1.3/commons-exec-1.3.pom
2024-04-23T06:39:32.495Z    DEBUG   Start parent: org.apache.commons:commons-parent:35
2024-04-23T06:39:32.677Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/apache/commons/commons-parent/35/commons-parent-35.pom
2024-04-23T06:39:32.686Z    DEBUG   Start parent: org.apache:apache:15
2024-04-23T06:39:32.866Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/apache/apache/15/apache-15.pom
2024-04-23T06:39:32.873Z    DEBUG   Exit parent: org.apache:apache:15
2024-04-23T06:39:32.873Z    DEBUG   Exit parent: org.apache.commons:commons-parent:35
2024-04-23T06:39:32.874Z    DEBUG   Resolving dev.fitko.fitconnect.sdk:api:2.0.0...
2024-04-23T06:39:33.053Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/dev/fitko/fitconnect/sdk/api/2.0.0/api-2.0.0.pom
2024-04-23T06:39:33.059Z    DEBUG   Start parent: dev.fitko.fitconnect.sdk:sdk-java:2.0.0
2024-04-23T06:39:33.059Z    DEBUG   Exit parent: dev.fitko.fitconnect.sdk:sdk-java:2.0.0
2024-04-23T06:39:33.061Z    DEBUG   Resolving dev.fitko.fitconnect.sdk:core:2.0.0...
2024-04-23T06:39:33.241Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/dev/fitko/fitconnect/sdk/core/2.0.0/core-2.0.0.pom
2024-04-23T06:39:33.248Z    DEBUG   Start parent: dev.fitko.fitconnect.sdk:sdk-java:2.0.0
2024-04-23T06:39:33.248Z    DEBUG   Exit parent: dev.fitko.fitconnect.sdk:sdk-java:2.0.0
2024-04-23T06:39:33.255Z    DEBUG   Resolving org.projectlombok:lombok:1.18.30...
2024-04-23T06:39:33.435Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/projectlombok/lombok/1.18.30/lombok-1.18.30.pom
2024-04-23T06:39:33.440Z    DEBUG   Resolving org.keycloak:keycloak-core:23.0.0...
2024-04-23T06:39:33.620Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/keycloak/keycloak-core/23.0.0/keycloak-core-23.0.0.pom
2024-04-23T06:39:33.626Z    DEBUG   Start parent: org.keycloak:keycloak-parent:23.0.0
2024-04-23T06:39:33.626Z    DEBUG   Exit parent: org.keycloak:keycloak-parent:23.0.0
2024-04-23T06:39:33.643Z    DEBUG   Resolving org.keycloak:keycloak-common:23.0.0...
2024-04-23T06:39:33.824Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/keycloak/keycloak-common/23.0.0/keycloak-common-23.0.0.pom
2024-04-23T06:39:33.831Z    DEBUG   Start parent: org.keycloak:keycloak-parent:23.0.0
2024-04-23T06:39:33.831Z    DEBUG   Exit parent: org.keycloak:keycloak-parent:23.0.0
2024-04-23T06:39:33.867Z    DEBUG   Resolving org.jboss.resteasy:resteasy-client:6.2.4.Final...
2024-04-23T06:39:34.047Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/jboss/resteasy/resteasy-client/6.2.4.Final/resteasy-client-6.2.4.Final.pom
2024-04-23T06:39:34.054Z    DEBUG   Start parent: org.jboss.resteasy:resteasy-jaxrs-all:6.2.4.Final
2024-04-23T06:39:34.235Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/jboss/resteasy/resteasy-jaxrs-all/6.2.4.Final/resteasy-jaxrs-all-6.2.4.Final.pom
2024-04-23T06:39:34.246Z    DEBUG   Adding repository jboss-public-repository-group: https://repository.jboss.org/nexus/content/groups/public/
2024-04-23T06:39:34.246Z    DEBUG   Start parent: dev.resteasy.tools:resteasy-parent:2.0.3.Final
2024-04-23T06:39:34.410Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/dev/resteasy/tools/resteasy-parent/2.0.3.Final/resteasy-parent-2.0.3.Final.pom
2024-04-23T06:39:34.590Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/dev/resteasy/tools/resteasy-parent/2.0.3.Final/resteasy-parent-2.0.3.Final.pom
2024-04-23T06:39:34.599Z    DEBUG   Start parent: org.jboss:jboss-parent:39
2024-04-23T06:39:34.599Z    DEBUG   Exit parent: org.jboss:jboss-parent:39
2024-04-23T06:39:34.600Z    DEBUG   Exit parent: dev.resteasy.tools:resteasy-parent:2.0.3.Final
2024-04-23T06:39:34.600Z    DEBUG   Exit parent: org.jboss.resteasy:resteasy-jaxrs-all:6.2.4.Final
2024-04-23T06:39:34.615Z    DEBUG   Resolving org.jboss.resteasy:resteasy-multipart-provider:6.2.4.Final...
2024-04-23T06:39:34.765Z    DEBUG   Start parent: org.jboss.resteasy:providers-pom:6.2.4.Final
2024-04-23T06:39:34.906Z    DEBUG   Start parent: org.jboss.resteasy:resteasy-jaxrs-all:6.2.4.Final
2024-04-23T06:39:34.906Z    DEBUG   Exit parent: org.jboss.resteasy:resteasy-jaxrs-all:6.2.4.Final
2024-04-23T06:39:34.906Z    DEBUG   Exit parent: org.jboss.resteasy:providers-pom:6.2.4.Final
2024-04-23T06:39:34.923Z    DEBUG   Resolving org.jboss.resteasy:resteasy-jackson2-provider:6.2.4.Final...
2024-04-23T06:39:35.214Z    DEBUG   Start parent: org.jboss.resteasy:providers-pom:6.2.4.Final
2024-04-23T06:39:35.214Z    DEBUG   Exit parent: org.jboss.resteasy:providers-pom:6.2.4.Final
2024-04-23T06:39:35.235Z    DEBUG   Resolving org.jboss.resteasy:resteasy-jaxb-provider:6.2.4.Final...
2024-04-23T06:39:35.385Z    DEBUG   Start parent: org.jboss.resteasy:providers-pom:6.2.4.Final
2024-04-23T06:39:35.385Z    DEBUG   Exit parent: org.jboss.resteasy:providers-pom:6.2.4.Final
2024-04-23T06:39:35.406Z    DEBUG   Resolving org.springframework:spring-jcl:6.1.5...
2024-04-23T06:39:35.572Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/springframework/spring-jcl/6.1.5/spring-jcl-6.1.5.pom
2024-04-23T06:39:35.752Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/springframework/spring-jcl/6.1.5/spring-jcl-6.1.5.pom
2024-04-23T06:39:35.758Z    DEBUG   Resolving org.springframework:spring-expression:6.1.5...
2024-04-23T06:39:35.927Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/springframework/spring-expression/6.1.5/spring-expression-6.1.5.pom
2024-04-23T06:39:36.108Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/springframework/spring-expression/6.1.5/spring-expression-6.1.5.pom
2024-04-23T06:39:36.116Z    DEBUG   Resolving com.fasterxml.jackson.core:jackson-annotations:2.15.4...
2024-04-23T06:39:36.283Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/com/fasterxml/jackson/core/jackson-annotations/2.15.4/jackson-annotations-2.15.4.pom
2024-04-23T06:39:36.464Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/com/fasterxml/jackson/core/jackson-annotations/2.15.4/jackson-annotations-2.15.4.pom
2024-04-23T06:39:36.472Z    DEBUG   Adding repository sonatype-nexus-snapshots: https://oss.sonatype.org/content/repositories/snapshots
2024-04-23T06:39:36.472Z    DEBUG   Start parent: com.fasterxml.jackson:jackson-parent:2.15
2024-04-23T06:39:36.472Z    DEBUG   Exit parent: com.fasterxml.jackson:jackson-parent:2.15
2024-04-23T06:39:36.472Z    DEBUG   Resolving com.fasterxml.jackson.core:jackson-core:2.15.4...
2024-04-23T06:39:36.613Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/com/fasterxml/jackson/core/jackson-core/2.15.4/jackson-core-2.15.4.pom
2024-04-23T06:39:36.794Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/com/fasterxml/jackson/core/jackson-core/2.15.4/jackson-core-2.15.4.pom
2024-04-23T06:39:36.802Z    DEBUG   Start parent: com.fasterxml.jackson:jackson-base:2.15.4
2024-04-23T06:39:36.802Z    DEBUG   Exit parent: com.fasterxml.jackson:jackson-base:2.15.4
2024-04-23T06:39:36.803Z    DEBUG   Resolving jakarta.xml.soap:jakarta.xml.soap-api:3.0.1...
2024-04-23T06:39:36.936Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/jakarta/xml/soap/jakarta.xml.soap-api/3.0.1/jakarta.xml.soap-api-3.0.1.pom
2024-04-23T06:39:37.119Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/jakarta/xml/soap/jakarta.xml.soap-api/3.0.1/jakarta.xml.soap-api-3.0.1.pom
2024-04-23T06:39:37.129Z    DEBUG   Start parent: org.eclipse.ee4j:project:1.0.8
2024-04-23T06:39:37.129Z    DEBUG   Exit parent: org.eclipse.ee4j:project:1.0.8
2024-04-23T06:39:37.130Z    DEBUG   Resolving org.jvnet.staxex:stax-ex:2.1.0...
2024-04-23T06:39:37.273Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/jvnet/staxex/stax-ex/2.1.0/stax-ex-2.1.0.pom
2024-04-23T06:39:37.454Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/jvnet/staxex/stax-ex/2.1.0/stax-ex-2.1.0.pom
2024-04-23T06:39:37.461Z    DEBUG   Start parent: org.eclipse.ee4j:project:1.0.7
2024-04-23T06:39:37.461Z    DEBUG   Exit parent: org.eclipse.ee4j:project:1.0.7
2024-04-23T06:39:37.462Z    DEBUG   Resolving jakarta.activation:jakarta.activation-api:2.1.3...
2024-04-23T06:39:37.665Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/jakarta/activation/jakarta.activation-api/2.1.3/jakarta.activation-api-2.1.3.pom
2024-04-23T06:39:37.844Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/jakarta/activation/jakarta.activation-api/2.1.3/jakarta.activation-api-2.1.3.pom
2024-04-23T06:39:37.854Z    DEBUG   Start parent: org.eclipse.ee4j:project:1.0.9
2024-04-23T06:39:37.854Z    DEBUG   Exit parent: org.eclipse.ee4j:project:1.0.9
2024-04-23T06:39:37.855Z    DEBUG   Resolving org.eclipse.angus:angus-activation:2.0.2...
2024-04-23T06:39:38.015Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/eclipse/angus/angus-activation/2.0.2/angus-activation-2.0.2.pom
2024-04-23T06:39:38.196Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/eclipse/angus/angus-activation/2.0.2/angus-activation-2.0.2.pom
2024-04-23T06:39:38.203Z    DEBUG   Start parent: org.eclipse.angus:angus-activation-project:2.0.2
2024-04-23T06:39:38.433Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/eclipse/angus/angus-activation-project/2.0.2/angus-activation-project-2.0.2.pom
2024-04-23T06:39:38.613Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/eclipse/angus/angus-activation-project/2.0.2/angus-activation-project-2.0.2.pom
2024-04-23T06:39:38.624Z    DEBUG   Start parent: org.eclipse.ee4j:project:1.0.9
2024-04-23T06:39:38.624Z    DEBUG   Exit parent: org.eclipse.ee4j:project:1.0.9
2024-04-23T06:39:38.624Z    DEBUG   Exit parent: org.eclipse.angus:angus-activation-project:2.0.2
2024-04-23T06:39:38.627Z    DEBUG   Resolving jakarta.xml.bind:jakarta.xml.bind-api:4.0.2...
2024-04-23T06:39:38.760Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/jakarta/xml/bind/jakarta.xml.bind-api/4.0.2/jakarta.xml.bind-api-4.0.2.pom
2024-04-23T06:39:38.942Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/jakarta/xml/bind/jakarta.xml.bind-api/4.0.2/jakarta.xml.bind-api-4.0.2.pom
2024-04-23T06:39:38.950Z    DEBUG   Start parent: jakarta.xml.bind:jakarta.xml.bind-api-parent:4.0.2
2024-04-23T06:39:39.081Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/jakarta/xml/bind/jakarta.xml.bind-api-parent/4.0.2/jakarta.xml.bind-api-parent-4.0.2.pom
2024-04-23T06:39:39.261Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/jakarta/xml/bind/jakarta.xml.bind-api-parent/4.0.2/jakarta.xml.bind-api-parent-4.0.2.pom
2024-04-23T06:39:39.269Z    DEBUG   Start parent: org.eclipse.ee4j:project:1.0.9
2024-04-23T06:39:39.269Z    DEBUG   Exit parent: org.eclipse.ee4j:project:1.0.9
2024-04-23T06:39:39.269Z    DEBUG   Exit parent: jakarta.xml.bind:jakarta.xml.bind-api-parent:4.0.2
2024-04-23T06:39:39.270Z    DEBUG   Resolving org.springframework.ws:spring-xml:4.0.10...
2024-04-23T06:39:39.401Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/springframework/ws/spring-xml/4.0.10/spring-xml-4.0.10.pom
2024-04-23T06:39:39.581Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/springframework/ws/spring-xml/4.0.10/spring-xml-4.0.10.pom
2024-04-23T06:39:39.587Z    DEBUG   Start parent: org.springframework.ws:spring-ws:4.0.10
2024-04-23T06:39:39.587Z    DEBUG   Exit parent: org.springframework.ws:spring-ws:4.0.10
2024-04-23T06:39:39.596Z    DEBUG   Resolving org.glassfish.jaxb:jaxb-runtime:4.0.5...
2024-04-23T06:39:39.731Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/glassfish/jaxb/jaxb-runtime/4.0.5/jaxb-runtime-4.0.5.pom
2024-04-23T06:39:39.911Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/glassfish/jaxb/jaxb-runtime/4.0.5/jaxb-runtime-4.0.5.pom
2024-04-23T06:39:39.919Z    DEBUG   Start parent: com.sun.xml.bind.mvn:jaxb-runtime-parent:4.0.5
2024-04-23T06:39:40.075Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/com/sun/xml/bind/mvn/jaxb-runtime-parent/4.0.5/jaxb-runtime-parent-4.0.5.pom
2024-04-23T06:39:40.256Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/com/sun/xml/bind/mvn/jaxb-runtime-parent/4.0.5/jaxb-runtime-parent-4.0.5.pom
2024-04-23T06:39:40.262Z    DEBUG   Start parent: com.sun.xml.bind.mvn:jaxb-parent:4.0.5
2024-04-23T06:39:40.393Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/com/sun/xml/bind/mvn/jaxb-parent/4.0.5/jaxb-parent-4.0.5.pom
2024-04-23T06:39:40.574Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/com/sun/xml/bind/mvn/jaxb-parent/4.0.5/jaxb-parent-4.0.5.pom
2024-04-23T06:39:40.590Z    DEBUG   Start parent: com.sun.xml.bind:jaxb-bom-ext:4.0.5
2024-04-23T06:39:40.744Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/com/sun/xml/bind/jaxb-bom-ext/4.0.5/jaxb-bom-ext-4.0.5.pom
2024-04-23T06:39:40.923Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/com/sun/xml/bind/jaxb-bom-ext/4.0.5/jaxb-bom-ext-4.0.5.pom
2024-04-23T06:39:40.929Z    DEBUG   Start parent: org.glassfish.jaxb:jaxb-bom:4.0.5
2024-04-23T06:39:40.929Z    DEBUG   Exit parent: org.glassfish.jaxb:jaxb-bom:4.0.5
2024-04-23T06:39:40.929Z    DEBUG   Exit parent: com.sun.xml.bind:jaxb-bom-ext:4.0.5
2024-04-23T06:39:40.930Z    DEBUG   Exit parent: com.sun.xml.bind.mvn:jaxb-parent:4.0.5
2024-04-23T06:39:40.930Z    DEBUG   Exit parent: com.sun.xml.bind.mvn:jaxb-runtime-parent:4.0.5
2024-04-23T06:39:40.935Z    DEBUG   Resolving com.fasterxml.jackson.datatype:jackson-datatype-jdk8:2.15.4...
2024-04-23T06:39:41.066Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.15.4/jackson-datatype-jdk8-2.15.4.pom
2024-04-23T06:39:41.247Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.15.4/jackson-datatype-jdk8-2.15.4.pom
2024-04-23T06:39:41.252Z    DEBUG   Start parent: com.fasterxml.jackson.module:jackson-modules-java8:2.15.4
2024-04-23T06:39:41.400Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/com/fasterxml/jackson/module/jackson-modules-java8/2.15.4/jackson-modules-java8-2.15.4.pom
2024-04-23T06:39:41.581Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/com/fasterxml/jackson/module/jackson-modules-java8/2.15.4/jackson-modules-java8-2.15.4.pom
2024-04-23T06:39:41.588Z    DEBUG   Adding repository sonatype-nexus-snapshots: https://oss.sonatype.org/content/repositories/snapshots
2024-04-23T06:39:41.588Z    DEBUG   Start parent: com.fasterxml.jackson:jackson-base:2.15.4
2024-04-23T06:39:41.588Z    DEBUG   Exit parent: com.fasterxml.jackson:jackson-base:2.15.4
2024-04-23T06:39:41.591Z    DEBUG   Exit parent: com.fasterxml.jackson.module:jackson-modules-java8:2.15.4
2024-04-23T06:39:41.592Z    DEBUG   Resolving com.fasterxml.jackson.datatype:jackson-datatype-jsr310:2.15.4...
2024-04-23T06:39:41.723Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.15.4/jackson-datatype-jsr310-2.15.4.pom
2024-04-23T06:39:41.904Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.15.4/jackson-datatype-jsr310-2.15.4.pom
2024-04-23T06:39:41.910Z    DEBUG   Start parent: com.fasterxml.jackson.module:jackson-modules-java8:2.15.4
2024-04-23T06:39:41.910Z    DEBUG   Exit parent: com.fasterxml.jackson.module:jackson-modules-java8:2.15.4
2024-04-23T06:39:41.911Z    DEBUG   Resolving com.fasterxml.jackson.module:jackson-module-parameter-names:2.15.4...
2024-04-23T06:39:42.046Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/com/fasterxml/jackson/module/jackson-module-parameter-names/2.15.4/jackson-module-parameter-names-2.15.4.pom
2024-04-23T06:39:42.226Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/com/fasterxml/jackson/module/jackson-module-parameter-names/2.15.4/jackson-module-parameter-names-2.15.4.pom
2024-04-23T06:39:42.231Z    DEBUG   Start parent: com.fasterxml.jackson.module:jackson-modules-java8:2.15.4
2024-04-23T06:39:42.231Z    DEBUG   Exit parent: com.fasterxml.jackson.module:jackson-modules-java8:2.15.4
2024-04-23T06:39:42.233Z    DEBUG   Resolving io.projectreactor.netty:reactor-netty-http:1.1.17...
2024-04-23T06:39:42.385Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/io/projectreactor/netty/reactor-netty-http/1.1.17/reactor-netty-http-1.1.17.pom
2024-04-23T06:39:42.565Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/io/projectreactor/netty/reactor-netty-http/1.1.17/reactor-netty-http-1.1.17.pom
2024-04-23T06:39:42.583Z    DEBUG   Resolving io.projectreactor:reactor-core:3.6.4...
2024-04-23T06:39:42.966Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/io/projectreactor/reactor-core/3.6.4/reactor-core-3.6.4.pom
2024-04-23T06:39:43.147Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/io/projectreactor/reactor-core/3.6.4/reactor-core-3.6.4.pom
2024-04-23T06:39:43.153Z    DEBUG   Resolving org.springframework.boot:spring-boot-actuator:3.2.4...
2024-04-23T06:39:43.289Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/springframework/boot/spring-boot-actuator/3.2.4/spring-boot-actuator-3.2.4.pom
2024-04-23T06:39:43.469Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/springframework/boot/spring-boot-actuator/3.2.4/spring-boot-actuator-3.2.4.pom
2024-04-23T06:39:43.474Z    DEBUG   Resolving io.micrometer:micrometer-commons:1.12.4...
2024-04-23T06:39:43.608Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/io/micrometer/micrometer-commons/1.12.4/micrometer-commons-1.12.4.pom
2024-04-23T06:39:43.785Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/io/micrometer/micrometer-commons/1.12.4/micrometer-commons-1.12.4.pom
2024-04-23T06:39:43.794Z    DEBUG   Resolving io.micrometer:micrometer-core:1.12.4...
2024-04-23T06:39:43.926Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/io/micrometer/micrometer-core/1.12.4/micrometer-core-1.12.4.pom
2024-04-23T06:39:44.108Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/io/micrometer/micrometer-core/1.12.4/micrometer-core-1.12.4.pom
2024-04-23T06:39:44.132Z    DEBUG   Resolving org.apache.tomcat.embed:tomcat-embed-core:10.1.19...
2024-04-23T06:39:44.271Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/apache/tomcat/embed/tomcat-embed-core/10.1.19/tomcat-embed-core-10.1.19.pom
2024-04-23T06:39:44.453Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/apache/tomcat/embed/tomcat-embed-core/10.1.19/tomcat-embed-core-10.1.19.pom
2024-04-23T06:39:44.459Z    DEBUG   Resolving org.apache.tomcat.embed:tomcat-embed-websocket:10.1.19...
2024-04-23T06:39:44.592Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.19/tomcat-embed-websocket-10.1.19.pom
2024-04-23T06:39:44.771Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/apache/tomcat/embed/tomcat-embed-websocket/10.1.19/tomcat-embed-websocket-10.1.19.pom
2024-04-23T06:39:44.777Z    DEBUG   Resolving jakarta.validation:jakarta.validation-api:3.0.2...
2024-04-23T06:39:44.907Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/jakarta/validation/jakarta.validation-api/3.0.2/jakarta.validation-api-3.0.2.pom
2024-04-23T06:39:45.088Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/jakarta/validation/jakarta.validation-api/3.0.2/jakarta.validation-api-3.0.2.pom
2024-04-23T06:39:45.097Z    DEBUG   Start parent: org.eclipse.ee4j:project:1.0.6
2024-04-23T06:39:45.231Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/eclipse/ee4j/project/1.0.6/project-1.0.6.pom
2024-04-23T06:39:45.412Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/eclipse/ee4j/project/1.0.6/project-1.0.6.pom
2024-04-23T06:39:45.421Z    DEBUG   Exit parent: org.eclipse.ee4j:project:1.0.6
2024-04-23T06:39:45.423Z    DEBUG   Resolving org.jboss.logging:jboss-logging:3.5.3.Final...
2024-04-23T06:39:45.624Z    DEBUG   Adding repository jboss-public-repository-group: https://repository.jboss.org/nexus/content/groups/public/
2024-04-23T06:39:45.624Z    DEBUG   Start parent: org.jboss.logging:logging-parent:1.0.1.Final
2024-04-23T06:39:45.759Z    DEBUG   Start parent: org.jboss:jboss-parent:39
2024-04-23T06:39:45.759Z    DEBUG   Exit parent: org.jboss:jboss-parent:39
2024-04-23T06:39:45.759Z    DEBUG   Exit parent: org.jboss.logging:logging-parent:1.0.1.Final
2024-04-23T06:39:45.769Z    DEBUG   Resolving com.fasterxml:classmate:1.6.0...
2024-04-23T06:39:45.906Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/com/fasterxml/classmate/1.6.0/classmate-1.6.0.pom
2024-04-23T06:39:46.087Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/com/fasterxml/classmate/1.6.0/classmate-1.6.0.pom
2024-04-23T06:39:46.094Z    DEBUG   Start parent: com.fasterxml:oss-parent:55
2024-04-23T06:39:46.252Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/com/fasterxml/oss-parent/55/oss-parent-55.pom
2024-04-23T06:39:46.434Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/com/fasterxml/oss-parent/55/oss-parent-55.pom
2024-04-23T06:39:46.446Z    DEBUG   Adding repository sonatype-nexus-snapshots: https://oss.sonatype.org/content/repositories/snapshots
2024-04-23T06:39:46.446Z    DEBUG   Exit parent: com.fasterxml:oss-parent:55
2024-04-23T06:39:46.447Z    DEBUG   Resolving org.apache.logging.log4j:log4j-api:2.21.1...
2024-04-23T06:39:46.649Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/apache/logging/log4j/log4j-api/2.21.1/log4j-api-2.21.1.pom
2024-04-23T06:39:46.829Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/apache/logging/log4j/log4j-api/2.21.1/log4j-api-2.21.1.pom
2024-04-23T06:39:46.836Z    DEBUG   Start parent: org.apache.logging.log4j:log4j:2.21.1
2024-04-23T06:39:46.836Z    DEBUG   Exit parent: org.apache.logging.log4j:log4j:2.21.1
2024-04-23T06:39:46.863Z    DEBUG   Resolving org.springframework.security:spring-security-crypto:6.2.3...
2024-04-23T06:39:46.994Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/springframework/security/spring-security-crypto/6.2.3/spring-security-crypto-6.2.3.pom
2024-04-23T06:39:47.174Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/springframework/security/spring-security-crypto/6.2.3/spring-security-crypto-6.2.3.pom
2024-04-23T06:39:47.180Z    DEBUG   Resolving org.springframework.security:spring-security-oauth2-core:6.2.3...
2024-04-23T06:39:47.316Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/springframework/security/spring-security-oauth2-core/6.2.3/spring-security-oauth2-core-6.2.3.pom
2024-04-23T06:39:47.498Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/springframework/security/spring-security-oauth2-core/6.2.3/spring-security-oauth2-core-6.2.3.pom
2024-04-23T06:39:47.513Z    DEBUG   Resolving com.nimbusds:oauth2-oidc-sdk:9.43.3...
2024-04-23T06:39:47.644Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/com/nimbusds/oauth2-oidc-sdk/9.43.3/oauth2-oidc-sdk-9.43.3.pom
2024-04-23T06:39:47.825Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/com/nimbusds/oauth2-oidc-sdk/9.43.3/oauth2-oidc-sdk-9.43.3.pom
2024-04-23T06:39:47.868Z    DEBUG   Resolving net.java.dev.jna:jna:5.13.0...
2024-04-23T06:39:48.001Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/net/java/dev/jna/jna/5.13.0/jna-5.13.0.pom
2024-04-23T06:39:48.183Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/net/java/dev/jna/jna/5.13.0/jna-5.13.0.pom
2024-04-23T06:39:48.188Z    DEBUG   Resolving net.java.dev.jna:jna-platform:5.13.0...
2024-04-23T06:39:48.329Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/net/java/dev/jna/jna-platform/5.13.0/jna-platform-5.13.0.pom
2024-04-23T06:39:48.509Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/net/java/dev/jna/jna-platform/5.13.0/jna-platform-5.13.0.pom
2024-04-23T06:39:48.517Z    DEBUG   Resolving org.slf4j:jcl-over-slf4j:2.0.12...
2024-04-23T06:39:48.653Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/slf4j/jcl-over-slf4j/2.0.12/jcl-over-slf4j-2.0.12.pom
2024-04-23T06:39:48.833Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/slf4j/jcl-over-slf4j/2.0.12/jcl-over-slf4j-2.0.12.pom
2024-04-23T06:39:48.839Z    DEBUG   Start parent: org.slf4j:slf4j-parent:2.0.12
2024-04-23T06:39:48.839Z    DEBUG   Exit parent: org.slf4j:slf4j-parent:2.0.12
2024-04-23T06:39:48.841Z    DEBUG   Resolving com.github.ben-manes.caffeine:caffeine:3.1.8...
2024-04-23T06:39:48.978Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/com/github/ben-manes/caffeine/caffeine/3.1.8/caffeine-3.1.8.pom
2024-04-23T06:39:49.159Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/com/github/ben-manes/caffeine/caffeine/3.1.8/caffeine-3.1.8.pom
2024-04-23T06:39:49.169Z    DEBUG   Resolving org.checkerframework:checker-qual:3.32.0...
2024-04-23T06:39:49.305Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/checkerframework/checker-qual/3.32.0/checker-qual-3.32.0.pom
2024-04-23T06:39:49.483Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/checkerframework/checker-qual/3.32.0/checker-qual-3.32.0.pom
2024-04-23T06:39:49.489Z    DEBUG   Resolving org.aspectj:aspectjweaver:1.9.21...
2024-04-23T06:39:49.640Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/aspectj/aspectjweaver/1.9.21/aspectjweaver-1.9.21.pom
2024-04-23T06:39:49.820Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/aspectj/aspectjweaver/1.9.21/aspectjweaver-1.9.21.pom
2024-04-23T06:39:49.826Z    DEBUG   Resolving com.zaxxer:HikariCP:5.0.1...
2024-04-23T06:39:49.985Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.pom
2024-04-23T06:39:50.163Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/com/zaxxer/HikariCP/5.0.1/HikariCP-5.0.1.pom
2024-04-23T06:39:50.172Z    DEBUG   Start parent: org.sonatype.oss:oss-parent:9
2024-04-23T06:39:50.337Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/sonatype/oss/oss-parent/9/oss-parent-9.pom
2024-04-23T06:39:50.518Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/sonatype/oss/oss-parent/9/oss-parent-9.pom
2024-04-23T06:39:50.524Z    DEBUG   Adding repository sonatype-nexus-snapshots: https://oss.sonatype.org/content/repositories/snapshots
2024-04-23T06:39:50.524Z    DEBUG   Exit parent: org.sonatype.oss:oss-parent:9
2024-04-23T06:39:50.538Z    DEBUG   Resolving org.springframework:spring-jdbc:6.1.5...
2024-04-23T06:39:50.676Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/springframework/spring-jdbc/6.1.5/spring-jdbc-6.1.5.pom
2024-04-23T06:39:50.854Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/springframework/spring-jdbc/6.1.5/spring-jdbc-6.1.5.pom
2024-04-23T06:39:50.866Z    DEBUG   Resolving jakarta.persistence:jakarta.persistence-api:3.1.0...
2024-04-23T06:39:51.013Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/jakarta/persistence/jakarta.persistence-api/3.1.0/jakarta.persistence-api-3.1.0.pom
2024-04-23T06:39:51.193Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/jakarta/persistence/jakarta.persistence-api/3.1.0/jakarta.persistence-api-3.1.0.pom
2024-04-23T06:39:51.201Z    DEBUG   Start parent: org.eclipse.ee4j:project:1.0.7
2024-04-23T06:39:51.201Z    DEBUG   Exit parent: org.eclipse.ee4j:project:1.0.7
2024-04-23T06:39:51.201Z    DEBUG   Resolving jakarta.transaction:jakarta.transaction-api:2.0.1...
2024-04-23T06:39:51.348Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/jakarta/transaction/jakarta.transaction-api/2.0.1/jakarta.transaction-api-2.0.1.pom
2024-04-23T06:39:51.528Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/jakarta/transaction/jakarta.transaction-api/2.0.1/jakarta.transaction-api-2.0.1.pom
2024-04-23T06:39:51.537Z    DEBUG   Start parent: org.eclipse.ee4j:project:1.0.6
2024-04-23T06:39:51.537Z    DEBUG   Exit parent: org.eclipse.ee4j:project:1.0.6
2024-04-23T06:39:51.543Z    DEBUG   Resolving org.hibernate.common:hibernate-commons-annotations:6.0.6.Final...
2024-04-23T06:39:51.902Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/hibernate/common/hibernate-commons-annotations/6.0.6.Final/hibernate-commons-annotations-6.0.6.Final.pom
2024-04-23T06:39:52.083Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/hibernate/common/hibernate-commons-annotations/6.0.6.Final/hibernate-commons-annotations-6.0.6.Final.pom
2024-04-23T06:39:52.088Z    DEBUG   Resolving io.smallrye:jandex:3.1.2...
2024-04-23T06:39:52.221Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/io/smallrye/jandex/3.1.2/jandex-3.1.2.pom
2024-04-23T06:39:52.402Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/io/smallrye/jandex/3.1.2/jandex-3.1.2.pom
2024-04-23T06:39:52.407Z    DEBUG   Start parent: io.smallrye:jandex-parent:3.1.2
2024-04-23T06:39:52.565Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/io/smallrye/jandex-parent/3.1.2/jandex-parent-3.1.2.pom
2024-04-23T06:39:52.745Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/io/smallrye/jandex-parent/3.1.2/jandex-parent-3.1.2.pom
2024-04-23T06:39:52.752Z    DEBUG   Start parent: io.smallrye:smallrye-build-parent:39
2024-04-23T06:39:52.893Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/io/smallrye/smallrye-build-parent/39/smallrye-build-parent-39.pom
2024-04-23T06:39:53.073Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/io/smallrye/smallrye-build-parent/39/smallrye-build-parent-39.pom
2024-04-23T06:39:53.086Z    DEBUG   Exit parent: io.smallrye:smallrye-build-parent:39
2024-04-23T06:39:53.087Z    DEBUG   Exit parent: io.smallrye:jandex-parent:3.1.2
2024-04-23T06:39:53.093Z    DEBUG   Resolving net.bytebuddy:byte-buddy:1.14.12...
2024-04-23T06:39:53.226Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/net/bytebuddy/byte-buddy/1.14.12/byte-buddy-1.14.12.pom
2024-04-23T06:39:53.405Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/net/bytebuddy/byte-buddy/1.14.12/byte-buddy-1.14.12.pom
2024-04-23T06:39:53.412Z    DEBUG   Start parent: net.bytebuddy:byte-buddy-parent:1.14.12
2024-04-23T06:39:53.546Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/net/bytebuddy/byte-buddy-parent/1.14.12/byte-buddy-parent-1.14.12.pom
2024-04-23T06:39:53.726Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/net/bytebuddy/byte-buddy-parent/1.14.12/byte-buddy-parent-1.14.12.pom
2024-04-23T06:39:53.739Z    DEBUG   Exit parent: net.bytebuddy:byte-buddy-parent:1.14.12
2024-04-23T06:39:53.742Z    DEBUG   Resolving jakarta.inject:jakarta.inject-api:2.0.1...
2024-04-23T06:39:53.880Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/jakarta/inject/jakarta.inject-api/2.0.1/jakarta.inject-api-2.0.1.pom
2024-04-23T06:39:54.060Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/jakarta/inject/jakarta.inject-api/2.0.1/jakarta.inject-api-2.0.1.pom
2024-04-23T06:39:54.066Z    DEBUG   Start parent: org.eclipse.ee4j:project:1.0.6
2024-04-23T06:39:54.066Z    DEBUG   Exit parent: org.eclipse.ee4j:project:1.0.6
2024-04-23T06:39:54.066Z    DEBUG   Resolving org.antlr:antlr4-runtime:4.13.0...
2024-04-23T06:39:54.220Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/antlr/antlr4-runtime/4.13.0/antlr4-runtime-4.13.0.pom
2024-04-23T06:39:54.401Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/antlr/antlr4-runtime/4.13.0/antlr4-runtime-4.13.0.pom
2024-04-23T06:39:54.407Z    DEBUG   Start parent: org.antlr:antlr4-master:4.13.0
2024-04-23T06:39:54.623Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/antlr/antlr4-master/4.13.0/antlr4-master-4.13.0.pom
2024-04-23T06:39:54.802Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/antlr/antlr4-master/4.13.0/antlr4-master-4.13.0.pom
2024-04-23T06:39:54.808Z    DEBUG   Start parent: org.sonatype.oss:oss-parent:9
2024-04-23T06:39:54.808Z    DEBUG   Exit parent: org.sonatype.oss:oss-parent:9
2024-04-23T06:39:54.808Z    DEBUG   Exit parent: org.antlr:antlr4-master:4.13.0
2024-04-23T06:39:54.808Z    DEBUG   Resolving org.springframework.data:spring-data-commons:3.2.4...
2024-04-23T06:39:54.976Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/springframework/data/spring-data-commons/3.2.4/spring-data-commons-3.2.4.pom
2024-04-23T06:39:55.159Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/springframework/data/spring-data-commons/3.2.4/spring-data-commons-3.2.4.pom
2024-04-23T06:39:55.169Z    DEBUG   Start parent: org.springframework.data.build:spring-data-parent:3.2.4
2024-04-23T06:39:55.169Z    DEBUG   Exit parent: org.springframework.data.build:spring-data-parent:3.2.4
2024-04-23T06:39:55.234Z    DEBUG   Resolving org.springframework:spring-orm:6.1.5...
2024-04-23T06:39:55.375Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/springframework/spring-orm/6.1.5/spring-orm-6.1.5.pom
2024-04-23T06:39:55.556Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/springframework/spring-orm/6.1.5/spring-orm-6.1.5.pom
2024-04-23T06:39:55.570Z    DEBUG   Resolving org.springframework:spring-tx:6.1.5...
2024-04-23T06:39:55.734Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/springframework/spring-tx/6.1.5/spring-tx-6.1.5.pom
2024-04-23T06:39:55.915Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/springframework/spring-tx/6.1.5/spring-tx-6.1.5.pom
2024-04-23T06:39:55.925Z    DEBUG   Resolving ognl:ognl:3.3.4...
2024-04-23T06:39:56.071Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/ognl/ognl/3.3.4/ognl-3.3.4.pom
2024-04-23T06:39:56.252Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/ognl/ognl/3.3.4/ognl-3.3.4.pom
2024-04-23T06:39:56.260Z    DEBUG   Start parent: org.sonatype.oss:oss-parent:9
2024-04-23T06:39:56.260Z    DEBUG   Exit parent: org.sonatype.oss:oss-parent:9
2024-04-23T06:39:56.264Z    DEBUG   Resolving org.attoparser:attoparser:2.0.7.RELEASE...
2024-04-23T06:39:56.407Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/attoparser/attoparser/2.0.7.RELEASE/attoparser-2.0.7.RELEASE.pom
2024-04-23T06:39:56.592Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/attoparser/attoparser/2.0.7.RELEASE/attoparser-2.0.7.RELEASE.pom
2024-04-23T06:39:56.603Z    DEBUG   Resolving org.unbescape:unbescape:1.1.6.RELEASE...
2024-04-23T06:39:56.894Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/unbescape/unbescape/1.1.6.RELEASE/unbescape-1.1.6.RELEASE.pom
2024-04-23T06:39:57.075Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/unbescape/unbescape/1.1.6.RELEASE/unbescape-1.1.6.RELEASE.pom
2024-04-23T06:39:57.083Z    DEBUG   Adding repository sonatype-nexus-snapshots: https://oss.sonatype.org/content/repositories/snapshots
2024-04-23T06:39:57.083Z    DEBUG   Resolving dev.fitko.fitconnect:jwkvalidator:2.0.0...
2024-04-23T06:39:57.266Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/dev/fitko/fitconnect/jwkvalidator/2.0.0/jwkvalidator-2.0.0.pom
2024-04-23T06:39:57.450Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/dev/fitko/fitconnect/jwkvalidator/2.0.0/jwkvalidator-2.0.0.pom
2024-04-23T06:39:57.462Z    DEBUG   Resolving com.networknt:json-schema-validator:1.3.3...
2024-04-23T06:39:57.655Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/com/networknt/json-schema-validator/1.3.3/json-schema-validator-1.3.3.pom
2024-04-23T06:39:57.836Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/com/networknt/json-schema-validator/1.3.3/json-schema-validator-1.3.3.pom
2024-04-23T06:39:57.855Z    DEBUG   Resolving com.squareup.okhttp3:okhttp:4.12.0...
2024-04-23T06:39:57.988Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/com/squareup/okhttp3/okhttp/4.12.0/okhttp-4.12.0.pom
2024-04-23T06:39:58.168Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/com/squareup/okhttp3/okhttp/4.12.0/okhttp-4.12.0.pom
2024-04-23T06:39:58.177Z    DEBUG   Resolving org.jboss.resteasy:resteasy-client-api:6.2.4.Final...
2024-04-23T06:39:58.316Z    DEBUG   Start parent: org.jboss.resteasy:resteasy-jaxrs-all:6.2.4.Final
2024-04-23T06:39:58.316Z    DEBUG   Exit parent: org.jboss.resteasy:resteasy-jaxrs-all:6.2.4.Final
2024-04-23T06:39:58.318Z    DEBUG   Resolving org.jboss.resteasy:resteasy-core-spi:6.2.4.Final...
2024-04-23T06:39:58.461Z    DEBUG   Start parent: org.jboss.resteasy:resteasy-jaxrs-all:6.2.4.Final
2024-04-23T06:39:58.461Z    DEBUG   Exit parent: org.jboss.resteasy:resteasy-jaxrs-all:6.2.4.Final
2024-04-23T06:39:58.467Z    DEBUG   Resolving org.jboss.resteasy:resteasy-core:6.2.4.Final...
2024-04-23T06:39:58.627Z    DEBUG   Start parent: org.jboss.resteasy:resteasy-jaxrs-all:6.2.4.Final
2024-04-23T06:39:58.627Z    DEBUG   Exit parent: org.jboss.resteasy:resteasy-jaxrs-all:6.2.4.Final
2024-04-23T06:39:58.646Z    DEBUG   Resolving org.apache.httpcomponents:httpclient:...
2024-04-23T06:39:58.646Z    DEBUG   Version missing for org.apache.httpcomponents:httpclient
2024-04-23T06:39:58.646Z    DEBUG   Resolving commons-codec:commons-codec:1.16.1...
2024-04-23T06:39:58.830Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.pom
2024-04-23T06:39:59.011Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/commons-codec/commons-codec/1.16.1/commons-codec-1.16.1.pom
2024-04-23T06:39:59.021Z    DEBUG   Start parent: org.apache.commons:commons-parent:66
2024-04-23T06:39:59.157Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/apache/commons/commons-parent/66/commons-parent-66.pom
2024-04-23T06:39:59.343Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/apache/commons/commons-parent/66/commons-parent-66.pom
2024-04-23T06:39:59.354Z    DEBUG   Start parent: org.apache:apache:31
2024-04-23T06:39:59.493Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/apache/apache/31/apache-31.pom
2024-04-23T06:39:59.673Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/apache/apache/31/apache-31.pom
2024-04-23T06:39:59.685Z    DEBUG   Exit parent: org.apache:apache:31
2024-04-23T06:39:59.686Z    DEBUG   Exit parent: org.apache.commons:commons-parent:66
2024-04-23T06:39:59.687Z    DEBUG   Resolving org.junit:junit-bom:5.10.1...
2024-04-23T06:39:59.865Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/junit/junit-bom/5.10.1/junit-bom-5.10.1.pom
2024-04-23T06:40:00.087Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/junit/junit-bom/5.10.1/junit-bom-5.10.1.pom
2024-04-23T06:40:00.094Z    DEBUG   Resolving jakarta.ws.rs:jakarta.ws.rs-api:3.1.0...
2024-04-23T06:40:00.248Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/jakarta/ws/rs/jakarta.ws.rs-api/3.1.0/jakarta.ws.rs-api-3.1.0.pom
2024-04-23T06:40:00.439Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/jakarta/ws/rs/jakarta.ws.rs-api/3.1.0/jakarta.ws.rs-api-3.1.0.pom
2024-04-23T06:40:00.448Z    DEBUG   Start parent: jakarta.ws.rs:all:3.1.0
2024-04-23T06:40:00.591Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/jakarta/ws/rs/all/3.1.0/all-3.1.0.pom
2024-04-23T06:40:00.770Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/jakarta/ws/rs/all/3.1.0/all-3.1.0.pom
2024-04-23T06:40:00.776Z    DEBUG   Start parent: org.eclipse.ee4j:project:1.0.7
2024-04-23T06:40:00.776Z    DEBUG   Exit parent: org.eclipse.ee4j:project:1.0.7
2024-04-23T06:40:00.776Z    DEBUG   Exit parent: jakarta.ws.rs:all:3.1.0
2024-04-23T06:40:00.780Z    DEBUG   Resolving org.reactivestreams:reactive-streams:1.0.4...
2024-04-23T06:40:01.022Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.pom
2024-04-23T06:40:01.202Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.pom
2024-04-23T06:40:01.208Z    DEBUG   Resolving jakarta.mail:jakarta.mail-api:2.1.3...
2024-04-23T06:40:01.392Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/jakarta/mail/jakarta.mail-api/2.1.3/jakarta.mail-api-2.1.3.pom
2024-04-23T06:40:01.575Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/jakarta/mail/jakarta.mail-api/2.1.3/jakarta.mail-api-2.1.3.pom
2024-04-23T06:40:01.583Z    DEBUG   Start parent: org.eclipse.ee4j:project:1.0.9
2024-04-23T06:40:01.583Z    DEBUG   Exit parent: org.eclipse.ee4j:project:1.0.9
2024-04-23T06:40:01.584Z    DEBUG   Resolving org.eclipse.angus:angus-mail:2.0.3...
2024-04-23T06:40:01.740Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/eclipse/angus/angus-mail/2.0.3/angus-mail-2.0.3.pom
2024-04-23T06:40:01.921Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/eclipse/angus/angus-mail/2.0.3/angus-mail-2.0.3.pom
2024-04-23T06:40:01.930Z    DEBUG   Start parent: org.eclipse.angus:all:2.0.3
2024-04-23T06:40:02.140Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/eclipse/angus/all/2.0.3/all-2.0.3.pom
2024-04-23T06:40:02.324Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/eclipse/angus/all/2.0.3/all-2.0.3.pom
2024-04-23T06:40:02.339Z    DEBUG   Start parent: org.eclipse.ee4j:project:1.0.9
2024-04-23T06:40:02.339Z    DEBUG   Exit parent: org.eclipse.ee4j:project:1.0.9
2024-04-23T06:40:02.339Z    DEBUG   Exit parent: org.eclipse.angus:all:2.0.3
2024-04-23T06:40:02.344Z    DEBUG   Resolving org.apache.james:apache-mime4j-dom:...
2024-04-23T06:40:02.344Z    DEBUG   Version missing for org.apache.james:apache-mime4j-dom
2024-04-23T06:40:02.344Z    DEBUG   Resolving org.apache.james:apache-mime4j-storage:...
2024-04-23T06:40:02.344Z    DEBUG   Version missing for org.apache.james:apache-mime4j-storage
2024-04-23T06:40:02.344Z    DEBUG   Resolving com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-base:2.15.4...
2024-04-23T06:40:02.473Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/com/fasterxml/jackson/jakarta/rs/jackson-jakarta-rs-base/2.15.4/jackson-jakarta-rs-base-2.15.4.pom
2024-04-23T06:40:02.652Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/com/fasterxml/jackson/jakarta/rs/jackson-jakarta-rs-base/2.15.4/jackson-jakarta-rs-base-2.15.4.pom
2024-04-23T06:40:02.658Z    DEBUG   Start parent: com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-providers:2.15.4
2024-04-23T06:40:02.802Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/com/fasterxml/jackson/jakarta/rs/jackson-jakarta-rs-providers/2.15.4/jackson-jakarta-rs-providers-2.15.4.pom
2024-04-23T06:40:02.983Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/com/fasterxml/jackson/jakarta/rs/jackson-jakarta-rs-providers/2.15.4/jackson-jakarta-rs-providers-2.15.4.pom
2024-04-23T06:40:02.989Z    DEBUG   Adding repository sonatype-nexus-snapshots: https://oss.sonatype.org/content/repositories/snapshots
2024-04-23T06:40:02.989Z    DEBUG   Start parent: com.fasterxml.jackson:jackson-base:2.15.4
2024-04-23T06:40:02.989Z    DEBUG   Exit parent: com.fasterxml.jackson:jackson-base:2.15.4
2024-04-23T06:40:02.991Z    DEBUG   Exit parent: com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-providers:2.15.4
2024-04-23T06:40:02.993Z    DEBUG   Resolving com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-json-provider:2.15.4...
2024-04-23T06:40:03.120Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/com/fasterxml/jackson/jakarta/rs/jackson-jakarta-rs-json-provider/2.15.4/jackson-jakarta-rs-json-provider-2.15.4.pom
2024-04-23T06:40:03.301Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/com/fasterxml/jackson/jakarta/rs/jackson-jakarta-rs-json-provider/2.15.4/jackson-jakarta-rs-json-provider-2.15.4.pom
2024-04-23T06:40:03.307Z    DEBUG   Start parent: com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-providers:2.15.4
2024-04-23T06:40:03.307Z    DEBUG   Exit parent: com.fasterxml.jackson.jakarta.rs:jackson-jakarta-rs-providers:2.15.4
2024-04-23T06:40:03.312Z    DEBUG   Resolving com.fasterxml.jackson.module:jackson-module-jakarta-xmlbind-annotations:2.15.4...
2024-04-23T06:40:03.495Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/com/fasterxml/jackson/module/jackson-module-jakarta-xmlbind-annotations/2.15.4/jackson-module-jakarta-xmlbind-annotations-2.15.4.pom
2024-04-23T06:40:03.676Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/com/fasterxml/jackson/module/jackson-module-jakarta-xmlbind-annotations/2.15.4/jackson-module-jakarta-xmlbind-annotations-2.15.4.pom
2024-04-23T06:40:03.682Z    DEBUG   Start parent: com.fasterxml.jackson.module:jackson-modules-base:2.15.4
2024-04-23T06:40:03.879Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/com/fasterxml/jackson/module/jackson-modules-base/2.15.4/jackson-modules-base-2.15.4.pom
2024-04-23T06:40:04.062Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/com/fasterxml/jackson/module/jackson-modules-base/2.15.4/jackson-modules-base-2.15.4.pom
2024-04-23T06:40:04.068Z    DEBUG   Adding repository sonatype-nexus-snapshots: https://oss.sonatype.org/content/repositories/snapshots
2024-04-23T06:40:04.068Z    DEBUG   Start parent: com.fasterxml.jackson:jackson-base:2.15.4
2024-04-23T06:40:04.068Z    DEBUG   Exit parent: com.fasterxml.jackson:jackson-base:2.15.4
2024-04-23T06:40:04.069Z    DEBUG   Exit parent: com.fasterxml.jackson.module:jackson-modules-base:2.15.4
2024-04-23T06:40:04.076Z    DEBUG   Resolving jakarta.servlet:jakarta.servlet-api:6.0.0...
2024-04-23T06:40:04.237Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/jakarta/servlet/jakarta.servlet-api/6.0.0/jakarta.servlet-api-6.0.0.pom
2024-04-23T06:40:04.417Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/jakarta/servlet/jakarta.servlet-api/6.0.0/jakarta.servlet-api-6.0.0.pom
2024-04-23T06:40:04.424Z    DEBUG   Start parent: org.eclipse.ee4j:project:1.0.7
2024-04-23T06:40:04.424Z    DEBUG   Exit parent: org.eclipse.ee4j:project:1.0.7
2024-04-23T06:40:04.426Z    DEBUG   Resolving com.github.java-json-tools:json-patch:...
2024-04-23T06:40:04.426Z    DEBUG   Version missing for com.github.java-json-tools:json-patch
2024-04-23T06:40:04.426Z    DEBUG   Resolving org.glassfish.jaxb:codemodel:4.0.5...
2024-04-23T06:40:04.597Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/glassfish/jaxb/codemodel/4.0.5/codemodel-4.0.5.pom
2024-04-23T06:40:04.777Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/glassfish/jaxb/codemodel/4.0.5/codemodel-4.0.5.pom
2024-04-23T06:40:04.784Z    DEBUG   Start parent: com.sun.xml.bind.mvn:jaxb-codemodel-parent:4.0.5
2024-04-23T06:40:04.960Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/com/sun/xml/bind/mvn/jaxb-codemodel-parent/4.0.5/jaxb-codemodel-parent-4.0.5.pom
2024-04-23T06:40:05.140Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/com/sun/xml/bind/mvn/jaxb-codemodel-parent/4.0.5/jaxb-codemodel-parent-4.0.5.pom
2024-04-23T06:40:05.152Z    DEBUG   Start parent: org.eclipse.ee4j:project:1.0.9
2024-04-23T06:40:05.152Z    DEBUG   Exit parent: org.eclipse.ee4j:project:1.0.9
2024-04-23T06:40:05.152Z    DEBUG   Exit parent: com.sun.xml.bind.mvn:jaxb-codemodel-parent:4.0.5
2024-04-23T06:40:05.155Z    DEBUG   Resolving org.glassfish.jaxb:jaxb-core:4.0.5...
2024-04-23T06:40:05.374Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/glassfish/jaxb/jaxb-core/4.0.5/jaxb-core-4.0.5.pom
2024-04-23T06:40:05.555Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/glassfish/jaxb/jaxb-core/4.0.5/jaxb-core-4.0.5.pom
2024-04-23T06:40:05.561Z    DEBUG   Start parent: com.sun.xml.bind.mvn:jaxb-parent:4.0.5
2024-04-23T06:40:05.561Z    DEBUG   Exit parent: com.sun.xml.bind.mvn:jaxb-parent:4.0.5
2024-04-23T06:40:05.564Z    DEBUG   Resolving org.glassfish.jaxb:jaxb-jxc:4.0.5...
2024-04-23T06:40:05.704Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/glassfish/jaxb/jaxb-jxc/4.0.5/jaxb-jxc-4.0.5.pom
2024-04-23T06:40:05.884Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/glassfish/jaxb/jaxb-jxc/4.0.5/jaxb-jxc-4.0.5.pom
2024-04-23T06:40:05.892Z    DEBUG   Start parent: com.sun.xml.bind.mvn:jaxb-parent:4.0.5
2024-04-23T06:40:05.892Z    DEBUG   Exit parent: com.sun.xml.bind.mvn:jaxb-parent:4.0.5
2024-04-23T06:40:05.901Z    DEBUG   Resolving org.glassfish.jaxb:txw2:4.0.5...
2024-04-23T06:40:06.150Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/glassfish/jaxb/txw2/4.0.5/txw2-4.0.5.pom
2024-04-23T06:40:06.331Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/glassfish/jaxb/txw2/4.0.5/txw2-4.0.5.pom
2024-04-23T06:40:06.337Z    DEBUG   Start parent: com.sun.xml.bind.mvn:jaxb-txw-parent:4.0.5
2024-04-23T06:40:06.504Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/com/sun/xml/bind/mvn/jaxb-txw-parent/4.0.5/jaxb-txw-parent-4.0.5.pom
2024-04-23T06:40:06.685Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/com/sun/xml/bind/mvn/jaxb-txw-parent/4.0.5/jaxb-txw-parent-4.0.5.pom
2024-04-23T06:40:06.691Z    DEBUG   Start parent: com.sun.xml.bind.mvn:jaxb-parent:4.0.5
2024-04-23T06:40:06.691Z    DEBUG   Exit parent: com.sun.xml.bind.mvn:jaxb-parent:4.0.5
2024-04-23T06:40:06.692Z    DEBUG   Exit parent: com.sun.xml.bind.mvn:jaxb-txw-parent:4.0.5
2024-04-23T06:40:06.692Z    DEBUG   Resolving org.glassfish.jaxb:jaxb-xjc:4.0.5...
2024-04-23T06:40:06.848Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/glassfish/jaxb/jaxb-xjc/4.0.5/jaxb-xjc-4.0.5.pom
2024-04-23T06:40:07.029Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/glassfish/jaxb/jaxb-xjc/4.0.5/jaxb-xjc-4.0.5.pom
2024-04-23T06:40:07.039Z    DEBUG   Start parent: com.sun.xml.bind.mvn:jaxb-parent:4.0.5
2024-04-23T06:40:07.039Z    DEBUG   Exit parent: com.sun.xml.bind.mvn:jaxb-parent:4.0.5
2024-04-23T06:40:07.051Z    DEBUG   Resolving org.glassfish.jaxb:xsom:4.0.5...
2024-04-23T06:40:07.195Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/glassfish/jaxb/xsom/4.0.5/xsom-4.0.5.pom
2024-04-23T06:40:07.377Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/glassfish/jaxb/xsom/4.0.5/xsom-4.0.5.pom
2024-04-23T06:40:07.390Z    DEBUG   Start parent: org.eclipse.ee4j:project:1.0.9
2024-04-23T06:40:07.390Z    DEBUG   Exit parent: org.eclipse.ee4j:project:1.0.9
2024-04-23T06:40:07.392Z    DEBUG   Resolving com.sun.istack:istack-commons-runtime:4.1.2...
2024-04-23T06:40:07.525Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/com/sun/istack/istack-commons-runtime/4.1.2/istack-commons-runtime-4.1.2.pom
2024-04-23T06:40:07.705Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/com/sun/istack/istack-commons-runtime/4.1.2/istack-commons-runtime-4.1.2.pom
2024-04-23T06:40:07.711Z    DEBUG   Start parent: com.sun.istack:istack-commons:4.1.2
2024-04-23T06:40:07.849Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/com/sun/istack/istack-commons/4.1.2/istack-commons-4.1.2.pom
2024-04-23T06:40:08.032Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/com/sun/istack/istack-commons/4.1.2/istack-commons-4.1.2.pom
2024-04-23T06:40:08.045Z    DEBUG   Start parent: org.eclipse.ee4j:project:1.0.7
2024-04-23T06:40:08.045Z    DEBUG   Exit parent: org.eclipse.ee4j:project:1.0.7
2024-04-23T06:40:08.046Z    DEBUG   Exit parent: com.sun.istack:istack-commons:4.1.2
2024-04-23T06:40:08.047Z    DEBUG   Resolving com.sun.istack:istack-commons-tools:...
2024-04-23T06:40:08.047Z    DEBUG   Version missing for com.sun.istack:istack-commons-tools
2024-04-23T06:40:08.047Z    DEBUG   Resolving com.sun.xml.bind.external:relaxng-datatype:...
2024-04-23T06:40:08.047Z    DEBUG   Version missing for com.sun.xml.bind.external:relaxng-datatype
2024-04-23T06:40:08.047Z    DEBUG   Resolving com.sun.xml.bind.external:rngom:...
2024-04-23T06:40:08.047Z    DEBUG   Version missing for com.sun.xml.bind.external:rngom
2024-04-23T06:40:08.047Z    DEBUG   Resolving io.netty:netty-codec-http:4.1.107.Final...
2024-04-23T06:40:08.198Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/io/netty/netty-codec-http/4.1.107.Final/netty-codec-http-4.1.107.Final.pom
2024-04-23T06:40:08.379Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/io/netty/netty-codec-http/4.1.107.Final/netty-codec-http-4.1.107.Final.pom
2024-04-23T06:40:08.385Z    DEBUG   Start parent: io.netty:netty-parent:4.1.107.Final
2024-04-23T06:40:08.543Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/io/netty/netty-parent/4.1.107.Final/netty-parent-4.1.107.Final.pom
2024-04-23T06:40:08.723Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/io/netty/netty-parent/4.1.107.Final/netty-parent-4.1.107.Final.pom
2024-04-23T06:40:08.752Z    DEBUG   Start parent: org.sonatype.oss:oss-parent:9
2024-04-23T06:40:08.752Z    DEBUG   Exit parent: org.sonatype.oss:oss-parent:9
2024-04-23T06:40:08.754Z    DEBUG   Exit parent: io.netty:netty-parent:4.1.107.Final
2024-04-23T06:40:08.786Z    DEBUG   Resolving io.netty:netty-codec-http2:4.1.107.Final...
2024-04-23T06:40:08.940Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/io/netty/netty-codec-http2/4.1.107.Final/netty-codec-http2-4.1.107.Final.pom
2024-04-23T06:40:09.120Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/io/netty/netty-codec-http2/4.1.107.Final/netty-codec-http2-4.1.107.Final.pom
2024-04-23T06:40:09.128Z    DEBUG   Start parent: io.netty:netty-parent:4.1.107.Final
2024-04-23T06:40:09.128Z    DEBUG   Exit parent: io.netty:netty-parent:4.1.107.Final
2024-04-23T06:40:09.170Z    DEBUG   Resolving io.netty:netty-resolver-dns:4.1.107.Final...
2024-04-23T06:40:09.317Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/io/netty/netty-resolver-dns/4.1.107.Final/netty-resolver-dns-4.1.107.Final.pom
2024-04-23T06:40:09.498Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/io/netty/netty-resolver-dns/4.1.107.Final/netty-resolver-dns-4.1.107.Final.pom
2024-04-23T06:40:09.504Z    DEBUG   Start parent: io.netty:netty-parent:4.1.107.Final
2024-04-23T06:40:09.504Z    DEBUG   Exit parent: io.netty:netty-parent:4.1.107.Final
2024-04-23T06:40:09.512Z    DEBUG   Resolving io.netty:netty-resolver-dns-native-macos:4.1.107.Final...
2024-04-23T06:40:09.646Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/io/netty/netty-resolver-dns-native-macos/4.1.107.Final/netty-resolver-dns-native-macos-4.1.107.Final.pom
2024-04-23T06:40:09.825Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/io/netty/netty-resolver-dns-native-macos/4.1.107.Final/netty-resolver-dns-native-macos-4.1.107.Final.pom
2024-04-23T06:40:09.835Z    DEBUG   Start parent: io.netty:netty-parent:4.1.107.Final
2024-04-23T06:40:09.835Z    DEBUG   Exit parent: io.netty:netty-parent:4.1.107.Final
2024-04-23T06:40:09.838Z    DEBUG   Resolving io.netty:netty-transport-native-epoll:4.1.107.Final...
2024-04-23T06:40:09.969Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/io/netty/netty-transport-native-epoll/4.1.107.Final/netty-transport-native-epoll-4.1.107.Final.pom
2024-04-23T06:40:10.148Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/io/netty/netty-transport-native-epoll/4.1.107.Final/netty-transport-native-epoll-4.1.107.Final.pom
2024-04-23T06:40:10.161Z    DEBUG   Start parent: io.netty:netty-parent:4.1.107.Final
2024-04-23T06:40:10.161Z    DEBUG   Exit parent: io.netty:netty-parent:4.1.107.Final
2024-04-23T06:40:10.184Z    DEBUG   Resolving io.projectreactor.netty:reactor-netty-core:1.1.17...
2024-04-23T06:40:10.327Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/io/projectreactor/netty/reactor-netty-core/1.1.17/reactor-netty-core-1.1.17.pom
2024-04-23T06:40:10.508Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/io/projectreactor/netty/reactor-netty-core/1.1.17/reactor-netty-core-1.1.17.pom
2024-04-23T06:40:10.516Z    DEBUG   Resolving org.hdrhistogram:HdrHistogram:2.1.12...
2024-04-23T06:40:10.651Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/hdrhistogram/HdrHistogram/2.1.12/HdrHistogram-2.1.12.pom
2024-04-23T06:40:10.831Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/hdrhistogram/HdrHistogram/2.1.12/HdrHistogram-2.1.12.pom
2024-04-23T06:40:10.845Z    DEBUG   Resolving org.latencyutils:LatencyUtils:2.0.3...
2024-04-23T06:40:10.980Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.pom
2024-04-23T06:40:11.160Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.pom
2024-04-23T06:40:11.166Z    DEBUG   Start parent: org.sonatype.oss:oss-parent:7
2024-04-23T06:40:11.166Z    DEBUG   Exit parent: org.sonatype.oss:oss-parent:7
2024-04-23T06:40:11.167Z    DEBUG   Resolving com.nimbusds:content-type:2.2...
2024-04-23T06:40:11.311Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/com/nimbusds/content-type/2.2/content-type-2.2.pom
2024-04-23T06:40:11.491Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/com/nimbusds/content-type/2.2/content-type-2.2.pom
2024-04-23T06:40:11.498Z    DEBUG   Resolving net.minidev:json-smart:2.5.0...
2024-04-23T06:40:11.627Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/net/minidev/json-smart/2.5.0/json-smart-2.5.0.pom
2024-04-23T06:40:11.806Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/net/minidev/json-smart/2.5.0/json-smart-2.5.0.pom
2024-04-23T06:40:11.819Z    DEBUG   Resolving com.nimbusds:lang-tag:1.7...
2024-04-23T06:40:11.953Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/com/nimbusds/lang-tag/1.7/lang-tag-1.7.pom
2024-04-23T06:40:12.133Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/com/nimbusds/lang-tag/1.7/lang-tag-1.7.pom
2024-04-23T06:40:12.141Z    DEBUG   Resolving com.google.errorprone:error_prone_annotations:2.21.1...
2024-04-23T06:40:12.289Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/com/google/errorprone/error_prone_annotations/2.21.1/error_prone_annotations-2.21.1.pom
2024-04-23T06:40:12.469Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/com/google/errorprone/error_prone_annotations/2.21.1/error_prone_annotations-2.21.1.pom
2024-04-23T06:40:12.474Z    DEBUG   Start parent: com.google.errorprone:error_prone_parent:2.21.1
2024-04-23T06:40:12.606Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/com/google/errorprone/error_prone_parent/2.21.1/error_prone_parent-2.21.1.pom
2024-04-23T06:40:12.786Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/com/google/errorprone/error_prone_parent/2.21.1/error_prone_parent-2.21.1.pom
2024-04-23T06:40:12.793Z    DEBUG   Exit parent: com.google.errorprone:error_prone_parent:2.21.1
2024-04-23T06:40:12.793Z    DEBUG   Resolving org.javassist:javassist:3.29.0-GA...
2024-04-23T06:40:12.989Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/javassist/javassist/3.29.0-GA/javassist-3.29.0-GA.pom
2024-04-23T06:40:13.169Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/javassist/javassist/3.29.0-GA/javassist-3.29.0-GA.pom
2024-04-23T06:40:13.179Z    DEBUG   Resolving org.bouncycastle:bcpkix-jdk18on:1.77...
2024-04-23T06:40:13.326Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/bouncycastle/bcpkix-jdk18on/1.77/bcpkix-jdk18on-1.77.pom
2024-04-23T06:40:13.504Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/bouncycastle/bcpkix-jdk18on/1.77/bcpkix-jdk18on-1.77.pom
2024-04-23T06:40:13.514Z    DEBUG   Resolving com.ethlo.time:itu:1.8.0...
2024-04-23T06:40:13.673Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/com/ethlo/time/itu/1.8.0/itu-1.8.0.pom
2024-04-23T06:40:13.851Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/com/ethlo/time/itu/1.8.0/itu-1.8.0.pom
2024-04-23T06:40:13.859Z    DEBUG   Resolving com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:2.15.4...
2024-04-23T06:40:14.000Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.15.4/jackson-dataformat-yaml-2.15.4.pom
2024-04-23T06:40:14.180Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/com/fasterxml/jackson/dataformat/jackson-dataformat-yaml/2.15.4/jackson-dataformat-yaml-2.15.4.pom
2024-04-23T06:40:14.186Z    DEBUG   Start parent: com.fasterxml.jackson.dataformat:jackson-dataformats-text:2.15.4
2024-04-23T06:40:14.335Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/com/fasterxml/jackson/dataformat/jackson-dataformats-text/2.15.4/jackson-dataformats-text-2.15.4.pom
2024-04-23T06:40:14.514Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/com/fasterxml/jackson/dataformat/jackson-dataformats-text/2.15.4/jackson-dataformats-text-2.15.4.pom
2024-04-23T06:40:14.519Z    DEBUG   Adding repository sonatype-nexus-snapshots: https://oss.sonatype.org/content/repositories/snapshots
2024-04-23T06:40:14.519Z    DEBUG   Start parent: com.fasterxml.jackson:jackson-base:2.15.4
2024-04-23T06:40:14.519Z    DEBUG   Exit parent: com.fasterxml.jackson:jackson-base:2.15.4
2024-04-23T06:40:14.520Z    DEBUG   Exit parent: com.fasterxml.jackson.dataformat:jackson-dataformats-text:2.15.4
2024-04-23T06:40:14.522Z    DEBUG   Resolving com.squareup.okio:okio:3.6.0...
2024-04-23T06:40:14.673Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/com/squareup/okio/okio/3.6.0/okio-3.6.0.pom
2024-04-23T06:40:14.851Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/com/squareup/okio/okio/3.6.0/okio-3.6.0.pom
2024-04-23T06:40:14.857Z    DEBUG   Resolving org.jetbrains.kotlin:kotlin-stdlib-jdk8:1.9.23...
2024-04-23T06:40:14.997Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.9.23/kotlin-stdlib-jdk8-1.9.23.pom
2024-04-23T06:40:15.179Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.9.23/kotlin-stdlib-jdk8-1.9.23.pom
2024-04-23T06:40:15.187Z    DEBUG   Resolving org.jboss:jandex:...
2024-04-23T06:40:15.187Z    DEBUG   Version missing for org.jboss:jandex
2024-04-23T06:40:15.187Z    DEBUG   Resolving com.ibm.async:asyncutil:...
2024-04-23T06:40:15.187Z    DEBUG   Version missing for com.ibm.async:asyncutil
2024-04-23T06:40:15.187Z    DEBUG   Resolving com.sun.xml.bind.external:rngom:4.0.5...
2024-04-23T06:40:15.327Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/com/sun/xml/bind/external/rngom/4.0.5/rngom-4.0.5.pom
2024-04-23T06:40:15.509Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/com/sun/xml/bind/external/rngom/4.0.5/rngom-4.0.5.pom
2024-04-23T06:40:15.515Z    DEBUG   Start parent: com.sun.xml.bind.mvn:jaxb-external-parent:4.0.5
2024-04-23T06:40:15.655Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/com/sun/xml/bind/mvn/jaxb-external-parent/4.0.5/jaxb-external-parent-4.0.5.pom
2024-04-23T06:40:15.836Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/com/sun/xml/bind/mvn/jaxb-external-parent/4.0.5/jaxb-external-parent-4.0.5.pom
2024-04-23T06:40:15.844Z    DEBUG   Start parent: org.eclipse.ee4j:project:1.0.9
2024-04-23T06:40:15.844Z    DEBUG   Exit parent: org.eclipse.ee4j:project:1.0.9
2024-04-23T06:40:15.844Z    DEBUG   Exit parent: com.sun.xml.bind.mvn:jaxb-external-parent:4.0.5
2024-04-23T06:40:15.848Z    DEBUG   Resolving com.sun.xml.dtd-parser:dtd-parser:1.5.1...
2024-04-23T06:40:15.984Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/com/sun/xml/dtd-parser/dtd-parser/1.5.1/dtd-parser-1.5.1.pom
2024-04-23T06:40:16.164Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/com/sun/xml/dtd-parser/dtd-parser/1.5.1/dtd-parser-1.5.1.pom
2024-04-23T06:40:16.171Z    DEBUG   Start parent: org.eclipse.ee4j:project:1.0.8
2024-04-23T06:40:16.171Z    DEBUG   Exit parent: org.eclipse.ee4j:project:1.0.8
2024-04-23T06:40:16.171Z    DEBUG   Resolving com.sun.istack:istack-commons-tools:4.1.2...
2024-04-23T06:40:16.311Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/com/sun/istack/istack-commons-tools/4.1.2/istack-commons-tools-4.1.2.pom
2024-04-23T06:40:16.492Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/com/sun/istack/istack-commons-tools/4.1.2/istack-commons-tools-4.1.2.pom
2024-04-23T06:40:16.498Z    DEBUG   Start parent: com.sun.istack:istack-commons:4.1.2
2024-04-23T06:40:16.498Z    DEBUG   Exit parent: com.sun.istack:istack-commons:4.1.2
2024-04-23T06:40:16.504Z    DEBUG   Resolving com.sun.xml.bind.external:relaxng-datatype:4.0.5...
2024-04-23T06:40:16.657Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/com/sun/xml/bind/external/relaxng-datatype/4.0.5/relaxng-datatype-4.0.5.pom
2024-04-23T06:40:16.838Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/com/sun/xml/bind/external/relaxng-datatype/4.0.5/relaxng-datatype-4.0.5.pom
2024-04-23T06:40:16.844Z    DEBUG   Start parent: com.sun.xml.bind.mvn:jaxb-external-parent:4.0.5
2024-04-23T06:40:16.844Z    DEBUG   Exit parent: com.sun.xml.bind.mvn:jaxb-external-parent:4.0.5
2024-04-23T06:40:16.849Z    DEBUG   Resolving io.netty:netty-common:4.1.107.Final...
2024-04-23T06:40:16.982Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/io/netty/netty-common/4.1.107.Final/netty-common-4.1.107.Final.pom
2024-04-23T06:40:17.163Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/io/netty/netty-common/4.1.107.Final/netty-common-4.1.107.Final.pom
2024-04-23T06:40:17.172Z    DEBUG   Start parent: io.netty:netty-parent:4.1.107.Final
2024-04-23T06:40:17.173Z    DEBUG   Exit parent: io.netty:netty-parent:4.1.107.Final
2024-04-23T06:40:17.196Z    DEBUG   Resolving io.netty:netty-buffer:4.1.107.Final...
2024-04-23T06:40:17.363Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/io/netty/netty-buffer/4.1.107.Final/netty-buffer-4.1.107.Final.pom
2024-04-23T06:40:17.543Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/io/netty/netty-buffer/4.1.107.Final/netty-buffer-4.1.107.Final.pom
2024-04-23T06:40:17.548Z    DEBUG   Start parent: io.netty:netty-parent:4.1.107.Final
2024-04-23T06:40:17.548Z    DEBUG   Exit parent: io.netty:netty-parent:4.1.107.Final
2024-04-23T06:40:17.550Z    DEBUG   Resolving io.netty:netty-transport:4.1.107.Final...
2024-04-23T06:40:17.707Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/io/netty/netty-transport/4.1.107.Final/netty-transport-4.1.107.Final.pom
2024-04-23T06:40:17.888Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/io/netty/netty-transport/4.1.107.Final/netty-transport-4.1.107.Final.pom
2024-04-23T06:40:17.894Z    DEBUG   Start parent: io.netty:netty-parent:4.1.107.Final
2024-04-23T06:40:17.894Z    DEBUG   Exit parent: io.netty:netty-parent:4.1.107.Final
2024-04-23T06:40:17.905Z    DEBUG   Resolving io.netty:netty-codec:4.1.107.Final...
2024-04-23T06:40:18.081Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/io/netty/netty-codec/4.1.107.Final/netty-codec-4.1.107.Final.pom
2024-04-23T06:40:18.263Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/io/netty/netty-codec/4.1.107.Final/netty-codec-4.1.107.Final.pom
2024-04-23T06:40:18.270Z    DEBUG   Start parent: io.netty:netty-parent:4.1.107.Final
2024-04-23T06:40:18.270Z    DEBUG   Exit parent: io.netty:netty-parent:4.1.107.Final
2024-04-23T06:40:18.320Z    DEBUG   Resolving io.netty:netty-handler:4.1.107.Final...
2024-04-23T06:40:18.453Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/io/netty/netty-handler/4.1.107.Final/netty-handler-4.1.107.Final.pom
2024-04-23T06:40:18.633Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/io/netty/netty-handler/4.1.107.Final/netty-handler-4.1.107.Final.pom
2024-04-23T06:40:18.640Z    DEBUG   Start parent: io.netty:netty-parent:4.1.107.Final
2024-04-23T06:40:18.640Z    DEBUG   Exit parent: io.netty:netty-parent:4.1.107.Final
2024-04-23T06:40:18.675Z    DEBUG   Resolving org.mockito:mockito-core:5.7.0...
2024-04-23T06:40:18.807Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/mockito/mockito-core/5.7.0/mockito-core-5.7.0.pom
2024-04-23T06:40:18.988Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/mockito/mockito-core/5.7.0/mockito-core-5.7.0.pom
2024-04-23T06:40:18.996Z    DEBUG   Resolving com.google.code.gson:gson:2.10.1...
2024-04-23T06:40:19.143Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/com/google/code/gson/gson/2.10.1/gson-2.10.1.pom
2024-04-23T06:40:19.325Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/com/google/code/gson/gson/2.10.1/gson-2.10.1.pom
2024-04-23T06:40:19.333Z    DEBUG   Start parent: com.google.code.gson:gson-parent:2.10.1
2024-04-23T06:40:19.478Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/com/google/code/gson/gson-parent/2.10.1/gson-parent-2.10.1.pom
2024-04-23T06:40:19.656Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/com/google/code/gson/gson-parent/2.10.1/gson-parent-2.10.1.pom
2024-04-23T06:40:19.663Z    DEBUG   Exit parent: com.google.code.gson:gson-parent:2.10.1
2024-04-23T06:40:19.663Z    DEBUG   Resolving io.netty:netty-resolver:4.1.107.Final...
2024-04-23T06:40:19.979Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/io/netty/netty-resolver/4.1.107.Final/netty-resolver-4.1.107.Final.pom
2024-04-23T06:40:20.156Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/io/netty/netty-resolver/4.1.107.Final/netty-resolver-4.1.107.Final.pom
2024-04-23T06:40:20.161Z    DEBUG   Start parent: io.netty:netty-parent:4.1.107.Final
2024-04-23T06:40:20.161Z    DEBUG   Exit parent: io.netty:netty-parent:4.1.107.Final
2024-04-23T06:40:20.163Z    DEBUG   Resolving io.netty:netty-codec-dns:4.1.107.Final...
2024-04-23T06:40:20.314Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/io/netty/netty-codec-dns/4.1.107.Final/netty-codec-dns-4.1.107.Final.pom
2024-04-23T06:40:20.495Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/io/netty/netty-codec-dns/4.1.107.Final/netty-codec-dns-4.1.107.Final.pom
2024-04-23T06:40:20.501Z    DEBUG   Start parent: io.netty:netty-parent:4.1.107.Final
2024-04-23T06:40:20.501Z    DEBUG   Exit parent: io.netty:netty-parent:4.1.107.Final
2024-04-23T06:40:20.517Z    DEBUG   Resolving io.netty:netty-resolver-dns-classes-macos:4.1.107.Final...
2024-04-23T06:40:20.877Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/io/netty/netty-resolver-dns-classes-macos/4.1.107.Final/netty-resolver-dns-classes-macos-4.1.107.Final.pom
2024-04-23T06:40:21.058Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/io/netty/netty-resolver-dns-classes-macos/4.1.107.Final/netty-resolver-dns-classes-macos-4.1.107.Final.pom
2024-04-23T06:40:21.064Z    DEBUG   Start parent: io.netty:netty-parent:4.1.107.Final
2024-04-23T06:40:21.064Z    DEBUG   Exit parent: io.netty:netty-parent:4.1.107.Final
2024-04-23T06:40:21.069Z    DEBUG   Resolving io.netty:netty-transport-native-unix-common:4.1.107.Final...
2024-04-23T06:40:21.208Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/io/netty/netty-transport-native-unix-common/4.1.107.Final/netty-transport-native-unix-common-4.1.107.Final.pom
2024-04-23T06:40:21.389Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/io/netty/netty-transport-native-unix-common/4.1.107.Final/netty-transport-native-unix-common-4.1.107.Final.pom
2024-04-23T06:40:21.403Z    DEBUG   Start parent: io.netty:netty-parent:4.1.107.Final
2024-04-23T06:40:21.403Z    DEBUG   Exit parent: io.netty:netty-parent:4.1.107.Final
2024-04-23T06:40:21.411Z    DEBUG   Resolving io.netty:netty-transport-classes-epoll:4.1.107.Final...
2024-04-23T06:40:21.551Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/io/netty/netty-transport-classes-epoll/4.1.107.Final/netty-transport-classes-epoll-4.1.107.Final.pom
2024-04-23T06:40:21.730Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/io/netty/netty-transport-classes-epoll/4.1.107.Final/netty-transport-classes-epoll-4.1.107.Final.pom
2024-04-23T06:40:21.736Z    DEBUG   Start parent: io.netty:netty-parent:4.1.107.Final
2024-04-23T06:40:21.736Z    DEBUG   Exit parent: io.netty:netty-parent:4.1.107.Final
2024-04-23T06:40:21.743Z    DEBUG   Resolving io.netty:netty-handler-proxy:4.1.107.Final...
2024-04-23T06:40:21.877Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/io/netty/netty-handler-proxy/4.1.107.Final/netty-handler-proxy-4.1.107.Final.pom
2024-04-23T06:40:22.057Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/io/netty/netty-handler-proxy/4.1.107.Final/netty-handler-proxy-4.1.107.Final.pom
2024-04-23T06:40:22.063Z    DEBUG   Start parent: io.netty:netty-parent:4.1.107.Final
2024-04-23T06:40:22.063Z    DEBUG   Exit parent: io.netty:netty-parent:4.1.107.Final
2024-04-23T06:40:22.071Z    DEBUG   Resolving net.minidev:accessors-smart:2.5.0...
2024-04-23T06:40:22.204Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/net/minidev/accessors-smart/2.5.0/accessors-smart-2.5.0.pom
2024-04-23T06:40:22.384Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/net/minidev/accessors-smart/2.5.0/accessors-smart-2.5.0.pom
2024-04-23T06:40:22.392Z    DEBUG   Resolving org.bouncycastle:bcutil-jdk18on:1.77...
2024-04-23T06:40:22.527Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/bouncycastle/bcutil-jdk18on/1.77/bcutil-jdk18on-1.77.pom
2024-04-23T06:40:22.706Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/bouncycastle/bcutil-jdk18on/1.77/bcutil-jdk18on-1.77.pom
2024-04-23T06:40:22.712Z    DEBUG   Resolving com.squareup.okio:okio-jvm:3.6.0...
2024-04-23T06:40:22.860Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/com/squareup/okio/okio-jvm/3.6.0/okio-jvm-3.6.0.pom
2024-04-23T06:40:23.040Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/com/squareup/okio/okio-jvm/3.6.0/okio-jvm-3.6.0.pom
2024-04-23T06:40:23.048Z    DEBUG   Resolving org.jetbrains.kotlin:kotlin-stdlib:1.9.23...
2024-04-23T06:40:23.185Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/jetbrains/kotlin/kotlin-stdlib/1.9.23/kotlin-stdlib-1.9.23.pom
2024-04-23T06:40:23.365Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/jetbrains/kotlin/kotlin-stdlib/1.9.23/kotlin-stdlib-1.9.23.pom
2024-04-23T06:40:23.372Z    DEBUG   Resolving org.jetbrains.kotlin:kotlin-stdlib-jdk7:1.9.23...
2024-04-23T06:40:23.504Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.9.23/kotlin-stdlib-jdk7-1.9.23.pom
2024-04-23T06:40:23.685Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.9.23/kotlin-stdlib-jdk7-1.9.23.pom
2024-04-23T06:40:23.691Z    DEBUG   Resolving net.bytebuddy:byte-buddy-agent:1.14.12...
2024-04-23T06:40:23.834Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/net/bytebuddy/byte-buddy-agent/1.14.12/byte-buddy-agent-1.14.12.pom
2024-04-23T06:40:24.014Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/net/bytebuddy/byte-buddy-agent/1.14.12/byte-buddy-agent-1.14.12.pom
2024-04-23T06:40:24.023Z    DEBUG   Start parent: net.bytebuddy:byte-buddy-parent:1.14.12
2024-04-23T06:40:24.023Z    DEBUG   Exit parent: net.bytebuddy:byte-buddy-parent:1.14.12
2024-04-23T06:40:24.029Z    DEBUG   Resolving org.objenesis:objenesis:3.3...
2024-04-23T06:40:24.160Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/objenesis/objenesis/3.3/objenesis-3.3.pom
2024-04-23T06:40:24.340Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/objenesis/objenesis/3.3/objenesis-3.3.pom
2024-04-23T06:40:24.347Z    DEBUG   Start parent: org.objenesis:objenesis-parent:3.3
2024-04-23T06:40:24.489Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/objenesis/objenesis-parent/3.3/objenesis-parent-3.3.pom
2024-04-23T06:40:24.668Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/objenesis/objenesis-parent/3.3/objenesis-parent-3.3.pom
2024-04-23T06:40:24.679Z    DEBUG   Exit parent: org.objenesis:objenesis-parent:3.3
2024-04-23T06:40:24.681Z    DEBUG   Resolving io.netty:netty-codec-socks:4.1.107.Final...
2024-04-23T06:40:24.816Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/io/netty/netty-codec-socks/4.1.107.Final/netty-codec-socks-4.1.107.Final.pom
2024-04-23T06:40:24.997Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/io/netty/netty-codec-socks/4.1.107.Final/netty-codec-socks-4.1.107.Final.pom
2024-04-23T06:40:25.004Z    DEBUG   Start parent: io.netty:netty-parent:4.1.107.Final
2024-04-23T06:40:25.004Z    DEBUG   Exit parent: io.netty:netty-parent:4.1.107.Final
2024-04-23T06:40:25.019Z    DEBUG   Resolving org.ow2.asm:asm:9.3...
2024-04-23T06:40:25.158Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/ow2/asm/asm/9.3/asm-9.3.pom
2024-04-23T06:40:25.339Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/ow2/asm/asm/9.3/asm-9.3.pom
2024-04-23T06:40:25.345Z    DEBUG   Start parent: org.ow2:ow2:1.5
2024-04-23T06:40:25.519Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/ow2/ow2/1.5/ow2-1.5.pom
2024-04-23T06:40:25.701Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/ow2/ow2/1.5/ow2-1.5.pom
2024-04-23T06:40:25.709Z    DEBUG   Exit parent: org.ow2:ow2:1.5
2024-04-23T06:40:25.710Z    DEBUG   Resolving org.jetbrains.kotlin:kotlin-stdlib-common:1.9.23...
2024-04-23T06:40:26.037Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/jetbrains/kotlin/kotlin-stdlib-common/1.9.23/kotlin-stdlib-common-1.9.23.pom
2024-04-23T06:40:26.218Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/jetbrains/kotlin/kotlin-stdlib-common/1.9.23/kotlin-stdlib-common-1.9.23.pom
2024-04-23T06:40:26.225Z    DEBUG   Resolving org.jetbrains:annotations:13.0...
2024-04-23T06:40:26.360Z    DEBUG   Failed to fetch from repository.jboss.org/nexus/content/groups/public/org/jetbrains/annotations/13.0/annotations-13.0.pom
2024-04-23T06:40:26.542Z    DEBUG   Failed to fetch from maven.java.net/content/repositories/releases/org/jetbrains/annotations/13.0/annotations-13.0.pom
2024-04-23T06:40:26.576Z    DEBUG   Scanning Helm files for misconfigurations...
2024-04-23T06:40:26.576Z    DEBUG   [misconf] 40:26.576979749 helm.scanner.rego                Overriding filesystem for policies!
2024-04-23T06:40:26.733Z    DEBUG   [misconf] 40:26.733842034 helm.scanner.rego                Loaded 194 policies from disk.
2024-04-23T06:40:26.734Z    DEBUG   [misconf] 40:26.734868142 helm.scanner.rego                Overriding filesystem for data!
2024-04-23T06:40:28.275Z    DEBUG   Scanning Dockerfile files for misconfigurations...
2024-04-23T06:40:28.276Z    DEBUG   [misconf] 40:28.276839289 dockerfile.scanner.rego          Overriding filesystem for policies!
2024-04-23T06:40:28.401Z    DEBUG   [misconf] 40:28.401415717 dockerfile.scanner.rego          Loaded 194 policies from disk.
2024-04-23T06:40:28.402Z    DEBUG   [misconf] 40:28.402346033 dockerfile.scanner.rego          Overriding filesystem for data!
2024-04-23T06:40:29.827Z    DEBUG   [misconf] 40:29.827300058 dockerfile.scanner.rego          Scanning 2 inputs...
2024-04-23T06:40:30.034Z    DEBUG   OS is not detected.
2024-04-23T06:40:30.034Z    DEBUG   Detected OS: unknown
2024-04-23T06:40:30.034Z    INFO    Number of language-specific files: 1
2024-04-23T06:40:30.034Z    INFO    Detecting pom vulnerabilities...
2024-04-23T06:40:30.034Z    DEBUG   Detecting library vulnerabilities, type: pom, path: pom.xml
2024-04-23T06:40:30.058Z    INFO    Detected config files: 2
2024-04-23T06:40:30.058Z    DEBUG   Scanned config file: Dockerfile
2024-04-23T06:40:30.058Z    DEBUG   Scanned config file: keycloak-config/Dockerfile
knqyf263 commented 6 months ago

2024-04-23T06:40:26.542Z DEBUG Failed to fetch from maven.java.net/content/repositories/releases/org/jetbrains/annotations/13.0/annotations-13.0.pom

@DmitriyLewen Do you think the fetching failure will be resolved by https://github.com/aquasecurity/trivy/issues/6508? It seems something different since it's not a snapshot.

DmitriyLewen commented 6 months ago

It looks like some pom files contain enabled repositories. So Trivy (like mvn) checks these repositories first. If there are no dependencies in the repositories -> Trivy checks maven Central.

Similar example in #6412 description (see release version + release repository enable spoiler).

knqyf263 commented 6 months ago

OK, so is it the same behavior as mvn and intentional?

DmitriyLewen commented 6 months ago

I'm pretty sure yes. If @azdanov shares test pom.xml file, I can compare mvn and Trivy logic.

azdanov commented 6 months ago

@DmitriyLewen

pom.xml ```xml 4.0.0 org.example example 0.1.0 Example Work on Example org.springframework.boot spring-boot-starter-parent 3.2.4 17 org.springframework.boot spring-boot-starter org.springframework.boot spring-boot-starter-logging org.springframework.vault spring-vault-core 3.1.1 org.springframework.boot spring-boot-starter-web-services org.springframework.boot spring-boot-starter-webflux org.springframework.boot spring-boot-starter-actuator org.springframework.boot spring-boot-starter-web org.springframework.boot spring-boot-devtools runtime true org.springframework.boot spring-boot-starter-test test org.springframework.boot spring-boot-starter-validation org.springframework.boot spring-boot-starter-security org.springframework.boot spring-boot-starter-log4j2 org.springframework.boot spring-boot-starter-oauth2-client org.springframework.boot spring-boot-starter-oauth2-resource-server org.liquibase liquibase-core org.mariadb.jdbc mariadb-java-client runtime org.springframework.boot spring-boot-starter-data-jpa org.springframework.boot spring-boot-starter-logging nz.net.ultraq.thymeleaf thymeleaf-layout-dialect org.thymeleaf.extras thymeleaf-extras-springsecurity6 org.springframework.boot spring-boot-starter-thymeleaf org.springframework.boot spring-boot-starter-logging com.nimbusds nimbus-jose-jwt 9.37.3 org.apache.tika tika-core 2.9.1 commons-io commons-io 2.13.0 org.projectlombok lombok 1.18.30 provided org.codehaus.mojo exec-maven-plugin 3.1.0 org.mock-server mockserver-netty 5.15.0 test com.google.guava guava 33.0.0-jre test org.mock-server mockserver-client-java 5.15.0 test junit junit test com.tngtech.archunit archunit-junit5 1.1.0 test org.junit.jupiter junit-jupiter-params test com.h2database h2 test example org.springframework.boot spring-boot-maven-plugin local org.apache.maven.plugins maven-surefire-plugin **/*Test.java **/*IT.java unit org.apache.maven.plugins maven-surefire-plugin **/*Test.java integration org.apache.maven.plugins maven-surefire-plugin **/*IT.java netty-resolver-dns-native-macos-aarch64 mac aarch64 io.netty netty-resolver-dns-native-macos osx-aarch_64 ```
DmitriyLewen commented 6 months ago

Looks like most fetching errors when Trivy parses parents. But mvn doesn't logs about parents.

But i found 1 case when mvn tries to download from another repository:

Downloading from jboss-public-repository-group: https://repository.jboss.org/nexus/content/groups/public/io/projectreactor/reactor-bom/2020.0.8/reactor-bom-2020.0.8.pom
Downloading from central: https://repo.maven.apache.org/maven2/io/projectreactor/reactor-bom/2020.0.8/reactor-bom-2020.0.8.pom
Downloaded from central: https://repo.maven.apache.org/maven2/io/projectreactor/reactor-bom/2020.0.8/reactor-bom-2020.0.8.pom (4.5 kB at 51 kB/s)

So I think Trivy works like mvn.

mateuszkozakiewicz commented 3 months ago

I've noticed a significant increase of scan times for pom.xml files after updating from 0.46.0 to 0.53.0 Trivy 0.46.0

pom.xml (pom)

Total: 13 (UNKNOWN: 0, LOW: 1, MEDIUM: 5, HIGH: 7, CRITICAL: 0)

real    3m 8.25s
user    0m 1.37s
sys     0m 0.24s

Trivy 0.53.0

pom.xml (pom)

Total: 15 (UNKNOWN: 0, LOW: 1, MEDIUM: 6, HIGH: 7, CRITICAL: 1)

real    9m 2.10s
user    0m 1.88s
sys     0m 0.76s

Is there something that can be done?

DmitriyLewen commented 3 months ago

now we check repositories like maven does. you can use mvn dependency:resolve to download dependencies - this will speed up the scan

mateuszkozakiewicz commented 3 months ago

If Trivy is downloading those files shouldn't subsequent runs be faster, isn't there some sort of cache? It doesn't appear to be the case currently, at least I can't spot a difference in execution times. It would be far easier to cache that directory between pipeline runs than run extra stage just to download maven dependencies for Trivy.

DmitriyLewen commented 3 months ago

Unfortunately, Trivy doesn't currently save cache for fs mode.