Search Gradle plugins

de.xm.aws.SimpleDeployment

Simple aws gradle plugin for deploying environments

https://www.10m.de

Sources: not provided

Version 0.2.3 (latest)

Created 08 November 2017.

Simple aws gradle plugin for deploying environments

Add this plugin to your build using the plugins DSL:

plugins {
  id("de.xm.aws.SimpleDeployment") version "0.2.3"
}

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("de.xm.aws.SimpleDeployment:de.xm.aws.SimpleDeployment.gradle.plugin:0.2.3")
    }
    It can then be applied in the precompiled script plugin:
    plugins {
      id("de.xm.aws.SimpleDeployment")
    }
  • The legacy method of plugin application. See the relevant documentation for more information.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("de.xm.aws.SimpleDeployment:de.xm.aws.SimpleDeployment.gradle.plugin:0.2.3")
      }
    }
    
    apply(plugin = "de.xm.aws.SimpleDeployment")
  • Applying plugins to all subprojects .