Search Gradle plugins

This is a fork of com.github.bjornvester.wsdl2java version 2.0.2, modified to support Gradle 10 and the configuration cache.

https://github.com/richard-austin/wsdl2java-gradle-plugin

Sources: https://github.com/richard-austin/wsdl2java-gradle-plugin.git

Version 2.0.3 (latest)

Created 22 July 2026.

This is a fork of com.github.bjornvester.wsdl2java version 2.0.2, modified to support Gradle 10 and the configuration cache.

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.richard-austin.wsdl2java") version "2.0.3"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("io.github.richard-austin.wsdl2java:io.github.richard-austin.wsdl2java.gradle.plugin:2.0.3")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("io.github.richard-austin.wsdl2java")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.richard-austin.wsdl2java:io.github.richard-austin.wsdl2java.gradle.plugin:2.0.3")
      }
    }
    
    apply(plugin = "io.github.richard-austin.wsdl2java")
  • Applying plugins to all subprojects .