Question

I want to exclude src\main and src\test files from src

FileCollection files = 
project.fileTree(/src/).minus(project.fileTree(/src\main/)).minus(project.fileTree(/src\test/))

How can I exclude this directories without double minus usage?

Was it helpful?

Solution

The idiomatic way to exclude subdirectories from a FileTree is:

def files = fileTree("src").matching {
    exclude "main", "test" // relative to the file tree's root directory
}

PS: Instead of .minus, you can use -.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top