Skip to content

Commit 4a251ac

Browse files
committed
Fix build: jupyter dependencies declarations
1 parent cd61dd7 commit 4a251ac

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

dataframe-jupyter/build.gradle.kts

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,17 +18,15 @@ repositories {
1818
}
1919

2020
dependencies {
21-
compileOnly(projects.core)
22-
compileOnly(projects.dataframeJson)
21+
api(projects.core)
22+
api(projects.dataframeJson)
2323

2424
testImplementation(libs.junit)
2525
testImplementation(libs.serialization.json)
26-
testImplementation(projects.core)
2726
testImplementation(projects.dataframeArrow)
2827
testImplementation(projects.dataframeCsv)
2928
testImplementation(projects.dataframeExcel)
3029
testImplementation(projects.dataframeJdbc)
31-
testImplementation(projects.dataframeJson)
3230
// experimental
3331
testImplementation(projects.dataframeOpenapiGenerator)
3432
testImplementation(projects.dataframeOpenapi)

dataframe-jupyter/src/main/kotlin/org/jetbrains/kotlinx/dataframe/jupyter/Integration.kt

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -171,8 +171,6 @@ internal class Integration(private val notebook: Notebook, private val options:
171171
)
172172
}
173173
dependencies(
174-
"org.jetbrains.kotlinx:dataframe-core:$version",
175-
"org.jetbrains.kotlinx:dataframe-json:$version",
176174
"org.jetbrains.kotlinx:dataframe-csv:$version",
177175
"org.jetbrains.kotlinx:dataframe-excel:$version",
178176
"org.jetbrains.kotlinx:dataframe-jdbc:$version",

dataframe-openapi-generator/build.gradle.kts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ dependencies {
3434
exclude("jakarta.validation")
3535
}
3636

37-
testApi(projects.core)
3837
testApi(projects.dataframeJupyter)
3938
testImplementation(libs.junit)
4039
testImplementation(libs.kotestAssertions) {

0 commit comments

Comments
 (0)