jdaugherty commented on code in PR #14895: URL: https://github.com/apache/grails-core/pull/14895#discussion_r2203432083
########## grails-gradle/docs-core/src/main/groovy/grails/doc/gradle/PublishGuideTask.groovy: ########## @@ -94,6 +104,14 @@ class PublishGuideTask extends DefaultTask { group = 'documentation' } + @Optional + @Input + Map<String, String> getRelativizedPropertiesWithFilePaths() { + return propertiesWithFilePaths.get().collectEntries { key, file -> + return [key, rootProjectDir.get().getAsFile().toPath().relativize(file.toPath()).toString()] Review Comment: Can you help me understand what about it isn't? Would a ConfigurableFileCollection fix this? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@grails.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org