Search Gradle plugins

Version 1.3 (latest)

Created 21 December 2016.

A Gradle plugin for deploying applications using runnable jar buildpack to Heroku

Using the plugins DSL:

plugins {
  id("com.energizedwork.heroku-buildpack-runnable-jar") version "1.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url = uri("https://plugins.gradle.org/m2/")
    }
  }
  dependencies {
    classpath("gradle.plugin.com.energizedwork.heroku-buildpack-runnable-jar:heroku-buildpack-runnable-jar-gradle-plugin:1.3")
  }
}

apply(plugin = "com.energizedwork.heroku-buildpack-runnable-jar")

Using the plugins DSL:

plugins {
  id "com.energizedwork.heroku-buildpack-runnable-jar" version "1.3"
}

Using legacy plugin application:

buildscript {
  repositories {
    maven {
      url "https://plugins.gradle.org/m2/"
    }
  }
  dependencies {
    classpath "gradle.plugin.com.energizedwork.heroku-buildpack-runnable-jar:heroku-buildpack-runnable-jar-gradle-plugin:1.3"
  }
}

apply plugin: "com.energizedwork.heroku-buildpack-runnable-jar"

Learn how to apply plugins to subprojects