This is an automated email from the ASF dual-hosted git repository.
paulk pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/groovy-geb.git
The following commit(s) were added to refs/heads/master by this push:
new d971e77c fix corrected syntax
d971e77c is described below
commit d971e77c8d1c60141c20c48b07e53b1b2f880ac4
Author: Paul King <[email protected]>
AuthorDate: Sun Dec 15 06:20:57 2024 +1000
fix corrected syntax
---
buildSrc/src/main/groovy/geb.all-sources-configuration.gradle | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/buildSrc/src/main/groovy/geb.all-sources-configuration.gradle
b/buildSrc/src/main/groovy/geb.all-sources-configuration.gradle
index 1fca002d..c75403c1 100644
--- a/buildSrc/src/main/groovy/geb.all-sources-configuration.gradle
+++ b/buildSrc/src/main/groovy/geb.all-sources-configuration.gradle
@@ -23,7 +23,7 @@ configurations {
def allSourcesTask = tasks.register("allSources", Sync) {
from sourceSets.main.allSource.srcDirs
from sourceSets.test.allSource.srcDirs
- into rootProject.layout.buildDirectory.dir('allSources')
+ into project.layout.buildDirectory.dir('allSources')
}
artifacts {