Skip to content

Commit

Permalink
allow release from HEAD
Browse files Browse the repository at this point in the history
  • Loading branch information
abersnaze committed Sep 14, 2015
1 parent 2f9f598 commit d8306c3
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -12,3 +12,13 @@ dependencies {
testCompile 'org.mockito:mockito-core:1.8.5'
}

// support for snapshot/final releases with the various branches RxJava uses
nebulaRelease {
addReleaseBranchPattern(/\d+\.\d+\.\d+/)
addReleaseBranchPattern('HEAD')
}

if (project.hasProperty('release.useLastTag')) {
tasks.prepare.enabled = false
}

0 comments on commit d8306c3

Please sign in to comment.