mirror of
https://github.com/octoleo/plantuml.git
synced 2024-11-05 21:17:52 +00:00
19 lines
468 B
Plaintext
19 lines
468 B
Plaintext
// https://docs.gradle.org/current/javadoc/org/gradle/api/initialization/Settings.html
|
|
|
|
rootProject.name = "plantuml"
|
|
|
|
val isCiBuild = System.getenv("CI") != null
|
|
val version: String by settings
|
|
|
|
println("Running settings.gradle.kts")
|
|
// println(rootProject.projectDir)
|
|
println("Version is " + version)
|
|
|
|
include("plantuml-mit")
|
|
if (!version.contains("beta")) {
|
|
include("plantuml-epl")
|
|
include("plantuml-bsd")
|
|
include("plantuml-asl")
|
|
include("plantuml-lgpl")
|
|
}
|