Search Gradle plugins

Version 1.1.3 (latest)

Created 28 August 2019.

testing plugin,do not use it please.

Using the plugins DSL:

plugins {
  id("com.wangxue.CompressPlugin") version "1.1.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.wangxue-plugin:img_compressor:1.1.3")
  }
}

apply(plugin = "com.wangxue.CompressPlugin")

Using the plugins DSL:

plugins {
  id "com.wangxue.CompressPlugin" version "1.1.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.wangxue-plugin:img_compressor:1.1.3"
  }
}

apply plugin: "com.wangxue.CompressPlugin"

Learn how to apply plugins to subprojects