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)
Created 17 May 2019.
A plugin that does a lot of boilerplate for other Red Pill Analytics plugins.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.redpillanalytics.plugin-template") version "0.1.6"
}
See also:
-
Adding the plugin to build logic for usage in precompiled script plugins.
See the relevant documentation for more information.
Add this plugin as a dependency to
<convention-plugins-build>/build.gradle(.kts)
:dependencies { implementation("com.redpillanalytics.plugin-template:com.redpillanalytics.plugin-template.gradle.plugin:0.1.6") }
It can then be applied in the precompiled script plugin:plugins { id("com.redpillanalytics.plugin-template") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.redpillanalytics.plugin-template:com.redpillanalytics.plugin-template.gradle.plugin:0.1.6") } } apply(plugin = "com.redpillanalytics.plugin-template")
- Applying plugins to all subprojects .