Search Gradle plugins

Version 3.0.0 (latest)

3.0.0

Created 12 January 2023.

Generate java code form wsdl/xsd with cxf

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.yupzip.wsdl2java") version "3.0.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.yupzip:wsdl2java:3.0.0")
      }
    }
    
    apply(plugin = "com.yupzip.wsdl2java")
  • Applying plugins to all subprojects .