mirror of
https://github.com/plexusorg/Plex-FAWE.git
synced 2024-11-02 02:47:11 +00:00
a5e84dcfea
- Closes #1204 - Switch to security advisory - Move fawe-tests to fawe packages
24 lines
530 B
Plaintext
24 lines
530 B
Plaintext
rootProject.name = "FastAsyncWorldEdit"
|
|
|
|
include("worldedit-libs")
|
|
|
|
listOf("bukkit", "core", "cli").forEach {
|
|
include("worldedit-libs:$it")
|
|
include("worldedit-$it")
|
|
}
|
|
// include("worldedit-mod")
|
|
include("worldedit-libs:core:ap")
|
|
|
|
dependencyResolutionManagement {
|
|
repositories {
|
|
mavenCentral()
|
|
maven {
|
|
name = "EngineHub"
|
|
url = uri("https://maven.enginehub.org/repo/")
|
|
}
|
|
}
|
|
}
|
|
|
|
enableFeaturePreview("VERSION_CATALOGS")
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|