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)
0.4.0
Created 30 July 2020.
Plugin allows to create and configure Ansible tasks with Gradle
Using the plugins DSL:
plugins {
id("com.hiberbee.gradle.plugin.ansible") version "0.4.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.com.hiberbee.gradle:gradle-plugin-ansible:0.4.0")
}
}
apply(plugin = "com.hiberbee.gradle.plugin.ansible")
Using the plugins DSL:
plugins {
id "com.hiberbee.gradle.plugin.ansible" version "0.4.0"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.com.hiberbee.gradle:gradle-plugin-ansible:0.4.0"
}
}
apply plugin: "com.hiberbee.gradle.plugin.ansible"