PlayerShops/settings.gradle.kts

26 lines
535 B
Plaintext
Raw Normal View History

rootProject.name = "PlayerShops"
2022-07-09 12:53:27 +00:00
include(":api")
include(":plugin")
dependencyResolutionManagement {
repositories {
mavenCentral()
maven("https://repo.destro.xyz/snapshots") // Altitude - Galaxy
maven("https://jitpack.io") { // Vault
content {
includeGroup("com.github.milkbowl")
includeGroup("com.github.TechFortress")
}
}
}
}
pluginManagement {
repositories {
gradlePluginPortal()
}
2022-07-09 12:53:27 +00:00
}
include("api")
include("plugin")