se.svt.oss.gradle-yapp-publisher-plugin
                  Owner:
                  
                    
                    SVT
                  
                
Manages publishing for Gradle projects
https://github.com/svt/gradle-yapp-publisher-plugin
Sources: https://github.com/svt/gradle-yapp-publisher-plugin.git
Version 0.1.13
Created 28 May 2021.
                Yet another plugin that manages publishing for Gradle projects
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("se.svt.oss.gradle-yapp-publisher-plugin") version "0.1.13"
}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("se.svt.oss.gradle-yapp-publisher-plugin:se.svt.oss.gradle-yapp-publisher-plugin.gradle.plugin:0.1.13") }It can then be applied in the precompiled script plugin:plugins { id("se.svt.oss.gradle-yapp-publisher-plugin") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("se.svt.oss.gradle-yapp-publisher-plugin:se.svt.oss.gradle-yapp-publisher-plugin.gradle.plugin:0.1.13") } } apply(plugin = "se.svt.oss.gradle-yapp-publisher-plugin")
- Applying plugins to all subprojects .