name.remal.simple-build-cache
Owner: Semyon Levin
Plugin that provides simple build cache.
https://gitlab.com/remal/gradle-plugins
Sources: https://gitlab.com/remal/gradle-plugins
Version 0.29.6
0.29.6
Created 09 October 2017.
Plugin that provides simple build cache.
Using the plugins DSL:
plugins {
id("name.remal.simple-build-cache") version "0.29.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.name.remal:gradle-plugins:0.29.6")
}
}
apply(plugin = "name.remal.simple-build-cache")
Using the plugins DSL:
plugins {
id "name.remal.simple-build-cache" version "0.29.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.name.remal:gradle-plugins:0.29.6"
}
}
apply plugin: "name.remal.simple-build-cache"