com.gitlab.svg2ico
                  Owner:
                  
                    
                    Mark Slater
                  
                
Converts SVG images into ico
https://svg2ico.sourceforge.net
Sources: https://github.com/svg2ico/svg2ico
Add this plugin to your build using the plugins DSL:
plugins {
  id("com.gitlab.svg2ico") version "0.35"
}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.gitlab.svg2ico:com.gitlab.svg2ico.gradle.plugin:0.35") }It can then be applied in the precompiled script plugin:plugins { id("com.gitlab.svg2ico") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.gitlab.svg2ico:com.gitlab.svg2ico.gradle.plugin:0.35") } } apply(plugin = "com.gitlab.svg2ico")
- Applying plugins to all subprojects .