ru.vyarus.github-info
                  Owner:
                  
                    
                    Vyacheslav Rusakov
                  
                
Generates common Github links by convention and configures common plugins
https://github.com/xvik/gradle-github-info-plugin
Sources: https://github.com/xvik/gradle-github-info-plugin.git
Version 2.0.0 (latest)
Created 11 March 2024.
                Generates common Github links by convention and configures common plugins
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("ru.vyarus.github-info") version "2.0.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("ru.vyarus.github-info:ru.vyarus.github-info.gradle.plugin:2.0.0") }It can then be applied in the precompiled script plugin:plugins { id("ru.vyarus.github-info") }
- 
                The legacy method of plugin application.See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("ru.vyarus.github-info:ru.vyarus.github-info.gradle.plugin:2.0.0") } } apply(plugin = "ru.vyarus.github-info")
- Applying plugins to all subprojects .