plugins { `maven-publish` application kotlin("jvm") } application { mainClass.set("org.openrs2.crc32.Crc32CommandKt") } dependencies { api("com.github.ajalt.clikt:clikt:${Versions.clikt}") } publishing { publications.create("maven") { from(components["java"]) pom { packaging = "jar" name.set("OpenRS2 CRC-32") description.set( """ A tool for calculating the CRC-32 checksum of a file. """.trimIndent() ) } } }