Search Gradle plugins

com.bmuschko.cargo-base

Gradle plugin that provides deployment capabilities to local and remote containers via Cargo.

https://github.com/bmuschko/gradle-cargo-plugin

Version 2.2.1

2.2.1

Created 06 September 2015.

No version description available.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.bmuschko.cargo-base") version "2.2.1"
}

See also:

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