Search Gradle plugins

Version 0.2 (latest)

0.2

Created 06 July 2018.

A Gradle plugin for generate JAB-WS clients from given WSDL files and URLs.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.github.gmazzo.wsdl") version "0.2"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.github.gmazzo:gradle-wsdl-plugin:0.2")
      }
    }
    
    apply(plugin = "com.github.gmazzo.wsdl")
  • Applying plugins to all subprojects .