de.lancom.genesis.dependency-cache
所有者: LANCOM Systems GmbH
缓存所有依赖项,以便可以用只读缓存使用。
https://github.com/lancomsystems/genesis-plugins
来源: https://github.com/lancomsystems/genesis-dependency-cache.git
使用plugins DSL
plugins {
id("de.lancom.genesis.dependency-cache") version "2.0.13"
}
使用旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("de.lancom.genesis:genesis-dependency-cache:2.0.13")
}
}
apply(plugin = "de.lancom.genesis.dependency-cache")
使用plugins DSL
plugins {
id "de.lancom.genesis.dependency-cache" version "2.0.13"
}
使用旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "de.lancom.genesis:genesis-dependency-cache:2.0.13"
}
}
apply plugin: "de.lancom.genesis.dependency-cache"