Getting java.lang.NoSuchFieldError: VALUE in RamlValidationService
问题 I want to create a RAML validator that will get the RAML URLs resturn validation results. For that Im using raml-java-parser. As per its readme file I try to execute below line of code: String sourceUrl = "http://api.apihub.com/onpositive/api/espn-raml-api/espn.raml"; List<ValidationResult> results = RamlValidationService.createDefault().validate(sourceUrl); And get below error message: java.lang.NoSuchFieldError: VALUE Why I'm getting this error? Before that I got some class not found