io.intrepid.static-analysis
Owner: Intrepid Pursuits
Greetings from here!
https://github.com/IntrepidPursuits/static-analysis-gradle-plugin
Sources: https://github.com/IntrepidPursuits/static-analysis-gradle-plugin
Add this plugin to your build using the plugins DSL:
plugins {
id("io.intrepid.static-analysis") version "1.0-alpha"
}
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("io.intrepid.static-analysis:io.intrepid.static-analysis.gradle.plugin:1.0-alpha") }
It can then be applied in the precompiled script plugin:plugins { id("io.intrepid.static-analysis") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("io.intrepid.static-analysis:io.intrepid.static-analysis.gradle.plugin:1.0-alpha") } } apply(plugin = "io.intrepid.static-analysis")
- Applying plugins to all subprojects .