Skip to content

Commit

Permalink
support releasing via Travis
Browse files Browse the repository at this point in the history
  • Loading branch information
benjchristensen committed Jun 29, 2015
1 parent bb2f5db commit 5584213
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -29,3 +29,12 @@ configure(libraryModules) {
}
}

// 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 5584213

Please sign in to comment.