搜索Gradle插件

版本 0.1-15(最新版本)

0.1-15

创建于 2015年8月18日。

RKnoll的Gradle插件

使用 插件DSL

plugins {
  id("at.rknoll.gradle.hardware") version "0.1-15"
}

使用 旧插件应用方式

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org.cn/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.at.rknoll.gradle:hardware:0.1-15")
  }
}

apply(plugin = "at.rknoll.gradle.hardware")

使用 插件DSL

plugins {
  id "at.rknoll.gradle.hardware" version "0.1-15"
}

使用 旧插件应用方式

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org.cn/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.at.rknoll.gradle:hardware:0.1-15"
  }
}

apply plugin: "at.rknoll.gradle.hardware"

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