de.lancom.genesis.dependency-cache
Owner: LANCOM Systems GmbH
Caches all dependencies so they can be used by a read only cache.
https://github.com/lancomsystems/genesis-plugins
Sources: https://github.com/lancomsystems/genesis-dependency-cache.git
Version 2.0.13 (latest)
2.0.13
Created 08 April 2023.
Caches all dependencies so they can be used by a read only cache.
Using the plugins DSL:
plugins {
id("de.lancom.genesis.dependency-cache") version "2.0.13"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("de.lancom.genesis:genesis-dependency-cache:2.0.13")
}
}
apply(plugin = "de.lancom.genesis.dependency-cache")
Using the plugins DSL:
plugins {
id "de.lancom.genesis.dependency-cache" version "2.0.13"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "de.lancom.genesis:genesis-dependency-cache:2.0.13"
}
}
apply plugin: "de.lancom.genesis.dependency-cache"