in src/main/java/org/apache/maven/shared/scriptinterpreter/GroovyScriptInterpreter.java [54:60]
private URL toUrl(String path) {
try {
return new File(path).toURI().toURL();
} catch (MalformedURLException e) {
throw new UncheckedIOException(e);
}
}