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 /annotations | |
parent | aa5976944b875a32e506587da1fd65507dab5086 (diff) | |
download | mcautotranslations-e8eab33cdf692d1efa056dd7abc73a1317fa4160.tar.gz mcautotranslations-e8eab33cdf692d1efa056dd7abc73a1317fa4160.tar.bz2 mcautotranslations-e8eab33cdf692d1efa056dd7abc73a1317fa4160.zip |
Add publishing
Diffstat (limited to 'annotations')
-rw-r--r-- | annotations/build.gradle.kts | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/annotations/build.gradle.kts b/annotations/build.gradle.kts index d4febab..5e6aa95 100644 --- a/annotations/build.gradle.kts +++ b/annotations/build.gradle.kts @@ -1,8 +1,12 @@ plugins { kotlin("jvm") - `maven-publish` } dependencies { } +publishing.publications { + create("maven", MavenPublication::class.java) { + from(components["java"]) + } +} |