John,
Are you getting errors when trying to deploy your app to your vcap_dev setup? If you can post the details of the errors here, it might help.
From the title, it looks like you are deploying from the Cloud Foundry plugin for Eclipse. It would be good to verify your vcap_dev setup with the
`vmc` command line tool before accessing it through the Eclipse CF plugin. If you target your vcap_dev setup (e.g. `
vmc target api.vcap.me`) then you can run some commands to see what your setup *should* support. The commands are slightly different depending on the version of `vmc` you install: - `vmc runtimes` or `vmc info --runtimes` to see what runtimes are supported
- `vmc frameworks` or `vmc info --frameworks` to see what frameworks are supported
From your question, it looks like you want to see the `java` or `java7` runtime, and the `java_web` framework (or maybe `spring` framework if you are using Spring in your Java web app).
Scott