de.jansauer.elasticbeanstalk
Owner: Jan Sauer
Gradle Elastic Beanstalk plugin.
https://github.com/jansauer/gradle-elasticbeanstalk-plugin
Sources: https://github.com/jansauer/gradle-elasticbeanstalk-plugin
Version 2.0.0-rc1 (latest)
2.0.0-rc1
Created 11 May 2020.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
Gradle Elastic Beanstalk plugin.
Using the plugins DSL:
plugins {
id("de.jansauer.elasticbeanstalk") version "2.0.0-rc1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.de.jansauer.elasticbeanstalk:gradle-elasticbeanstalk-plugin:2.0.0-rc1")
}
}
apply(plugin = "de.jansauer.elasticbeanstalk")
Using the plugins DSL:
plugins {
id "de.jansauer.elasticbeanstalk" version "2.0.0-rc1"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.de.jansauer.elasticbeanstalk:gradle-elasticbeanstalk-plugin:2.0.0-rc1"
}
}
apply plugin: "de.jansauer.elasticbeanstalk"