amdonov.yumr
                  Owner:
                  
                    
                    Aaron Donovan
                  
                
Publishes artifacts to YUMR server via GRPC
https://github.com/amdonov/gradle-yumr-client
Sources: https://github.com/amdonov/gradle-yumr-client
Add this plugin to your build using the plugins DSL:
plugins {
  id("amdonov.yumr") version "0.2.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("amdonov.yumr:amdonov.yumr.gradle.plugin:0.2.1") }It can then be applied in the precompiled script plugin:plugins { id("amdonov.yumr") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("amdonov.yumr:amdonov.yumr.gradle.plugin:0.2.1") } } apply(plugin = "amdonov.yumr")
- Applying plugins to all subprojects .