Search Gradle plugins

Version 0.1.5

Created 16 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.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.redpillanalytics:plugin-template:0.1.5")
  }
}

apply(plugin = "com.redpillanalytics.plugin-template")

Using the plugins DSL:

plugins {
  id "com.redpillanalytics.plugin-template" version "0.1.5"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.redpillanalytics:plugin-template:0.1.5"
  }
}

apply plugin: "com.redpillanalytics.plugin-template"

Learn how to apply plugins to subprojects