com.kmong.codeartifact
Owner:
kmong
gradle dependency management, simple aws codeartifact config plugin. simple aws codeartifact private repository authentication. > aws codeartifact private repository setting, very tired and complex. |This plugin configures the AWS CodeArtifact repository for the project. |It retrieves the CodeArtifact token and sets the repository URL and credentials. |The plugin uses the AWS SDK for Java v2 to interact with the AWS CodeArtifact service. |The plugin requires the AWS credentials to be set up in the AWS credentials file. |The plugin also requires the AWS CodeArtifact repository to be set up in the AWS account. |The plugin is designed to work with the Gradle build system. |The plugin is designed to work with the Kotlin programming language.
https://github.com/Kmong/gradle-plugin-codeartifact
Sources: https://github.com/Kmong/gradle-plugin-codeartifact.git
Version 0.0.2
Created 19 March 2025.
Add this plugin to your build using the plugins DSL:
plugins {
id("com.kmong.codeartifact") version "0.0.2"
}
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.kmong.codeartifact:com.kmong.codeartifact.gradle.plugin:0.0.2") }
It can then be applied in the precompiled script plugin:plugins { id("com.kmong.codeartifact") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.kmong.codeartifact:com.kmong.codeartifact.gradle.plugin:0.0.2") } } apply(plugin = "com.kmong.codeartifact")
- Applying plugins to all subprojects .