amethyst/settings.gradle

37 lines
922 B
Groovy
Raw Permalink Normal View History

2023-01-11 13:31:20 -05:00
pluginManagement {
repositories {
2024-03-01 10:38:03 -05:00
google {
content {
includeGroupByRegex("com\\.android.*")
includeGroupByRegex("com\\.google.*")
includeGroupByRegex("androidx.*")
}
}
2023-01-11 13:31:20 -05:00
mavenCentral()
2024-03-01 10:38:03 -05:00
gradlePluginPortal()
2023-10-12 18:36:59 +01:00
maven {
url "https://jitpack.io"
content {
includeModule 'com.github.UnifiedPush', 'android-connector'
}
}
2023-01-11 13:31:20 -05:00
}
}
2024-03-01 10:38:03 -05:00
2023-01-11 13:31:20 -05:00
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven { url "https://jitpack.io" }
2024-09-09 19:42:43 -04:00
maven { url "https://raw.githubusercontent.com/guardianproject/gpmaven/master" }
2023-01-11 13:31:20 -05:00
}
}
2024-03-01 10:38:03 -05:00
2023-01-11 13:31:20 -05:00
rootProject.name = "Amethyst"
2024-06-24 14:13:55 -04:00
include ':amethyst'
include ':benchmark'
include ':quartz'
include ':commons'
2024-06-24 07:13:06 -03:00
include ':ammolite'