Search Gradle plugins

com.kageiit.url-cache

Gradle plugin to cache urls. This plugin was created mainly to address the problem of not being able to cache shared build configuration files using 'apply from:'

https://github.com/kageiit/gradle-url-cache-plugin

Version 1.0.0 (latest)

Created 16 November 2014.

v1.0.0

Using the plugins DSL:

plugins {
  id("com.kageiit.url-cache") version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("com.kageiit:url-cache-plugin:1.0.0")
  }
}

apply(plugin = "com.kageiit.url-cache")

Using the plugins DSL:

plugins {
  id "com.kageiit.url-cache" version "1.0.0"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "com.kageiit:url-cache-plugin:1.0.0"
  }
}

apply plugin: "com.kageiit.url-cache"

Learn how to apply plugins to subprojects