Gradle Plugins

Maintained by aalmiray

Summary

This Gradle plugin allows for the administration and deployment of your Heroku application from the comfort of your Gradle project.

Website https://github.com/marcoVermeulen/gradle-heroku
Author marcoVermeulen
Version 0.9.8

Usage

buildscript {
    repositories {
        jcenter()
        maven { url 'http://dl.bintray.com/vermeulen-mp/gradle-plugins' }
    }
    dependencies {
        classpath "com.wiredforcode:gradle-heroku-plugin:1.0.0"
    }
}

apply plugin: 'heroku'

heroku {
    appName = 'some-unique-app-name'

    //get this from heroku
    apiKey = 'my-api-key'
}