Search Gradle plugins

Version 4.0.168

Created 25 November 2024.

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

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("com.liferay.portal.tools.service.builder:com.liferay.portal.tools.service.builder.gradle.plugin:4.0.168")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.liferay.portal.tools.service.builder")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.liferay.portal.tools.service.builder:com.liferay.portal.tools.service.builder.gradle.plugin:4.0.168")
      }
    }
    
    apply(plugin = "com.liferay.portal.tools.service.builder")
  • Applying plugins to all subprojects .