com.fuseanalytics.gradle.ecrToken
Owner: Charlie Hubbard
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.
Using the plugins DSL:
plugins {
id("com.fuseanalytics.gradle.ecrToken") version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("com.fuseanalytics:ecr-token-plugin:1.0.0")
}
}
apply(plugin = "com.fuseanalytics.gradle.ecrToken")
Using the plugins DSL:
plugins {
id "com.fuseanalytics.gradle.ecrToken" version "1.0.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "com.fuseanalytics:ecr-token-plugin:1.0.0"
}
}
apply plugin: "com.fuseanalytics.gradle.ecrToken"