Closed frhd closed 9 years ago
You can use the filetree which includes several file extensions, as follows
resources {
files fileTree(dir: 'src/main/resources',
includes: [ '**/*.html', '**/*.css' ])
tasks 'processResources'
}
resources {
files fileTree('src/main/resources') {
include '**/*.html'
include '**/*.css'
}
tasks 'processResources'
}
Ah right, thanks!
Something along the lines of this: