de.comahe.i18n4k
Owner: comahe.de
i18n4k - Internationalization for Kotlin - Code Generator
https://comahe-de.github.io/i18n4k
Sources: https://github.com/comahe-de/i18n4k
Version 0.1.0-SNAPSHOT
Created 20 February 2021.
i18n4k - Internationalization for Kotlin - Code Generator
Add this plugin to your build using the plugins DSL:
plugins {
id("de.comahe.i18n4k") version "0.1.0-SNAPSHOT"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("de.comahe.i18n4k:de.comahe.i18n4k.gradle.plugin:0.1.0-SNAPSHOT") }
It can then be applied in the precompiled script plugin:plugins { id("de.comahe.i18n4k") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("de.comahe.i18n4k:de.comahe.i18n4k.gradle.plugin:0.1.0-SNAPSHOT") } } apply(plugin = "de.comahe.i18n4k")
- Applying plugins to all subprojects .