This is an automated email from the ASF dual-hosted git repository. paulk pushed a commit to branch GROOVY_4_0_X in repository https://gitbox.apache.org/repos/asf/groovy.git
commit d347bc76ae2a1de832ac76ee211b847e6f20b367 Author: Paul King <[email protected]> AuthorDate: Thu Dec 5 08:30:13 2024 +1000 minor refactor: use later gradle syntax --- build-logic/src/main/groovy/org.apache.groovy-distribution.gradle | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build-logic/src/main/groovy/org.apache.groovy-distribution.gradle b/build-logic/src/main/groovy/org.apache.groovy-distribution.gradle index 655a60ff83..b42fc14930 100644 --- a/build-logic/src/main/groovy/org.apache.groovy-distribution.gradle +++ b/build-logic/src/main/groovy/org.apache.groovy-distribution.gradle @@ -116,8 +116,8 @@ dependencies { def docGDK = tasks.register('docGDK', DocGDK) { classpath.from configurations.docgeneratorTool classes.set(distributionExtension.docgeneratorClasses) - resources.from projects.groovyDocgenerator.dependencyProject.file('src/main/resources/org/apache/groovy/docgenerator/groovy.ico') - resources.from projects.groovyDocgenerator.dependencyProject.file('src/main/resources/org/apache/groovy/docgenerator/stylesheet.css') + resources.from project.project(projects.groovyDocgenerator.path).file('src/main/resources/org/apache/groovy/docgenerator/groovy.ico') + resources.from project.project(projects.groovyDocgenerator.path).file('src/main/resources/org/apache/groovy/docgenerator/stylesheet.css') } def distBin = tasks.register('distBin', Zip) {
