diff options
author | Linnea Gräf <nea@nea.moe> | 2024-10-30 00:00:54 +0100 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2024-10-30 00:00:54 +0100 |
commit | 410f6a0dd1e5288df7c3fc90bd3937a97b2e6385 (patch) | |
tree | cc3db28a82d28dd59528aa3580878cf4fff8980a /gradle-plugin/build.gradle.kts | |
download | mcautotranslations-410f6a0dd1e5288df7c3fc90bd3937a97b2e6385.tar.gz mcautotranslations-410f6a0dd1e5288df7c3fc90bd3937a97b2e6385.tar.bz2 mcautotranslations-410f6a0dd1e5288df7c3fc90bd3937a97b2e6385.zip |
Init
Diffstat (limited to 'gradle-plugin/build.gradle.kts')
-rw-r--r-- | gradle-plugin/build.gradle.kts | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gradle-plugin/build.gradle.kts b/gradle-plugin/build.gradle.kts new file mode 100644 index 0000000..caef680 --- /dev/null +++ b/gradle-plugin/build.gradle.kts @@ -0,0 +1,23 @@ +plugins { + kotlin("jvm") + id("java-gradle-plugin") +} + +dependencies { + implementation(kotlin("gradle-plugin-api")) + implementation(kotlin("stdlib")) + implementation("com.google.code.gson:gson:2.11.0") + implementation("org.ow2.asm:asm:9.7.1") + implementation(project(":annotations")) +} + +gradlePlugin { + plugins { + create("mcAutoTranslations") { + id = "moe.nea.mc-auto-translations" + displayName = "MC Auto Translation File Generation" + implementationClass = "moe.nea.mcautotranslations.gradle.MCAutoTranslationsGradlePlugin" + } + } + +} |