I think you can do that using `project.files` (the...
# gradle
m
I think you can do that using
project.files
(the javadoc has all like 15 different types it accepts)
Copy code
ConfigurableFileCollection  collection = project.files(collectionA, collectionB)
collection.from(collectionC, collectionD)
collection.filter...