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.17

1.0.17

Created 19 May 2021.

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

See also:

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