We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b20823d commit dea59f7Copy full SHA for dea59f7
build.gradle
@@ -108,11 +108,13 @@ afterEvaluate {
108
* JetBrains Spaces Repository (private)
109
* https://lp.jetbrains.com/space-source-code-management/
110
*/
111
- maven {
112
- url = System.getenv("JB_SPACE_MAVEN_REPO")
113
- credentials {
114
- username = System.getenv("JB_SPACE_CLIENT_ID")
115
- password = System.getenv("JB_SPACE_CLIENT_SECRET")
+ if (System.getenv("JB_SPACE_MAVEN_REPO") != null) {
+ maven {
+ url = System.getenv("JB_SPACE_MAVEN_REPO")
+ credentials {
+ username = System.getenv("JB_SPACE_CLIENT_ID")
116
+ password = System.getenv("JB_SPACE_CLIENT_SECRET")
117
+ }
118
}
119
120
0 commit comments