Plex-FAWE/settings.gradle.kts

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
437 B
Plaintext
Raw Normal View History

2019-08-26 04:45:03 +00:00
rootProject.name = "FastAsyncWorldEdit"
include("worldedit-libs")
2021-03-26 13:24:26 +00:00
listOf("bukkit", "core", "cli").forEach {
2019-08-26 04:45:03 +00:00
include("worldedit-libs:$it")
include("worldedit-$it")
}
// include("worldedit-mod")
2019-08-26 04:45:03 +00:00
include("worldedit-libs:core:ap")
dependencyResolutionManagement {
repositories {
mavenCentral()
maven {
2021-01-21 12:34:33 +00:00
name = "EngineHub"
url = uri("https://maven.enginehub.org/repo/")
}
}
}