This is an automated email from the ASF dual-hosted git repository.
jdaugherty pushed a commit to branch 7.0.x
in repository https://gitbox.apache.org/repos/asf/grails-core.git
The following commit(s) were added to refs/heads/7.0.x by this push:
new 645220e06d Fix path to .sdkmanrc under grails-gradle
645220e06d is described below
commit 645220e06ddca61070897e6edf793e8f3e4435be
Author: James Daugherty <[email protected]>
AuthorDate: Tue May 27 11:50:14 2025 -0400
Fix path to .sdkmanrc under grails-gradle
---
grails-gradle/build.gradle | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/grails-gradle/build.gradle b/grails-gradle/build.gradle
index c2d157f7dc..334823acd3 100644
--- a/grails-gradle/build.gradle
+++ b/grails-gradle/build.gradle
@@ -120,7 +120,7 @@ tasks.register("aggregateChecksums") {
}
def sdkmanProps = new Properties()
-project.rootProject.layout.projectDirectory.file('.sdkmanrc').asFile.withInputStream
{
+project.rootProject.layout.projectDirectory.file('../.sdkmanrc').asFile.withInputStream
{
sdkmanProps.load(it)
}
tasks.withType(Wrapper).configureEach {