Search Gradle plugins

com.liferay.portal.tools.wsdd.builder

Owner: Liferay

The WSDD Builder Gradle plugin lets you run the Liferay WSDD Builder tool to generate the Apache Axis Web Service Deployment Descriptor (WSDD) files from a Service Builder service.xml file.

https://github.com/liferay/liferay-portal/tree/master/modules/sdk/gradle-plugins-wsdd-builder

Sources: https://github.com/liferay/liferay-portal/tree/master/modules/sdk/gradle-plugins-wsdd-builder

Version 1.0.23 (latest)

Created 04 August 2023.

The WSDD Builder Gradle plugin lets you run the Liferay WSDD Builder tool to generate the Apache Axis Web Service Deployment Descriptor (WSDD) files from a Service Builder service.xml file.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.liferay.portal.tools.wsdd.builder") version "1.0.23"
}

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.wsdd.builder:com.liferay.portal.tools.wsdd.builder.gradle.plugin:1.0.23")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("com.liferay.portal.tools.wsdd.builder")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.liferay.portal.tools.wsdd.builder:com.liferay.portal.tools.wsdd.builder.gradle.plugin:1.0.23")
      }
    }
    
    apply(plugin = "com.liferay.portal.tools.wsdd.builder")
  • Applying plugins to all subprojects .