Search Gradle plugins

com.cognifide.common

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

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.cognifide.common") version "1.0.31"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.cognifide.gradle:common-plugin:1.0.31")
      }
    }
    
    apply(plugin = "com.cognifide.common")
  • Applying plugins to all subprojects .