com.redpillanalytics.plugin-template
所有者: Stewart Bryson
为其他Red Pill Analytics插件做大量样板工作的插件。
https://github.com/RedPillAnalytics/gradle-plugin-template/
源码: https://github.com/RedPillAnalytics/plugin-template/
使用 插件DSL
plugins {
id("com.redpillanalytics.plugin-template") version "0.1.6"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org.cn/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.redpillanalytics:plugin-template:0.1.6")
}
}
apply(plugin = "com.redpillanalytics.plugin-template")
使用 插件DSL
plugins {
id "com.redpillanalytics.plugin-template" version "0.1.6"
}
使用 旧插件应用
buildscript {
repositories {
maven {
url "https://plugins.gradle.org.cn/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.redpillanalytics:plugin-template:0.1.6"
}
}
apply plugin: "com.redpillanalytics.plugin-template"