plugins { id("commons.library") id("jf.manifold") } dependencies { implementation(project(":")) } publishing { publications { create("maven") { groupId = "io.gitlab.jfronny" artifactId = "commons-manifold" from(components["java"]) } } }