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.git
The following commit(s) were added to refs/heads/master by this push:
new 9285eeaac0 avoid deprecated usage (fix typo)
9285eeaac0 is described below
commit 9285eeaac0bc29ad41dddeb24dc960dff9ecfbc6
Author: Paul King <[email protected]>
AuthorDate: Sun Jan 5 20:44:01 2025 +1000
avoid deprecated usage (fix typo)
---
.../groovy/org/apache/groovy/gradle/WriteExtensionDescriptorTask.groovy | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/build-logic/src/main/groovy/org/apache/groovy/gradle/WriteExtensionDescriptorTask.groovy
b/build-logic/src/main/groovy/org/apache/groovy/gradle/WriteExtensionDescriptorTask.groovy
index 0145ca2197..466ce60edd 100644
---
a/build-logic/src/main/groovy/org/apache/groovy/gradle/WriteExtensionDescriptorTask.groovy
+++
b/build-logic/src/main/groovy/org/apache/groovy/gradle/WriteExtensionDescriptorTask.groovy
@@ -35,7 +35,7 @@ class WriteExtensionDescriptorTask extends DefaultTask {
@OutputFile File descriptor = computeDescriptorFile()
private File computeDescriptorFile() {
- def metaInfDir =
project.layout.buildDirectory.dir('/resources/main/META-INF/groovy').get().asFile
+ def metaInfDir =
project.layout.buildDirectory.dir('resources/main/META-INF/groovy').get().asFile
return new File(metaInfDir,
'org.codehaus.groovy.runtime.ExtensionModule')
}