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
Version 0.11
0.11
Created 01 October 2019.
Yet another WsImport Gradle plugin - requires Gradle 5.6 or greater. If you're using an earlier version of Gradle use 0.10. If you're still on Gradle 3.x use version 0.3 of this plugin.
Using the plugins DSL:
plugins {
id("uk.co.boothen.gradle.wsimport") version "0.11"
}
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.11")
}
}
apply(plugin = "uk.co.boothen.gradle.wsimport")
Using the plugins DSL:
plugins {
id "uk.co.boothen.gradle.wsimport" version "0.11"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.uk.co.boothen.gradle:gradle-wsimport:0.11"
}
}
apply plugin: "uk.co.boothen.gradle.wsimport"