fi.linuxbox.aws-build-services
Owner: Mikko Värri
Provides AWS SDK Clients as Gradle Build Services
https://vmj.gitlab.io/gradle-aws-services-plugin
Sources: https://gitlab.com/vmj/gradle-aws-services-plugin
Version 0.2.0 (latest)
Created 19 December 2022.
Provides AWS SDK Clients as Gradle Build Services
Add this plugin to your build using the plugins DSL:
plugins {
id("fi.linuxbox.aws-build-services") version "0.2.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("fi.linuxbox.aws-build-services:fi.linuxbox.aws-build-services.gradle.plugin:0.2.0") }
It can then be applied in the precompiled script plugin:plugins { id("fi.linuxbox.aws-build-services") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("fi.linuxbox.aws-build-services:fi.linuxbox.aws-build-services.gradle.plugin:0.2.0") } } apply(plugin = "fi.linuxbox.aws-build-services")
- Applying plugins to all subprojects .