diff options
author | Linnea Gräf <nea@nea.moe> | 2024-10-30 18:41:00 +0100 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2024-10-30 18:41:00 +0100 |
commit | cb06ffa17537297ea1e8cca1d6fd01d8925d372d (patch) | |
tree | 3e6f1d3b020577cb42fb518e58f10ab6a7147978 | |
parent | e8eab33cdf692d1efa056dd7abc73a1317fa4160 (diff) | |
download | mcautotranslations-cb06ffa17537297ea1e8cca1d6fd01d8925d372d.tar.gz mcautotranslations-cb06ffa17537297ea1e8cca1d6fd01d8925d372d.tar.bz2 mcautotranslations-cb06ffa17537297ea1e8cca1d6fd01d8925d372d.zip |
Add maven repo info
-rw-r--r-- | README.md | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -57,11 +57,27 @@ and use the provided translations to format a proper return value. ## Gradle setup +You need to add `maven("https://repo.nea.moe/releases")` as a repository to your `settings.gradle.kts`: + + +```kt +pluginManagement { + repositories { + maven { + url = uri("https://repo.nea.moe/releases") + } + mavenCentral() + gradlePluginPortal() + } +} +``` + Next you need to configure the gradle plugin: ```kt plugins { kotlin("jvm") version "2.0.20" + // Check https://repo.nea.moe/#/releases/moe/nea/mc-auto-translations/moe.nea.mc-auto-translations.gradle.plugin id("moe.nea.mc-auto-translations") version "0.0.1" } |