Search Gradle plugins

Version 2.3.0

2.3.0

Created 13 February 2017.

Run Packer builds from Gradle

Add this plugin to your build using the plugins DSL:

plugins {
  id("org.fidata.packer") version "2.3.0"
}

See also:

  • The legacy method of plugin application.
    buildscript {
      repositories {
        gradlePluginPortal()
      }
      dependencies {
        classpath("gradle.plugin.fidata.org:gradle-packer-plugin:2.3.0")
      }
    }
    
    apply(plugin = "org.fidata.packer")
  • Applying plugins to all subprojects .