org.ysb33r.packer.base
Owner: Schalk Cronjé
Provides Packer extension and tasks. No need to have packer installed as plugin will take care of caching and installation in a similar fashion as to have Gradle distributions are cached
https://ysb33rOrg.gitlab.io/packer-gradle-plugin
Sources: https://github.com/ysb33r/packer-gradle-plugin.git
Version 0.3 (latest)
0.3
Created 22 November 2018.
This plugin version will no longer resolve after JCenter becomes a permanent redirect to Maven Central as it uses dependencies only found in JCenter. See the following blog post for details: https://blog.gradle.org/portal-jcenter-impact
Provides Packer extension and tasks. No need to have packer installed as plugin will take care of caching and installation in a similar fashion as to have Gradle distributions are cached
Using the plugins DSL:
plugins {
id("org.ysb33r.packer.base") version "0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url = uri("https://plugins.gradle.org/m2/")
}
}
dependencies {
classpath("gradle.plugin.org.ysb33r.gradle:packer-gradle-plugin:0.3")
}
}
apply(plugin = "org.ysb33r.packer.base")
Using the plugins DSL:
plugins {
id "org.ysb33r.packer.base" version "0.3"
}
Using legacy plugin application:
buildscript {
repositories {
maven {
url "https://plugins.gradle.org/m2/"
}
}
dependencies {
classpath "gradle.plugin.org.ysb33r.gradle:packer-gradle-plugin:0.3"
}
}
apply plugin: "org.ysb33r.packer.base"