java-commons/muscript/build.gradle.kts
JFronny b66332f615
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
move javadoc to reposilite, support for SVG images is coming soon (tm)
2023-04-05 12:59:11 +02:00

28 lines
615 B
Plaintext

import io.gitlab.jfronny.scripts.*
plugins {
id("commons.library")
}
dependencies {
implementation(project(":"))
testImplementation("org.junit.jupiter:junit-jupiter-api:5.9.0")
testRuntimeOnly("org.junit.jupiter:junit-jupiter-engine:5.9.0")
}
publishing {
publications {
create<MavenPublication>("maven") {
groupId = "io.gitlab.jfronny"
artifactId = "muscript"
from(components["java"])
}
}
}
tasks.javadoc {
linksOffline("https://maven.frohnmeyer-wds.de/javadoc/artifacts/io/gitlab/jfronny/commons/$version/raw", project(":"))
}