Skip to content

Commit fa9b188

Browse files
committed
Fix for gradle error "Can't build URI for ''" with jupyterApiTCRepo
1 parent b05f6ec commit fa9b188

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ repositories {
4141
mavenLocal()
4242
mavenCentral()
4343
maven("https://maven.pkg.jetbrains.space/public/p/kotlinx-html/maven")
44-
maven(jupyterApiTCRepo)
44+
if (jupyterApiTCRepo.isNotBlank()) maven(jupyterApiTCRepo)
4545
}
4646

4747
configurations {

dataframe-openapi-generator/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ val jupyterApiTCRepo: String by project
1818
repositories {
1919
mavenLocal()
2020
mavenCentral()
21-
maven(jupyterApiTCRepo)
21+
if (jupyterApiTCRepo.isNotBlank()) maven(jupyterApiTCRepo)
2222
}
2323

2424
dependencies {

settings.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ val jupyterApiTCRepo: String by settings
3737
dependencyResolutionManagement {
3838
repositories {
3939
mavenCentral()
40-
maven(jupyterApiTCRepo)
40+
if (jupyterApiTCRepo.isNotBlank()) maven(jupyterApiTCRepo)
4141
}
4242
}
4343

0 commit comments

Comments
 (0)