plugins { `maven-publish` application kotlin("jvm") } application { mainClassName = "dev.openrs2.game.GameCommandKt" } dependencies { api("com.github.ajalt:clikt:${Versions.clikt}") implementation("com.google.inject:guice:${Versions.guice}") } publishing { publications.create("maven") { from(components["java"]) pom { packaging = "jar" name.set("OpenRS2 Game Server") description.set( """ Reimplementation of the RuneScape game server software. """.trimIndent() ) } } }