mirror of
https://github.com/signalapp/Signal-Android.git
synced 2025-09-20 23:38:09 +08:00
30 lines
536 B
Plaintext
30 lines
536 B
Plaintext
pluginManagement {
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
|
|
repositories {
|
|
google()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
versionCatalogs {
|
|
create("libs") {
|
|
from(files("../gradle/libs.versions.toml"))
|
|
}
|
|
create("testLibs") {
|
|
from(files("../gradle/test-libs.versions.toml"))
|
|
}
|
|
}
|
|
}
|
|
|
|
rootProject.name = "build-logic"
|
|
|
|
include(":plugins")
|
|
include(":tools")
|