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 /gradle-plugin | |
parent | aa5976944b875a32e506587da1fd65507dab5086 (diff) | |
download | mcautotranslations-e8eab33cdf692d1efa056dd7abc73a1317fa4160.tar.gz mcautotranslations-e8eab33cdf692d1efa056dd7abc73a1317fa4160.tar.bz2 mcautotranslations-e8eab33cdf692d1efa056dd7abc73a1317fa4160.zip |
Add publishing
Diffstat (limited to 'gradle-plugin')
-rw-r--r-- | gradle-plugin/build.gradle.kts | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/gradle-plugin/build.gradle.kts b/gradle-plugin/build.gradle.kts index caef680..eca7a4c 100644 --- a/gradle-plugin/build.gradle.kts +++ b/gradle-plugin/build.gradle.kts @@ -19,5 +19,11 @@ gradlePlugin { implementationClass = "moe.nea.mcautotranslations.gradle.MCAutoTranslationsGradlePlugin" } } - } + +// TODO: i shouldnt need this block, but let's leave it here if i need it in the future. +//publishing.publications { +// create("maven", MavenPublication::class.java) { +// from(components["java"]) +// } +//} |