in src/main/java/org/apache/sling/maven/bundlesupport/fsresource/FsResourceConfiguration.java [68:74]
public FsResourceConfiguration fsRootPath(File value) {
if (!value.isAbsolute()) {
throw new IllegalArgumentException("The given filesystem path must be absolute");
}
this.fsRootPath = value;
return this;
}