ru.d10xa.download-xml
Owner: Andrey Stolyarov
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)
0.0.5
Created 03 September 2015.
No version description available.
Using the plugins DSL:
plugins {
id("ru.d10xa.download-xml") version "0.0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("ru.d10xa:gradle-download-xml-plugin:0.0.5")
}
}
apply(plugin = "ru.d10xa.download-xml")
Using the plugins DSL:
plugins {
id "ru.d10xa.download-xml" version "0.0.5"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "ru.d10xa:gradle-download-xml-plugin:0.0.5"
}
}
apply plugin: "ru.d10xa.download-xml"