26 lines
No EOL
534 B
Kotlin
26 lines
No EOL
534 B
Kotlin
pluginManagement {
|
|
includeBuild("../build-logic")
|
|
repositories {
|
|
maven("https://repo.papermc.io/repository/maven-public/") {
|
|
name = "papermc"
|
|
}
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id("scrow.scrow-repository")
|
|
}
|
|
|
|
dependencyResolutionManagement {
|
|
repositories {
|
|
maven("https://repo.papermc.io/repository/maven-public/") {
|
|
name = "papermc"
|
|
}
|
|
}
|
|
}
|
|
|
|
rootProject.name = "KenCommandAPI"
|
|
|
|
include("kencommandapi-core")
|
|
include("kencommandapi-bukkit")
|
|
include("kencommandapi-velocity") |