uk.co.boothen.gradle.wsimport
Owner: Matt Garner
Yet another WsImport Gradle plugin
https://github.com/boothen/gradle-wsimport
Sources: https://github.com/boothen/gradle-wsimport
Using the plugins DSL:
plugins {
id("uk.co.boothen.gradle.wsimport") version "0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.uk.co.boothen.gradle:gradle-wsimport:0.1")
}
}
apply(plugin = "uk.co.boothen.gradle.wsimport")
Using the plugins DSL:
plugins {
id "uk.co.boothen.gradle.wsimport" version "0.1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.uk.co.boothen.gradle:gradle-wsimport:0.1"
}
}
apply plugin: "uk.co.boothen.gradle.wsimport"