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)
Created 11 May 2023.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.fuseanalytics.gradle.ecrToken") version "1.0.0"
}
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("com.fuseanalytics.gradle.ecrToken:com.fuseanalytics.gradle.ecrToken.gradle.plugin:1.0.0") }
It can then be applied in the precompiled script plugin:plugins { id("com.fuseanalytics.gradle.ecrToken") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.fuseanalytics.gradle.ecrToken:com.fuseanalytics.gradle.ecrToken.gradle.plugin:1.0.0") } } apply(plugin = "com.fuseanalytics.gradle.ecrToken")
- Applying plugins to all subprojects .