Search Gradle plugins

Version 0.21 (latest)

Created 07 July 2023.

Yet another WsImport Gradle plugin - requires Java 11 and Gradle 5.6 or greater. If you're using an earlier version of Java or Gradle use 0.10. If you're still on Gradle 3.x use version 0.3 of this plugin.

Add this plugin to your build using the plugins DSL:

plugins {
  id("uk.co.boothen.gradle.wsimport") version "0.21"
}

See also:

  • Adding the plugin to build logic for usage in precompiled script plugins.

    See the relevant documentation for more information.

    Add this plugin as a dependency to <convention-plugins-build>/build.gradle(.kts):

    dependencies {
      implementation("uk.co.boothen.gradle.wsimport:uk.co.boothen.gradle.wsimport.gradle.plugin:0.21")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("uk.co.boothen.gradle.wsimport")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("uk.co.boothen.gradle.wsimport:uk.co.boothen.gradle.wsimport.gradle.plugin:0.21")
      }
    }
    
    apply(plugin = "uk.co.boothen.gradle.wsimport")
  • Applying plugins to all subprojects .