Skip to content

Commit

Permalink
Allow override of dry run release
Browse files Browse the repository at this point in the history
  • Loading branch information
benfortuna committed Apr 18, 2015
1 parent ff18b39 commit afba7ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle
Expand Up @@ -52,7 +52,7 @@ release {
failOnSnapshotDependencies = true
// allow modifications due to bug in the release plugin..
allowLocalModifications = true
releaseDryRun = true
releaseDryRun = project.hasProperty('releaseDryRun') ? project.getProperty('releaseDryRun') : true
scm = 'git'
}

Expand Down

0 comments on commit afba7ab

Please sign in to comment.