搜索 Gradle 插件

版本 1.3(最新版本)

1.3

创建于 2018 年 9 月 28 日。

Gradle 插件,用于自动优化项目 png 和 jpg 图片!

使用 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"

了解如何将插件应用到子项目中