Currently in rhinoServer.js it has a hardcoded port of "5555". What would it take to make this port dynamic?
The problem is that we are using Maven 3 parallel builds to compile our projects and since it is hardcoded, it prevents the parallel builds. Ideally we can pass in a port or if not then have a way to detect an available port (naive approach would be try-catch with some sort of increments).
Any thoughts on how we can get this done.
Thanks