diff --git a/authoring-recipes/recipe-development-environment.md b/authoring-recipes/recipe-development-environment.md
index 1c60a028ae..78e1197852 100644
--- a/authoring-recipes/recipe-development-environment.md
+++ b/authoring-recipes/recipe-development-environment.md
@@ -54,7 +54,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.5.2"))
+ implementation(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.5.3"))
// rewrite-java dependencies only necessary for Java Recipe development
implementation("org.openrewrite:rewrite-java")
@@ -105,7 +105,7 @@ dependencies {
org.openrewrite.recipe
rewrite-recipe-bom
- 2.5.2
+ 2.5.3
pom
import
@@ -285,7 +285,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.5.11")
+ id("org.openrewrite.rewrite") version("6.5.12")
}
repositories {
@@ -329,7 +329,7 @@ If you run into errors when trying to publish and read your recipe locally, try
org.openrewrite.maven
rewrite-maven-plugin
- 5.15.2
+ 5.15.4
[your recipe name]
diff --git a/authoring-recipes/recipe-testing.md b/authoring-recipes/recipe-testing.md
index 5ccceb1932..16eaea9031 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.5.2"))
+ implementation(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.5.3"))
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.5.2
+ 2.5.3
pom
import
diff --git a/concepts-and-explanations/styles.md b/concepts-and-explanations/styles.md
index 66595dbc48..a4caf1964f 100644
--- a/concepts-and-explanations/styles.md
+++ b/concepts-and-explanations/styles.md
@@ -93,7 +93,7 @@ Update your `pom.xml` file to include an `` such as in:
org.openrewrite.maven
rewrite-maven-plugin
- 5.15.2
+ 5.15.4
diff --git a/concepts-and-explanations/tree-visiting-printer.md b/concepts-and-explanations/tree-visiting-printer.md
index 73cdc171b6..2a778d5d15 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.5.2`
+* 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.5.3`
## Using TreeVisitingPrinter.printTree
diff --git a/reference/gradle-plugin-configuration.md b/reference/gradle-plugin-configuration.md
index 4464bfdb9e..1c492cfff6 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.5.11")
+ id("org.openrewrite.rewrite") version("6.5.12")
}
rewrite {
@@ -70,7 +70,7 @@ The `rewrite` DSL exposes a few configuration options:
```groovy
plugins {
id("java")
- id("org.openrewrite.rewrite") version("6.5.11")
+ id("org.openrewrite.rewrite") version("6.5.12")
}
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.5.2"))
+ rewrite(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.5.3"))
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.5.11")
+ id("org.openrewrite.rewrite") version("6.5.12")
}
repositories {
@@ -124,7 +124,7 @@ repositories {
dependencies {
testImplementation("junit:junit:4.13")
- rewrite(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.5.2"))
+ rewrite(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.5.3"))
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 3999612906..e84138cde4 100644
--- a/reference/latest-versions-of-every-openrewrite-module.md
+++ b/reference/latest-versions-of-every-openrewrite-module.md
@@ -6,44 +6,44 @@ 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.5.2** |
-| [**org.openrewrite:rewrite-maven-plugin**](https://github.com/openrewrite/rewrite-maven-plugin) | **5.15.2** |
-| [**org.openrewrite:rewrite-gradle-plugin**](https://github.com/openrewrite/rewrite-gradle-plugin) | **6.5.11** |
-| org.openrewrite:rewrite-groovy | 8.11.0 |
-| org.openrewrite:rewrite-gradle | 8.11.0 |
-| org.openrewrite:rewrite-core | 8.11.0 |
-| org.openrewrite:rewrite-hcl | 8.11.0 |
-| org.openrewrite:rewrite-java | 8.11.0 |
-| org.openrewrite:rewrite-java-8 | 8.11.0 |
-| org.openrewrite:rewrite-java-11 | 8.11.0 |
-| org.openrewrite:rewrite-java-17 | 8.11.0 |
-| org.openrewrite:rewrite-json | 8.11.0 |
-| org.openrewrite:rewrite-maven | 8.11.0 |
-| org.openrewrite:rewrite-properties | 8.11.0 |
-| org.openrewrite:rewrite-protobuf | 8.11.0 |
-| org.openrewrite:rewrite-xml | 8.11.0 |
-| org.openrewrite:rewrite-yaml | 8.11.0 |
-| org.openrewrite:rewrite-test | 8.11.0 |
-| [org.openrewrite.recipe:rewrite-circleci](https://github.com/openrewrite/rewrite-circleci) | 2.0.9 |
-| [org.openrewrite.recipe:rewrite-cloud-suitability-analyzer](https://github.com/openrewrite/rewrite-cloud-suitability-analyzer) | 2.0.9 |
-| [org.openrewrite.recipe:rewrite-concourse](https://github.com/openrewrite/rewrite-concourse) | 2.0.9 |
-| [org.openrewrite.recipe:rewrite-cucumber-jvm](https://github.com/openrewrite/rewrite-cucumber-jvm) | 1.0.11 |
-| [org.openrewrite.recipe:rewrite-github-actions](https://github.com/openrewrite/rewrite-github-actions) | 2.0.10 |
-| [org.openrewrite.recipe:rewrite-hibernate](https://github.com/openrewrite/rewrite-hibernate) | 1.0.9 |
-| [org.openrewrite.recipe:rewrite-java-dependencies](https://github.com/openrewrite/rewrite-java-dependencies) | 1.2.4 |
-| [org.openrewrite.recipe:rewrite-java-security](https://github.com/openrewrite/rewrite-java-security) | 2.1.2 |
-| [org.openrewrite.recipe:rewrite-jenkins](https://github.com/openrewrite/rewrite-jenkins) | 0.2.7 |
+| [**org.openrewrite:rewrite-recipe-bom**](https://github.com/openrewrite/rewrite-recipe-bom) | **2.5.3** |
+| [**org.openrewrite:rewrite-maven-plugin**](https://github.com/openrewrite/rewrite-maven-plugin) | **5.15.4** |
+| [**org.openrewrite:rewrite-gradle-plugin**](https://github.com/openrewrite/rewrite-gradle-plugin) | **6.5.12** |
+| org.openrewrite:rewrite-groovy | 8.11.1 |
+| org.openrewrite:rewrite-gradle | 8.11.1 |
+| org.openrewrite:rewrite-core | 8.11.1 |
+| org.openrewrite:rewrite-hcl | 8.11.1 |
+| org.openrewrite:rewrite-java | 8.11.1 |
+| org.openrewrite:rewrite-java-8 | 8.11.1 |
+| org.openrewrite:rewrite-java-11 | 8.11.1 |
+| org.openrewrite:rewrite-java-17 | 8.11.1 |
+| org.openrewrite:rewrite-json | 8.11.1 |
+| org.openrewrite:rewrite-maven | 8.11.1 |
+| org.openrewrite:rewrite-properties | 8.11.1 |
+| org.openrewrite:rewrite-protobuf | 8.11.1 |
+| org.openrewrite:rewrite-xml | 8.11.1 |
+| org.openrewrite:rewrite-yaml | 8.11.1 |
+| org.openrewrite:rewrite-test | 8.11.1 |
+| [org.openrewrite.recipe:rewrite-circleci](https://github.com/openrewrite/rewrite-circleci) | 2.0.10 |
+| [org.openrewrite.recipe:rewrite-cloud-suitability-analyzer](https://github.com/openrewrite/rewrite-cloud-suitability-analyzer) | 2.0.10 |
+| [org.openrewrite.recipe:rewrite-concourse](https://github.com/openrewrite/rewrite-concourse) | 2.0.10 |
+| [org.openrewrite.recipe:rewrite-cucumber-jvm](https://github.com/openrewrite/rewrite-cucumber-jvm) | 1.0.12 |
+| [org.openrewrite.recipe:rewrite-github-actions](https://github.com/openrewrite/rewrite-github-actions) | 2.0.11 |
+| [org.openrewrite.recipe:rewrite-hibernate](https://github.com/openrewrite/rewrite-hibernate) | 1.0.10 |
+| [org.openrewrite.recipe:rewrite-java-dependencies](https://github.com/openrewrite/rewrite-java-dependencies) | 1.2.5 |
+| [org.openrewrite.recipe:rewrite-java-security](https://github.com/openrewrite/rewrite-java-security) | 2.1.3 |
+| [org.openrewrite.recipe:rewrite-jenkins](https://github.com/openrewrite/rewrite-jenkins) | 0.2.8 |
| [org.openrewrite.recipe:rewrite-jhipster](https://github.com/openrewrite/rewrite-jhipster) | 2.0.7 |
-| [org.openrewrite.recipe:rewrite-kotlin](https://github.com/openrewrite/rewrite-kotlin) | 1.8.0 |
-| [org.openrewrite.recipe:rewrite-kubernetes](https://github.com/openrewrite/rewrite-kubernetes) | 2.0.9 |
-| [org.openrewrite.recipe:rewrite-liberty](https://github.com/openrewrite/rewrite-liberty) | 1.0.5 |
-| [org.openrewrite.recipe:rewrite-logging-frameworks](https://github.com/openrewrite/rewrite-logging-frameworks) | 2.2.1 |
-| [org.openrewrite.recipe:rewrite-micronaut](https://github.com/openrewrite/rewrite-micronaut) | 2.1.7 |
-| [org.openrewrite.recipe.rewrite-migrate-java](https://github.com/openrewrite/rewrite-migrate-java) | 2.4.1 |
-| [org.openrewrite.recipe.rewrite-ok-http](https://github.com/openrewrite/rewrite-okhttp) | 0.0.6 |
-| [org.openrewrite.recipe:rewrite-quarkus](https://github.com/openrewrite/rewrite-quarkus) | 2.0.9 |
-| [org.openrewrite.recipe:rewrite-spring](https://github.com/openrewrite/rewrite-spring) | 5.1.5 |
-| [org.openrewrite.recipe:rewrite-static-analysis](https://github.com/openrewrite/rewrite-static-analysis) | 1.1.2 |
-| [org.openrewrite.recipe:rewrite-sql](https://github.com/openrewrite/rewrite-sql) | 1.0.8 |
-| [org.openrewrite.recipe:rewrite-terraform](https://github.com/openrewrite/rewrite-terraform) | 2.0.9 |
-| [org.openrewrite.recipe:rewrite-testing-frameworks](https://github.com/openrewrite/rewrite-testing-frameworks) | 2.1.2 |
+| [org.openrewrite.recipe:rewrite-kotlin](https://github.com/openrewrite/rewrite-kotlin) | 1.8.1 |
+| [org.openrewrite.recipe:rewrite-kubernetes](https://github.com/openrewrite/rewrite-kubernetes) | 2.0.10 |
+| [org.openrewrite.recipe:rewrite-liberty](https://github.com/openrewrite/rewrite-liberty) | 1.0.6 |
+| [org.openrewrite.recipe:rewrite-logging-frameworks](https://github.com/openrewrite/rewrite-logging-frameworks) | 2.2.2 |
+| [org.openrewrite.recipe:rewrite-micronaut](https://github.com/openrewrite/rewrite-micronaut) | 2.1.8 |
+| [org.openrewrite.recipe.rewrite-migrate-java](https://github.com/openrewrite/rewrite-migrate-java) | 2.4.2 |
+| [org.openrewrite.recipe.rewrite-ok-http](https://github.com/openrewrite/rewrite-okhttp) | 0.0.7 |
+| [org.openrewrite.recipe:rewrite-quarkus](https://github.com/openrewrite/rewrite-quarkus) | 2.0.10 |
+| [org.openrewrite.recipe:rewrite-spring](https://github.com/openrewrite/rewrite-spring) | 5.1.6 |
+| [org.openrewrite.recipe:rewrite-static-analysis](https://github.com/openrewrite/rewrite-static-analysis) | 1.1.3 |
+| [org.openrewrite.recipe:rewrite-sql](https://github.com/openrewrite/rewrite-sql) | 1.0.9 |
+| [org.openrewrite.recipe:rewrite-terraform](https://github.com/openrewrite/rewrite-terraform) | 2.0.10 |
+| [org.openrewrite.recipe:rewrite-testing-frameworks](https://github.com/openrewrite/rewrite-testing-frameworks) | 2.1.4 |
diff --git a/reference/rewrite-maven-plugin.md b/reference/rewrite-maven-plugin.md
index 9ef4cd7596..e793cf7eac 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.15.2
+ 5.15.4
org.openrewrite.java.Spring
diff --git a/reference/snapshot-instructions.md b/reference/snapshot-instructions.md
index 956ec8a7d6..e67b5cf0c3 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.15.2-SNAPSHOT
+ 5.15.4-SNAPSHOT
org.openrewrite.github.SetupJavaUpgradeJavaVersion
diff --git a/running-recipes/getting-started.md b/running-recipes/getting-started.md
index c83bd1a587..9d6639ae6e 100644
--- a/running-recipes/getting-started.md
+++ b/running-recipes/getting-started.md
@@ -66,7 +66,7 @@ Add a new `` in the `` section of your `pom.xml` that looks lik
org.openrewrite.maven
rewrite-maven-plugin
- 5.15.2
+ 5.15.4
```
{% endcode %}
@@ -84,7 +84,7 @@ Your file should look similar to:
plugins {
id 'java'
id 'maven-publish'
- id 'org.openrewrite.rewrite' version '6.5.11'
+ id 'org.openrewrite.rewrite' version '6.5.12'
}
repositories {
@@ -114,7 +114,7 @@ Your file should look similar to:
plugins {
`java-library`
`maven-publish`
- id("org.openrewrite.rewrite") version "6.5.11"
+ id("org.openrewrite.rewrite") version "6.5.12"
}
repositories {
@@ -146,7 +146,7 @@ Before you can run any of the recipes, you will need to update the plugin config
org.openrewrite.maven
rewrite-maven-plugin
- 5.15.2
+ 5.15.4
org.openrewrite.java.OrderImports
@@ -163,7 +163,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.5.11'
+ id 'org.openrewrite.rewrite' version '6.5.12'
}
rewrite {
@@ -181,7 +181,7 @@ rewrite {
plugins {
`java-library`
`maven-publish`
- id("org.openrewrite.rewrite") version "6.5.11"
+ id("org.openrewrite.rewrite") version "6.5.12"
}
rewrite {
@@ -261,7 +261,7 @@ If the file was created correctly, you should see `com.yourorg.VetToVeterinary`
org.openrewrite.maven
rewrite-maven-plugin
- 5.15.2
+ 5.15.4
org.openrewrite.java.OrderImports
@@ -281,7 +281,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.5.11'
+ id 'org.openrewrite.rewrite' version '6.5.12'
}
rewrite {
@@ -300,7 +300,7 @@ rewrite {
plugins {
`java-library`
`maven-publish`
- id("org.openrewrite.rewrite") version "6.5.11"
+ id("org.openrewrite.rewrite") version "6.5.12"
}
rewrite {
@@ -353,7 +353,7 @@ After doing that, your `pom.xml` file should look similar to this:
org.openrewrite.maven
rewrite-maven-plugin
- 5.15.2
+ 5.15.4
org.openrewrite.java.OrderImports
@@ -365,7 +365,7 @@ After doing that, your `pom.xml` file should look similar to this:
org.openrewrite.recipe
rewrite-spring
- 5.1.5
+ 5.1.6
@@ -400,7 +400,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.5.11'
+ id 'org.openrewrite.rewrite' version '6.5.12'
}
rewrite {
@@ -412,7 +412,7 @@ rewrite {
}
dependencies {
- rewrite platform('org.openrewrite.recipe:rewrite-recipe-bom:2.5.2')
+ rewrite platform('org.openrewrite.recipe:rewrite-recipe-bom:2.5.3')
rewrite('org.openrewrite.recipe:rewrite-spring')
// Other project dependencies
@@ -427,7 +427,7 @@ dependencies {
plugins {
`java-library`
`maven-publish`
- id("org.openrewrite.rewrite") version "6.5.11"
+ id("org.openrewrite.rewrite") version "6.5.12"
}
rewrite {
@@ -439,7 +439,7 @@ rewrite {
}
dependencies {
- rewrite(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.5.2"))
+ rewrite(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.5.3"))
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 fd09d7d61b..6b4cb145e2 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.15.2
+ 5.15.4
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 c7a28e5b2f..5a5cca69a9 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.5.11")
+ id("org.openrewrite.rewrite") version("6.5.12")
}
rewrite {
@@ -56,7 +56,7 @@ rewrite {
org.openrewrite.maven
rewrite-maven-plugin
- 5.15.2
+ 5.15.4
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.5.11")
+ id("org.openrewrite.rewrite") version("6.5.12")
}
dependencies {
@@ -129,7 +129,7 @@ rewrite {
org.openrewrite.maven
rewrite-maven-plugin
- 5.15.2
+ 5.15.4
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 6f4fbe85b1..8139045f02 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.15.2
+ 5.15.4
org.openrewrite.staticanalysis.CodeCleanup
@@ -30,7 +30,7 @@ If your build uses either the Gradle or Maven checkstyle plugins, then good news
org.openrewrite.recipe
rewrite-static-analysis
- 1.1.2
+ 1.1.3
@@ -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.5.11")
+ id("org.openrewrite.rewrite") version("6.5.12")
}
rewrite {
@@ -67,7 +67,7 @@ repositories {
}
dependencies {
- rewrite("org.openrewrite.recipe:rewrite-static-analysis:1.1.2")
+ rewrite("org.openrewrite.recipe:rewrite-static-analysis:1.1.3")
}
```
{% endcode %}
@@ -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.15.2
+ 5.15.4
org.openrewrite.staticanalysis.CodeCleanup
@@ -105,7 +105,7 @@ If your build does not use either of the Gradle or Maven Checkstyle plugins, you
org.openrewrite.recipe
rewrite-static-analysis
- 1.1.2
+ 1.1.3
@@ -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.5.11")
+ id("org.openrewrite.rewrite") version("6.5.12")
}
rewrite {
@@ -134,7 +134,7 @@ repositories {
}
dependencies {
- rewrite("org.openrewrite.recipe:rewrite-static-analysis:1.1.2")
+ rewrite("org.openrewrite.recipe:rewrite-static-analysis:1.1.3")
}
```
{% endcode %}
@@ -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.5.11")
+ id("org.openrewrite.rewrite") version("6.5.12")
}
rewrite {
@@ -175,7 +175,7 @@ repositories {
}
dependencies {
- rewrite("org.openrewrite.recipe:rewrite-static-analysis:1.1.2")
+ rewrite("org.openrewrite.recipe:rewrite-static-analysis:1.1.3")
}
// In older versions of gradle, use tasks.get() instead of tasks.named()
@@ -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.15.2
+ 5.15.4
org.openrewrite.staticanalysis.CodeCleanup
@@ -223,7 +223,7 @@ In Maven, the ordering of goals depends first on which phase of the [Build Lifec
org.openrewrite.recipe
rewrite-static-analysis
- 1.1.2
+ 1.1.3
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 62ff925ecc..e7958a80cb 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.15.2
+ 5.15.4
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.15.2
+ 5.15.4
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 0ac909c72f..847773d57f 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.15.2
+ 5.15.4
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.5.11")
+ id("org.openrewrite.rewrite") version("6.5.12")
}
rewrite {
diff --git a/running-recipes/popular-recipe-guides/hamcrest-to-assertj.md b/running-recipes/popular-recipe-guides/hamcrest-to-assertj.md
index 733a27c81b..6386ee5ebb 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.15.2
+ 5.15.4
org.openrewrite.java.testing.assertj.Assertj
@@ -26,7 +26,7 @@ In order to run the migration recipe, you will need to update your project with
org.openrewrite.recipe
rewrite-testing-frameworks
- 2.1.2
+ 2.1.4
@@ -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.5.11")
+ id("org.openrewrite.rewrite") version("6.5.12")
}
rewrite {
@@ -53,7 +53,7 @@ repositories {
}
dependencies {
- rewrite("org.openrewrite.recipe:rewrite-testing-frameworks:2.1.2")
+ rewrite("org.openrewrite.recipe:rewrite-testing-frameworks:2.1.4")
}
```
{% endcode %}
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 efd5d98166..b0d455c514 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.15.2
+ 5.15.4
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.5.11")
+ id("org.openrewrite.rewrite") version("6.5.12")
}
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.5.2"))
+ rewrite(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.5.3"))
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.15.2
+ 5.15.4
org.openrewrite.java.testing.junit5.JUnit5BestPractices
@@ -87,7 +87,7 @@ If your project is _not_ a Spring or Spring-Boot project take a dependency on [r
org.openrewrite.recipe
rewrite-testing-frameworks
- 2.1.2
+ 2.1.4
@@ -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.5.11")
+ id("org.openrewrite.rewrite") version("6.5.12")
}
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.5.2"))
+ implementation(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.5.3"))
rewrite("org.openrewrite.recipe:rewrite-testing-frameworks")
// Other project dependencies
@@ -360,13 +360,13 @@ public class ExampleJunitTestClass {
org.junit.jupiter
junit-jupiter-api
- 5.15.2
+ 5.15.4
test
org.junit.jupiter
junit-jupiter-engine
- 5.15.2
+ 5.15.4
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 01da208bb3..58097f1ef8 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.15.2
+ 5.15.4
org.openrewrite.java.migrate.UpgradeToJava17
@@ -31,7 +31,7 @@ The Java 17 migration recipe can be applied by including OpenRewrite's plug-in t
org.openrewrite.recipe
rewrite-migrate-java
- 2.4.1
+ 2.4.2
@@ -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.5.11")
+ id("org.openrewrite.rewrite") version("6.5.12")
}
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.5.2"))
+ rewrite(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.5.3"))
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 cf975c8b56..44b859b929 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.5.11")
+ id("org.openrewrite.rewrite") version("6.5.12")
}
rewrite {
@@ -21,7 +21,7 @@ repositories {
}
dependencies {
- rewrite(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.5.2"))
+ rewrite(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.5.3"))
rewrite("org.openrewrite.recipe:rewrite-micronaut")
}
```
@@ -37,7 +37,7 @@ dependencies {
org.openrewrite.maven
rewrite-maven-plugin
- 5.15.2
+ 5.15.4
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 4a0c2d036e..83941ccab1 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.5.11")
+ id("org.openrewrite.rewrite") version("6.5.12")
}
rewrite {
@@ -23,7 +23,7 @@ repositories {
}
dependencies {
- rewrite(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.5.2"))
+ rewrite(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.5.3"))
rewrite("org.openrewrite.recipe:rewrite-micronaut")
}
```
@@ -39,7 +39,7 @@ dependencies {
org.openrewrite.maven
rewrite-maven-plugin
- 5.15.2
+ 5.15.4
org.openrewrite.java.micronaut.Micronaut3to4Migration
@@ -49,7 +49,7 @@ dependencies {
org.openrewrite.recipe
rewrite-micronaut
- 2.1.1
+ 2.1.8
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 8f1a3a8ae2..3b0af99122 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.5.11")
+ id("org.openrewrite.rewrite") version("6.5.12")
}
rewrite {
@@ -23,7 +23,7 @@ repositories {
}
dependencies {
- rewrite(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.5.2"))
+ rewrite(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.5.3"))
rewrite("org.openrewrite.recipe:rewrite-logging-frameworks")
}
```
@@ -39,7 +39,7 @@ dependencies {
org.openrewrite.maven
rewrite-maven-plugin
- 5.15.2
+ 5.15.4
org.openrewrite.java.logging.slf4j.Log4jToSlf4j
@@ -49,7 +49,7 @@ dependencies {
org.openrewrite.recipe
rewrite-logging-frameworks
- 2.0.4
+ 2.2.2
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 d60092405e..88c1c30298 100644
--- a/running-recipes/popular-recipe-guides/migrate-to-spring-3.md
+++ b/running-recipes/popular-recipe-guides/migrate-to-spring-3.md
@@ -12,7 +12,7 @@ The [Spring 3 migration recipe](/reference/recipes/java/spring/boot3/upgradespri
{% code title="build.gradle" %}
```groovy
plugins {
- id("org.openrewrite.rewrite") version("6.5.11")
+ id("org.openrewrite.rewrite") version("6.5.12")
}
rewrite {
@@ -24,7 +24,7 @@ repositories {
}
dependencies {
- rewrite("org.openrewrite.recipe:rewrite-spring:5.1.5")
+ rewrite("org.openrewrite.recipe:rewrite-spring:5.1.6")
}
```
{% endcode %}
@@ -39,12 +39,12 @@ initscript {
repositories {
maven { url "https://plugins.gradle.org/m2" }
}
- dependencies { classpath("org.openrewrite:plugin:6.5.11") }
+ dependencies { classpath("org.openrewrite:plugin:6.5.12") }
}
rootProject {
plugins.apply(org.openrewrite.gradle.RewritePlugin)
dependencies {
- rewrite("org.openrewrite.recipe:rewrite-spring:5.1.5")
+ rewrite("org.openrewrite.recipe:rewrite-spring:5.1.6")
}
rewrite {
activeRecipe("org.openrewrite.java.spring.boot3.UpgradeSpringBoot_3_2")
@@ -71,7 +71,7 @@ rootProject {
org.openrewrite.maven
rewrite-maven-plugin
- 5.15.2
+ 5.15.4
org.openrewrite.java.spring.boot3.UpgradeSpringBoot_3_2
@@ -81,7 +81,7 @@ rootProject {
org.openrewrite.recipe
rewrite-spring
- 5.1.5
+ 5.1.6
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 c51dd6a531..aa310670b2 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.5.11")
+ id("org.openrewrite.rewrite") version("6.5.12")
}
rewrite {
@@ -23,7 +23,7 @@ repositories {
}
dependencies {
- rewrite(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.5.2"))
+ rewrite(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.5.3"))
rewrite("org.openrewrite.recipe:rewrite-quarkus")
}
```
@@ -39,7 +39,7 @@ dependencies {
org.openrewrite.maven
rewrite-maven-plugin
- 5.15.2
+ 5.15.4
org.openrewrite.java.quarkus.quarkus2.Quarkus1to2Migration
@@ -49,7 +49,7 @@ dependencies {
org.openrewrite.recipe
rewrite-quarkus
- 2.0.9
+ 2.0.10
diff --git a/running-recipes/popular-recipe-guides/slf4j-parameterized-logging.md b/running-recipes/popular-recipe-guides/slf4j-parameterized-logging.md
index d0c260b6f8..044f748781 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.5.11")
+ id("org.openrewrite.rewrite") version("6.5.12")
}
rewrite {
@@ -23,7 +23,7 @@ repositories {
}
dependencies {
- rewrite(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.5.2"))
+ rewrite(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.5.3"))
rewrite("org.openrewrite.recipe:rewrite-logging-frameworks")
}
```
@@ -39,7 +39,7 @@ dependencies {
org.openrewrite.maven
rewrite-maven-plugin
- 5.15.2
+ 5.15.4
org.openrewrite.java.logging.slf4j.ParameterizedLogging
@@ -49,7 +49,7 @@ dependencies {
org.openrewrite.recipe
rewrite-logging-frameworks
- 2.1.1
+ 2.2.2
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 877415d177..44c03154bc 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.5.11")
+ id("org.openrewrite.rewrite") version("6.5.12")
}
rewrite {
@@ -23,7 +23,7 @@ repositories {
}
dependencies {
- rewrite(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.5.2"))
+ rewrite(platform("org.openrewrite.recipe:rewrite-recipe-bom:2.5.3"))
rewrite("org.openrewrite.recipe:rewrite-spring")
}
```
@@ -39,7 +39,7 @@ dependencies {
org.openrewrite.maven
rewrite-maven-plugin
- 5.15.2
+ 5.15.4
org.openrewrite.java.spring.boot2.UpgradeSpringBoot_2_7
@@ -49,7 +49,7 @@ dependencies {
org.openrewrite.recipe
rewrite-spring
- 5.1.5
+ 5.1.6