com.diffplug.image-grinder
Owner: Ned Twigg
Image manipulation for Gradle
https://github.com/diffplug/image-grinder
Sources: https://github.com/diffplug/image-grinder.git
Version 2.2.2 (latest)
2.2.2
Created 04 September 2021.
Image manipulation for Gradle
Using the plugins DSL:
plugins {
id("com.diffplug.image-grinder") version "2.2.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.diffplug.gradle:image-grinder:2.2.2")
}
}
apply(plugin = "com.diffplug.image-grinder")
Using the plugins DSL:
plugins {
id "com.diffplug.image-grinder" version "2.2.2"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.diffplug.gradle:image-grinder:2.2.2"
}
}
apply plugin: "com.diffplug.image-grinder"