This is an automated email from the ASF dual-hosted git repository.

matrei pushed a commit to branch post-gradle-merge
in repository https://gitbox.apache.org/repos/asf/grails-core.git

commit e651a8a2cb00c59db7ec71cc38cfeb7aee7d8a41
Author: Mattias Reichel <[email protected]>
AuthorDate: Wed Apr 16 11:20:25 2025 +0200

    build: remove a usage of `dependsOn`
---
 grails-gradle/docs-core/build.gradle | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/grails-gradle/docs-core/build.gradle 
b/grails-gradle/docs-core/build.gradle
index 43b1620e4e..c10c04d483 100644
--- a/grails-gradle/docs-core/build.gradle
+++ b/grails-gradle/docs-core/build.gradle
@@ -59,10 +59,9 @@ tasks.register('docFilesJar', Jar) {
 }
 
 tasks.named('jar', Jar) {
-    from docFilesJar
+    from tasks.named('docFilesJar')
 }
 
-jar.dependsOn docFilesJar
 publishing {
     if (!isReleaseVersion) {
         repositories {

Reply via email to