2023-05-17 19:19:43 +00:00
|
|
|
// https://docs.gradle.org/current/javadoc/org/gradle/api/initialization/Settings.html
|
|
|
|
|
2022-01-05 17:28:46 +00:00
|
|
|
rootProject.name = "plantuml"
|
2023-04-05 10:13:14 +00:00
|
|
|
|
|
|
|
val isCiBuild = System.getenv("CI") != null
|
2023-05-17 19:19:43 +00:00
|
|
|
val version: String by settings
|
|
|
|
|
|
|
|
println("Running settings.gradle.kts")
|
|
|
|
// println(rootProject.projectDir)
|
|
|
|
println("Version is " + version)
|
2023-04-05 10:13:14 +00:00
|
|
|
|
2023-05-15 16:37:07 +00:00
|
|
|
include("plantuml-mit")
|
2023-05-17 19:19:43 +00:00
|
|
|
if (!version.contains("beta")) {
|
|
|
|
include("plantuml-epl")
|
|
|
|
include("plantuml-bsd")
|
|
|
|
include("plantuml-asl")
|
|
|
|
include("plantuml-lgpl")
|
|
|
|
}
|