mirror of
https://github.com/octoleo/plantuml.git
synced 2024-11-22 13:05:09 +00:00
18e6c41bfb
on the commadn line this allows as before: gradle -q signMavenPublication signPdfJar -Psigning.gnupg.keyName=... - -Psigning.gnupg.passphrase=... on github this allows to put the key and password into environment variables: ORG_GRADLE_PROJECT_signingKey: ${{ secrets.ARTIFACT_SIGNING_KEY }} ORG_GRADLE_PROJECT_signingPassword: ${{ secrets.ARTIFACT_SIGNING_PASSPHRASE }} gradle -q signMavenPublication signPdfJar
137 lines
3.4 KiB
Plaintext
137 lines
3.4 KiB
Plaintext
// 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
|
|
|
|
plugins {
|
|
java
|
|
`maven-publish`
|
|
signing
|
|
}
|
|
|
|
group = "net.sourceforge.plantuml"
|
|
description = "PlantUML"
|
|
|
|
java {
|
|
withSourcesJar()
|
|
withJavadocJar()
|
|
registerFeature("pdf") {
|
|
usingSourceSet(sourceSets["main"])
|
|
}
|
|
}
|
|
|
|
dependencies {
|
|
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")
|
|
"pdfRuntimeOnly"("org.apache.xmlgraphics:fop:2.7")
|
|
"pdfRuntimeOnly"("org.apache.xmlgraphics:batik-all:1.14")
|
|
}
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
mavenCentral()
|
|
}
|
|
|
|
sourceSets {
|
|
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")
|
|
}
|
|
}
|
|
}
|
|
|
|
tasks.compileJava {
|
|
if (JavaVersion.current().isJava8) {
|
|
java.targetCompatibility = JavaVersion.VERSION_1_8
|
|
} else {
|
|
options.release.set(Integer.parseInt(javacRelease))
|
|
}
|
|
}
|
|
|
|
tasks.withType<Jar>().configureEach {
|
|
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") }
|
|
// source sets for java and resources are on "src", only put once into the jar
|
|
duplicatesStrategy = DuplicatesStrategy.EXCLUDE
|
|
}
|
|
|
|
publishing {
|
|
publications.create<MavenPublication>("maven") {
|
|
from(components["java"])
|
|
}
|
|
}
|
|
|
|
tasks.withType<JavaCompile>().configureEach {
|
|
options.encoding = "UTF-8"
|
|
}
|
|
|
|
tasks.withType<Javadoc>().configureEach {
|
|
options {
|
|
this as StandardJavadocDocletOptions
|
|
addBooleanOption("Xdoclint:none", true)
|
|
addStringOption("Xmaxwarns", "1")
|
|
encoding = "UTF-8"
|
|
isUse = true
|
|
}
|
|
}
|
|
|
|
tasks.test {
|
|
useJUnitPlatform()
|
|
testLogging.showStandardStreams = true
|
|
}
|
|
|
|
val pdfJar by tasks.registering(Jar::class) {
|
|
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")
|
|
}
|
|
|
|
signing {
|
|
if (hasProperty("signing.gnupg.keyName") && hasProperty("signing.gnupg.passphrase")) {
|
|
useGpgCmd()
|
|
} else if (hasProperty("signingKey") && hasProperty("signingPassword")) {
|
|
val signingKey: String? by project
|
|
val signingPassword: String? by project
|
|
useInMemoryPgpKeys(signingKey, signingPassword)
|
|
}
|
|
if (hasProperty("signing.gnupg.passphrase") || hasProperty("signingPassword")) {
|
|
sign(publishing.publications["maven"])
|
|
sign(closureOf<SignOperation> { sign(pdfJar.get()) })
|
|
}
|
|
}
|