java-commons/commons-manifold/build.gradle.kts

32 lines
579 B
Plaintext
Raw Normal View History

2023-02-23 14:31:06 +01:00
import io.gitlab.jfronny.scripts.*
2022-11-24 14:55:39 +01:00
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"])
}
}
}
2022-11-24 19:34:41 +01:00
tasks.jar {
manifest {
attributes(mapOf("Contains-Sources" to "java,class"))
}
}
2023-02-23 14:31:06 +01:00
tasks.javadoc {
linksOffline("https://pages.frohnmeyer-wds.de/Johannes/java-commons/commons", project(":"))
}