File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -17,14 +17,14 @@ javadoc {
17
17
exclude " **/rx/internal/**"
18
18
}
19
19
20
- # support for snapshot/ final releases with the various branches RxJava uses
20
+ // support for snapshot/final releases with the various branches RxJava uses
21
21
nebulaRelease {
22
22
addReleaseBranchPattern(/ \d +\.\d +\.\d +/ )
23
23
addReleaseBranchPattern(' HEAD' )
24
24
}
25
25
26
- # the snapshot versioning should increment the path number
27
- release. scope= patch
26
+ // the snapshot versioning should increment the path number
27
+ // release.scope=patch
28
28
29
29
if (project. hasProperty(' release.useLastTag' )) {
30
30
tasks. prepare. enabled = false
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ if [ "$TRAVIS_PULL_REQUEST" == "true" ]; then
7
7
elif [ " $TRAVIS_PULL_REQUEST " == " false" ] && [ " $TRAVIS_TAG " == " " ]; then
8
8
echo -e ' Build Branch with Snapshot => Branch [' $TRAVIS_BRANCH ' ]'
9
9
./gradlew -PbintrayUser=" ${bintrayUser} " -PbintrayKey=" ${bintrayKey} " snapshot --stacktrace
10
- elif if [ " $TRAVIS_PULL_REQUEST " == " false" ] && [ " $TRAVIS_TAG " != " " ]; then
10
+ elif [ " $TRAVIS_PULL_REQUEST " == " false" ] && [ " $TRAVIS_TAG " != " " ]; then
11
11
echo -e ' Build Branch for Release => Branch [' $TRAVIS_BRANCH ' ] Tag [' $TRAVIS_TAG ' ]'
12
12
./gradlew -Prelease.useLastTag=true -PbintrayUser=" ${bintrayUser} " -PbintrayKey=" ${bintrayKey} " final --stacktrace
13
13
else
You can’t perform that action at this time.
0 commit comments