Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marc0der/heroku-buildpack-gradlew
https://github.com/marc0der/heroku-buildpack-gradlew
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/marc0der/heroku-buildpack-gradlew
- Owner: marc0der
- Created: 2013-11-28T06:56:17.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2014-02-06T21:16:33.000Z (almost 11 years ago)
- Last Synced: 2024-04-14T15:09:18.646Z (7 months ago)
- Language: Shell
- Size: 133 KB
- Stars: 4
- Watchers: 2
- Forks: 6
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Gradlew Buildpack for Heroku
This buildpack can be used to run a gradle wrapper on Heroku.
###Procfile
Simply add a `Procfile` to the root of your project in order to bootstrap your app.
In this case a spring-boot app:---
default_process_types:
web: java -jar -Dport=$PORT build/libs/spring-boot.jar###Default Tasks
The gradle wrapper will be run without any tasks in order to make the build as flexible as possible. Ensure that the `build.gradle` defines a defaultTasks list including all tasks that need to be run for a successful deploy. For example, a Ratpack application would require the follwing in the build file:
defaultTasks = ["clean", "build", "installApp"]