Search Gradle plugins

ru.d10xa.download-xml

A Gradle plugin for downloading xml files(wsdl,xsd) with recursive imports and includes

https://github.com/d10xa/gradle-download-xml-plugin

Version 0.0.5 (latest)

Created 03 September 2015.

No version description available.

Add this plugin to your build using the plugins DSL:

plugins {
  id("ru.d10xa.download-xml") version "0.0.5"
}

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("ru.d10xa.download-xml:ru.d10xa.download-xml.gradle.plugin:0.0.5")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("ru.d10xa.download-xml")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("ru.d10xa.download-xml:ru.d10xa.download-xml.gradle.plugin:0.0.5")
      }
    }
    
    apply(plugin = "ru.d10xa.download-xml")
  • Applying plugins to all subprojects .