io.gitlab.jkushmaul.url2maven
Owner: Jason Kushmaul
A gradle plugin to simply download a url and store it in maven local cache. See ticket: https://github.com/gradle/gradle/issues/5322
https://gitlab.com/jkushmaul/gradle-url2maven-plugin
Sources: https://gitlab.com/jkushmaul/gradle-url2maven-plugin.git
Version 0.9.2 (latest)
0.9.2
Created 16 October 2019.
A gradle plugin to simply download a url and store it in maven local cache.
See ticket: https://github.com/gradle/gradle/issues/5322
Using the plugins DSL:
plugins {
id("io.gitlab.jkushmaul.url2maven") version "0.9.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("io.gitlab.jkushmaul.url2maven:url2maven:0.9.2")
}
}
apply(plugin = "io.gitlab.jkushmaul.url2maven")
Using the plugins DSL:
plugins {
id "io.gitlab.jkushmaul.url2maven" version "0.9.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "io.gitlab.jkushmaul.url2maven:url2maven:0.9.2"
}
}
apply plugin: "io.gitlab.jkushmaul.url2maven"