Skip to content
This repository was archived by the owner on Jul 22, 2025. It is now read-only.
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions schema-importer/app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,14 @@ dependencies {
implementation("org.slf4j:slf4j-api:2.0.7")
implementation("org.slf4j:slf4j-simple:2.0.7")

// These dependencies are added as tentative solution for the warnings caused by missing of
// Netty's native transport library.
// Once this issue is addressed in the ScalarDB core, these will be removed.
implementation("io.netty:netty-transport-native-epoll:4.1.99.Final:linux-x86_64")
implementation("io.netty:netty-transport-native-epoll:4.1.99.Final:linux-aarch_64")
implementation("io.netty:netty-transport-native-kqueue:4.1.99.Final:osx-x86_64")
implementation("io.netty:netty-transport-native-kqueue:4.1.99.Final:osx-aarch_64")

testImplementation("org.jetbrains.kotlin:kotlin-test-junit5")
testImplementation("org.junit.jupiter:junit-jupiter-engine:5.9.2")
testImplementation("io.mockk:mockk:1.13.5")
Expand Down