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