Maintained by aalmiray
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 |
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'
}