Search Gradle plugins

Version 1.1

1.1

Created 17 May 2021.

Changes: - Make it easier to use XJC plugins - Suppress a ton of harmless warnings from XJC

Using the plugins DSL:

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

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects