Search Gradle plugins

Version 1.2

Created 23 July 2021.

Changes:
- Verbose is now only enabled by default on the info logging level
- The addition of dependencies to the implementation configuration for compiling the generated sources can now be disabled

Using the plugins DSL:

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

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.2")
  }
}

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects