Monthly Archives: August 2013

Deploying Ratpack Applications to Cloud Foundry with no custom buildpack

Instead of using the Heroku buildpack, we can easily deploy ratpack applications into Cloud Foundry using the built-in java 7 support.

Since the Gradle application plugin builds a complete Java application, we can simply upload this application to Cloud Foundry and run it.

The one difference between this approach and a buildpack-based one is that you build the application in your local machine and deploy the files to Cloud Foundry instead of trying to do it all remotely.

Continue reading