Skip to content

Commit

Permalink
Updat the build file to clean the builddir during a clean cycle.
Browse files Browse the repository at this point in the history
  • Loading branch information
dthompsn committed Aug 5, 2020
1 parent 21e30de commit 0bc9fd4
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@
* - server: A java executable runnable container similar to Tomcat that can run consumers
* - consumers: Examples written to show how you to build your own forklift ESB
*/

allprojects {
repositories {
mavenCentral()
Expand Down Expand Up @@ -130,7 +129,7 @@ rootProject.getTasksByName('test', true).each {
it.finalizedBy(testReport)
}

clean {
delete "$buildDir"
task cleanTestDir (type: Delete) {
file("$buildDir").deleteDir()
}

0 comments on commit 0bc9fd4

Please sign in to comment.