Search Gradle plugins

Version 2.0

Created 14 June 2023.

Changes:
- Added support for using the jakarta namespace, which is now the default. The older javax namespace can be enabled with a configuration change.
- Added support for the Gradle configuration cache.
- The Wsdl2Java task now runs with the configured, or default, Java Toolchain.
- Minimum required of version of Gradle is now 6.7 (up from 6.0).
- The configurations for marking generated code has changed to support a third variant of the Generated annotation. See the README for details.

Using the plugins DSL:

plugins {
  id("com.github.bjornvester.wsdl2java") version "2.0"
}

Using legacy plugin application:

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

apply(plugin = "com.github.bjornvester.wsdl2java")

Using the plugins DSL:

plugins {
  id "com.github.bjornvester.wsdl2java" version "2.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.github.bjornvester:wsdl2java-gradle-plugin:2.0"
  }
}

apply plugin: "com.github.bjornvester.wsdl2java"

Learn how to apply plugins to subprojects