diff --git a/authoring-recipes/recipe-development-environment.md b/authoring-recipes/recipe-development-environment.md index 41e2f50322..8a4b5d1813 100644 --- a/authoring-recipes/recipe-development-environment.md +++ b/authoring-recipes/recipe-development-environment.md @@ -50,7 +50,7 @@ You can import the bill of materials into either Gradle or Maven and then includ ```groovy dependencies { // import Rewrite's bill of materials. - implementation(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.3.0")) + implementation(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.3.1")) // rewrite-java dependencies only necessary for Java Recipe development implementation("org.openrewrite:rewrite-java") @@ -101,7 +101,7 @@ dependencies { org.openrewrite.recipe rewrite-recipe-bom - 2.3.0 + 2.3.1 pom import @@ -281,7 +281,7 @@ Once your recipe module is published, either locally for testing or to an extern ```groovy plugins { id("java") - id("org.openrewrite.rewrite") version("6.3.17") + id("org.openrewrite.rewrite") version("6.3.18") } repositories { @@ -325,7 +325,7 @@ If you run into errors when trying to publish and read your recipe locally, try org.openrewrite.maven rewrite-maven-plugin - 5.7.1 + 5.7.2 [your recipe name] diff --git a/authoring-recipes/recipe-testing.md b/authoring-recipes/recipe-testing.md index 923a669e75..bb5deffea2 100644 --- a/authoring-recipes/recipe-testing.md +++ b/authoring-recipes/recipe-testing.md @@ -30,7 +30,7 @@ plugins { // ... dependencies { - implementation(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.3.0")) + implementation(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.3.1")) testImplementation("org.openrewrite:rewrite-test") testImplementation("org.junit.jupiter:junit-jupiter-api:latest.release") @@ -63,7 +63,7 @@ dependencies { org.openrewrite.recipe rewrite-recipe-bom - 2.3.0 + 2.3.1 pom import diff --git a/concepts-and-explanations/tree-visiting-printer.md b/concepts-and-explanations/tree-visiting-printer.md index 70b9fffad1..9f23165f62 100644 --- a/concepts-and-explanations/tree-visiting-printer.md +++ b/concepts-and-explanations/tree-visiting-printer.md @@ -12,7 +12,7 @@ This guide assumes that you: * Are familiar with writing Java * Have already set up your [Recipe Development Environment](/authoring-recipes/recipe-development-environment.md) -* Are using at least [OpenRewrite](https://github.com/openrewrite/rewrite) version `7.35.0` or [Rewrite-Recipe-Bom](https://github.com/openrewrite/rewrite-recipe-bom) version `2.3.0` +* Are using at least [OpenRewrite](https://github.com/openrewrite/rewrite) version `7.35.0` or [Rewrite-Recipe-Bom](https://github.com/openrewrite/rewrite-recipe-bom) version `2.3.1` ## Using TreeVisitingPrinter.printTree diff --git a/reference/gradle-plugin-configuration.md b/reference/gradle-plugin-configuration.md index be1fc102e2..80f5d14da4 100644 --- a/reference/gradle-plugin-configuration.md +++ b/reference/gradle-plugin-configuration.md @@ -13,7 +13,7 @@ Apply the org.openrewrite.rewrite plugin to your build. ```groovy plugins { id("java") - id("org.openrewrite.rewrite") version("6.3.17") + id("org.openrewrite.rewrite") version("6.3.18") } rewrite { @@ -70,7 +70,7 @@ The `rewrite` DSL exposes a few configuration options: ```groovy plugins { id("java") - id("org.openrewrite.rewrite") version("6.3.17") + id("org.openrewrite.rewrite") version("6.3.18") } repositories { @@ -105,7 +105,7 @@ No recipe is ever run on your codebase without being explicitly activated in the ```groovy dependencies { - rewrite(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.3.0")) + rewrite(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.3.1")) rewrite("org.openrewrite.recipe:rewrite-spring") } ``` @@ -115,7 +115,7 @@ Once a pre-packaged recipe has been added to the `rewrite` dependency configurat ```groovy plugins { id("java") - id("org.openrewrite.rewrite") version("6.3.17") + id("org.openrewrite.rewrite") version("6.3.18") } repositories { @@ -124,7 +124,7 @@ repositories { dependencies { testImplementation("junit:junit:4.13") - rewrite(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.3.0")) + rewrite(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.3.1")) rewrite("org.openrewrite.recipe:rewrite-testing-frameworks") } diff --git a/reference/latest-versions-of-every-openrewrite-module.md b/reference/latest-versions-of-every-openrewrite-module.md index 80d4988ca3..23ddf32d7f 100644 --- a/reference/latest-versions-of-every-openrewrite-module.md +++ b/reference/latest-versions-of-every-openrewrite-module.md @@ -6,9 +6,9 @@ It is highly recommended that developers use the [rewrite-recipe-bom](https://gi | Module | Version | | --------------------------------------------------------------------------------------------------------------------------------| ----------| -| [**org.openrewrite:rewrite-recipe-bom**](https://github.com/openrewrite/rewrite-recipe-bom) | **2.3.0** | -| [**org.openrewrite:rewrite-maven-plugin**](https://github.com/openrewrite/rewrite-maven-plugin) | **5.7.1** | -| [**org.openrewrite:rewrite-gradle-plugin**](https://github.com/openrewrite/rewrite-gradle-plugin) | **6.3.17** | +| [**org.openrewrite:rewrite-recipe-bom**](https://github.com/openrewrite/rewrite-recipe-bom) | **2.3.1** | +| [**org.openrewrite:rewrite-maven-plugin**](https://github.com/openrewrite/rewrite-maven-plugin) | **5.7.2** | +| [**org.openrewrite:rewrite-gradle-plugin**](https://github.com/openrewrite/rewrite-gradle-plugin) | **6.3.18** | | org.openrewrite:rewrite-groovy | 8.7.2 | | org.openrewrite:rewrite-gradle | 8.7.2 | | org.openrewrite:rewrite-core | 8.7.2 | diff --git a/reference/rewrite-maven-plugin.md b/reference/rewrite-maven-plugin.md index d673fabe34..c0a0516cd3 100644 --- a/reference/rewrite-maven-plugin.md +++ b/reference/rewrite-maven-plugin.md @@ -88,7 +88,7 @@ Note. the plugin scans the `compile`, `provided`, and `test` scopes for visitors org.openrewrite.maven rewrite-maven-plugin - 5.7.1 + 5.7.2 org.openrewrite.java.Spring diff --git a/reference/snapshot-instructions.md b/reference/snapshot-instructions.md index 681b87443b..c84346f1b5 100644 --- a/reference/snapshot-instructions.md +++ b/reference/snapshot-instructions.md @@ -62,7 +62,7 @@ To utilize snapshot versions in Maven projects, you'll need to make the followin org.openrewrite.maven rewrite-maven-plugin - 5.7.1-SNAPSHOT + 5.7.2-SNAPSHOT org.openrewrite.github.SetupJavaUpgradeJavaVersion diff --git a/running-recipes/getting-started.md b/running-recipes/getting-started.md index 13bc6d6f80..f855fff97f 100644 --- a/running-recipes/getting-started.md +++ b/running-recipes/getting-started.md @@ -64,7 +64,7 @@ Add a new `` in the `` section of your `pom.xml` that looks lik org.openrewrite.maven rewrite-maven-plugin - 5.7.1 + 5.7.2 ``` {% endcode %} @@ -82,7 +82,7 @@ Your file should look similar to: plugins { id 'java' id 'maven-publish' - id 'org.openrewrite.rewrite' version '6.3.17' + id 'org.openrewrite.rewrite' version '6.3.18' } repositories { @@ -144,7 +144,7 @@ Before you can run any of the recipes, you will need to update the plugin config org.openrewrite.maven rewrite-maven-plugin - 5.7.1 + 5.7.2 org.openrewrite.java.OrderImports @@ -161,7 +161,7 @@ Before you can run any of the recipes, you will need to update the plugin config plugins { id 'java' id 'maven-publish' - id 'org.openrewrite.rewrite' version '6.3.17' + id 'org.openrewrite.rewrite' version '6.3.18' } rewrite { @@ -258,7 +258,7 @@ If the file was created correctly, you should see `com.yourorg.VetToVeterinary` org.openrewrite.maven rewrite-maven-plugin - 5.7.1 + 5.7.2 org.openrewrite.java.OrderImports @@ -278,7 +278,7 @@ If the file was created correctly, you should see `com.yourorg.VetToVeterinary` plugins { id 'java' id 'maven-publish' - id 'org.openrewrite.rewrite' version '6.3.17' + id 'org.openrewrite.rewrite' version '6.3.18' } rewrite { @@ -351,7 +351,7 @@ After doing that, your `pom.xml` file should look similar to this: org.openrewrite.maven rewrite-maven-plugin - 5.7.1 + 5.7.2 org.openrewrite.java.OrderImports @@ -398,7 +398,7 @@ Presuming you chose to use the `rewrite-recipe-bom`, your Gradle setup should lo plugins { id 'java' id 'maven-publish' - id 'org.openrewrite.rewrite' version '6.3.17' + id 'org.openrewrite.rewrite' version '6.3.18' } rewrite { @@ -410,7 +410,7 @@ rewrite { } dependencies { - rewrite platform('org.openrewrite.recipe:rewrite-recipe-bom:2.3.0') + rewrite platform('org.openrewrite.recipe:rewrite-recipe-bom:2.3.1') rewrite('org.openrewrite.recipe:rewrite-spring') // Other project dependencies @@ -425,7 +425,7 @@ dependencies { plugins { `java-library` `maven-publish` - id("org.openrewrite.rewrite") version "6.3.17" + id("org.openrewrite.rewrite") version "6.3.18" } rewrite { @@ -437,7 +437,7 @@ rewrite { } dependencies { - rewrite(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.3.0")) + rewrite(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.3.1")) rewrite("org.openrewrite.recipe:rewrite-spring") // Other project dependencies diff --git a/running-recipes/multi-module-maven.md b/running-recipes/multi-module-maven.md index 43bcc25ac4..341514c998 100644 --- a/running-recipes/multi-module-maven.md +++ b/running-recipes/multi-module-maven.md @@ -15,7 +15,7 @@ In the meantime, one way to work around this is to add a profile on the parent P org.openrewrite.maven rewrite-maven-plugin - 5.7.1 + 5.7.2 org.openrewrite.java.cleanup.Cleanup diff --git a/running-recipes/popular-recipe-guides/authoring-declarative-yaml-recipes.md b/running-recipes/popular-recipe-guides/authoring-declarative-yaml-recipes.md index 7c21c2d451..1edf3e173a 100644 --- a/running-recipes/popular-recipe-guides/authoring-declarative-yaml-recipes.md +++ b/running-recipes/popular-recipe-guides/authoring-declarative-yaml-recipes.md @@ -37,7 +37,7 @@ Now that a recipe named "com.yourorg.FooToBar" has been created set that recipe ```groovy plugins { id("java") - id("org.openrewrite.rewrite") version("6.3.17") + id("org.openrewrite.rewrite") version("6.3.18") } rewrite { @@ -56,7 +56,7 @@ rewrite { org.openrewrite.maven rewrite-maven-plugin - 5.7.1 + 5.7.2 com.yourorg.FooToBar @@ -99,7 +99,7 @@ Now when the next version of A is published its jar will include this recipe. As ```groovy plugins { id("java") - id("org.openrewrite.rewrite") version("6.3.17") + id("org.openrewrite.rewrite") version("6.3.18") } dependencies { @@ -129,7 +129,7 @@ rewrite { org.openrewrite.maven rewrite-maven-plugin - 5.7.1 + 5.7.2 com.yourorg.FooToBar diff --git a/running-recipes/popular-recipe-guides/automatically-fix-checkstyle-violations.md b/running-recipes/popular-recipe-guides/automatically-fix-checkstyle-violations.md index a635002b49..9ece8bcada 100644 --- a/running-recipes/popular-recipe-guides/automatically-fix-checkstyle-violations.md +++ b/running-recipes/popular-recipe-guides/automatically-fix-checkstyle-violations.md @@ -20,7 +20,7 @@ If your build uses either the Gradle or Maven checkstyle plugins, then good news org.openrewrite.maven rewrite-maven-plugin - 5.7.1 + 5.7.2 org.openrewrite.staticanalysis.CodeCleanup @@ -55,7 +55,7 @@ If your build uses either the Gradle or Maven checkstyle plugins, then good news plugins { id("java") id("checkstyle") - id("org.openrewrite.rewrite") version("6.3.17") + id("org.openrewrite.rewrite") version("6.3.18") } rewrite { @@ -94,7 +94,7 @@ If your build does not use either of the Gradle or Maven Checkstyle plugins, you org.openrewrite.maven rewrite-maven-plugin - 5.7.1 + 5.7.2 org.openrewrite.staticanalysis.CodeCleanup @@ -121,7 +121,7 @@ If your build does not use either of the Gradle or Maven Checkstyle plugins, you ```groovy plugins { id("java") - id("org.openrewrite.rewrite") version("6.3.17") + id("org.openrewrite.rewrite") version("6.3.18") } rewrite { @@ -162,7 +162,7 @@ In Gradle, [Task.dependsOn()](https://docs.gradle.org/current/javadoc/org/gradle plugins { id("java") id("checkstyle") - id("org.openrewrite.rewrite") version("6.3.17") + id("org.openrewrite.rewrite") version("6.3.18") } rewrite { @@ -204,7 +204,7 @@ In Maven, the ordering of goals depends first on which phase of the [Build Lifec org.openrewrite.maven rewrite-maven-plugin - 5.7.1 + 5.7.2 org.openrewrite.staticanalysis.CodeCleanup diff --git a/running-recipes/popular-recipe-guides/automating-maven-dependency-management.md b/running-recipes/popular-recipe-guides/automating-maven-dependency-management.md index 1e54f1a36d..e0a5de767e 100644 --- a/running-recipes/popular-recipe-guides/automating-maven-dependency-management.md +++ b/running-recipes/popular-recipe-guides/automating-maven-dependency-management.md @@ -29,7 +29,7 @@ Add the rewrite-maven-plugin to the pom.xml: org.openrewrite.maven rewrite-maven-plugin - 5.7.1 + 5.7.2 com.yourorg.LogbackInsight @@ -104,7 +104,7 @@ And set the `com.yourorg.UseSlf4jSimple` recipe as active in your pom.xml: org.openrewrite.maven rewrite-maven-plugin - 5.7.1 + 5.7.2 com.yourorg.UseSlf4jSimple diff --git a/running-recipes/popular-recipe-guides/common-static-analysis-issue-remediation.md b/running-recipes/popular-recipe-guides/common-static-analysis-issue-remediation.md index e01442654c..cb0f937120 100644 --- a/running-recipes/popular-recipe-guides/common-static-analysis-issue-remediation.md +++ b/running-recipes/popular-recipe-guides/common-static-analysis-issue-remediation.md @@ -13,7 +13,7 @@ The [Common Static Analysis Recipe](https://docs.openrewrite.org/recipes/statica org.openrewrite.maven rewrite-maven-plugin - 5.7.1 + 5.7.2 org.openrewrite.staticanalysis.CommonStaticAnalysis @@ -29,7 +29,7 @@ The [Common Static Analysis Recipe](https://docs.openrewrite.org/recipes/statica ```groovy plugins { id("java") - id("org.openrewrite.rewrite") version("6.3.17") + id("org.openrewrite.rewrite") version("6.3.18") } rewrite { diff --git a/running-recipes/popular-recipe-guides/hamcrest-to-assertj.md b/running-recipes/popular-recipe-guides/hamcrest-to-assertj.md index 4368fd871f..cf1d6873c8 100644 --- a/running-recipes/popular-recipe-guides/hamcrest-to-assertj.md +++ b/running-recipes/popular-recipe-guides/hamcrest-to-assertj.md @@ -16,7 +16,7 @@ In order to run the migration recipe, you will need to update your project with org.openrewrite.maven rewrite-maven-plugin - 5.7.1 + 5.7.2 org.openrewrite.java.testing.assertj.Assertj @@ -41,7 +41,7 @@ In order to run the migration recipe, you will need to update your project with {% code title="build.gradle" %} ```groovy plugins { - id("org.openrewrite.rewrite") version("6.3.17") + id("org.openrewrite.rewrite") version("6.3.18") } rewrite { diff --git a/running-recipes/popular-recipe-guides/migrate-from-junit-4-to-junit-5.md b/running-recipes/popular-recipe-guides/migrate-from-junit-4-to-junit-5.md index 7cdca6ce01..5d6055c370 100644 --- a/running-recipes/popular-recipe-guides/migrate-from-junit-4-to-junit-5.md +++ b/running-recipes/popular-recipe-guides/migrate-from-junit-4-to-junit-5.md @@ -15,7 +15,7 @@ If your project is a Spring or Spring-Boot project take a dependency on [rewrite org.openrewrite.maven rewrite-maven-plugin - 5.7.1 + 5.7.2 org.openrewrite.java.spring.boot2.SpringBoot2JUnit4to5Migration @@ -40,7 +40,7 @@ If your project is a Spring or Spring-Boot project take a dependency on [rewrite ```groovy plugins { id("java") - id("org.openrewrite.rewrite") version("6.3.17") + id("org.openrewrite.rewrite") version("6.3.18") } rewrite { @@ -52,7 +52,7 @@ If your project is a Spring or Spring-Boot project take a dependency on [rewrite } dependencies { - rewrite(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.3.0")) + rewrite(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.3.1")) rewrite("org.openrewrite.recipe:rewrite-spring") // Other project dependencies @@ -77,7 +77,7 @@ If your project is _not_ a Spring or Spring-Boot project take a dependency on [r org.openrewrite.maven rewrite-maven-plugin - 5.7.1 + 5.7.2 org.openrewrite.java.testing.junit5.JUnit5BestPractices @@ -102,7 +102,7 @@ If your project is _not_ a Spring or Spring-Boot project take a dependency on [r ```groovy plugins { id("java") - id("org.openrewrite.rewrite") version("6.3.17") + id("org.openrewrite.rewrite") version("6.3.18") } rewrite { @@ -114,7 +114,7 @@ If your project is _not_ a Spring or Spring-Boot project take a dependency on [r } dependencies { - implementation(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.3.0")) + implementation(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.3.1")) rewrite("org.openrewrite.recipe:rewrite-testing-frameworks") // Other project dependencies @@ -360,13 +360,13 @@ public class ExampleJunitTestClass { org.junit.jupiter junit-jupiter-api - 5.7.1 + 5.7.2 test org.junit.jupiter junit-jupiter-engine - 5.7.1 + 5.7.2 test diff --git a/running-recipes/popular-recipe-guides/migrate-to-java-17.md b/running-recipes/popular-recipe-guides/migrate-to-java-17.md index f434e15733..33a9524c39 100644 --- a/running-recipes/popular-recipe-guides/migrate-to-java-17.md +++ b/running-recipes/popular-recipe-guides/migrate-to-java-17.md @@ -21,7 +21,7 @@ The Java 17 migration recipe can be applied by including OpenRewrite's plug-in t org.openrewrite.maven rewrite-maven-plugin - 5.7.1 + 5.7.2 org.openrewrite.java.migrate.UpgradeToJava17 @@ -46,7 +46,7 @@ The Java 17 migration recipe can be applied by including OpenRewrite's plug-in t ```groovy plugins { id("java") - id("org.openrewrite.rewrite") version("6.3.17") + id("org.openrewrite.rewrite") version("6.3.18") } rewrite { @@ -58,7 +58,7 @@ The Java 17 migration recipe can be applied by including OpenRewrite's plug-in t } dependencies { - rewrite(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.3.0")) + rewrite(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.3.1")) rewrite("org.openrewrite.recipe:rewrite-migrate-java") // Other project dependencies diff --git a/running-recipes/popular-recipe-guides/migrate-to-micronaut-3-from-micronaut-2.md b/running-recipes/popular-recipe-guides/migrate-to-micronaut-3-from-micronaut-2.md index ab9b5cf2f2..dd8dde31a0 100644 --- a/running-recipes/popular-recipe-guides/migrate-to-micronaut-3-from-micronaut-2.md +++ b/running-recipes/popular-recipe-guides/migrate-to-micronaut-3-from-micronaut-2.md @@ -9,7 +9,7 @@ In this guide we'll look at using OpenRewrite to perform an automated migration {% code title="build.gradle" %} ```groovy plugins { - id("org.openrewrite.rewrite") version("6.3.17") + id("org.openrewrite.rewrite") version("6.3.18") } rewrite { @@ -21,7 +21,7 @@ repositories { } dependencies { - rewrite(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.3.0")) + rewrite(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.3.1")) rewrite("org.openrewrite.recipe:rewrite-micronaut") } ``` @@ -37,7 +37,7 @@ dependencies { org.openrewrite.maven rewrite-maven-plugin - 5.7.1 + 5.7.2 org.openrewrite.java.micronaut.Micronaut2to3Migration diff --git a/running-recipes/popular-recipe-guides/migrate-to-micronaut-4-from-micronaut-3.md b/running-recipes/popular-recipe-guides/migrate-to-micronaut-4-from-micronaut-3.md index 02d9426cc9..edc926f77c 100644 --- a/running-recipes/popular-recipe-guides/migrate-to-micronaut-4-from-micronaut-3.md +++ b/running-recipes/popular-recipe-guides/migrate-to-micronaut-4-from-micronaut-3.md @@ -11,7 +11,7 @@ If you want to learn more about the process that went into developing these reci {% code title="build.gradle" %} ```groovy plugins { - id("org.openrewrite.rewrite") version("6.3.17") + id("org.openrewrite.rewrite") version("6.3.18") } rewrite { @@ -23,7 +23,7 @@ repositories { } dependencies { - rewrite(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.3.0")) + rewrite(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.3.1")) rewrite("org.openrewrite.recipe:rewrite-micronaut") } ``` @@ -39,7 +39,7 @@ dependencies { org.openrewrite.maven rewrite-maven-plugin - 5.7.1 + 5.7.2 org.openrewrite.java.micronaut.Micronaut3to4Migration diff --git a/running-recipes/popular-recipe-guides/migrate-to-slf4j-from-log4j.md b/running-recipes/popular-recipe-guides/migrate-to-slf4j-from-log4j.md index 499502c13c..0fb85b72b8 100644 --- a/running-recipes/popular-recipe-guides/migrate-to-slf4j-from-log4j.md +++ b/running-recipes/popular-recipe-guides/migrate-to-slf4j-from-log4j.md @@ -11,7 +11,7 @@ The [org.openrewrite.java.logging.slf4j.Log4jToSlf4j](../../reference/recipes/ja {% code title="build.gradle" %} ```groovy plugins { - id("org.openrewrite.rewrite") version("6.3.17") + id("org.openrewrite.rewrite") version("6.3.18") } rewrite { @@ -23,7 +23,7 @@ repositories { } dependencies { - rewrite(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.3.0")) + rewrite(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.3.1")) rewrite("org.openrewrite.recipe:rewrite-logging-frameworks") } ``` @@ -39,7 +39,7 @@ dependencies { org.openrewrite.maven rewrite-maven-plugin - 5.7.1 + 5.7.2 org.openrewrite.java.logging.slf4j.Log4jToSlf4j diff --git a/running-recipes/popular-recipe-guides/migrate-to-spring-3.md b/running-recipes/popular-recipe-guides/migrate-to-spring-3.md index efc91dd2cb..b26c2ee3e2 100644 --- a/running-recipes/popular-recipe-guides/migrate-to-spring-3.md +++ b/running-recipes/popular-recipe-guides/migrate-to-spring-3.md @@ -15,7 +15,7 @@ The [Spring 3 migration recipe](../../reference/recipes/java/spring/boot3/upgrad org.openrewrite.maven rewrite-maven-plugin - 5.7.1 + 5.7.2 org.openrewrite.java.spring.boot3.UpgradeSpringBoot_3_1 @@ -40,7 +40,7 @@ The [Spring 3 migration recipe](../../reference/recipes/java/spring/boot3/upgrad ```groovy plugins { id("java") - id("org.openrewrite.rewrite") version("6.3.17") + id("org.openrewrite.rewrite") version("6.3.18") } rewrite { @@ -52,7 +52,7 @@ The [Spring 3 migration recipe](../../reference/recipes/java/spring/boot3/upgrad } dependencies { - rewrite(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.3.0")) + rewrite(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.3.1")) rewrite("org.openrewrite.recipe:rewrite-spring") // Other project dependencies diff --git a/running-recipes/popular-recipe-guides/quarkus-2.x-migration-from-quarkus-1.x.md b/running-recipes/popular-recipe-guides/quarkus-2.x-migration-from-quarkus-1.x.md index cd8dd9750a..761925f11a 100644 --- a/running-recipes/popular-recipe-guides/quarkus-2.x-migration-from-quarkus-1.x.md +++ b/running-recipes/popular-recipe-guides/quarkus-2.x-migration-from-quarkus-1.x.md @@ -11,7 +11,7 @@ The [Quarkus1to2Migration](/reference/recipes/java/quarkus/quarkus2/quarkus1to2m {% code title="build.gradle" %} ```groovy plugins { - id("org.openrewrite.rewrite") version("6.3.17") + id("org.openrewrite.rewrite") version("6.3.18") } rewrite { @@ -23,7 +23,7 @@ repositories { } dependencies { - rewrite(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.3.0")) + rewrite(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.3.1")) rewrite("org.openrewrite.recipe:rewrite-quarkus") } ``` @@ -39,7 +39,7 @@ dependencies { org.openrewrite.maven rewrite-maven-plugin - 5.7.1 + 5.7.2 org.openrewrite.java.quarkus.quarkus2.Quarkus1to2Migration diff --git a/running-recipes/popular-recipe-guides/slf4j-parameterized-logging.md b/running-recipes/popular-recipe-guides/slf4j-parameterized-logging.md index 75682907a9..ace8b33bbd 100644 --- a/running-recipes/popular-recipe-guides/slf4j-parameterized-logging.md +++ b/running-recipes/popular-recipe-guides/slf4j-parameterized-logging.md @@ -11,7 +11,7 @@ The [ParameterizedLogging](/reference/recipes/java/logging/slf4j/parameterizedlo {% code title="build.gradle" %} ```groovy plugins { - id("org.openrewrite.rewrite") version("6.3.17") + id("org.openrewrite.rewrite") version("6.3.18") } rewrite { @@ -23,7 +23,7 @@ repositories { } dependencies { - rewrite(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.3.0")) + rewrite(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.3.1")) rewrite("org.openrewrite.recipe:rewrite-logging-frameworks") } ``` @@ -39,7 +39,7 @@ dependencies { org.openrewrite.maven rewrite-maven-plugin - 5.7.1 + 5.7.2 org.openrewrite.java.logging.slf4j.ParameterizedLogging diff --git a/running-recipes/popular-recipe-guides/spring-boot-2.x-migration-from-spring-boot-1.x.md b/running-recipes/popular-recipe-guides/spring-boot-2.x-migration-from-spring-boot-1.x.md index e3b452cbfa..7bf9b87a1b 100644 --- a/running-recipes/popular-recipe-guides/spring-boot-2.x-migration-from-spring-boot-1.x.md +++ b/running-recipes/popular-recipe-guides/spring-boot-2.x-migration-from-spring-boot-1.x.md @@ -11,7 +11,7 @@ The [UpgradeSpringBoot_2_7](/reference/recipes/java/spring/boot2/upgradespringbo {% code title="build.gradle" %} ```groovy plugins { - id("org.openrewrite.rewrite") version("6.3.17") + id("org.openrewrite.rewrite") version("6.3.18") } rewrite { @@ -23,7 +23,7 @@ repositories { } dependencies { - rewrite(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.3.0")) + rewrite(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.3.1")) rewrite("org.openrewrite.recipe:rewrite-spring") } ``` @@ -39,7 +39,7 @@ dependencies { org.openrewrite.maven rewrite-maven-plugin - 5.7.1 + 5.7.2 org.openrewrite.java.spring.boot2.UpgradeSpringBoot_2_7 diff --git a/running-recipes/running-rewrite-without-build-tool-plugins.md b/running-recipes/running-rewrite-without-build-tool-plugins.md index 5c9b869f46..bf549a5c86 100644 --- a/running-recipes/running-rewrite-without-build-tool-plugins.md +++ b/running-recipes/running-rewrite-without-build-tool-plugins.md @@ -20,7 +20,7 @@ At a minimum for this example, you need the following dependencies: org.openrewrite.recipe rewrite-recipe-bom - 2.3.0 + 2.3.1 pom import @@ -43,7 +43,7 @@ At a minimum for this example, you need the following dependencies: {% tab title="Gradle" %} ```kotlin dependencies { - implementation(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.3.0")) + implementation(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.3.1")) implementation("org.openrewrite:rewrite-java") runtimeOnly("org.openrewrite:rewrite-java-11") }