in dashboard/src/main/java/com/google/cloud/tools/opensource/dashboard/DashboardArguments.java [70:76]
Path getBomFile() {
if (!commandLine.hasOption('f')) {
return null;
}
// Trim the value so that maven exec plugin can pass arguments with exec.arguments="-f pom.xml"
return Paths.get(commandLine.getOptionValue('f').trim()).toAbsolutePath();
}