Search Gradle plugins

Version 1.0.0

1.0.0

Created 14 March 2018.

Gradle Elastic Beanstalk plugin.

Add this plugin to your build using the plugins DSL:

plugins {
  id("de.jansauer.elasticbeanstalk") version "1.0.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.de.jansauer.aws.beanstalk:elasticbeanstalk:1.0.0")
      }
    }
    
    apply(plugin = "de.jansauer.elasticbeanstalk")
  • Applying plugins to all subprojects .