Commit b33cefa 1 parent 62f119b commit b33cefa Copy full SHA for b33cefa
File tree 2 files changed +11
-3
lines changed
2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ android.useAndroidX=true
16
16
# apply router plugin
17
17
applyRemotePlugin =false
18
18
# router gradle plugin version
19
- PLUGIN_VERSION =1.8.0
19
+ PLUGIN_VERSION =1.8.1
20
20
# router library version
21
21
ROUTER_VERSION =1.8.0
22
22
# compiler library version
Original file line number Diff line number Diff line change @@ -69,9 +69,17 @@ afterEvaluate {
69
69
def snapshotsRepoUrl = ' https://s01.oss.sonatype.org/content/repositories/snapshots/'
70
70
url = version. endsWith(' SNAPSHOT' ) ? snapshotsRepoUrl : releasesRepoUrl
71
71
72
+ def _ossrhUsername = ' '
73
+ def _ossrhPassword = ' '
74
+ if (project. hasProperty(' ossrhUsername' )) {
75
+ _ossrhUsername = ossrhUsername
76
+ }
77
+ if (project. hasProperty(' ossrhPassword' )) {
78
+ _ossrhPassword = ossrhPassword
79
+ }
72
80
credentials {
73
- username = ossrhUsername
74
- password = ossrhPassword
81
+ username = _ossrhUsername
82
+ password = _ossrhPassword
75
83
}
76
84
}
77
85
}
You can’t perform that action at this time.
0 commit comments