Skip to content

yaykuy/heroku-buildpack-gradlew

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 

Repository files navigation

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"]

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Shell 100.0%