Community
Participate
Working Groups
The class org.eclipse.xtend.maven.MavenTraceURIConverter is not able to work with symlinked source folders. In this class there is a method deresolve. In here the line URI root = URI.createFileURI(rootString); should be changed to something like URI root = URI.createFileURI(new File(rootString).getCanonicalPath()); This way the actual path to the source is used and not the symliked path. If the symlinked path is used the method DefaultTraceURIConverter.isPrefix returns false and this leads to a RuntimeException.
it is important not to forget the trailing slash. rootString = new File(rootString).getCanonicalPath() + "/" URI root = URI.createFileURI(rootString);
will this fix be available for 2.4.2?
No, it hasn't been fixed so far.
pushed to review
Requested via bug 522520. -M.