Search Gradle plugins

Version 0.4

Created 11 November 2019.

Changes:
- Make the extension properties immutable. This gets rid of a deprecation warning in Gradle 6.0.

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Using the plugins DSL:

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

Using legacy plugin application:

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

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

Learn how to apply plugins to subprojects