summaryrefslogtreecommitdiffstats
path: root/android
diff options
context:
space:
mode:
authorMichael Weghorn <m.weghorn@posteo.de>2022-04-21 08:18:18 +0200
committerMichael Weghorn <m.weghorn@posteo.de>2022-04-21 11:16:14 +0200
commitb6a237ad1f5957b9d32bca7e41aa4a2b3bed01fc (patch)
tree94cb852f508961da9515ad63404226b0e6c8c233 /android
parentandroid: Drop obsolete build tools version check from configure.ac (diff)
downloadcore-b6a237ad1f5957b9d32bca7e41aa4a2b3bed01fc.tar.gz
core-b6a237ad1f5957b9d32bca7e41aa4a2b3bed01fc.zip
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.weghorn@posteo.de>
Diffstat (limited to 'android')
-rw-r--r--android/source/build.gradle4
1 files changed, 2 insertions, 2 deletions
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 {