in dashboard/src/main/java/com/google/cloud/tools/opensource/dashboard/DashboardMain.java [218:221]
private static Path outputDirectory(String groupId, String artifactId, String version) {
String versionPathElement = version.contains("-SNAPSHOT") ? "snapshot" : version;
return Paths.get("target", groupId, artifactId, versionPathElement);
}