ch.tutteli.settings
                  Owner:
                  
                    
                    Robert Stoll
                  
                
Adds utility functions to your settings.gradle
https://github.com/robstoll/tutteli-gradle-plugins
Sources: https://github.com/robstoll/tutteli-gradle
Version 0.32.2
Created 04 February 2020.
                Adds utility functions to your settings.gradle
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("ch.tutteli.settings") version "0.32.2"
}
              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("ch.tutteli.settings:ch.tutteli.settings.gradle.plugin:0.32.2") }It can then be applied in the precompiled script plugin:plugins { id("ch.tutteli.settings") } - 
                
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("ch.tutteli.settings:ch.tutteli.settings.gradle.plugin:0.32.2") } } apply(plugin = "ch.tutteli.settings") - Applying plugins to all subprojects .