Search Gradle plugins

com.fuseanalytics.gradle.ecrToken

This gradle plugin is a 100% portable solution for generating an AWS ECR (Elastic Container Repository) token that can be used to authenticate your build with ECR. For example, use this plugin with the Jib plugin to enable painless container build process that has no external dependencies or complex setup. Allowing you to setup a Jib container build with AWS ECR in minutes.

https://github.com/chubbard/ecr-token-plugin

Sources: https://github.com/chubbard/ecr-token-plugin.git

Version 1.0.0 (latest)

1.0.0

Created 11 May 2023.

This gradle plugin is a 100% portable solution for generating an AWS ECR (Elastic Container Repository) token that can be used to authenticate your build with ECR. For example, use this plugin with the Jib plugin to enable painless container build process that has no external dependencies or complex setup. Allowing you to setup a Jib container build with AWS ECR in minutes.

Add this plugin to your build using the plugins DSL:

plugins {
  id("com.fuseanalytics.gradle.ecrToken") version "1.0.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("com.fuseanalytics:ecr-token-plugin:1.0.0")
      }
    }
    
    apply(plugin = "com.fuseanalytics.gradle.ecrToken")
  • Applying plugins to all subprojects .