From 453bb7334fc62831a3336bbdb1548a6c47bfa393 Mon Sep 17 00:00:00 2001 From: Ben Hale Date: Tue, 13 Aug 2013 15:28:05 +0100 Subject: [PATCH] Update manifest to use new buildpack Previously the manifest for this application was configured such that it used a custom command to start itself (based on Spring Boot). This change removes that custom command and substitutes in the new Java buildpack which takes care of all of the things that command previously did. A byproduct of this is that as improvements are made to the main buildpack they will automatically get included in future pushes of the application. An example of this is that now, if a New Relic service is bound to the application, the application will automatically be configured to use it. [#54518830] --- manifest.yml | 3 +-- system.properties | 1 - 2 files changed, 1 insertion(+), 3 deletions(-) delete mode 100644 system.properties diff --git a/manifest.yml b/manifest.yml index f2c20c27..1352ca0b 100644 --- a/manifest.yml +++ b/manifest.yml @@ -6,5 +6,4 @@ applications: host: initializr domain: cfapps.io path: . - command: java -jar ./spring/lib/*.jar run --cp . --local app.groovy -- --server.port=$PORT -# buildpack: https://github.com/dsyer/cloudfoundry-buildpack-java + buildpack: https://github.com/cloudfoundry/java-buildpack diff --git a/system.properties b/system.properties deleted file mode 100644 index 3e06d15e..00000000 --- a/system.properties +++ /dev/null @@ -1 +0,0 @@ -java.runtime.version=1.6 \ No newline at end of file