搜索Gradle插件

版本 0.0.1(最新版)

0.0.1

创建于2018年1月29日。

Quasar仪器插件

使用插件DSL

plugins {
  id("com.github.mtatheonly.quasar-gradle-plugin") version "0.0.1"
}

使用旧插件应用

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

apply(plugin = "com.github.mtatheonly.quasar-gradle-plugin")

使用插件DSL

plugins {
  id "com.github.mtatheonly.quasar-gradle-plugin" version "0.0.1"
}

使用旧插件应用

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

apply plugin: "com.github.mtatheonly.quasar-gradle-plugin"

学习如何应用插件到子项目中