jdaugherty commented on issue #14780: URL: https://github.com/apache/grails-core/issues/14780#issuecomment-2938860484
Thank you for opening the ticket. A recent build showing some of the deprecated Gradle features is here: https://ge.grails.org/s/2cais25vnxmbs/deprecations At a high level, they are: 1. (Gradle 9) setFileMode() usages in copyspec 2. (Gradle 9) setDirMode() usages in copyspec 3. (Gradle 10) Invocation of Task.project at execution time has been deprecated. 4. (Gradle 9) Relying on the convention for Test.classpath in custom Test tasks has been deprecated. 5. (Gradle 9) The StartParameter.isConfigurationCacheRequested property has been deprecated. 6. (Gradle 9) The IdeaModule.testSourceDirs property has been deprecated. 1 & 2 are planned to be fixed in the next RC. 3 needs fixed in the asset plugin for us to fully resolve, so we may not be able to resolve this in a timely manner. 4 is deprecated, but the replacement is still considered experimental. 5 is dependent on the Asciidoctor plugin, so we may not be able to resolve this in a timely manner. 6 I can fix in the next RC. Since some of these deprecations are dependent on external plugins / gradle standardizing an API, can you write tests by disabling the warning mode? Either by setting the property `org.gradle.warning.mode=none` or by using an environment variable (maybe export GRADLE_OPTS="-Dorg.gradle.warning.mode=none")? -- 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: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
