mirror of
https://github.com/JakeWharton/mosaic.git
synced 2025-11-03 05:46:10 +08:00
* Fix deprecation warning coming from buildconfig plugin. > Configure project :build-logic:mosaic-gradle-plugin The Project.getConvention() method has been deprecated. This is scheduled to be removed in Gradle 9.0. Consult the upgrading guide for further information: https://docs.gradle.org/8.4/userguide/upgrading_version_8.html#deprecated_access_to_conventions at build_76rlsb2vs9qh6z5gt0vmnl0ip.run(P:\projects\contrib\github-mosaic\mosaic-gradle-plugin\build.gradle:3) * Fix application plugin related deprecations. `mainClassName` is a convention property, even when it's inside the `application` block. We cant to set https://docs.gradle.org/8.4/dsl/org.gradle.api.plugins.JavaApplication.html#org.gradle.api.plugins.JavaApplication:mainClass instead. > Configure project :samples:counter Build file 'P:\projects\contrib\github-mosaic\samples\counter\build.gradle': line 11 The org.gradle.api.plugins.ApplicationPluginConvention type has been deprecated. This is scheduled to be removed in Gradle 9.0. Consult the upgrading guide for further information: https://docs.gradle.org/8.4/userguide/upgrading_version_8.html#application_convention_deprecation at build_dw2puawl5bmiuhlfercnbnay0$_run_closure1.doCall$original(P:\projects\contrib\github-mosaic\samples\counter\build.gradle:11) at build_dw2puawl5bmiuhlfercnbnay0.run(P:\projects\contrib\github-mosaic\samples\counter\build.gradle:10) Build file 'P:\projects\contrib\github-mosaic\samples\counter\build.gradle': line 11 The org.gradle.api.plugins.Convention type has been deprecated. This is scheduled to be removed in Gradle 9.0. Consult the upgrading guide for further information: https://docs.gradle.org/8.4/userguide/upgrading_version_8.html#deprecated_access_to_conventions at build_dw2puawl5bmiuhlfercnbnay0$_run_closure1.doCall$original(P:\projects\contrib\github-mosaic\samples\counter\build.gradle:11) at build_dw2puawl5bmiuhlfercnbnay0.run(P:\projects\contrib\github-mosaic\samples\counter\build.gradle:10) > Configure project :samples:jest | :samples:robot | :samples:demo Build file 'P:\projects\contrib\github-mosaic\samples\jest\build.gradle': line 5 The org.gradle.api.plugins.ApplicationPluginConvention type has been deprecated. This is scheduled to be removed in Gradle 9.0. Consult the upgrading guide for further information: https://docs.gradle.org/8.4/userguide/upgrading_version_8.html#application_convention_deprecation at build_3tv3yi15cjhed4vkpewcfismx.run(P:\projects\contrib\github-mosaic\samples\jest\build.gradle:5) Build file 'P:\projects\contrib\github-mosaic\samples\jest\build.gradle': line 5 The org.gradle.api.plugins.Convention type has been deprecated. This is scheduled to be removed in Gradle 9.0. Consult the upgrading guide for further information: https://docs.gradle.org/8.4/userguide/upgrading_version_8.html#deprecated_access_to_conventions at build_3tv3yi15cjhed4vkpewcfismx.run(P:\projects\contrib\github-mosaic\samples\jest\build.gradle:5) * Ignore warning about Kotlin/Native, there's no way to build mac binaries on Linux and Windows, so no need to nag about it. > Configure project :mosaic-runtime w: The following Kotlin/Native targets cannot be built on this machine and are disabled: macosArm64, macosX64 To hide this message, add 'kotlin.native.ignoreDisabledTargets=true' to the Gradle properties. > Configure project :samples:counter w: The following Kotlin/Native targets cannot be built on this machine and are disabled: macosArm64, macosX64 To hide this message, add 'kotlin.native.ignoreDisabledTargets=true' to the Gradle properties.
