Update maven plugin version to 0.5.5, gradle plugin version to 0.6.1

This commit is contained in:
Sam Snyder
2022-01-27 15:18:33 -08:00
parent 5119a5b926
commit cb1d7babf4

View File

@@ -20,7 +20,7 @@ In the pom.xml or build.gradle, add this entry to the `plugins` section to apply
<plugin>
<groupId>io.moderne</groupId>
<artifactId>moderne-maven-plugin</artifactId>
<version>0.5.4</version>
<version>0.5.5</version>
<configuration>
<!-- Supports all of the same functionality as the OpenRewrite plugin -->
<activeRecipes>
@@ -46,7 +46,7 @@ In the pom.xml or build.gradle, add this entry to the `plugins` section to apply
```groovy
plugins {
// In a multi-project build, apply this only to the root project
id("io.moderne.rewrite") version("0.6.0")
id("io.moderne.rewrite") version("0.6.1")
// Applying these is typical for Java projects, but not required
id("java")