Search Gradle plugins

Version 0.3

Created 15 June 2022.

Extract strings for i18n from Kotlin files in Gettext format

Using the plugins DSL:

plugins {
  id("name.kropp.kotlinx-gettext") version "0.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("name.kropp.kotlinx-gettext:kotlinx-gettext-gradle-plugin:0.3")
  }
}

apply(plugin = "name.kropp.kotlinx-gettext")

Using the plugins DSL:

plugins {
  id "name.kropp.kotlinx-gettext" version "0.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "name.kropp.kotlinx-gettext:kotlinx-gettext-gradle-plugin:0.3"
  }
}

apply plugin: "name.kropp.kotlinx-gettext"

Learn how to apply plugins to subprojects