Search Gradle plugins

Version 1.0

Created 16 May 2021.

Changes:
- New configuration options added, including the ability to specify a binding file
- Minimum version is now 6.0 (previously 5.4) due to internal use of new APIs

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects