Search Gradle plugins

io.gitlab.jkushmaul.url2maven

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)

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

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.gitlab.jkushmaul.url2maven") version "0.9.2"
}

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