Search Gradle plugins

Version 3.0.24

Created 05 November 2020.

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.24"
}

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.24")
  }
}

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

Using the plugins DSL:

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

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.24"
  }
}

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

Learn how to apply plugins to subprojects