From 4c31674ee0c0fc122c102b597599a90e87623e53 Mon Sep 17 00:00:00 2001 From: Guillaume Smet Date: Mon, 28 Mar 2022 17:20:19 +0200 Subject: [PATCH] Switch to SmallRye Config 3.0.0-RC2 --- jakarta/README.md | 1 - jakarta/rewrite.yml | 2 +- jakarta/transform.sh | 12 ++++++------ 3 files changed, 7 insertions(+), 8 deletions(-) diff --git a/jakarta/README.md b/jakarta/README.md index 904ea85bbb4ae..2e3fab6c93658 100644 --- a/jakarta/README.md +++ b/jakarta/README.md @@ -25,7 +25,6 @@ Note that this script also builds: - A patched version of OpenRewrite (while waiting for integration of our patches) - A patched version of the Rewrite Maven Plugin (to point to the patched OpenRewrite version) - A patched version of the Kotlin Maven Plugin (to allow skipping the `main` compilation, it's required for the OpenRewrite run) -- SmallRye Config while waiting for a CR2 ## Approach diff --git a/jakarta/rewrite.yml b/jakarta/rewrite.yml index 9036e917a814c..589cd9ad359d7 100644 --- a/jakarta/rewrite.yml +++ b/jakarta/rewrite.yml @@ -192,7 +192,7 @@ recipeList: newValue: 3.0 - org.openrewrite.maven.ChangePropertyValue: key: smallrye-config.version - newValue: 3.0.0-SNAPSHOT + newValue: 3.0.0-RC2 - org.openrewrite.maven.ChangePropertyValue: key: smallrye-health.version newValue: 4.0.0-RC1 diff --git a/jakarta/transform.sh b/jakarta/transform.sh index 6dcb2ba565c45..4ab1416201bc0 100755 --- a/jakarta/transform.sh +++ b/jakarta/transform.sh @@ -30,12 +30,12 @@ if [ "${REWRITE_OFFLINE-false}" != "true" ]; then popd # Build SmallRye Config (temporary) - rm -rf target/smallrye-config - git clone git@github.com:smallrye/smallrye-config.git target/smallrye-config - pushd target/smallrye-config - git checkout jakarta - mvn clean install -DskipTests -DskipITs - popd + #rm -rf target/smallrye-config + #git clone git@github.com:smallrye/smallrye-config.git target/smallrye-config + #pushd target/smallrye-config + #git checkout jakarta + #mvn clean install -DskipTests -DskipITs + #popd # Build Kotlin Maven Plugin to allow skipping main compilation # (skipping test compilation is supported but not main)