Search Gradle plugins

io.github.diegopmendes.ssmgradle

Plugin responsible for retrieving a list of Parameter Store and setting the system's local environments

https://github.com/diegopmendes/ssm-gradle-plugin

Sources: https://github.com/diegopmendes/ssm-gradle-plugin.git

Version 1.0.1 (latest)

1.0.1

Created 14 December 2022.

Plugin responsible for retrieving a list of Parameter Store and setting the system's local environments

Add this plugin to your build using the plugins DSL:

plugins {
  id("io.github.diegopmendes.ssmgradle") version "1.0.1"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("io.github.diegopmendes:ssm-gradle-plugin:1.0.1")
      }
    }
    
    apply(plugin = "io.github.diegopmendes.ssmgradle")
  • Applying plugins to all subprojects .