Skip to content

Commit

Permalink
Fix mapdb dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
nikvoloshin committed Nov 29, 2023
1 parent d263d89 commit 63cbc36
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion managers/mapdb/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,11 @@ sourceSets.all {
dependencies {
core()
api(jackson())
api("org.mapdb:mapdb:3.0.8")
api("org.mapdb:mapdb:3.0.8") {
exclude("org.eclipse.collections")
}

implementation("org.eclipse.collections", "eclipse-collections", "11.1.0")

testImplementation(testFixtures(project(":core")))
}

0 comments on commit 63cbc36

Please sign in to comment.