1
0
mirror of https://github.com/AllanWang/Frost-for-Facebook.git synced 2024-09-19 23:21:34 +02:00
Frost-for-Facebook/settings.gradle.kts

36 lines
784 B
Plaintext
Raw Normal View History

2023-06-18 06:02:19 +02:00
import java.net.URI
2019-06-07 20:52:55 +02:00
2023-06-18 06:02:19 +02:00
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")