amethyst/settings.gradle

35 wiersze
808 B
Groovy

2023-01-11 18:31:20 +00:00
pluginManagement {
repositories {
2024-03-01 15:38:03 +00:00
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
2023-01-11 18:31:20 +00:00
mavenCentral()
2024-03-01 15:38:03 +00:00
gradlePluginPortal()
2023-10-12 17:36:59 +00:00
maven {
url "https://jitpack.io"
content {
includeModule 'com.github.UnifiedPush', 'android-connector'
}
}
2023-01-11 18:31:20 +00:00
}
}
2024-03-01 15:38:03 +00:00
2023-01-11 18:31:20 +00:00
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
}
}
2024-03-01 15:38:03 +00:00
2023-01-11 18:31:20 +00:00
rootProject.name = "Amethyst"
include ':app'
include ':benchmark'
include ':quartz'
include ':commons'