I'm deploying a java application with this manifest.yml:
applications:
- name: myapp
instances: 1
path: target/myapp-with-dependencies.jar
...
I would like to add some additional resources to the cloud foundry instance, but I don't want to bundle those resources in the jar file.
I haven't found any documentation to suggest that this is possible. Is there a way to do this?