Rumored since this summer, announced today. The joint initiative will pull in resources from Cloud Foundry, Spring, Gemfire and Big Data resources from VMware and EMC.
More info in this article on Ars Technica.

Articles, notes and random thoughts on Software Development and Technology
Rumored since this summer, announced today. The joint initiative will pull in resources from Cloud Foundry, Spring, Gemfire and Big Data resources from VMware and EMC.
More info in this article on Ars Technica.
Perfect – this is exactly what I was looking for. I didn’t follow the instructions as far as adding the two scripts to my Logon items, but creating the two Automator scripts that I can run when needed was exactly what I was looking for.
Apps generated using JBoss Forge get this error showing up in the server log:
JSF1091: No mime type could be found for file favicon.ico. To resolve this, add a mime-type mapping to the applications web.xml
This is described in this bug: https://issues.jboss.org/browse/FORGE-657
The quick fix is to add this to your web.xml:
<mime-mapping> <extension>ico</extension> <mime-type>image/x-icon</mime-type> </mime-mapping>
Part of the instructions for setting up Virtual Box to boot from your Bootcamp drive on Mac OS X walk you through setting up a permanent approach to unmounting your Bootcamp drive. I didn’t follow those instructions, instead created a script that I can use to run manually to unmount and open the permissions when needed, i.e. when I want to boot from VirtualBox:
diskutil umount /Volumes/BOOTCAMP sudo chmod 777 /dev/disk0s4
The instructions on some sites also assume that your Bootcamp drive is partition disk0s3, but on my machine it’s disk0s4. If you run ‘diskutil list’ you can get a list of your partitions to work out which is your Bootcamp partition.