Skip to content

Commit

Permalink
Update latest versions
Browse files Browse the repository at this point in the history
  • Loading branch information
mike-solomon committed Dec 8, 2023
1 parent fa50f6b commit 9920f84
Show file tree
Hide file tree
Showing 24 changed files with 137 additions and 137 deletions.
8 changes: 4 additions & 4 deletions authoring-recipes/recipe-development-environment.md
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down Expand Up @@ -105,7 +105,7 @@ dependencies {
<dependency>
<groupId>org.openrewrite.recipe</groupId>
<artifactId>rewrite-recipe-bom</artifactId>
<version>2.5.2</version>
<version>2.5.3</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down Expand Up @@ -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 {
Expand Down Expand Up @@ -329,7 +329,7 @@ If you run into errors when trying to publish and read your recipe locally, try
<plugin>
<groupId>org.openrewrite.maven</groupId>
<artifactId>rewrite-maven-plugin</artifactId>
<version>5.15.2</version>
<version>5.15.4</version>
<configuration>
<activeRecipes>
<recipe> [your recipe name] </recipe>
Expand Down
4 changes: 2 additions & 2 deletions authoring-recipes/recipe-testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down Expand Up @@ -63,7 +63,7 @@ dependencies {
<dependency>
<groupId>org.openrewrite.recipe</groupId>
<artifactId>rewrite-recipe-bom</artifactId>
<version>2.5.2</version>
<version>2.5.3</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down
2 changes: 1 addition & 1 deletion concepts-and-explanations/styles.md
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ Update your `pom.xml` file to include an `<activeStyles>` such as in:
<plugin>
<groupId>org.openrewrite.maven</groupId>
<artifactId>rewrite-maven-plugin</artifactId>
<version>5.15.2</version>
<version>5.15.4</version>
<configuration>
<activeRecipes>
<!-- Recipes here -->
Expand Down
2 changes: 1 addition & 1 deletion concepts-and-explanations/tree-visiting-printer.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
10 changes: 5 additions & 5 deletions reference/gradle-plugin-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down Expand Up @@ -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 {
Expand Down Expand Up @@ -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")
}
```
Expand All @@ -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 {
Expand All @@ -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")
}
Expand Down
80 changes: 40 additions & 40 deletions reference/latest-versions-of-every-openrewrite-module.md
Original file line number Diff line number Diff line change
Expand Up @@ -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 | <!--Update-->
| [org.openrewrite.recipe:rewrite-static-analysis](https://github.com/openrewrite/rewrite-static-analysis) | 1.1.2 | <!--Update-->
| [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 | <!--Update-->
| [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 | <!--Update-->
| [org.openrewrite.recipe:rewrite-micronaut](https://github.com/openrewrite/rewrite-micronaut) | 2.1.8 | <!--Update-->
| [org.openrewrite.recipe.rewrite-migrate-java](https://github.com/openrewrite/rewrite-migrate-java) | 2.4.2 | <!--Update-->
| [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 | <!--Update-->
| [org.openrewrite.recipe:rewrite-spring](https://github.com/openrewrite/rewrite-spring) | 5.1.6 | <!--Update-->
| [org.openrewrite.recipe:rewrite-static-analysis](https://github.com/openrewrite/rewrite-static-analysis) | 1.1.3 | <!--Update-->
| [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 | <!--Update-->
2 changes: 1 addition & 1 deletion reference/rewrite-maven-plugin.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ Note. the plugin scans the `compile`, `provided`, and `test` scopes for visitors
<plugin>
<groupId>org.openrewrite.maven</groupId>
<artifactId>rewrite-maven-plugin</artifactId>
<version>5.15.2</version>
<version>5.15.4</version>
<configuration>
<activeRecipes>
<recipe>org.openrewrite.java.Spring</recipe>
Expand Down
2 changes: 1 addition & 1 deletion reference/snapshot-instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ To utilize snapshot versions in Maven projects, you'll need to make the followin
<plugin>
<groupId>org.openrewrite.maven</groupId>
<artifactId>rewrite-maven-plugin</artifactId>
<version>5.15.2-SNAPSHOT</version>
<version>5.15.4-SNAPSHOT</version>
<configuration>
<activeRecipes>
<recipe>org.openrewrite.github.SetupJavaUpgradeJavaVersion</recipe>
Expand Down
Loading

0 comments on commit 9920f84

Please sign in to comment.