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.4

Created 26 February 2015.

No version description available.

Using the plugins DSL:

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

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("ru.d10xa:gradle-download-xml-plugin:0.0.4")
  }
}

apply(plugin = "ru.d10xa.download-xml")

Using the plugins DSL:

plugins {
  id "ru.d10xa.download-xml" version "0.0.4"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "ru.d10xa:gradle-download-xml-plugin:0.0.4"
  }
}

apply plugin: "ru.d10xa.download-xml"

Learn how to apply plugins to subprojects