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