Search Gradle plugins

Version 1.57

1.57

Created 07 February 2020.

Configures gettext processing for Gradle

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.github.vlsi.gettext") version "1.57"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.github.vlsi.gradle:gettext-plugin:1.57")
      }
    }
    
    apply(plugin = "com.github.vlsi.gettext")
  • Applying plugins to all subprojects .