搜索Gradle插件

版本 0.0.1 (最新版本)

0.0.1

创建于 2021年11月2日。

此Gradle插件创建打印所选ext属性的作业。

使用插件DSL

plugins {
  id("com.github.rkotkiewicz.print-ext") version "0.0.1"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("com.github.rkotkiewicz:print-ext-plugin:0.0.1")
  }
}

apply(plugin = "com.github.rkotkiewicz.print-ext")

使用插件DSL

plugins {
  id "com.github.rkotkiewicz.print-ext" version "0.0.1"
}

使用旧插件应用

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "com.github.rkotkiewicz:print-ext-plugin:0.0.1"
  }
}

apply plugin: "com.github.rkotkiewicz.print-ext"

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