summaryrefslogtreecommitdiff
path: root/settings.gradle
diff options
context:
space:
mode:
authorVincent Bourgmayer <vincent.bourgmayer@e.email>2023-05-11 12:45:57 +0000
committerVincent Bourgmayer <vincent.bourgmayer@e.email>2023-05-11 12:45:57 +0000
commitc615cb53ef58af2835796286c2f41bc41572dfbe (patch)
treec3180713b71fe21c088b9d57ad4e785fce35828a /settings.gradle
parentc0596ecc6236594d7a008219e978c9220984176b (diff)
parent739a89101d632d0f6633cf7d4eaf911768216c93 (diff)
Merge branch '000-move-dependencies-across-gradle-file' into 'main'
move dependencies from build.gradle (top) to settings.gradle to follow same... See merge request e/os/advanced-privacy!133
Diffstat (limited to 'settings.gradle')
-rw-r--r--settings.gradle20
1 files changed, 20 insertions, 0 deletions
diff --git a/settings.gradle b/settings.gradle
index 725f5c1..24ddbbd 100644
--- a/settings.gradle
+++ b/settings.gradle
@@ -1,3 +1,11 @@
+pluginManagement {
+ repositories {
+ gradlePluginPortal()
+ google()
+ mavenCentral()
+ }
+}
+
include ':app'
rootProject.name = "AdvancedPrivacy"
include ':fakelocation'
@@ -7,3 +15,15 @@ include ':permissionsstandalone'
include ':trackers'
include ':permissionse'
include ':permissionse:libs:hidden-apis-stub'
+
+
+dependencyResolutionManagement {
+ repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
+ repositories {
+ google()
+ mavenCentral()
+ maven { url "https://jitpack.io" }
+ maven { url 'https://gitlab.e.foundation/api/v4/groups/9/-/packages/maven'}
+ maven { url "https://raw.githubusercontent.com/guardianproject/gpmaven/master" }
+ }
+} \ No newline at end of file