VillagerShopUI/settings.gradle.kts

31 lines
843 B
Plaintext
Raw Permalink Normal View History

2021-12-17 19:54:43 +00:00
rootProject.name = "VillagerShopUI"
val nexusUser = providers.gradleProperty("alttdDevPublishUser").get()
val nexusPass = providers.gradleProperty("alttdDevPublishPass").get()
2021-12-17 19:54:43 +00:00
dependencyResolutionManagement {
repositories {
mavenLocal()
mavenCentral()
maven {
name = "nexus"
url = uri("https://repo.alttd.com/repository/alttd-snapshot/")
credentials {
username = nexusUser
password = nexusPass
}
}
maven("https://repo.destro.xyz/snapshots") // Cosmos
2021-12-17 19:54:43 +00:00
maven("https://jitpack.io") { // Vault
content { includeGroup("com.github.milkbowl") }
}
}
repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
}
pluginManagement {
repositories {
gradlePluginPortal()
}
}