java-commons/commons-manifold/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

32 lines
606 B
Plaintext

import io.gitlab.jfronny.scripts.*
plugins {
id("commons.library")
id("jf.manifold")
}
dependencies {
implementation(project(":"))
}
publishing {
publications {
create<MavenPublication>("maven") {
groupId = "io.gitlab.jfronny"
artifactId = "commons-manifold"
from(components["java"])
}
}
}
tasks.jar {
manifest {
attributes(mapOf("Contains-Sources" to "java,class"))
}
}
tasks.javadoc {
linksOffline("https://maven.frohnmeyer-wds.de/javadoc/artifacts/io/gitlab/jfronny/commons/$version/raw", project(":"))
}