com.theperfectapp.tpa-gradle-plugin
Owner: Michael Franz
The Perfect App Gradle Plugin!
Sources: https://github.com/ThePerfectApp/TPA-Gradle-Plugin
Version 1.0.90 (latest)
Created 04 December 2017.
The Perfect App Gradle Plugin!
Add this plugin to your build using the plugins DSL:
plugins {
id("com.theperfectapp.tpa-gradle-plugin") version "1.0.90"
}
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.theperfectapp.tpa-gradle-plugin:com.theperfectapp.tpa-gradle-plugin.gradle.plugin:1.0.90") }
It can then be applied in the precompiled script plugin:plugins { id("com.theperfectapp.tpa-gradle-plugin") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.theperfectapp.tpa-gradle-plugin:com.theperfectapp.tpa-gradle-plugin.gradle.plugin:1.0.90") } } apply(plugin = "com.theperfectapp.tpa-gradle-plugin")
- Applying plugins to all subprojects .