Search Gradle plugins

com.github.jacobono.wsdl

Owner: Daniel

Gradle plugin that eases development with WSDL's using the ant wsimport task

https://github.com/jacobono/gradle-wsdl-plugin

Version 1.7.7 (latest)

Created 10 January 2015.

group id changed to 'com.github.jacobono'

Using the plugins DSL:

plugins {
  id("com.github.jacobono.wsdl") version "1.7.7"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.github.jacobono:gradle-wsdl-plugin:1.7.7")
  }
}

apply(plugin = "com.github.jacobono.wsdl")

Using the plugins DSL:

plugins {
  id "com.github.jacobono.wsdl" version "1.7.7"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.jacobono:gradle-wsdl-plugin:1.7.7"
  }
}

apply plugin: "com.github.jacobono.wsdl"

Learn how to apply plugins to subprojects