2023-02-23 14:31:06 +01:00
|
|
|
import io.gitlab.jfronny.scripts.*
|
|
|
|
|
2022-11-24 14:55:39 +01:00
|
|
|
plugins {
|
2024-03-09 12:37:38 +01:00
|
|
|
commons.library
|
|
|
|
jf.manifold
|
2022-11-24 14:55:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
2024-03-09 12:37:38 +01:00
|
|
|
implementation(projects.commons)
|
2022-11-24 14:55:39 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
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 {
|
2024-03-09 12:37:38 +01:00
|
|
|
linksOffline("https://maven.frohnmeyer-wds.de/javadoc/artifacts/io/gitlab/jfronny/commons/$version/raw", projects.commons)
|
2023-02-23 14:31:06 +01:00
|
|
|
}
|