Search Gradle plugins

Version 1.2

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

Add this plugin to your build using the plugins DSL:

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

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.com.github.bjornvester:wsdl2java-gradle-plugin:1.2")
      }
    }
    
    apply(plugin = "com.github.bjornvester.wsdl2java")
  • Applying plugins to all subprojects .