Reports endpoints with an empty or malformed version.
A version should have the SemVer format when no custom version parser is configured:
@RestController
class UsersController {
@GetMapping(
value = "/users",
version = "1.hello.world" // will be reported as a malformed version
)
List<String> getUsers() {
// ...
}
}