diff --git a/RedisBungee-Commands/build.gradle.kts b/RedisBungee-Commands/build.gradle.kts index 0c5944e..78a9676 100644 --- a/RedisBungee-Commands/build.gradle.kts +++ b/RedisBungee-Commands/build.gradle.kts @@ -1,5 +1,6 @@ plugins { `java-library` + `maven-publish` } dependencies { @@ -22,3 +23,11 @@ tasks { filteringCharset = Charsets.UTF_8.name() } } + +publishing { + publications { + create("maven") { + from(components["java"]) + } + } +} \ No newline at end of file