From 10ea3242e4634359c1557242b2ce351f0bd252bb Mon Sep 17 00:00:00 2001 From: James Daugherty Date: Wed, 18 Dec 2024 20:54:40 -0500 Subject: [PATCH 1/2] Fix includeBuild syntax so it works with grailsPublish --- spock-container-test-app/build.gradle | 2 +- spock-container-test-app/settings.gradle | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/spock-container-test-app/build.gradle b/spock-container-test-app/build.gradle index 850c83e..a4d384c 100644 --- a/spock-container-test-app/build.gradle +++ b/spock-container-test-app/build.gradle @@ -49,7 +49,7 @@ dependencies { testImplementation 'org.grails:grails-web-testing-support' testImplementation 'org.spockframework:spock-core' - integrationTestImplementation testFixtures(project(':geb')) + integrationTestImplementation testFixtures('org.grails.plugins:geb') } compileJava.options.release = 17 diff --git a/spock-container-test-app/settings.gradle b/spock-container-test-app/settings.gradle index 3b7a05e..816d580 100644 --- a/spock-container-test-app/settings.gradle +++ b/spock-container-test-app/settings.gradle @@ -27,5 +27,4 @@ buildCache { rootProject.name = 'spock-container-test-app' -include 'geb' -project(':geb').projectDir = file('..') \ No newline at end of file +includeBuild("..") \ No newline at end of file From e9348d04a1da8d1be36f40b46787b333fe49fe20 Mon Sep 17 00:00:00 2001 From: James Daugherty Date: Thu, 19 Dec 2024 06:29:23 -0500 Subject: [PATCH 2/2] feedback --- spock-container-test-app/settings.gradle | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spock-container-test-app/settings.gradle b/spock-container-test-app/settings.gradle index 816d580..a3e62ae 100644 --- a/spock-container-test-app/settings.gradle +++ b/spock-container-test-app/settings.gradle @@ -27,4 +27,4 @@ buildCache { rootProject.name = 'spock-container-test-app' -includeBuild("..") \ No newline at end of file +includeBuild('..') \ No newline at end of file