Merge pull request #22332 from tbrooks8/add_clean_idea_build_task

Add cleanIdeaBuildDir gradle task that cleans the idea build directory
This commit is contained in:
Tim B 2016-12-22 13:25:09 -06:00 committed by GitHub
commit 9cd9576b84
1 changed files with 8 additions and 0 deletions

View File

@ -204,6 +204,14 @@ allprojects {
}
}
}
task cleanIdeaBuildDir(type: Delete) {
delete 'build-idea'
}
cleanIdeaBuildDir.setGroup("ide")
cleanIdeaBuildDir.setDescription("Deletes the IDEA build directory.")
tasks.cleanIdea.dependsOn(cleanIdeaBuildDir)
}
idea {