Added clean task for p2 repo

This commit is contained in:
Miro Spönemann 2016-11-23 17:45:00 +01:00
parent 3f9f41b748
commit d644d46f8b

View file

@ -25,3 +25,9 @@ task cleanLocalMavenRepo(type: Delete) {
description = 'Delete the local Maven repository'
delete 'build/maven-repository'
}
task cleanLocalP2Repo(type: Delete) {
group 'Build'
description 'Deletes the local P2 repository'
delete 'build/p2-repository'
}