Search Gradle plugins

Version 4.0.136

4.0.136

Created 18 September 2023.

The Service Builder Gradle plugin lets you generate a Liferay service layer defined in a Service Builder service.xml file.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.liferay.portal.tools.service.builder") version "4.0.136"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.liferay:gradle-plugins-service-builder:4.0.136")
      }
    }
    
    apply(plugin = "com.liferay.portal.tools.service.builder")
  • Applying plugins to all subprojects .