When performing
cf curl /v3/apps/<guid>/droplets/current, the
"buildpacks" section of the response only contains the
"name", and does not contain other details, such as
"version".
For example:
"buildpacks": [
{
"name": "java_buildpack_offline_v4311",
"detect_output": "",
"buildpack_name": "",
"version": null
}
]
However, the same command for an app using a different buildpack (e.g. Go buildpack) returns valid information.
"buildpacks": [
{
"name": "go_buildpack",
"detect_output": "go",
"buildpack_name": "go",
"version": "1.9.33"
}
]