File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
dataframe-openapi-generator Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -41,7 +41,7 @@ repositories {
41
41
mavenLocal()
42
42
mavenCentral()
43
43
maven(" https://maven.pkg.jetbrains.space/public/p/kotlinx-html/maven" )
44
- maven(jupyterApiTCRepo)
44
+ if (jupyterApiTCRepo.isNotBlank()) maven(jupyterApiTCRepo)
45
45
}
46
46
47
47
configurations {
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ val jupyterApiTCRepo: String by project
18
18
repositories {
19
19
mavenLocal()
20
20
mavenCentral()
21
- maven(jupyterApiTCRepo)
21
+ if (jupyterApiTCRepo.isNotBlank()) maven(jupyterApiTCRepo)
22
22
}
23
23
24
24
dependencies {
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ val jupyterApiTCRepo: String by settings
37
37
dependencyResolutionManagement {
38
38
repositories {
39
39
mavenCentral()
40
- maven(jupyterApiTCRepo)
40
+ if (jupyterApiTCRepo.isNotBlank()) maven(jupyterApiTCRepo)
41
41
}
42
42
}
43
43
You can’t perform that action at this time.
0 commit comments