From 2eebf1d8ebbfaa7063e381d9235c2ea2fcc3778a Mon Sep 17 00:00:00 2001 From: Tim te Beek Date: Sat, 26 Oct 2024 13:25:39 +0200 Subject: [PATCH] Generate recipes for Spring RCs already, for easier integration --- .github/workflows/properties.yml | 2 +- .../internal/GeneratePropertiesMigratorConfiguration.java | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/properties.yml b/.github/workflows/properties.yml index ef6686b79..0abdc7aab 100644 --- a/.github/workflows/properties.yml +++ b/.github/workflows/properties.yml @@ -34,7 +34,7 @@ jobs: branch: migrations/${{ env.NOW }} title: "[Auto] Spring Boot property migration recipes as of ${{ env.NOW }}" body: | - [Auto] Old GroupId migrations as of ${{ env.NOW }}. + [Auto] Spring Boot property migration recipes as of ${{ env.NOW }}. commit-message: "[Auto] Spring Boot property migration recipes as of ${{ env.NOW }}" labels: enhancement - name: Check outputs diff --git a/src/test/java/org/openrewrite/java/spring/internal/GeneratePropertiesMigratorConfiguration.java b/src/test/java/org/openrewrite/java/spring/internal/GeneratePropertiesMigratorConfiguration.java index 296c4a4a0..c55089caf 100644 --- a/src/test/java/org/openrewrite/java/spring/internal/GeneratePropertiesMigratorConfiguration.java +++ b/src/test/java/org/openrewrite/java/spring/internal/GeneratePropertiesMigratorConfiguration.java @@ -40,7 +40,7 @@ class GeneratePropertiesMigratorConfiguration { public static void main(String[] args) throws IOException { - var springBootReleases = new SpringBootReleases(false); // `true` for release candidates + var springBootReleases = new SpringBootReleases(true); // `true` for release candidates var objectMapper = new ObjectMapper() .disable(DeserializationFeature.FAIL_ON_UNKNOWN_PROPERTIES);