com.alexmartin.plugins.AwsPlugin
Owner: Alex Martin
Plugin to expose AWS Java SDK as gradle tasks
https://github.com/alexm118/aws-gradle-plugin
Sources: https://github.com/alexm118/aws-gradle-plugin.git
Version 0.0.18-SNAPSHOT
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.18-SNAPSHOT"
}
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.18-SNAPSHOT") }
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.18-SNAPSHOT") } } apply(plugin = "com.alexmartin.plugins.AwsPlugin")
- Applying plugins to all subprojects .