android/source/build.gradle |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit b6a237ad1f5957b9d32bca7e41aa4a2b3bed01fc
Author:     Michael Weghorn <m.wegh...@posteo.de>
AuthorDate: Thu Apr 21 08:18:18 2022 +0200
Commit:     Michael Weghorn <m.wegh...@posteo.de>
CommitDate: Thu Apr 21 11:16:14 2022 +0200

    android: use mavenCentral instead of jcenter repository
    
    From the `./gradlew --warning-mode all assembleStrippedUIEditingRelease`
    output:
    
    > > Configure project :
    > The RepositoryHandler.jcenter() method has been deprecated. This is
    > scheduled to be removed in Gradle 8.0. JFrog announced JCenter's sunset
    > in February 2021. Use mavenCentral() instead. Consult the upgrading
    > guide for further information:
    > 
https://docs.gradle.org/7.2/userguide/upgrading_version_6.html#jcenter_deprecation
    >         at 
build_a6ed945jjgv6miyybz50fclhq$_run_closure1$_closure2.doCall(/home/michi/development/git/libreoffice-WORKTREE-for-android-x86/android/source/build.gradle:14)
    >         (Run with --stacktrace to get the full stack trace of this 
deprecation warning.)
    
    Change-Id: I5db84a9778b598d1e3459dd313aa05c229060368
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/133239
    Tested-by: Jenkins
    Reviewed-by: Michael Weghorn <m.wegh...@posteo.de>

diff --git a/android/source/build.gradle b/android/source/build.gradle
index 43a22c3b31a8..80427b8b73b1 100644
--- a/android/source/build.gradle
+++ b/android/source/build.gradle
@@ -4,14 +4,14 @@ apply from: 'liboSettings.gradle'
 
 allprojects {
     repositories {
-        jcenter()
+        mavenCentral()
         google()
     }
 }
 //build-time dependencies - android plugin for gradle
 buildscript {
     repositories {
-        jcenter()
+        mavenCentral()
         google()
     }
     dependencies {

Reply via email to