I currently have a group of separate projects, each with their own buildfile. Some of these depend on others in the group, so I'm running 'buildr install' after every compilation to get the others to see the changes. The problem with this solution is the need to specify the exact version of the dependency in the buildfile. Is there a better solution than going into each buildfile and update the version for each build, something like maven's LATEST keyword for the version?
Thanks