com.bcombes.tinypng
所有者: Bayo Puddicombe
Gradle 插件,用于自动优化项目 png 和 jpg 图片!
https://github.com/bcombes/TinyPngPlugin
来源: https://github.com/bcombes/TinyPngPlugin.git
使用 plugins DSL
plugins {
id("com.bcombes.tinypng") version "1.3"
}
使用 旧的插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.bcombes.tinypng:TinyPngPlugin:1.3")
}
}
apply(plugin = "com.bcombes.tinypng")
使用 plugins DSL
plugins {
id "com.bcombes.tinypng" version "1.3"
}
使用 旧的插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.bcombes.tinypng:TinyPngPlugin:1.3"
}
}
apply plugin: "com.bcombes.tinypng"