Owner:
Alex Martin
Plugin to expose AWS Java SDK as gradle tasks
Version 0.0.17-TEST
Created 29 January 2019.
Plugin to expose AWS Java SDK as gradle tasks
Add this plugin to your build using the plugins DSL:
plugins {
id("com.alexmartin.plugins.AwsPlugin") version "0.0.17-TEST"
}
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.alexmartin.plugins.AwsPlugin:com.alexmartin.plugins.AwsPlugin.gradle.plugin:0.0.17-TEST") }It can then be applied in the precompiled script plugin:plugins { id("com.alexmartin.plugins.AwsPlugin") } -
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.alexmartin.plugins.AwsPlugin:com.alexmartin.plugins.AwsPlugin.gradle.plugin:0.0.17-TEST") } } apply(plugin = "com.alexmartin.plugins.AwsPlugin") - Applying plugins to all subprojects .