搜索Gradle插件

版本 0.2(最新版)

0.2

创建于 2018 年 3 月 18 日。

资源过滤插件

使用插件 DSL

plugins {
  id("org.walkohm.resourcefilter") version "0.2"
}

使用遗留插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.org.walkohm:resourcefilter:0.2")
  }
}

apply(plugin = "org.walkohm.resourcefilter")

使用插件 DSL

plugins {
  id "org.walkohm.resourcefilter" version "0.2"
}

使用遗留插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.org.walkohm:resourcefilter:0.2"
  }
}

apply plugin: "org.walkohm.resourcefilter"

学习如何将插件应用于子项目