aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpacien2021-06-29 22:13:26 +0200
committerpacien2021-06-29 22:25:28 +0200
commita6a1780e10d1ba49e79250bf2d451764bd1cef3a (patch)
tree8ce7e75b7aa8353308c1546d6dc8b0d90562a0f5
parent46f3c685e0b04b2dcbc1fbd3ec0a9b46bb6d0f8f (diff)
downloadtincapp-a6a1780e10d1ba49e79250bf2d451764bd1cef3a.tar.gz
project: replace jcenter with maven central
JCenter is shutting down. All used dependencies seem to be available on Maven Central.
-rw-r--r--app/build.gradle4
-rw-r--r--build.gradle2
2 files changed, 3 insertions, 3 deletions
diff --git a/app/build.gradle b/app/build.gradle
index 3d2c409..d38b0ac 100644
--- a/app/build.gradle
+++ b/app/build.gradle
@@ -1,6 +1,6 @@
1/* 1/*
2 * Tinc App, an Android binding and user interface for the tinc mesh VPN daemon 2 * Tinc App, an Android binding and user interface for the tinc mesh VPN daemon
3 * Copyright (C) 2017-2020 Pacien TRAN-GIRARD 3 * Copyright (C) 2017-2021 Pacien TRAN-GIRARD
4 * 4 *
5 * This program is free software: you can redistribute it and/or modify 5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by 6 * it under the terms of the GNU General Public License as published by
@@ -100,7 +100,7 @@ dependencies {
100} 100}
101 101
102repositories { 102repositories {
103 jcenter() 103 mavenCentral()
104 google() 104 google()
105} 105}
106 106
diff --git a/build.gradle b/build.gradle
index 2c7d8f0..8414905 100644
--- a/build.gradle
+++ b/build.gradle
@@ -22,7 +22,7 @@ buildscript {
22 ext.kotlin_version = '1.4.20' 22 ext.kotlin_version = '1.4.20'
23 23
24 repositories { 24 repositories {
25 jcenter() 25 mavenCentral()
26 google() 26 google()
27 } 27 }
28 28