Search Gradle plugins

Version 0.4.1-dev-1

0.4.1-dev-1

Created 21 November 2022.

Extract strings for i18n from Kotlin files in Gettext format

Add this plugin to your build using the plugins DSL:

plugins {
  id("name.kropp.kotlinx-gettext") version "0.4.1-dev-1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("name.kropp.kotlinx-gettext:kotlinx-gettext-gradle-plugin:0.4.1-dev-1")
      }
    }
    
    apply(plugin = "name.kropp.kotlinx-gettext")
  • Applying plugins to all subprojects .