com.github.gmazzo.wsdl
Owner:
Guillermo Mazzola
A Gradle plugin for generate JAB-WS clients from given WSDL files and URLs.
https://github.com/gmazzo/gradle-wsdl-plugin
Sources: https://github.com/gmazzo/gradle-wsdl-plugin
Version 0.2 (latest)
Created 06 July 2018.
A Gradle plugin for generate JAB-WS clients from given WSDL files and URLs.
Using the plugins DSL:
plugins {
id("com.github.gmazzo.wsdl") version "0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.github.gmazzo:gradle-wsdl-plugin:0.2")
}
}
apply(plugin = "com.github.gmazzo.wsdl")
Using the plugins DSL:
plugins {
id "com.github.gmazzo.wsdl" version "0.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.github.gmazzo:gradle-wsdl-plugin:0.2"
}
}
apply plugin: "com.github.gmazzo.wsdl"