1
0
mirror of https://github.com/AllanWang/Frost-for-Facebook.git synced 2024-09-16 20:12:25 +02:00
Frost-for-Facebook/settings.gradle.kts
2023-06-17 21:02:19 -07:00

36 lines
784 B
Plaintext

import java.net.URI
pluginManagement {
repositories {
gradlePluginPortal()
google()
mavenCentral()
}
}
dependencyResolutionManagement {
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
repositories {
google()
mavenCentral()
maven {
name = "Mozilla Nightly"
url = URI("https://nightly.maven.mozilla.org/maven2")
content {
// Always fetch components from the snapshots repository
includeGroup("org.mozilla.components")
}
}
maven {
name = "Mozilla"
url = URI("https://maven.mozilla.org/maven2")
content {
// Never fetch components from here. We always want to use snapshots.
excludeGroup("org.mozilla.components")
}
}
}
}
include(":app-compose")