com.hello2morrow.sonargraph.dummy
Owner: Alexander von Zitzewitz
Sonargraph Dummy Plugin
Sources: https://www.hello2morrow.com
Version 11.4.1
Created 02 July 2021.
Sonargraph Dummy Plugin. This is a dummy plugin that does nothing.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.hello2morrow.sonargraph.dummy") version "11.4.1"
}
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.hello2morrow.sonargraph.dummy:com.hello2morrow.sonargraph.dummy.gradle.plugin:11.4.1") }
It can then be applied in the precompiled script plugin:plugins { id("com.hello2morrow.sonargraph.dummy") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.hello2morrow.sonargraph.dummy:com.hello2morrow.sonargraph.dummy.gradle.plugin:11.4.1") } } apply(plugin = "com.hello2morrow.sonargraph.dummy")
- Applying plugins to all subprojects .