com.hello2morrow.sonargraph.dummy
                  Owner:
                  
                    
                    Alexander von Zitzewitz
                  
                
Sonargraph Dummy Plugin
Sources: https://www.hello2morrow.com
Version 13.5.0
Created 06 March 2024.
                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 "13.5.0"
}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:13.5.0") }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:13.5.0") } } apply(plugin = "com.hello2morrow.sonargraph.dummy")
- Applying plugins to all subprojects .