2022-02-10 16:10:52 +00:00
|
|
|
// permits to start the build setting the javac release parameter, no parameter means build for java8:
|
|
|
|
// gradle clean build -x javaDoc -PjavacRelease=8
|
|
|
|
// gradle clean build -x javaDoc -PjavacRelease=17
|
|
|
|
// also supported is to build first, with java17, then switch the java version, and run the test with java8:
|
|
|
|
// gradle clean build -x javaDoc -x test
|
|
|
|
// gradle test
|
|
|
|
val javacRelease = (project.findProperty("javacRelease") ?: "8") as String
|
2022-02-08 08:18:17 +00:00
|
|
|
|
2022-01-05 17:28:46 +00:00
|
|
|
plugins {
|
2022-02-11 10:13:46 +00:00
|
|
|
java
|
|
|
|
`maven-publish`
|
|
|
|
signing
|
2022-01-05 17:28:46 +00:00
|
|
|
}
|
|
|
|
|
2022-02-12 17:49:30 +00:00
|
|
|
group = "net.sourceforge.plantuml"
|
|
|
|
description = "PlantUML"
|
|
|
|
|
|
|
|
java {
|
|
|
|
withSourcesJar()
|
|
|
|
withJavadocJar()
|
2022-02-12 23:34:33 +00:00
|
|
|
registerFeature("pdf") {
|
|
|
|
usingSourceSet(sourceSets["main"])
|
|
|
|
}
|
2022-01-05 17:28:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2022-02-11 10:13:46 +00:00
|
|
|
compileOnly("org.apache.ant:ant:1.10.12")
|
|
|
|
testImplementation("org.assertj:assertj-core:3.22.0")
|
|
|
|
testImplementation("org.junit.jupiter:junit-jupiter:5.8.2")
|
|
|
|
testImplementation("org.scilab.forge:jlatexmath:1.0.7")
|
2022-02-14 10:30:35 +00:00
|
|
|
"pdfRuntimeOnly"("org.apache.xmlgraphics:fop:2.7")
|
2022-02-12 23:34:33 +00:00
|
|
|
"pdfRuntimeOnly"("org.apache.xmlgraphics:batik-all:1.14")
|
2022-01-05 17:28:46 +00:00
|
|
|
}
|
|
|
|
|
2022-02-12 17:49:30 +00:00
|
|
|
repositories {
|
|
|
|
mavenLocal()
|
|
|
|
mavenCentral()
|
2022-01-05 17:28:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sourceSets {
|
2022-02-11 10:13:46 +00:00
|
|
|
main {
|
|
|
|
java {
|
|
|
|
srcDirs("src")
|
|
|
|
}
|
|
|
|
resources {
|
|
|
|
srcDirs("src")
|
|
|
|
include("**/graphviz.dat")
|
|
|
|
include("**/*.png")
|
|
|
|
include("**/*.svg")
|
|
|
|
include("**/*.txt")
|
|
|
|
}
|
|
|
|
}
|
|
|
|
test {
|
|
|
|
java {
|
|
|
|
srcDirs("test")
|
|
|
|
}
|
|
|
|
resources {
|
|
|
|
srcDirs(".")
|
|
|
|
include("skin/**/*.skin")
|
|
|
|
include("themes/**/*.puml")
|
|
|
|
}
|
|
|
|
}
|
2022-01-05 17:28:46 +00:00
|
|
|
}
|
|
|
|
|
2022-02-04 00:06:44 +00:00
|
|
|
tasks.compileJava {
|
2022-02-10 16:10:52 +00:00
|
|
|
if (JavaVersion.current().isJava8) {
|
|
|
|
java.targetCompatibility = JavaVersion.VERSION_1_8
|
|
|
|
} else {
|
|
|
|
options.release.set(Integer.parseInt(javacRelease))
|
|
|
|
}
|
2022-02-04 00:06:44 +00:00
|
|
|
}
|
|
|
|
|
2022-02-13 06:08:34 +00:00
|
|
|
tasks.withType<Jar>().configureEach {
|
2022-02-11 10:13:46 +00:00
|
|
|
manifest {
|
|
|
|
attributes["Main-Class"] = "net.sourceforge.plantuml.Run"
|
|
|
|
attributes["Implementation-Version"] = archiveVersion
|
|
|
|
attributes["Build-Jdk-Spec"] = System.getProperty("java.specification.version")
|
|
|
|
from("manifest.txt")
|
|
|
|
}
|
|
|
|
from("skin") { into("skin") }
|
|
|
|
from("stdlib") { into("stdlib") }
|
|
|
|
from("svg") { into("svg") }
|
|
|
|
from("themes") { into("themes") }
|
2022-02-12 17:49:30 +00:00
|
|
|
// source sets for java and resources are on "src", only put once into the jar
|
|
|
|
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
2022-01-05 17:28:46 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
publishing {
|
2022-02-11 10:13:46 +00:00
|
|
|
publications.create<MavenPublication>("maven") {
|
|
|
|
from(components["java"])
|
|
|
|
}
|
2022-01-05 17:28:46 +00:00
|
|
|
}
|
|
|
|
|
2022-02-13 06:08:34 +00:00
|
|
|
tasks.withType<JavaCompile>().configureEach {
|
2022-02-11 10:13:46 +00:00
|
|
|
options.encoding = "UTF-8"
|
2022-01-05 17:28:46 +00:00
|
|
|
}
|
2022-01-06 23:36:03 +00:00
|
|
|
|
2022-02-13 06:08:34 +00:00
|
|
|
tasks.withType<Javadoc>().configureEach {
|
2022-02-11 10:13:46 +00:00
|
|
|
options {
|
|
|
|
this as StandardJavadocDocletOptions
|
|
|
|
addBooleanOption("Xdoclint:none", true)
|
|
|
|
addStringOption("Xmaxwarns", "1")
|
2022-02-13 05:47:22 +00:00
|
|
|
encoding = "UTF-8"
|
|
|
|
isUse = true
|
2022-02-11 10:13:46 +00:00
|
|
|
}
|
2022-01-06 23:36:03 +00:00
|
|
|
}
|
2022-01-07 01:51:54 +00:00
|
|
|
|
|
|
|
tasks.test {
|
2022-02-11 10:13:46 +00:00
|
|
|
useJUnitPlatform()
|
|
|
|
testLogging.showStandardStreams = true
|
2022-01-07 01:51:54 +00:00
|
|
|
}
|
2022-01-15 09:23:57 +00:00
|
|
|
|
2022-02-14 09:29:34 +00:00
|
|
|
val pdfJar by tasks.registering(Jar::class) {
|
2022-02-13 13:54:25 +00:00
|
|
|
group = "build" // OR for example, "build"
|
|
|
|
description = "Assembles a jar containing dependencies to create PDFs."
|
|
|
|
manifest.attributes["Main-Class"] = "net.sourceforge.plantuml.Run"
|
|
|
|
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
|
|
|
val dependencies = configurations.runtimeClasspath.get().map(::zipTree)
|
|
|
|
from(dependencies)
|
|
|
|
with(tasks.jar.get())
|
|
|
|
archiveAppendix.set("pdf")
|
|
|
|
}
|
2022-02-14 09:29:34 +00:00
|
|
|
|
|
|
|
signing {
|
|
|
|
if (hasProperty("signing.gnupg.passphrase")) {
|
|
|
|
useGpgCmd()
|
|
|
|
sign(publishing.publications["maven"])
|
|
|
|
sign(closureOf<SignOperation> { sign(pdfJar.get()) })
|
|
|
|
}
|
|
|
|
}
|