Search Gradle plugins

Version 1.2.27 (latest)

Created 19 April 2024.

Automatically extract all your strings to localize them

Using the plugins DSL:

plugins {
  id("de.l11n.gettext.gradle-gettext-plugin") version "1.2.27"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("de.l11n.gettext:gettext-gradle-plugin:1.2.27")
  }
}

apply(plugin = "de.l11n.gettext.gradle-gettext-plugin")

Using the plugins DSL:

plugins {
  id "de.l11n.gettext.gradle-gettext-plugin" version "1.2.27"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "de.l11n.gettext:gettext-gradle-plugin:1.2.27"
  }
}

apply plugin: "de.l11n.gettext.gradle-gettext-plugin"

Learn how to apply plugins to subprojects