openrewrite / rewrite-spring

OpenRewrite recipes for Spring projects.
Apache License 2.0
253 stars 75 forks source link

spring-boot-22 Recipe messes up logging.file.* in application.yaml #436

Open Philzen opened 1 year ago

Philzen commented 1 year ago

I am using the shell command from https://docs.openrewrite.org/recipes/java/spring/boot2/upgradespringboot_2_2#usage

mvn -U org.openrewrite.maven:rewrite-maven-plugin:run \
  -Drewrite.recipeArtifactCoordinates=org.openrewrite.recipe:rewrite-spring:RELEASE \
  -Drewrite.activeRecipes=org.openrewrite.java.spring.boot2.UpgradeSpringBoot_2_2

to migrate a project from 2.1.18.RELEASE to latest 2.2.

Using maven 3.9.4 and java 11.0.20.1-tem

The application.yaml file looks like this before:

logging:
  file:
    max-history: 10
    max-size: 10MB
  level:
    org: INFO
  path: ${user.home}/some-folder

but after running above OpenRewrite recipe it looks like this:

logging:
  file.name:                      # ⚡️
    max-history: 10
    max-size: 10MB
  level:
    org: INFO
  file.name.path: ${user.home}/some-folder  # ⚡️

The correct result of course would be:

logging:
  file:
    max-history: 10
    max-size: 10MB
    path: ${user.home}/some-folder
  level:
    org: INFO

this seems to be closely connected to #432 – very similar problem, but this time with a yaml style configuration file.

timtebeek commented 1 year ago

Sorry to hear you're still having issues! Would you be open to adding a similar test as seen in https://github.com/openrewrite/rewrite-spring/commit/4e5820b521e3aee908e2b38cd3add18eff81c9cc using the above example, such that we can reproduce, fix and ensure this remains fixed going forward?

Philzen commented 1 year ago

Open, yes absolutely, i love contributing to open source. Unfortunately i'm head over heels in the middle of two other projects that i'm commited to, so for the moment i'm unable to offer much more than sharing my finding.

Attaching below…

…full log output of the recipe's execution

```bash $ mvn -U org.openrewrite.maven:rewrite-maven-plugin:run \ -Drewrite.recipeArtifactCoordinates=org.openrewrite.recipe:rewrite-spring:RELEASE \ -Drewrite.activeRecipes=org.openrewrite.java.spring.boot2.UpgradeSpringBoot_2_2 [INFO] Scanning for projects... Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/maven/rewrite-maven-plugin/maven-metadata.xml Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/maven/rewrite-maven-plugin/maven-metadata.xml (4.6 kB at 6.3 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/maven/rewrite-maven-plugin/5.7.1/rewrite-maven-plugin-5.7.1.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/maven/rewrite-maven-plugin/5.7.1/rewrite-maven-plugin-5.7.1.pom (26 kB at 329 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-bom/4.1.94.Final/netty-bom-4.1.94.Final.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-bom/4.1.94.Final/netty-bom-4.1.94.Final.pom (13 kB at 289 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-bom/3.24.2/assertj-bom-3.24.2.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/assertj/assertj-bom/3.24.2/assertj-bom-3.24.2.pom (3.7 kB at 89 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-bom/1.8.10/kotlin-bom-1.8.10.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-bom/1.8.10/kotlin-bom-1.8.10.pom (9.3 kB at 222 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/rsocket/rsocket-bom/1.1.4/rsocket-bom-1.1.4.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/rsocket/rsocket-bom/1.1.4/rsocket-bom-1.1.4.pom (2.4 kB at 52 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-bom/8.6.0/rewrite-bom-8.6.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-bom/8.6.0/rewrite-bom-8.6.0.pom (5.6 kB at 136 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/maven/rewrite-maven-plugin/5.7.1/rewrite-maven-plugin-5.7.1.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/maven/rewrite-maven-plugin/5.7.1/rewrite-maven-plugin-5.7.1.jar (103 kB at 984 kB/s) [INFO] [INFO] -------------------------< de.moovit.mcc:AMQP >------------------------- [INFO] Building amqp 4.1.0.8 [INFO] from pom.xml [INFO] --------------------------------[ jar ]--------------------------------- [INFO] [INFO] >>> rewrite:5.7.1:run (default-cli) > process-test-classes @ AMQP >>> [INFO] [INFO] --- build-helper:3.0.0:add-source (add-source) @ AMQP --- [INFO] Source directory: /home/phil/prog/moovit/components/amqp/target/generated/src/main/java added. [INFO] [INFO] --- openapi-generator:4.1.3:generate (default) @ AMQP --- [INFO] Code generation is skipped because input was unchanged [INFO] [INFO] --- resources:3.1.0:resources (default-resources) @ AMQP --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 2 resources [INFO] [INFO] --- compiler:3.8.1:compile (default-compile) @ AMQP --- [INFO] Nothing to compile - all classes are up to date [INFO] [INFO] --- resources:3.1.0:testResources (default-testResources) @ AMQP --- [INFO] Using 'UTF-8' encoding to copy filtered resources. [INFO] Copying 2 resources [INFO] [INFO] --- compiler:3.8.1:testCompile (default-testCompile) @ AMQP --- [INFO] Nothing to compile - all classes are up to date [INFO] [INFO] <<< rewrite:5.7.1:run (default-cli) < process-test-classes @ AMQP <<< [INFO] [INFO] [INFO] --- rewrite:5.7.1:run (default-cli) @ AMQP --- Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-java/8.6.0/rewrite-java-8.6.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-java/8.6.0/rewrite-java-8.6.0.pom (5.6 kB at 126 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-core/8.6.0/rewrite-core-8.6.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-core/8.6.0/rewrite-core-8.6.0.pom (5.1 kB at 138 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-smile/2.15.2/jackson-dataformat-smile-2.15.2.pom Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-smile/2.15.2/jackson-dataformat-smile-2.15.2.pom (3.4 kB at 89 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformats-binary/2.15.2/jackson-dataformats-binary-2.15.2.pom Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformats-binary/2.15.2/jackson-dataformats-binary-2.15.2.pom (3.8 kB at 112 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-parameter-names/2.15.2/jackson-module-parameter-names-2.15.2.pom Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-parameter-names/2.15.2/jackson-module-parameter-names-2.15.2.pom (4.4 kB at 112 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-modules-java8/2.15.2/jackson-modules-java8-2.15.2.pom Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-modules-java8/2.15.2/jackson-modules-java8-2.15.2.pom (3.1 kB at 84 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/tools/java-object-diff/1.0.1/java-object-diff-1.0.1.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/tools/java-object-diff/1.0.1/java-object-diff-1.0.1.pom (3.5 kB at 102 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.13.4.20221013/jackson-bom-2.13.4.20221013.pom Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.13.4.20221013/jackson-bom-2.13.4.20221013.pom (17 kB at 469 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/annotations/24.0.0/annotations-24.0.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/annotations/24.0.0/annotations-24.0.0.pom (1.3 kB at 39 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/quarkus/gizmo/gizmo/1.0.11.Final/gizmo-1.0.11.Final.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/quarkus/gizmo/gizmo/1.0.11.Final/gizmo-1.0.11.Final.pom (10 kB at 274 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/jboss-parent/39/jboss-parent-39.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/jboss-parent/39/jboss-parent-39.pom (68 kB at 1.3 MB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.3/asm-9.3.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm/9.3/asm-9.3.pom (2.4 kB at 70 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-util/9.3/asm-util-9.3.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-util/9.3/asm-util-9.3.pom (2.9 kB at 92 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/9.3/asm-tree-9.3.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-tree/9.3/asm-tree-9.3.pom (2.6 kB at 74 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/9.3/asm-analysis-9.3.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/9.3/asm-analysis-9.3.pom (2.6 kB at 82 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/jandex/2.4.2.Final/jandex-2.4.2.Final.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/jandex/2.4.2.Final/jandex-2.4.2.Final.pom (6.8 kB at 206 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/jboss-parent/12/jboss-parent-12.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/jboss-parent/12/jboss-parent-12.pom (32 kB at 789 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna-platform/5.13.0/jna-platform-5.13.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna-platform/5.13.0/jna-platform-5.13.0.pom (2.3 kB at 70 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.13.0/jna-5.13.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.13.0/jna-5.13.0.pom (2.0 kB at 63 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.24.0/commons-compress-1.24.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.24.0/commons-compress-1.24.0.pom (22 kB at 574 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/61/commons-parent-61.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-parent/61/commons-parent-61.pom (81 kB at 1.4 MB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/apache/30/apache-30.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/apache/30/apache-30.pom (23 kB at 628 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-core/1.9.15/micrometer-core-1.9.15.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-core/1.9.15/micrometer-core-1.9.15.pom (8.6 kB at 238 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/hdrhistogram/HdrHistogram/2.1.12/HdrHistogram-2.1.12.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/hdrhistogram/HdrHistogram/2.1.12/HdrHistogram-2.1.12.pom (11 kB at 220 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.pom (7.2 kB at 207 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/github/classgraph/classgraph/4.8.162/classgraph-4.8.162.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/github/classgraph/classgraph/4.8.162/classgraph-4.8.162.pom (30 kB at 681 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/yaml/snakeyaml/2.2/snakeyaml-2.2.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/yaml/snakeyaml/2.2/snakeyaml-2.2.pom (21 kB at 559 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-yaml/8.6.0/rewrite-yaml-8.6.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-yaml/8.6.0/rewrite-yaml-8.6.0.pom (4.1 kB at 128 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/antlr4/4.11.1/antlr4-4.11.1.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/antlr4/4.11.1/antlr4-4.11.1.pom (6.3 kB at 190 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/antlr4-master/4.11.1/antlr4-master-4.11.1.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/antlr4-master/4.11.1/antlr4-master-4.11.1.pom (4.4 kB at 130 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/antlr4-runtime/4.11.1/antlr4-runtime-4.11.1.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/antlr4-runtime/4.11.1/antlr4-runtime-4.11.1.pom (3.6 kB at 111 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/antlr-runtime/3.5.3/antlr-runtime-3.5.3.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/antlr-runtime/3.5.3/antlr-runtime-3.5.3.pom (2.9 kB at 84 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/antlr-master/3.5.3/antlr-master-3.5.3.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/antlr-master/3.5.3/antlr-master-3.5.3.pom (11 kB at 344 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/ST4/4.3.4/ST4-4.3.4.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/ST4/4.3.4/ST4-4.3.4.pom (4.6 kB at 149 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/abego/treelayout/org.abego.treelayout.core/1.0.3/org.abego.treelayout.core-1.0.3.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/abego/treelayout/org.abego.treelayout.core/1.0.3/org.abego.treelayout.core-1.0.3.pom (5.2 kB at 162 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/ibm/icu/icu4j/71.1/icu4j-71.1.pom Downloaded from central: https://repo.maven.apache.org/maven2/com/ibm/icu/icu4j/71.1/icu4j-71.1.pom (4.9 kB at 145 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-xml/8.6.0/rewrite-xml-8.6.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-xml/8.6.0/rewrite-xml-8.6.0.pom (3.9 kB at 123 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.13.0/commons-lang3-3.13.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.13.0/commons-lang3-3.13.0.pom (31 kB at 775 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.1.10.1/snappy-java-1.1.10.1.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.1.10.1/snappy-java-1.1.10.1.pom (3.1 kB at 96 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/github/fastfilter/fastfilter/1.0.2/fastfilter-1.0.2.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/github/fastfilter/fastfilter/1.0.2/fastfilter-1.0.2.pom (2.5 kB at 74 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/github/fastfilter/fastfilter_java/1.0.2/fastfilter_java-1.0.2.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/github/fastfilter/fastfilter_java/1.0.2/fastfilter_java-1.0.2.pom (5.0 kB at 160 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-util/9.5/asm-util-9.5.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-util/9.5/asm-util-9.5.pom (2.9 kB at 92 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/9.5/asm-analysis-9.5.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/9.5/asm-analysis-9.5.pom (2.6 kB at 82 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-java-8/8.6.0/rewrite-java-8-8.6.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-java-8/8.6.0/rewrite-java-8-8.6.0.pom (3.7 kB at 117 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-java-11/8.6.0/rewrite-java-11-8.6.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-java-11/8.6.0/rewrite-java-11-8.6.0.pom (4.1 kB at 121 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-java-17/8.6.0/rewrite-java-17-8.6.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-java-17/8.6.0/rewrite-java-17-8.6.0.pom (4.1 kB at 128 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-maven/8.6.0/rewrite-maven-8.6.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-maven/8.6.0/rewrite-maven-8.6.0.pom (5.7 kB at 173 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/github/ben-manes/caffeine/caffeine/2.9.3/caffeine-2.9.3.pom Downloaded from central: https://repo.maven.apache.org/maven2/com/github/ben-manes/caffeine/caffeine/2.9.3/caffeine-2.9.3.pom (2.1 kB at 69 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/3.19.0/checker-qual-3.19.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/3.19.0/checker-qual-3.19.0.pom (2.1 kB at 68 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.10.0/error_prone_annotations-2.10.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.10.0/error_prone_annotations-2.10.0.pom (2.1 kB at 64 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.10.0/error_prone_parent-2.10.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.10.0/error_prone_parent-2.10.0.pom (10 kB at 327 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/github/resilience4j/resilience4j-retry/1.7.0/resilience4j-retry-1.7.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/github/resilience4j/resilience4j-retry/1.7.0/resilience4j-retry-1.7.0.pom (2.1 kB at 72 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/vavr/vavr/0.10.2/vavr-0.10.2.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/vavr/vavr/0.10.2/vavr-0.10.2.pom (2.9 kB at 94 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/vavr/vavr-parent/0.10.2/vavr-parent-0.10.2.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/vavr/vavr-parent/0.10.2/vavr-parent-0.10.2.pom (24 kB at 625 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/vavr/vavr-match/0.10.2/vavr-match-0.10.2.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/vavr/vavr-match/0.10.2/vavr-match-0.10.2.pom (1.4 kB at 41 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/github/resilience4j/resilience4j-core/1.7.0/resilience4j-core-1.7.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/github/resilience4j/resilience4j-core/1.7.0/resilience4j-core-1.7.0.pom (1.9 kB at 61 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-xml/2.15.2/jackson-dataformat-xml-2.15.2.pom Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-xml/2.15.2/jackson-dataformat-xml-2.15.2.pom (7.3 kB at 222 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.pom (6.3 kB at 203 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/6.5.1/woodstox-core-6.5.1.pom Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/6.5.1/woodstox-core-6.5.1.pom (9.6 kB at 291 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.15.2/jackson-module-jaxb-annotations-2.15.2.pom Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.15.2/jackson-module-jaxb-annotations-2.15.2.pom (3.8 kB at 118 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/1.2.2/jakarta.activation-api-1.2.2.pom Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/1.2.2/jakarta.activation-api-1.2.2.pom (5.3 kB at 171 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.15.2/jackson-datatype-jdk8-2.15.2.pom Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.15.2/jackson-datatype-jdk8-2.15.2.pom (2.6 kB at 86 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-properties/8.6.0/rewrite-properties-8.6.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-properties/8.6.0/rewrite-properties-8.6.0.pom (3.8 kB at 122 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-hcl/8.6.0/rewrite-hcl-8.6.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-hcl/8.6.0/rewrite-hcl-8.6.0.pom (3.9 kB at 119 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-json/8.6.0/rewrite-json-8.6.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-json/8.6.0/rewrite-json-8.6.0.pom (3.9 kB at 96 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-protobuf/8.6.0/rewrite-protobuf-8.6.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-protobuf/8.6.0/rewrite-protobuf-8.6.0.pom (4.0 kB at 120 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-python/1.1.1/rewrite-python-1.1.1.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-python/1.1.1/rewrite-python-1.1.1.pom (6.6 kB at 195 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-bom/8.5.0/rewrite-bom-8.5.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-bom/8.5.0/rewrite-bom-8.5.0.pom (5.6 kB at 159 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.8.10/kotlin-stdlib-jdk8-1.8.10.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.8.10/kotlin-stdlib-jdk8-1.8.10.pom (1.6 kB at 48 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/1.8.10/kotlin-stdlib-1.8.10.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/1.8.10/kotlin-stdlib-1.8.10.pom (1.6 kB at 50 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-common/1.8.10/kotlin-stdlib-common-1.8.10.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-common/1.8.10/kotlin-stdlib-common-1.8.10.pom (1.2 kB at 37 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/annotations/13.0/annotations-13.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/annotations/13.0/annotations-13.0.pom (4.9 kB at 159 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.8.10/kotlin-stdlib-jdk7-1.8.10.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.8.10/kotlin-stdlib-jdk7-1.8.10.pom (1.4 kB at 42 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutines-core-jvm/1.5.0/kotlinx-coroutines-core-jvm-1.5.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutines-core-jvm/1.5.0/kotlinx-coroutines-core-jvm-1.5.0.pom (1.9 kB at 54 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/it/unimi/dsi/fastutil/8.5.2/fastutil-8.5.2.pom Downloaded from central: https://repo.maven.apache.org/maven2/it/unimi/dsi/fastutil/8.5.2/fastutil-8.5.2.pom (1.4 kB at 41 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/31.1-jre/guava-31.1-jre.pom Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/31.1-jre/guava-31.1-jre.pom (11 kB at 333 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/31.1-jre/guava-parent-31.1-jre.pom Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/31.1-jre/guava-parent-31.1-jre.pom (15 kB at 421 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.11.0/error_prone_annotations-2.11.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.11.0/error_prone_annotations-2.11.0.pom (2.2 kB at 72 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.11.0/error_prone_parent-2.11.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_parent/2.11.0/error_prone_parent-2.11.0.pom (11 kB at 325 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/one/util/streamex/0.8.1/streamex-0.8.1.pom Downloaded from central: https://repo.maven.apache.org/maven2/one/util/streamex/0.8.1/streamex-0.8.1.pom (15 kB at 407 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/puppycrawl/tools/checkstyle/9.3/checkstyle-9.3.pom Downloaded from central: https://repo.maven.apache.org/maven2/com/puppycrawl/tools/checkstyle/9.3/checkstyle-9.3.pom (142 kB at 1.6 MB/s) Downloading from central: https://repo.maven.apache.org/maven2/info/picocli/picocli/4.6.2/picocli-4.6.2.pom Downloaded from central: https://repo.maven.apache.org/maven2/info/picocli/picocli/4.6.2/picocli-4.6.2.pom (1.4 kB at 43 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/reflections/reflections/0.10.2/reflections-0.10.2.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/reflections/reflections/0.10.2/reflections-0.10.2.pom (9.3 kB at 194 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/javassist/javassist/3.28.0-GA/javassist-3.28.0-GA.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/javassist/javassist/3.28.0-GA/javassist-3.28.0-GA.pom (11 kB at 309 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.32/slf4j-api-1.7.32.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-api/1.7.32/slf4j-api-1.7.32.pom (3.8 kB at 128 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.32/slf4j-parent-1.7.32.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/slf4j/slf4j-parent/1.7.32/slf4j-parent-1.7.32.pom (14 kB at 418 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/net/sf/saxon/Saxon-HE/10.6/Saxon-HE-10.6.pom Downloaded from central: https://repo.maven.apache.org/maven2/net/sf/saxon/Saxon-HE/10.6/Saxon-HE-10.6.pom (2.6 kB at 84 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-kotlin/2.15.2/jackson-module-kotlin-2.15.2.pom Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-kotlin/2.15.2/jackson-module-kotlin-2.15.2.pom (11 kB at 332 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-reflect/1.8.10/kotlin-reflect-1.8.10.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-reflect/1.8.10/kotlin-reflect-1.8.10.pom (1.4 kB at 44 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/micrometer/prometheus/prometheus-rsocket-client/1.5.2/prometheus-rsocket-client-1.5.2.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/micrometer/prometheus/prometheus-rsocket-client/1.5.2/prometheus-rsocket-client-1.5.2.pom (3.5 kB at 97 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/rsocket/rsocket-core/1.1.4/rsocket-core-1.1.4.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/rsocket/rsocket-core/1.1.4/rsocket-core-1.1.4.pom (1.9 kB at 60 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.94.Final/netty-buffer-4.1.94.Final.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.94.Final/netty-buffer-4.1.94.Final.pom (1.6 kB at 49 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-parent/4.1.94.Final/netty-parent-4.1.94.Final.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-parent/4.1.94.Final/netty-parent-4.1.94.Final.pom (83 kB at 1.6 MB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.94.Final/netty-common-4.1.94.Final.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.94.Final/netty-common-4.1.94.Final.pom (12 kB at 357 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/projectreactor/reactor-core/3.4.29/reactor-core-3.4.29.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/projectreactor/reactor-core/3.4.29/reactor-core-3.4.29.pom (2.1 kB at 67 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.pom (1.1 kB at 36 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-registry-prometheus/1.9.12/micrometer-registry-prometheus-1.9.12.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-registry-prometheus/1.9.12/micrometer-registry-prometheus-1.9.12.pom (3.5 kB at 105 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-core/1.9.12/micrometer-core-1.9.12.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-core/1.9.12/micrometer-core-1.9.12.pom (8.6 kB at 260 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/prometheus/simpleclient_common/0.15.0/simpleclient_common-0.15.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/prometheus/simpleclient_common/0.15.0/simpleclient_common-0.15.0.pom (1.6 kB at 46 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/prometheus/parent/0.15.0/parent-0.15.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/prometheus/parent/0.15.0/parent-0.15.0.pom (12 kB at 367 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/prometheus/simpleclient/0.15.0/simpleclient-0.15.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/prometheus/simpleclient/0.15.0/simpleclient-0.15.0.pom (2.2 kB at 71 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/prometheus/simpleclient_tracer_otel/0.15.0/simpleclient_tracer_otel-0.15.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/prometheus/simpleclient_tracer_otel/0.15.0/simpleclient_tracer_otel-0.15.0.pom (1.5 kB at 49 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/prometheus/simpleclient_tracer/0.15.0/simpleclient_tracer-0.15.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/prometheus/simpleclient_tracer/0.15.0/simpleclient_tracer-0.15.0.pom (1.2 kB at 39 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/prometheus/simpleclient_tracer_common/0.15.0/simpleclient_tracer_common-0.15.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/prometheus/simpleclient_tracer_common/0.15.0/simpleclient_tracer_common-0.15.0.pom (839 B at 27 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/prometheus/simpleclient_tracer_otel_agent/0.15.0/simpleclient_tracer_otel_agent-0.15.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/prometheus/simpleclient_tracer_otel_agent/0.15.0/simpleclient_tracer_otel_agent-0.15.0.pom (2.3 kB at 76 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-core/1.11.4/micrometer-core-1.11.4.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-core/1.11.4/micrometer-core-1.11.4.pom (10 kB at 339 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-commons/1.11.4/micrometer-commons-1.11.4.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-commons/1.11.4/micrometer-commons-1.11.4.pom (3.4 kB at 115 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-observation/1.11.4/micrometer-observation-1.11.4.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-observation/1.11.4/micrometer-observation-1.11.4.pom (3.9 kB at 129 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/rsocket/rsocket-transport-netty/1.1.4/rsocket-transport-netty-1.1.4.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/rsocket/rsocket-transport-netty/1.1.4/rsocket-transport-netty-1.1.4.pom (2.1 kB at 66 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/projectreactor/netty/reactor-netty-core/1.0.32/reactor-netty-core-1.0.32.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/projectreactor/netty/reactor-netty-core/1.0.32/reactor-netty-core-1.0.32.pom (3.9 kB at 122 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.94.Final/netty-handler-4.1.94.Final.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.94.Final/netty-handler-4.1.94.Final.pom (4.6 kB at 144 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.94.Final/netty-resolver-4.1.94.Final.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.94.Final/netty-resolver-4.1.94.Final.pom (1.6 kB at 42 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.94.Final/netty-transport-4.1.94.Final.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.94.Final/netty-transport-4.1.94.Final.pom (2.2 kB at 60 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.94.Final/netty-transport-native-unix-common-4.1.94.Final.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.94.Final/netty-transport-native-unix-common-4.1.94.Final.pom (29 kB at 700 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.94.Final/netty-codec-4.1.94.Final.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.94.Final/netty-codec-4.1.94.Final.pom (5.3 kB at 166 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler-proxy/4.1.94.Final/netty-handler-proxy-4.1.94.Final.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler-proxy/4.1.94.Final/netty-handler-proxy-4.1.94.Final.pom (3.5 kB at 111 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-socks/4.1.94.Final/netty-codec-socks-4.1.94.Final.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-socks/4.1.94.Final/netty-codec-socks-4.1.94.Final.pom (2.5 kB at 82 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-http/4.1.94.Final/netty-codec-http-4.1.94.Final.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-http/4.1.94.Final/netty-codec-http-4.1.94.Final.pom (4.2 kB at 123 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver-dns/4.1.94.Final/netty-resolver-dns-4.1.94.Final.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver-dns/4.1.94.Final/netty-resolver-dns-4.1.94.Final.pom (3.7 kB at 93 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-dns/4.1.94.Final/netty-codec-dns-4.1.94.Final.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-dns/4.1.94.Final/netty-codec-dns-4.1.94.Final.pom (2.7 kB at 67 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver-dns-native-macos/4.1.94.Final/netty-resolver-dns-native-macos-4.1.94.Final.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver-dns-native-macos/4.1.94.Final/netty-resolver-dns-native-macos-4.1.94.Final.pom (18 kB at 450 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver-dns-classes-macos/4.1.94.Final/netty-resolver-dns-classes-macos-4.1.94.Final.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver-dns-classes-macos/4.1.94.Final/netty-resolver-dns-classes-macos-4.1.94.Final.pom (2.0 kB at 64 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.94.Final/netty-transport-native-epoll-4.1.94.Final.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.94.Final/netty-transport-native-epoll-4.1.94.Final.pom (19 kB at 436 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-classes-epoll/4.1.94.Final/netty-transport-classes-epoll-4.1.94.Final.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-classes-epoll/4.1.94.Final/netty-transport-classes-epoll-4.1.94.Final.pom (2.1 kB at 65 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/projectreactor/netty/reactor-netty-http/1.0.32/reactor-netty-http-1.0.32.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/projectreactor/netty/reactor-netty-http/1.0.32/reactor-netty-http-1.0.32.pom (4.3 kB at 138 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-http2/4.1.94.Final/netty-codec-http2-4.1.94.Final.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-http2/4.1.94.Final/netty-codec-http2-4.1.94.Final.pom (5.0 kB at 147 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/rocksdb/rocksdbjni/8.5.3/rocksdbjni-8.5.3.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/rocksdb/rocksdbjni/8.5.3/rocksdbjni-8.5.3.pom (7.4 kB at 217 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.1/plexus-interactivity-api-1.1.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.1/plexus-interactivity-api-1.1.pom (823 B at 21 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity/1.1/plexus-interactivity-1.1.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity/1.1/plexus-interactivity-1.1.pom (1.7 kB at 58 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/6.5/plexus-components-6.5.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-components/6.5/plexus-components-6.5.pom (2.7 kB at 82 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/6.5/plexus-6.5.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus/6.5/plexus-6.5.pom (26 kB at 714 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/3.3.1/maven-filtering-3.3.1.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/3.3.1/maven-filtering-3.3.1.pom (6.0 kB at 201 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.26/plexus-interpolation-1.26.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.26/plexus-interpolation-1.26.pom (2.7 kB at 83 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-java/8.6.0/rewrite-java-8.6.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-java/8.6.0/rewrite-java-8.6.0.jar (1.7 MB at 2.6 MB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-parameter-names/2.15.2/jackson-module-parameter-names-2.15.2.jar Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-core/8.6.0/rewrite-core-8.6.0.jar Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/tools/java-object-diff/1.0.1/java-object-diff-1.0.1.jar Downloading from central: https://repo.maven.apache.org/maven2/io/quarkus/gizmo/gizmo/1.0.11.Final/gizmo-1.0.11.Final.jar Downloading from central: https://repo.maven.apache.org/maven2/org/jboss/jandex/2.4.2.Final/jandex-2.4.2.Final.jar Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-parameter-names/2.15.2/jackson-module-parameter-names-2.15.2.jar (10 kB at 25 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna-platform/5.13.0/jna-platform-5.13.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/tools/java-object-diff/1.0.1/java-object-diff-1.0.1.jar (164 kB at 217 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.13.0/jna-5.13.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/io/quarkus/gizmo/gizmo/1.0.11.Final/gizmo-1.0.11.Final.jar (101 kB at 105 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.24.0/commons-compress-1.24.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/jboss/jandex/2.4.2.Final/jandex-2.4.2.Final.jar (231 kB at 194 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/antlr4/4.11.1/antlr4-4.11.1.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-core/8.6.0/rewrite-core-8.6.0.jar (3.3 MB at 1.4 MB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/antlr4-runtime/4.11.1/antlr4-runtime-4.11.1.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/antlr4-runtime/4.11.1/antlr4-runtime-4.11.1.jar (324 kB at 119 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/antlr-runtime/3.5.3/antlr-runtime-3.5.3.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/antlr-runtime/3.5.3/antlr-runtime-3.5.3.jar (173 kB at 59 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/antlr/ST4/4.3.4/ST4-4.3.4.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-compress/1.24.0/commons-compress-1.24.0.jar (1.1 MB at 353 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/abego/treelayout/org.abego.treelayout.core/1.0.3/org.abego.treelayout.core-1.0.3.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/ST4/4.3.4/ST4-4.3.4.jar (251 kB at 79 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/ibm/icu/icu4j/71.1/icu4j-71.1.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/abego/treelayout/org.abego.treelayout.core/1.0.3/org.abego.treelayout.core-1.0.3.jar (27 kB at 8.3 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.13.0/commons-lang3-3.13.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna-platform/5.13.0/jna-platform-5.13.0.jar (1.4 MB at 419 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/github/classgraph/classgraph/4.8.162/classgraph-4.8.162.jar Downloaded from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.13.0/jna-5.13.0.jar (1.9 MB at 535 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.1.10.1/snappy-java-1.1.10.1.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/antlr/antlr4/4.11.1/antlr4-4.11.1.jar (2.6 MB at 668 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/github/fastfilter/fastfilter/1.0.2/fastfilter-1.0.2.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/commons/commons-lang3/3.13.0/commons-lang3-3.13.0.jar (632 kB at 158 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-util/9.5/asm-util-9.5.jar Downloaded from central: https://repo.maven.apache.org/maven2/io/github/classgraph/classgraph/4.8.162/classgraph-4.8.162.jar (568 kB at 138 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/9.5/asm-analysis-9.5.jar Downloaded from central: https://repo.maven.apache.org/maven2/io/github/fastfilter/fastfilter/1.0.2/fastfilter-1.0.2.jar (85 kB at 21 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-java-8/8.6.0/rewrite-java-8-8.6.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-util/9.5/asm-util-9.5.jar (91 kB at 22 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-java-11/8.6.0/rewrite-java-11-8.6.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/ow2/asm/asm-analysis/9.5/asm-analysis-9.5.jar (34 kB at 7.9 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-java-17/8.6.0/rewrite-java-17-8.6.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-java-8/8.6.0/rewrite-java-8-8.6.0.jar (100 kB at 23 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-xml/8.6.0/rewrite-xml-8.6.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-java-11/8.6.0/rewrite-java-11-8.6.0.jar (102 kB at 23 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-maven/8.6.0/rewrite-maven-8.6.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-java-17/8.6.0/rewrite-java-17-8.6.0.jar (105 kB at 23 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/github/ben-manes/caffeine/caffeine/2.9.3/caffeine-2.9.3.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-xml/8.6.0/rewrite-xml-8.6.0.jar (220 kB at 48 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/3.19.0/checker-qual-3.19.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/xerial/snappy/snappy-java/1.1.10.1/snappy-java-1.1.10.1.jar (1.8 MB at 363 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.10.0/error_prone_annotations-2.10.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/checkerframework/checker-qual/3.19.0/checker-qual-3.19.0.jar (222 kB at 45 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/github/resilience4j/resilience4j-retry/1.7.0/resilience4j-retry-1.7.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/com/google/errorprone/error_prone_annotations/2.10.0/error_prone_annotations-2.10.0.jar (16 kB at 3.2 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/vavr/vavr/0.10.2/vavr-0.10.2.jar Downloaded from central: https://repo.maven.apache.org/maven2/io/github/resilience4j/resilience4j-retry/1.7.0/resilience4j-retry-1.7.0.jar (49 kB at 9.5 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/vavr/vavr-match/0.10.2/vavr-match-0.10.2.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-maven/8.6.0/rewrite-maven-8.6.0.jar (652 kB at 127 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/github/resilience4j/resilience4j-core/1.7.0/resilience4j-core-1.7.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/io/vavr/vavr-match/0.10.2/vavr-match-0.10.2.jar (3.0 kB at 578 B/s) Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-xml/2.15.2/jackson-dataformat-xml-2.15.2.jar Downloaded from central: https://repo.maven.apache.org/maven2/io/github/resilience4j/resilience4j-core/1.7.0/resilience4j-core-1.7.0.jar (66 kB at 12 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.jar Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-xml/2.15.2/jackson-dataformat-xml-2.15.2.jar (126 kB at 22 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/6.5.1/woodstox-core-6.5.1.jar Downloaded from central: https://repo.maven.apache.org/maven2/com/github/ben-manes/caffeine/caffeine/2.9.3/caffeine-2.9.3.jar (912 kB at 162 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-smile/2.15.2/jackson-dataformat-smile-2.15.2.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/woodstox/stax2-api/4.2.1/stax2-api-4.2.1.jar (196 kB at 34 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.15.2/jackson-module-jaxb-annotations-2.15.2.jar Downloaded from central: https://repo.maven.apache.org/maven2/io/vavr/vavr/0.10.2/vavr-0.10.2.jar (898 kB at 153 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/1.2.2/jakarta.activation-api-1.2.2.jar Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-smile/2.15.2/jackson-dataformat-smile-2.15.2.jar (98 kB at 17 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.15.2/jackson-datatype-jdk8-2.15.2.jar Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.15.2/jackson-module-jaxb-annotations-2.15.2.jar (37 kB at 6.1 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-hcl/8.6.0/rewrite-hcl-8.6.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/jakarta/activation/jakarta.activation-api/1.2.2/jakarta.activation-api-1.2.2.jar (47 kB at 7.7 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-json/8.6.0/rewrite-json-8.6.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.15.2/jackson-datatype-jdk8-2.15.2.jar (36 kB at 5.9 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-properties/8.6.0/rewrite-properties-8.6.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-json/8.6.0/rewrite-json-8.6.0.jar (157 kB at 25 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-protobuf/8.6.0/rewrite-protobuf-8.6.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-properties/8.6.0/rewrite-properties-8.6.0.jar (53 kB at 8.3 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-yaml/8.6.0/rewrite-yaml-8.6.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-hcl/8.6.0/rewrite-hcl-8.6.0.jar (403 kB at 62 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/yaml/snakeyaml/2.2/snakeyaml-2.2.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-protobuf/8.6.0/rewrite-protobuf-8.6.0.jar (226 kB at 34 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-python/1.1.1/rewrite-python-1.1.1.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-yaml/8.6.0/rewrite-yaml-8.6.0.jar (236 kB at 34 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.8.10/kotlin-stdlib-jdk8-1.8.10.jar Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/woodstox/woodstox-core/6.5.1/woodstox-core-6.5.1.jar (1.6 MB at 225 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/1.8.10/kotlin-stdlib-1.8.10.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/yaml/snakeyaml/2.2/snakeyaml-2.2.jar (334 kB at 47 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.8.10/kotlin-stdlib-jdk7-1.8.10.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-jdk8/1.8.10/kotlin-stdlib-jdk8-1.8.10.jar (969 B at 136 B/s) Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutines-core-jvm/1.5.0/kotlinx-coroutines-core-jvm-1.5.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-jdk7/1.8.10/kotlin-stdlib-jdk7-1.8.10.jar (963 B at 132 B/s) Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-common/1.8.10/kotlin-stdlib-common-1.8.10.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-common/1.8.10/kotlin-stdlib-common-1.8.10.jar (217 kB at 28 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/it/unimi/dsi/fastutil/8.5.2/fastutil-8.5.2.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/1.8.10/kotlin-stdlib-1.8.10.jar (1.6 MB at 184 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/31.1-jre/guava-31.1-jre.jar Downloaded from central: https://repo.maven.apache.org/maven2/com/ibm/icu/icu4j/71.1/icu4j-71.1.jar (14 MB at 1.5 MB/s) Downloading from central: https://repo.maven.apache.org/maven2/one/util/streamex/0.8.1/streamex-0.8.1.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlinx/kotlinx-coroutines-core-jvm/1.5.0/kotlinx-coroutines-core-jvm-1.5.0.jar (1.5 MB at 160 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/puppycrawl/tools/checkstyle/9.3/checkstyle-9.3.jar Downloaded from central: https://repo.maven.apache.org/maven2/one/util/streamex/0.8.1/streamex-0.8.1.jar (315 kB at 33 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/info/picocli/picocli/4.6.2/picocli-4.6.2.jar Downloaded from central: https://repo.maven.apache.org/maven2/info/picocli/picocli/4.6.2/picocli-4.6.2.jar (403 kB at 41 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/reflections/reflections/0.10.2/reflections-0.10.2.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-python/1.1.1/rewrite-python-1.1.1.jar (4.1 MB at 415 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/javassist/javassist/3.28.0-GA/javassist-3.28.0-GA.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/reflections/reflections/0.10.2/reflections-0.10.2.jar (130 kB at 13 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/net/sf/saxon/Saxon-HE/10.6/Saxon-HE-10.6.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/javassist/javassist/3.28.0-GA/javassist-3.28.0-GA.jar (852 kB at 76 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-kotlin/2.15.2/jackson-module-kotlin-2.15.2.jar Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/31.1-jre/guava-31.1-jre.jar (3.0 MB at 259 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-reflect/1.8.10/kotlin-reflect-1.8.10.jar Downloaded from central: https://repo.maven.apache.org/maven2/com/puppycrawl/tools/checkstyle/9.3/checkstyle-9.3.jar (2.0 MB at 172 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/micrometer/prometheus/prometheus-rsocket-client/1.5.2/prometheus-rsocket-client-1.5.2.jar Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-kotlin/2.15.2/jackson-module-kotlin-2.15.2.jar (154 kB at 13 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-registry-prometheus/1.9.12/micrometer-registry-prometheus-1.9.12.jar Downloaded from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-registry-prometheus/1.9.12/micrometer-registry-prometheus-1.9.12.jar (41 kB at 3.4 kB/s) Downloaded from central: https://repo.maven.apache.org/maven2/io/micrometer/prometheus/prometheus-rsocket-client/1.5.2/prometheus-rsocket-client-1.5.2.jar (18 kB at 1.5 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/prometheus/simpleclient_common/0.15.0/simpleclient_common-0.15.0.jar Downloading from central: https://repo.maven.apache.org/maven2/io/prometheus/simpleclient/0.15.0/simpleclient-0.15.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/io/prometheus/simpleclient_common/0.15.0/simpleclient_common-0.15.0.jar (8.0 kB at 652 B/s) Downloading from central: https://repo.maven.apache.org/maven2/io/prometheus/simpleclient_tracer_otel/0.15.0/simpleclient_tracer_otel-0.15.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/io/prometheus/simpleclient/0.15.0/simpleclient-0.15.0.jar (89 kB at 7.2 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/prometheus/simpleclient_tracer_common/0.15.0/simpleclient_tracer_common-0.15.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/io/prometheus/simpleclient_tracer_otel/0.15.0/simpleclient_tracer_otel-0.15.0.jar (4.3 kB at 339 B/s) Downloading from central: https://repo.maven.apache.org/maven2/io/prometheus/simpleclient_tracer_otel_agent/0.15.0/simpleclient_tracer_otel_agent-0.15.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/io/prometheus/simpleclient_tracer_common/0.15.0/simpleclient_tracer_common-0.15.0.jar (3.4 kB at 265 B/s) Downloading from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-core/1.11.4/micrometer-core-1.11.4.jar Downloaded from central: https://repo.maven.apache.org/maven2/io/prometheus/simpleclient_tracer_otel_agent/0.15.0/simpleclient_tracer_otel_agent-0.15.0.jar (4.5 kB at 352 B/s) Downloading from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-commons/1.11.4/micrometer-commons-1.11.4.jar Downloaded from central: https://repo.maven.apache.org/maven2/net/sf/saxon/Saxon-HE/10.6/Saxon-HE-10.6.jar (5.8 MB at 444 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-observation/1.11.4/micrometer-observation-1.11.4.jar Downloaded from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-commons/1.11.4/micrometer-commons-1.11.4.jar (47 kB at 3.6 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/hdrhistogram/HdrHistogram/2.1.12/HdrHistogram-2.1.12.jar Downloaded from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-observation/1.11.4/micrometer-observation-1.11.4.jar (71 kB at 5.4 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-reflect/1.8.10/kotlin-reflect-1.8.10.jar (3.2 MB at 238 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/rsocket/rsocket-transport-netty/1.1.4/rsocket-transport-netty-1.1.4.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/latencyutils/LatencyUtils/2.0.3/LatencyUtils-2.0.3.jar (30 kB at 2.2 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/projectreactor/netty/reactor-netty-core/1.0.32/reactor-netty-core-1.0.32.jar Downloaded from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-core/1.11.4/micrometer-core-1.11.4.jar (867 kB at 65 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.94.Final/netty-handler-4.1.94.Final.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/hdrhistogram/HdrHistogram/2.1.12/HdrHistogram-2.1.12.jar (174 kB at 13 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.94.Final/netty-resolver-4.1.94.Final.jar Downloaded from central: https://repo.maven.apache.org/maven2/io/rsocket/rsocket-transport-netty/1.1.4/rsocket-transport-netty-1.1.4.jar (23 kB at 1.7 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.94.Final/netty-transport-4.1.94.Final.jar Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver/4.1.94.Final/netty-resolver-4.1.94.Final.jar (38 kB at 2.8 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.94.Final/netty-transport-native-unix-common-4.1.94.Final.jar Downloaded from central: https://repo.maven.apache.org/maven2/io/projectreactor/netty/reactor-netty-core/1.0.32/reactor-netty-core-1.0.32.jar (412 kB at 30 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.94.Final/netty-codec-4.1.94.Final.jar Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport/4.1.94.Final/netty-transport-4.1.94.Final.jar (489 kB at 36 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler-proxy/4.1.94.Final/netty-handler-proxy-4.1.94.Final.jar Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-unix-common/4.1.94.Final/netty-transport-native-unix-common-4.1.94.Final.jar (44 kB at 3.2 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-socks/4.1.94.Final/netty-codec-socks-4.1.94.Final.jar Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler/4.1.94.Final/netty-handler-4.1.94.Final.jar (555 kB at 40 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver-dns/4.1.94.Final/netty-resolver-dns-4.1.94.Final.jar Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-handler-proxy/4.1.94.Final/netty-handler-proxy-4.1.94.Final.jar (25 kB at 1.8 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-dns/4.1.94.Final/netty-codec-dns-4.1.94.Final.jar Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-socks/4.1.94.Final/netty-codec-socks-4.1.94.Final.jar (121 kB at 8.6 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver-dns-native-macos/4.1.94.Final/netty-resolver-dns-native-macos-4.1.94.Final-osx-x86_64.jar Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec/4.1.94.Final/netty-codec-4.1.94.Final.jar (345 kB at 25 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver-dns-classes-macos/4.1.94.Final/netty-resolver-dns-classes-macos-4.1.94.Final.jar Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver-dns/4.1.94.Final/netty-resolver-dns-4.1.94.Final.jar (171 kB at 12 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.94.Final/netty-transport-native-epoll-4.1.94.Final-linux-x86_64.jar Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-dns/4.1.94.Final/netty-codec-dns-4.1.94.Final.jar (67 kB at 4.8 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-classes-epoll/4.1.94.Final/netty-transport-classes-epoll-4.1.94.Final.jar Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver-dns-native-macos/4.1.94.Final/netty-resolver-dns-native-macos-4.1.94.Final-osx-x86_64.jar (19 kB at 1.3 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/projectreactor/netty/reactor-netty-http/1.0.32/reactor-netty-http-1.0.32.jar Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-resolver-dns-classes-macos/4.1.94.Final/netty-resolver-dns-classes-macos-4.1.94.Final.jar (9.1 kB at 644 B/s) Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-http/4.1.94.Final/netty-codec-http-4.1.94.Final.jar Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-native-epoll/4.1.94.Final/netty-transport-native-epoll-4.1.94.Final-linux-x86_64.jar (38 kB at 2.7 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-http2/4.1.94.Final/netty-codec-http2-4.1.94.Final.jar Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-transport-classes-epoll/4.1.94.Final/netty-transport-classes-epoll-4.1.94.Final.jar (145 kB at 10 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/rsocket/rsocket-core/1.1.4/rsocket-core-1.1.4.jar Downloaded from central: https://repo.maven.apache.org/maven2/io/projectreactor/netty/reactor-netty-http/1.0.32/reactor-netty-http-1.0.32.jar (363 kB at 25 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.94.Final/netty-buffer-4.1.94.Final.jar Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-http/4.1.94.Final/netty-codec-http-4.1.94.Final.jar (657 kB at 45 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.94.Final/netty-common-4.1.94.Final.jar Downloaded from central: https://repo.maven.apache.org/maven2/io/rsocket/rsocket-core/1.1.4/rsocket-core-1.1.4.jar (434 kB at 30 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/projectreactor/reactor-core/3.4.29/reactor-core-3.4.29.jar Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-codec-http2/4.1.94.Final/netty-codec-http2-4.1.94.Final.jar (483 kB at 33 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.jar Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-buffer/4.1.94.Final/netty-buffer-4.1.94.Final.jar (307 kB at 21 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/rocksdb/rocksdbjni/8.5.3/rocksdbjni-8.5.3.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/reactivestreams/reactive-streams/1.0.4/reactive-streams-1.0.4.jar (12 kB at 794 B/s) Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.1/plexus-interactivity-api-1.1.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interactivity-api/1.1/plexus-interactivity-api-1.1.jar (9.4 kB at 637 B/s) Downloading from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/3.3.1/maven-filtering-3.3.1.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/apache/maven/shared/maven-filtering/3.3.1/maven-filtering-3.3.1.jar (55 kB at 3.7 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.26/plexus-interpolation-1.26.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/plexus/plexus-interpolation/1.26/plexus-interpolation-1.26.jar (85 kB at 5.6 kB/s) Downloaded from central: https://repo.maven.apache.org/maven2/io/netty/netty-common/4.1.94.Final/netty-common-4.1.94.Final.jar (659 kB at 43 kB/s) Downloaded from central: https://repo.maven.apache.org/maven2/io/projectreactor/reactor-core/3.4.29/reactor-core-3.4.29.jar (1.7 MB at 112 kB/s) Downloaded from central: https://repo.maven.apache.org/maven2/it/unimi/dsi/fastutil/8.5.2/fastutil-8.5.2.jar (24 MB at 1.0 MB/s) Downloaded from central: https://repo.maven.apache.org/maven2/org/rocksdb/rocksdbjni/8.5.3/rocksdbjni-8.5.3.jar (60 MB at 2.2 MB/s) [INFO] Using active recipe(s) [org.openrewrite.java.spring.boot2.UpgradeSpringBoot_2_2] [INFO] Using active styles(s) [] Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/recipe/rewrite-spring/maven-metadata.xml Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/recipe/rewrite-spring/maven-metadata.xml (2.4 kB at 79 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/recipe/rewrite-spring/5.0.10/rewrite-spring-5.0.10.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/recipe/rewrite-spring/5.0.10/rewrite-spring-5.0.10.pom (5.5 kB at 191 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-java/8.5.0/rewrite-java-8.5.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-java/8.5.0/rewrite-java-8.5.0.pom (5.6 kB at 191 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-core/8.5.0/rewrite-core-8.5.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-core/8.5.0/rewrite-core-8.5.0.pom (5.1 kB at 170 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-yaml/8.5.0/rewrite-yaml-8.5.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-yaml/8.5.0/rewrite-yaml-8.5.0.pom (4.1 kB at 142 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-xml/8.5.0/rewrite-xml-8.5.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-xml/8.5.0/rewrite-xml-8.5.0.pom (3.9 kB at 131 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-properties/8.5.0/rewrite-properties-8.5.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-properties/8.5.0/rewrite-properties-8.5.0.pom (3.8 kB at 122 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-gradle/8.5.0/rewrite-gradle-8.5.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-gradle/8.5.0/rewrite-gradle-8.5.0.pom (4.3 kB at 143 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-groovy/8.5.0/rewrite-groovy-8.5.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-groovy/8.5.0/rewrite-groovy-8.5.0.pom (4.0 kB at 132 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-maven/8.5.0/rewrite-maven-8.5.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-maven/8.5.0/rewrite-maven-8.5.0.pom (5.7 kB at 190 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/gradle/tooling/model/1.2.0/model-1.2.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/gradle/tooling/model/1.2.0/model-1.2.0.pom (3.4 kB at 112 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/recipe/rewrite-java-dependencies/1.0.9/rewrite-java-dependencies-1.0.9.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/recipe/rewrite-java-dependencies/1.0.9/rewrite-java-dependencies-1.0.9.pom (5.4 kB at 174 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/groovy/groovy/3.0.19/groovy-3.0.19.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/groovy/groovy/3.0.19/groovy-3.0.19.pom (24 kB at 718 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/32.1.2-jre/guava-32.1.2-jre.pom Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/32.1.2-jre/guava-32.1.2-jre.pom (13 kB at 401 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/32.1.2-jre/guava-parent-32.1.2-jre.pom Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/32.1.2-jre/guava-parent-32.1.2-jre.pom (20 kB at 642 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-csv/2.15.2/jackson-dataformat-csv-2.15.2.pom Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-csv/2.15.2/jackson-dataformat-csv-2.15.2.pom (3.0 kB at 95 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.15.2/jackson-datatype-jsr310-2.15.2.pom Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.15.2/jackson-datatype-jsr310-2.15.2.pom (4.9 kB at 164 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-java-8/8.5.0/rewrite-java-8-8.5.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-java-8/8.5.0/rewrite-java-8-8.5.0.pom (3.7 kB at 125 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-java-11/8.5.0/rewrite-java-11-8.5.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-java-11/8.5.0/rewrite-java-11-8.5.0.pom (4.1 kB at 128 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-java-17/8.5.0/rewrite-java-17-8.5.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-java-17/8.5.0/rewrite-java-17-8.5.0.pom (4.1 kB at 128 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/recipe/rewrite-hibernate/1.0.3/rewrite-hibernate-1.0.3.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/recipe/rewrite-hibernate/1.0.3/rewrite-hibernate-1.0.3.pom (4.2 kB at 142 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-bom/8.4.0/rewrite-bom-8.4.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-bom/8.4.0/rewrite-bom-8.4.0.pom (5.6 kB at 185 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/recipe/rewrite-recipe-bom/2.2.0/rewrite-recipe-bom-2.2.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/recipe/rewrite-recipe-bom/2.2.0/rewrite-recipe-bom-2.2.0.pom (7.3 kB at 235 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-bom/8.2.0/rewrite-bom-8.2.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-bom/8.2.0/rewrite-bom-8.2.0.pom (5.6 kB at 185 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-java/8.4.0/rewrite-java-8.4.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-java/8.4.0/rewrite-java-8.4.0.pom (5.5 kB at 179 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-core/8.4.0/rewrite-core-8.4.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-core/8.4.0/rewrite-core-8.4.0.pom (5.1 kB at 159 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-core/1.9.14/micrometer-core-1.9.14.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-core/1.9.14/micrometer-core-1.9.14.pom (8.6 kB at 276 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/yaml/snakeyaml/2.1/snakeyaml-2.1.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/yaml/snakeyaml/2.1/snakeyaml-2.1.pom (21 kB at 590 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-yaml/8.4.0/rewrite-yaml-8.4.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-yaml/8.4.0/rewrite-yaml-8.4.0.pom (4.1 kB at 79 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-xml/8.4.0/rewrite-xml-8.4.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-xml/8.4.0/rewrite-xml-8.4.0.pom (3.9 kB at 85 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/recipe/rewrite-migrate-java/2.0.9/rewrite-migrate-java-2.0.9.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/recipe/rewrite-migrate-java/2.0.9/rewrite-migrate-java-2.0.9.pom (5.4 kB at 158 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.15.0/jackson-bom-2.15.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-bom/2.15.0/jackson-bom-2.15.0.pom (18 kB at 562 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-bom/8.1.13/rewrite-bom-8.1.13.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-bom/8.1.13/rewrite-bom-8.1.13.pom (5.6 kB at 193 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-java/8.1.13/rewrite-java-8.1.13.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-java/8.1.13/rewrite-java-8.1.13.pom (5.6 kB at 174 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-core/8.1.13/rewrite-core-8.1.13.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-core/8.1.13/rewrite-core-8.1.13.pom (5.1 kB at 165 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.15.0/jackson-databind-2.15.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-databind/2.15.0/jackson-databind-2.15.0.pom (19 kB at 588 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.15.0/jackson-base-2.15.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/jackson-base/2.15.0/jackson-base-2.15.0.pom (11 kB at 348 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.15.0/jackson-annotations-2.15.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-annotations/2.15.0/jackson-annotations-2.15.0.pom (7.1 kB at 221 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.15.0/jackson-core-2.15.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/core/jackson-core/2.15.0/jackson-core-2.15.0.pom (8.6 kB at 269 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-smile/2.15.0/jackson-dataformat-smile-2.15.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-smile/2.15.0/jackson-dataformat-smile-2.15.0.pom (3.4 kB at 109 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformats-binary/2.15.0/jackson-dataformats-binary-2.15.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformats-binary/2.15.0/jackson-dataformats-binary-2.15.0.pom (3.8 kB at 119 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-parameter-names/2.15.0/jackson-module-parameter-names-2.15.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-parameter-names/2.15.0/jackson-module-parameter-names-2.15.0.pom (4.4 kB at 141 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-modules-java8/2.15.0/jackson-modules-java8-2.15.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-modules-java8/2.15.0/jackson-modules-java8-2.15.0.pom (3.1 kB at 97 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-core/1.9.13/micrometer-core-1.9.13.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-core/1.9.13/micrometer-core-1.9.13.pom (8.6 kB at 225 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/io/github/classgraph/classgraph/4.8.161/classgraph-4.8.161.pom Downloaded from central: https://repo.maven.apache.org/maven2/io/github/classgraph/classgraph/4.8.161/classgraph-4.8.161.pom (30 kB at 810 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-yaml/8.1.13/rewrite-yaml-8.1.13.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-yaml/8.1.13/rewrite-yaml-8.1.13.pom (4.1 kB at 128 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-xml/8.1.13/rewrite-xml-8.1.13.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-xml/8.1.13/rewrite-xml-8.1.13.pom (3.9 kB at 106 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-maven/8.1.13/rewrite-maven-8.1.13.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-maven/8.1.13/rewrite-maven-8.1.13.pom (5.7 kB at 173 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-xml/2.15.0/jackson-dataformat-xml-2.15.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-xml/2.15.0/jackson-dataformat-xml-2.15.0.pom (7.3 kB at 193 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.15.0/jackson-module-jaxb-annotations-2.15.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-module-jaxb-annotations/2.15.0/jackson-module-jaxb-annotations-2.15.0.pom (3.8 kB at 100 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-modules-base/2.15.0/jackson-modules-base-2.15.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/module/jackson-modules-base/2.15.0/jackson-modules-base-2.15.0.pom (3.7 kB at 98 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.15.0/jackson-datatype-jdk8-2.15.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jdk8/2.15.0/jackson-datatype-jdk8-2.15.0.pom (2.6 kB at 76 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-properties/8.1.13/rewrite-properties-8.1.13.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-properties/8.1.13/rewrite-properties-8.1.13.pom (3.8 kB at 108 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-gradle/8.1.13/rewrite-gradle-8.1.13.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-gradle/8.1.13/rewrite-gradle-8.1.13.pom (4.3 kB at 116 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-groovy/8.1.13/rewrite-groovy-8.1.13.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-groovy/8.1.13/rewrite-groovy-8.1.13.pom (4.0 kB at 124 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/gradle/tooling/model/1.1.2/model-1.1.2.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/gradle/tooling/model/1.1.2/model-1.1.2.pom (3.4 kB at 105 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/recipe/rewrite-github-actions/2.0.3/rewrite-github-actions-2.0.3.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/recipe/rewrite-github-actions/2.0.3/rewrite-github-actions-2.0.3.pom (4.2 kB at 132 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-yaml/8.1.10/rewrite-yaml-8.1.10.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-yaml/8.1.10/rewrite-yaml-8.1.10.pom (4.1 kB at 132 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-core/8.1.10/rewrite-core-8.1.10.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-core/8.1.10/rewrite-core-8.1.10.pom (5.1 kB at 150 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/recipe/rewrite-java-dependencies/1.0.6/rewrite-java-dependencies-1.0.6.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/recipe/rewrite-java-dependencies/1.0.6/rewrite-java-dependencies-1.0.6.pom (5.4 kB at 139 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/codehaus/groovy/groovy/3.0.18/groovy-3.0.18.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/codehaus/groovy/groovy/3.0.18/groovy-3.0.18.pom (24 kB at 640 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/32.1.1-jre/guava-32.1.1-jre.pom Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/32.1.1-jre/guava-32.1.1-jre.pom (13 kB at 413 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/32.1.1-jre/guava-parent-32.1.1-jre.pom Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava-parent/32.1.1-jre/guava-parent-32.1.1-jre.pom (22 kB at 540 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-csv/2.15.0/jackson-dataformat-csv-2.15.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-csv/2.15.0/jackson-dataformat-csv-2.15.0.pom (3.0 kB at 95 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformats-text/2.15.0/jackson-dataformats-text-2.15.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformats-text/2.15.0/jackson-dataformats-text-2.15.0.pom (3.5 kB at 116 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.15.0/jackson-datatype-jsr310-2.15.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.15.0/jackson-datatype-jsr310-2.15.0.pom (4.9 kB at 169 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-java-8/8.1.13/rewrite-java-8-8.1.13.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-java-8/8.1.13/rewrite-java-8-8.1.13.pom (3.7 kB at 113 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-java-11/8.1.13/rewrite-java-11-8.1.13.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-java-11/8.1.13/rewrite-java-11-8.1.13.pom (4.1 kB at 121 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-java-17/8.1.13/rewrite-java-17-8.1.13.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-java-17/8.1.13/rewrite-java-17-8.1.13.pom (4.1 kB at 125 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/recipe/rewrite-static-analysis/1.0.4/rewrite-static-analysis-1.0.4.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/recipe/rewrite-static-analysis/1.0.4/rewrite-static-analysis-1.0.4.pom (4.2 kB at 112 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-kotlin/1.2.0/rewrite-kotlin-1.2.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-kotlin/1.2.0/rewrite-kotlin-1.2.0.pom (4.2 kB at 113 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-bom/8.1.11/rewrite-bom-8.1.11.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-bom/8.1.11/rewrite-bom-8.1.11.pom (5.6 kB at 151 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-bom/1.8.0/kotlin-bom-1.8.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-bom/1.8.0/kotlin-bom-1.8.0.pom (9.3 kB at 301 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-java/8.1.11/rewrite-java-8.1.11.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-java/8.1.11/rewrite-java-8.1.11.pom (5.6 kB at 174 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-core/8.1.11/rewrite-core-8.1.11.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-core/8.1.11/rewrite-core-8.1.11.pom (5.1 kB at 150 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-yaml/8.1.11/rewrite-yaml-8.1.11.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-yaml/8.1.11/rewrite-yaml-8.1.11.pom (4.1 kB at 142 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-xml/8.1.11/rewrite-xml-8.1.11.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-xml/8.1.11/rewrite-xml-8.1.11.pom (3.9 kB at 47 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-compiler-embeddable/1.8.0/kotlin-compiler-embeddable-1.8.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-compiler-embeddable/1.8.0/kotlin-compiler-embeddable-1.8.0.pom (2.5 kB at 65 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/1.8.0/kotlin-stdlib-1.8.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/1.8.0/kotlin-stdlib-1.8.0.pom (1.6 kB at 52 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-common/1.8.0/kotlin-stdlib-common-1.8.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-common/1.8.0/kotlin-stdlib-common-1.8.0.pom (1.2 kB at 37 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-script-runtime/1.8.0/kotlin-script-runtime-1.8.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-script-runtime/1.8.0/kotlin-script-runtime-1.8.0.pom (1.2 kB at 35 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-reflect/1.6.10/kotlin-reflect-1.6.10.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-reflect/1.6.10/kotlin-reflect-1.6.10.pom (1.4 kB at 43 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-daemon-embeddable/1.8.0/kotlin-daemon-embeddable-1.8.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-daemon-embeddable/1.8.0/kotlin-daemon-embeddable-1.8.0.pom (1.2 kB at 33 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/intellij/deps/trove4j/1.0.20200330/trove4j-1.0.20200330.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/intellij/deps/trove4j/1.0.20200330/trove4j-1.0.20200330.pom (1.3 kB at 43 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.6.0/jna-5.6.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/net/java/dev/jna/jna/5.6.0/jna-5.6.0.pom (1.6 kB at 53 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/meta/rewrite-analysis/2.0.3/rewrite-analysis-2.0.3.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/meta/rewrite-analysis/2.0.3/rewrite-analysis-2.0.3.pom (4.6 kB at 153 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/functionaljava/functionaljava/5.0/functionaljava-5.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/functionaljava/functionaljava/5.0/functionaljava-5.0.pom (1.9 kB at 64 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/recipe/rewrite-java-dependencies/1.0.7/rewrite-java-dependencies-1.0.7.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/recipe/rewrite-java-dependencies/1.0.7/rewrite-java-dependencies-1.0.7.pom (5.4 kB at 175 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/recipe/rewrite-migrate-java/2.1.0/rewrite-migrate-java-2.1.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/recipe/rewrite-migrate-java/2.1.0/rewrite-migrate-java-2.1.0.pom (6.1 kB at 191 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/recipe/rewrite-github-actions/2.0.5/rewrite-github-actions-2.0.5.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/recipe/rewrite-github-actions/2.0.5/rewrite-github-actions-2.0.5.pom (4.2 kB at 137 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/recipe/rewrite-static-analysis/1.0.7/rewrite-static-analysis-1.0.7.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/recipe/rewrite-static-analysis/1.0.7/rewrite-static-analysis-1.0.7.pom (4.4 kB at 138 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-kotlin/1.4.6/rewrite-kotlin-1.4.6.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-kotlin/1.4.6/rewrite-kotlin-1.4.6.pom (4.2 kB at 139 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-bom/1.9.0/kotlin-bom-1.9.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-bom/1.9.0/kotlin-bom-1.9.0.pom (9.1 kB at 294 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-compiler-embeddable/1.9.0/kotlin-compiler-embeddable-1.9.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-compiler-embeddable/1.9.0/kotlin-compiler-embeddable-1.9.0.pom (2.3 kB at 72 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/1.9.0/kotlin-stdlib-1.9.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/1.9.0/kotlin-stdlib-1.9.0.pom (1.6 kB at 48 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-common/1.9.0/kotlin-stdlib-common-1.9.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-common/1.9.0/kotlin-stdlib-common-1.9.0.pom (1.2 kB at 37 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-script-runtime/1.9.0/kotlin-script-runtime-1.9.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-script-runtime/1.9.0/kotlin-script-runtime-1.9.0.pom (1.2 kB at 38 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-daemon-embeddable/1.9.0/kotlin-daemon-embeddable-1.9.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-daemon-embeddable/1.9.0/kotlin-daemon-embeddable-1.9.0.pom (1.2 kB at 30 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/meta/rewrite-analysis/2.0.5/rewrite-analysis-2.0.5.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/meta/rewrite-analysis/2.0.5/rewrite-analysis-2.0.5.pom (4.6 kB at 153 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/recipe/rewrite-testing-frameworks/2.0.11/rewrite-testing-frameworks-2.0.11.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/recipe/rewrite-testing-frameworks/2.0.11/rewrite-testing-frameworks-2.0.11.pom (4.7 kB at 148 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/recipe/rewrite-static-analysis/1.0.6/rewrite-static-analysis-1.0.6.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/recipe/rewrite-static-analysis/1.0.6/rewrite-static-analysis-1.0.6.pom (4.4 kB at 152 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-groovy/8.4.0/rewrite-groovy-8.4.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-groovy/8.4.0/rewrite-groovy-8.4.0.pom (4.0 kB at 124 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-kotlin/1.4.1/rewrite-kotlin-1.4.1.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-kotlin/1.4.1/rewrite-kotlin-1.4.1.pom (4.2 kB at 135 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/meta/rewrite-analysis/2.0.4/rewrite-analysis-2.0.4.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/meta/rewrite-analysis/2.0.4/rewrite-analysis-2.0.4.pom (4.6 kB at 143 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-maven/8.4.0/rewrite-maven-8.4.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-maven/8.4.0/rewrite-maven-8.4.0.pom (5.7 kB at 173 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-properties/8.4.0/rewrite-properties-8.4.0.pom Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-properties/8.4.0/rewrite-properties-8.4.0.pom (3.8 kB at 122 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/recipe/rewrite-spring/5.0.10/rewrite-spring-5.0.10.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/recipe/rewrite-spring/5.0.10/rewrite-spring-5.0.10.jar (32 MB at 8.5 MB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-java/8.5.0/rewrite-java-8.5.0.jar Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-core/8.5.0/rewrite-core-8.5.0.jar Downloading from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-core/1.9.15/micrometer-core-1.9.15.jar Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-xml/8.5.0/rewrite-xml-8.5.0.jar Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-properties/8.5.0/rewrite-properties-8.5.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-properties/8.5.0/rewrite-properties-8.5.0.jar (53 kB at 513 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-yaml/8.5.0/rewrite-yaml-8.5.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-xml/8.5.0/rewrite-xml-8.5.0.jar (220 kB at 1.2 MB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-gradle/8.5.0/rewrite-gradle-8.5.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/io/micrometer/micrometer-core/1.9.15/micrometer-core-1.9.15.jar (664 kB at 2.2 MB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-groovy/8.5.0/rewrite-groovy-8.5.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-yaml/8.5.0/rewrite-yaml-8.5.0.jar (236 kB at 610 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-maven/8.5.0/rewrite-maven-8.5.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-groovy/8.5.0/rewrite-groovy-8.5.0.jar (174 kB at 270 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/recipe/rewrite-java-dependencies/1.0.9/rewrite-java-dependencies-1.0.9.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-core/8.5.0/rewrite-core-8.5.0.jar (3.3 MB at 4.6 MB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/32.1.2-jre/guava-32.1.2-jre.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-maven/8.5.0/rewrite-maven-8.5.0.jar (641 kB at 776 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-csv/2.15.2/jackson-dataformat-csv-2.15.2.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/recipe/rewrite-java-dependencies/1.0.9/rewrite-java-dependencies-1.0.9.jar (254 kB at 276 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.15.2/jackson-datatype-jsr310-2.15.2.jar Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/datatype/jackson-datatype-jsr310/2.15.2/jackson-datatype-jsr310-2.15.2.jar (123 kB at 113 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-java-8/8.5.0/rewrite-java-8-8.5.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-java-8/8.5.0/rewrite-java-8-8.5.0.jar (100 kB at 87 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-java-11/8.5.0/rewrite-java-11-8.5.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-java/8.5.0/rewrite-java-8.5.0.jar (1.7 MB at 1.4 MB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/gradle/tooling/model/1.2.0/model-1.2.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/com/fasterxml/jackson/dataformat/jackson-dataformat-csv/2.15.2/jackson-dataformat-csv-2.15.2.jar (100 kB at 81 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-java-17/8.5.0/rewrite-java-17-8.5.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-java-11/8.5.0/rewrite-java-11-8.5.0.jar (102 kB at 82 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/recipe/rewrite-hibernate/1.0.3/rewrite-hibernate-1.0.3.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/gradle/tooling/model/1.2.0/model-1.2.0.jar (39 kB at 30 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/recipe/rewrite-migrate-java/2.1.0/rewrite-migrate-java-2.1.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/recipe/rewrite-hibernate/1.0.3/rewrite-hibernate-1.0.3.jar (8.6 kB at 6.3 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/recipe/rewrite-github-actions/2.0.5/rewrite-github-actions-2.0.5.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-java-17/8.5.0/rewrite-java-17-8.5.0.jar (105 kB at 75 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/recipe/rewrite-static-analysis/1.0.7/rewrite-static-analysis-1.0.7.jar Downloaded from central: https://repo.maven.apache.org/maven2/com/google/guava/guava/32.1.2-jre/guava-32.1.2-jre.jar (3.0 MB at 2.1 MB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-kotlin/1.4.6/rewrite-kotlin-1.4.6.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/recipe/rewrite-github-actions/2.0.5/rewrite-github-actions-2.0.5.jar (31 kB at 21 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-compiler-embeddable/1.9.0/kotlin-compiler-embeddable-1.9.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-kotlin/1.4.6/rewrite-kotlin-1.4.6.jar (562 kB at 348 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-script-runtime/1.9.0/kotlin-script-runtime-1.9.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-script-runtime/1.9.0/kotlin-script-runtime-1.9.0.jar (43 kB at 25 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-reflect/1.6.10/kotlin-reflect-1.6.10.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/recipe/rewrite-static-analysis/1.0.7/rewrite-static-analysis-1.0.7.jar (738 kB at 420 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-daemon-embeddable/1.9.0/kotlin-daemon-embeddable-1.9.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/recipe/rewrite-migrate-java/2.1.0/rewrite-migrate-java-2.1.0.jar (658 kB at 373 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/intellij/deps/trove4j/1.0.20200330/trove4j-1.0.20200330.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-daemon-embeddable/1.9.0/kotlin-daemon-embeddable-1.9.0.jar (397 kB at 179 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/1.9.0/kotlin-stdlib-1.9.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/intellij/deps/trove4j/1.0.20200330/trove4j-1.0.20200330.jar (573 kB at 237 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-common/1.9.0/kotlin-stdlib-common-1.9.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib-common/1.9.0/kotlin-stdlib-common-1.9.0.jar (225 kB at 76 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/meta/rewrite-analysis/2.0.5/rewrite-analysis-2.0.5.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-reflect/1.6.10/kotlin-reflect-1.6.10.jar (3.0 MB at 977 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/functionaljava/functionaljava/5.0/functionaljava-5.0.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/meta/rewrite-analysis/2.0.5/rewrite-analysis-2.0.5.jar (430 kB at 124 kB/s) Downloading from central: https://repo.maven.apache.org/maven2/org/openrewrite/recipe/rewrite-testing-frameworks/2.0.11/rewrite-testing-frameworks-2.0.11.jar Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-stdlib/1.9.0/kotlin-stdlib-1.9.0.jar (1.7 MB at 493 kB/s) Downloaded from central: https://repo.maven.apache.org/maven2/org/functionaljava/functionaljava/5.0/functionaljava-5.0.jar (789 kB at 227 kB/s) Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/rewrite-gradle/8.5.0/rewrite-gradle-8.5.0.jar (11 MB at 2.0 MB/s) Downloaded from central: https://repo.maven.apache.org/maven2/org/openrewrite/recipe/rewrite-testing-frameworks/2.0.11/rewrite-testing-frameworks-2.0.11.jar (7.6 MB at 1000 kB/s) Downloaded from central: https://repo.maven.apache.org/maven2/org/jetbrains/kotlin/kotlin-compiler-embeddable/1.9.0/kotlin-compiler-embeddable-1.9.0.jar (59 MB at 3.4 MB/s) [INFO] Validating active recipes... [INFO] Project [amqp] Resolving Poms... [INFO] Project [amqp] Parsing source files [INFO] Running recipe(s)... [WARNING] Changes have been made to pom.xml by: [WARNING] org.openrewrite.java.spring.boot2.UpgradeSpringBoot_2_2 [WARNING] org.openrewrite.maven.UpgradeParentVersion: {groupId=org.springframework.boot, artifactId=spring-boot-starter-parent, newVersion=2.2.x} [WARNING] Changes have been made to src/main/java/amqp/api/VersionApiController.java by: [WARNING] org.openrewrite.java.spring.boot2.UpgradeSpringBoot_2_2 [WARNING] org.openrewrite.java.spring.boot2.UpgradeSpringBoot_2_1 [WARNING] org.openrewrite.java.spring.boot2.UpgradeSpringBoot_2_0 [WARNING] org.openrewrite.java.spring.boot2.SpringBoot2BestPractices [WARNING] org.openrewrite.java.spring.NoAutowiredOnConstructor [WARNING] Changes have been made to src/main/java/amqp/api/AmqpApiController.java by: [WARNING] org.openrewrite.java.spring.boot2.UpgradeSpringBoot_2_2 [WARNING] org.openrewrite.java.spring.boot2.UpgradeSpringBoot_2_1 [WARNING] org.openrewrite.java.spring.boot2.UpgradeSpringBoot_2_0 [WARNING] org.openrewrite.java.spring.boot2.SpringBoot2BestPractices [WARNING] org.openrewrite.java.spring.NoAutowiredOnConstructor [WARNING] Changes have been made to src/main/resources/application.yaml by: [WARNING] org.openrewrite.java.spring.boot2.UpgradeSpringBoot_2_2 [WARNING] org.openrewrite.java.spring.boot2.SpringBootProperties_2_2 [WARNING] org.openrewrite.java.spring.ChangeSpringPropertyKey: {oldPropertyKey=logging.file, newPropertyKey=logging.file.name, except=[.+]} [WARNING] Please review and commit the results. [INFO] ------------------------------------------------------------------------ [INFO] BUILD SUCCESS [INFO] ------------------------------------------------------------------------ [INFO] Total time: 01:50 min [INFO] Finished at: 2023-10-01T00:49:43+02:00 [INFO] ------------------------------------------------------------------------ ```

Philzen commented 1 year ago

I retried the recipe with application.properties on the same project. I had just converted to YAML before i ran the recipe and it worked fine with .properties, great stuff. Closely reviewing the diff and the release notes i realized i made a mistake during my manual conversion and re-ran it on yaml again, which makes the situation slightly worse – but also describes an excellent test case.

I updated the issue description now with the valid YAML before running the recipe and also an example of how it should correctly look like with the recipe applied.

timtebeek commented 1 year ago

Sounds like it's started to fail for a different reason, which we hope to solve with

Thanks for the detailed report, and confirming the fix in .properties.

timtebeek commented 10 months ago

I've replicated the issue in https://github.com/openrewrite/rewrite-spring/commit/feb28d57a1beb39057c0cd4e701cad6c4170916d ; but it looks to be a long standing issue in

We can keep this issue open until that yaml merge issue has been resolved in OpenRewrite/rewrite itself.