@RequestMapping(
     value = "/build/projectVersion",
     method = RequestMethod.GET,
     produces = {MediaType.APPLICATION_JSON_VALUE})
 public String getBuildInfoProjectVersion() {
   return info.getBuild().getProjectVersion();
 }
 @RequestMapping(
     value = "/build",
     method = RequestMethod.GET,
     produces = {MediaType.APPLICATION_JSON_VALUE})
 public BuildInfo getBuildInfo() {
   return info.getBuild();
 }