Search Gradle plugins

cz.swsamuraj.jaxws

Contract-first approach for SOAP based Web Services by generating Java artifacts from WSDL.

https://bitbucket.org/sw-samuraj/gradle-jaxws-plugin

Sources: https://bitbucket.org/sw-samuraj/gradle-jaxws-plugin

Version 0.4.0

Created 18 October 2015.

Contract-first approach for SOAP based Web Services
by generating Java artifacts from WSDL or XSD with
optional usage of JAXB binding.
Also Bean Validation annotations can be generated
through the binding.

Using the plugins DSL:

plugins {
  id("cz.swsamuraj.jaxws") version "0.4.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.cz.swsamuraj:gradle-jaxws-plugin:0.4.0")
  }
}

apply(plugin = "cz.swsamuraj.jaxws")

Using the plugins DSL:

plugins {
  id "cz.swsamuraj.jaxws" version "0.4.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.cz.swsamuraj:gradle-jaxws-plugin:0.4.0"
  }
}

apply plugin: "cz.swsamuraj.jaxws"

Learn how to apply plugins to subprojects