com.hiberbee.gradle.plugin.ansible
Owner: Vlad Volkov
Plugin adds couple of Ansible tasks, helping to generate configuration from Jinja templates, encrypt/decrypt secrets etc
https://github.com/hiberbee/gradle-plugin-ansible
Sources: https://github.com/hiberbee/ansible-gradle-plugin
Version 0.4.0 (latest)
Created 30 July 2020.
Plugin allows to create and configure Ansible tasks with Gradle
Add this plugin to your build using the plugins DSL:
plugins {
id("com.hiberbee.gradle.plugin.ansible") version "0.4.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.hiberbee.gradle.plugin.ansible:com.hiberbee.gradle.plugin.ansible.gradle.plugin:0.4.0") }
It can then be applied in the precompiled script plugin:plugins { id("com.hiberbee.gradle.plugin.ansible") }
-
The legacy method of plugin application.
See the relevant documentation for more information.buildscript { repositories { gradlePluginPortal() } dependencies { classpath("com.hiberbee.gradle.plugin.ansible:com.hiberbee.gradle.plugin.ansible.gradle.plugin:0.4.0") } } apply(plugin = "com.hiberbee.gradle.plugin.ansible")
- Applying plugins to all subprojects .