HashMap<String, Boolean> addedSrcPath = new HashMap<>();
cp.entries.each { entry ->
if (entry.kind == 'src') {
- if (addedSrcPath.getAt(entry.path) || !(entry.path == "src" || entry.path == "test")) {
+ if (addedSrcPath.getAt(entry.path) || !(entry.path == sourceDir || entry.path == "test")) {
removeTheseToo += entry
} else {
addedSrcPath.putAt(entry.path, true)
task jalviewjsPrepareSite {
group "JalviewJS"
- description "Prepares the website folder"
+ description "Prepares the website folder including unzipping files and copying resources"
dependsOn jalviewjsSitePath
dependsOn jalviewjsUnzipFiles
dependsOn jalviewjsCopyResources