Search Gradle plugins

Version 1.60

Created 07 February 2020.

Configures gettext processing for Gradle

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.vlsi.gradle:gettext-plugin:1.60")
  }
}

apply(plugin = "com.github.vlsi.gettext")

Using the plugins DSL:

plugins {
  id "com.github.vlsi.gettext" version "1.60"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.vlsi.gradle:gettext-plugin:1.60"
  }
}

apply plugin: "com.github.vlsi.gettext"

Learn how to apply plugins to subprojects