diff options
author | Linnea Gräf <nea@nea.moe> | 2024-10-30 18:38:16 +0100 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2024-10-30 18:38:16 +0100 |
commit | e8eab33cdf692d1efa056dd7abc73a1317fa4160 (patch) | |
tree | 1036167029486cab67afcd960db3ba900bad12b4 /kotlin-plugin | |
parent | aa5976944b875a32e506587da1fd65507dab5086 (diff) | |
download | mcautotranslations-e8eab33cdf692d1efa056dd7abc73a1317fa4160.tar.gz mcautotranslations-e8eab33cdf692d1efa056dd7abc73a1317fa4160.tar.bz2 mcautotranslations-e8eab33cdf692d1efa056dd7abc73a1317fa4160.zip |
Add publishing
Diffstat (limited to 'kotlin-plugin')
-rw-r--r-- | kotlin-plugin/build.gradle.kts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/kotlin-plugin/build.gradle.kts b/kotlin-plugin/build.gradle.kts index 9cf4d36..0db911d 100644 --- a/kotlin-plugin/build.gradle.kts +++ b/kotlin-plugin/build.gradle.kts @@ -18,3 +18,9 @@ dependencies { testImplementation("dev.zacsweers.kctfork:ksp:0.5.1") } + +publishing.publications { + create("maven", MavenPublication::class.java) { + from(components["java"]) + } +} |