Search Gradle plugins

Version 3.0.25

Created 13 April 2021.

The Lang Builder Gradle plugin lets you run the Liferay Lang Builder tool to sort and translate the language keys in your project.

Using the plugins DSL:

plugins {
  id("com.liferay.lang.builder") version "3.0.25"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.liferay:gradle-plugins-lang-builder:3.0.25")
  }
}

apply(plugin = "com.liferay.lang.builder")

Using the plugins DSL:

plugins {
  id "com.liferay.lang.builder" version "3.0.25"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.liferay:gradle-plugins-lang-builder:3.0.25"
  }
}

apply plugin: "com.liferay.lang.builder"

Learn how to apply plugins to subprojects