mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 13:16:45 +01:00
23 lines
498 B
Plaintext
23 lines
498 B
Plaintext
plugins {
|
|
id("com.gradle.enterprise") version("3.9")
|
|
}
|
|
|
|
gradleEnterprise {
|
|
if (System.getenv("CI") != null) {
|
|
buildScan {
|
|
publishAlways()
|
|
termsOfServiceUrl = "https://gradle.com/terms-of-service"
|
|
termsOfServiceAgree = "yes"
|
|
}
|
|
}
|
|
}
|
|
|
|
rootProject.name = "PlotSquared"
|
|
|
|
include("Core", "Bukkit")
|
|
|
|
project(":Core").name = "PlotSquared-Core"
|
|
project(":Bukkit").name = "PlotSquared-Bukkit"
|
|
|
|
enableFeaturePreview("TYPESAFE_PROJECT_ACCESSORS")
|