From cb1d7babf4d771e2c02c1829c75809edb8a149e5 Mon Sep 17 00:00:00 2001 From: Sam Snyder Date: Thu, 27 Jan 2022 15:18:33 -0800 Subject: [PATCH] Update maven plugin version to 0.5.5, gradle plugin version to 0.6.1 --- how-to/integrating-private-code.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/how-to/integrating-private-code.md b/how-to/integrating-private-code.md index 5a7e4b42..2eb19c76 100644 --- a/how-to/integrating-private-code.md +++ b/how-to/integrating-private-code.md @@ -20,7 +20,7 @@ In the pom.xml or build.gradle, add this entry to the `plugins` section to apply io.moderne moderne-maven-plugin - 0.5.4 + 0.5.5 @@ -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")