89fd1a2ada
Set the gradle property to show individual warnings during the build. Without this, the build output showed: > Deprecated Gradle features were used in this build, making it incompatible with Gradle 9.0. > > You can use '--warning-mode all' to show the individual deprecation warnings and determine if they come from your own scripts or plugins. > > For more on this, please refer to https://docs.gradle.org/8.7/userguide/command_line_interface.html#sec:command_line_warnings in the Gradle documentation. Now, it shows the individual issues that need to be addressed: > > Configure project : > Script '/home/michi/development/git/libreoffice-WORKTREE-android/android/source/liboSettings.gradle': line 22 > The org.gradle.api.plugins.BasePluginConvention 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.7/userguide/upgrading_version_8.html#base_convention_deprecation > at liboSettings_bbauwf0uak693a4tmdwwty192$_run_closure3.doCall$original(/home/michi/development/git/libreoffice-WORKTREE-android/android/source/liboSettings.gradle:22) > (Run with --stacktrace to get the full stack trace of this deprecation warning.) > at liboSettings_bbauwf0uak693a4tmdwwty192.run(/home/michi/development/git/libreoffice-WORKTREE-android/android/source/liboSettings.gradle:20) > (Run with --stacktrace to get the full stack trace of this deprecation warning.) > Script '/home/michi/development/git/libreoffice-WORKTREE-android/android/source/liboSettings.gradle': line 22 > The BasePluginExtension.archivesBaseName property has been deprecated. This is scheduled to be removed in Gradle 9.0. Please use the archivesName property instead. For more information, please refer to https://docs.gradle.org/8.7/dsl/org.gradle.api.plugins.BasePluginExtension.html#org.gradle.api.plugins.BasePluginExtension:archivesName in the Gradle documentation. > at liboSettings_bbauwf0uak693a4tmdwwty192$_run_closure3.doCall$original(/home/michi/development/git/libreoffice-WORKTREE-android/android/source/liboSettings.gradle:22) > (Run with --stacktrace to get the full stack trace of this deprecation warning.) Actually addressing them still needs to be done separately. Change-Id: Ib749e9e21d3d5f5893c348a5070a1e994a395c6f Reviewed-on: https://gerrit.libreoffice.org/c/core/+/170609 Tested-by: Jenkins Reviewed-by: Michael Weghorn <m.weghorn@posteo.de>
5 lines
145 B
INI
5 lines
145 B
INI
android.nonFinalResIds=false
|
|
android.nonTransitiveRClass=false
|
|
android.useAndroidX=true
|
|
org.gradle.jvmargs=-Xmx3072m
|
|
org.gradle.warning.mode=all
|