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 4.1.0 (latest)
4.1.0
Created 20 September 2024.
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 "4.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.diffplug.gradle:goomph:4.1.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 "4.1.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.diffplug.gradle:goomph:4.1.0"
}
}
apply plugin: "com.diffplug.configuration-cache-for-platform-specific-build"