com.diffplug.configuration-cache-for-platform-specific-build
Owner: Ned Twigg
Allows `OS.getNative()` and `OS.getRunning()` to work with configuration cache
https://github.com/diffplug/goomph
Sources: https://github.com/diffplug/goomph.git
Version 3.32.0
3.32.0
Created 03 September 2021.
Allows `OS.getNative()` and `OS.getRunning()` to work with configuration cache
Using the plugins DSL:
plugins {
id("com.diffplug.configuration-cache-for-platform-specific-build") version "3.32.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.diffplug.gradle:goomph:3.32.0")
}
}
apply(plugin = "com.diffplug.configuration-cache-for-platform-specific-build")
Using the plugins DSL:
plugins {
id "com.diffplug.configuration-cache-for-platform-specific-build" version "3.32.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.diffplug.gradle:goomph:3.32.0"
}
}
apply plugin: "com.diffplug.configuration-cache-for-platform-specific-build"