com.redpillanalytics.plugin-template
Owner: Stewart Bryson
A plugin that does a lot of boilerplate for other Red Pill Analytics plugins.
https://github.com/RedPillAnalytics/gradle-plugin-template/
Sources: https://github.com/RedPillAnalytics/plugin-template/
Version 0.1.6 (latest)
0.1.6
Created 17 May 2019.
A plugin that does a lot of boilerplate for other Red Pill Analytics plugins.
Using the plugins DSL:
plugins {
id("com.redpillanalytics.plugin-template") version "0.1.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.redpillanalytics:plugin-template:0.1.6")
}
}
apply(plugin = "com.redpillanalytics.plugin-template")
Using the plugins DSL:
plugins {
id "com.redpillanalytics.plugin-template" version "0.1.6"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.redpillanalytics:plugin-template:0.1.6"
}
}
apply plugin: "com.redpillanalytics.plugin-template"