Skip to content

Commit

Permalink
HHH-8773 - Remove cleaning as release task dep
Browse files Browse the repository at this point in the history
  • Loading branch information
sebersole committed Jan 22, 2014
1 parent 84b032d commit 1fddb2c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions release/release.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -254,8 +254,12 @@ task uploadReleaseArtifacts(type: Task, dependsOn: [uploadDocumentation, uploadB

task announce(type: Task) { doFirst { println 'Hear ye, hear ye...' } }

task release(type: Task, dependsOn: [cleanAllSubProjects, buildAllSubProjects, uploadReleaseArtifacts, announce]) {
description = "Coordinates all release tasks"
task cleanAndRelease(type: Task, dependsOn: [cleanAllSubProjects, release]) {
description = "Coordinates all release tasks *including clean*"
}

task release(type: Task, dependsOn: [buildAllSubProjects, uploadReleaseArtifacts, announce]) {
description = "Coordinates all release tasks; does not perform a clean first (see cleanAndRelease task)"
}


Expand Down

0 comments on commit 1fddb2c

Please sign in to comment.