Skip to content

Commit 5584213

Browse files
support releasing via Travis
1 parent bb2f5db commit 5584213

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

build.gradle

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,12 @@ configure(libraryModules) {
2929
}
3030
}
3131

32+
// support for snapshot/final releases with the various branches RxJava uses
33+
nebulaRelease {
34+
addReleaseBranchPattern(/\d+\.\d+\.\d+/)
35+
addReleaseBranchPattern('HEAD')
36+
}
37+
38+
if (project.hasProperty('release.useLastTag')) {
39+
tasks.prepare.enabled = false
40+
}

0 commit comments

Comments
 (0)