Plex-FAWE/settings.gradle.kts

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

26 lines
582 B
Plaintext
Raw Normal View History

2019-08-26 04:45:03 +00:00
rootProject.name = "FastAsyncWorldEdit"
include("worldedit-libs")
listOf("legacy", "1_17_1", "1_18_2", "1_19", "1_19_3").forEach {
include("worldedit-bukkit:adapters:adapter-$it")
}
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-libs:core:ap")
dependencyResolutionManagement {
repositories {
mavenCentral()
maven {
2021-01-21 12:34:33 +00:00
name = "EngineHub"
url = uri("https://maven.enginehub.org/repo/")
}
}
}
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")