Lines Matching refs:path
35 def buildPath = (repoInfo =~ /Mount path: (.*)/)[0][1]
41 * Collapse a path "IntelliJ-style" by putting dots rather than slashes between
42 * path components that have only one child. So the two paths
51 * @param path
55 Map<String,String> collapsePaths(FileTree path, List<String> roots) {
60 path.visit { FileVisitDetails f ->
66 // Starting at this file, walk back to the root of the path and
71 // path and the filename, even if there's only one file in the directory.
79 // the relative path. But wait, Groovy/Gradle is capricious and
92 result.put(f.file.path, collapsedPath.toString());
218 String collapsed = collapsedPaths.get(fcd.file.path);
219 fcd.path = "${outputPath}/src/${collapsed}";