Search Gradle plugins

Version 2.0.1

Created 21 June 2023.

Changes:
- Fixed a problem in older versions of Gradle when not specifying a Java toolchain.
- Due to compatability issues not found version 2.0.0 of the plugin, the plugin now requires at least Gradle 7.6

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects