mirror of
https://github.com/CivMC/Civ.git
synced 2026-07-15 23:20:44 +00:00
20 lines
371 B
Kotlin
20 lines
371 B
Kotlin
rootProject.name = "civspy"
|
|
|
|
pluginManagement {
|
|
repositories {
|
|
gradlePluginPortal()
|
|
maven("https://papermc.io/repo/repository/maven-public/")
|
|
}
|
|
}
|
|
|
|
plugins {
|
|
id("com.gradle.enterprise") version("3.16")
|
|
}
|
|
|
|
rootProject.name="civspy"
|
|
|
|
include(":api")
|
|
include(":platform:bungee")
|
|
include(":platform:paper")
|
|
project(":platform:paper").name = rootProject.name + "-paper"
|