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 1.0.18
Created 03 March 2021.
                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 "1.0.18"
}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:1.0.18") }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:1.0.18") } } apply(plugin = "com.cognifide.common")
- Applying plugins to all subprojects .