26 lines
428 B
Plaintext
26 lines
428 B
Plaintext
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"))
|
|
}
|
|
}
|