com.cognifide.common
                  Owner:
                  
                    
                    Krystian Panek
                  
                
Provides generic purpose Gradle utilities like: file transfer (upload/download) via SMB/SFTP/HTTP, file watcher, async progress logger, GUI notification service.
https://github.com/wttech/gradle-common-plugin
Sources: https://github.com/Cognifide/gradle-common-plugin.git
Version 0.1.15
Created 27 February 2020.
                Provides generic purpose Gradle utilities like: file transfer (upload/download) via SMB/SFTP/HTTP, file watcher, async progress logger, GUI notification service.
                
            
            
            
                
            
            
        Add this plugin to your build using the plugins DSL:
plugins {
  id("com.cognifide.common") version "0.1.15"
}
              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.cognifide.common:com.cognifide.common.gradle.plugin:0.1.15") }It can then be applied in the precompiled script plugin:plugins { id("com.cognifide.common") } - 
                
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.cognifide.common:com.cognifide.common.gradle.plugin:0.1.15") } } apply(plugin = "com.cognifide.common") - Applying plugins to all subprojects .