Search Gradle plugins

Version 2.2.57

2.2.57

Created 06 September 2019.

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 "2.2.57"
}

See also:

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