Skip to content

Commit 63cbc36

Browse files
committed
Fix mapdb dependencies
1 parent d263d89 commit 63cbc36

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

managers/mapdb/build.gradle.kts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,11 @@ sourceSets.all {
2222
dependencies {
2323
core()
2424
api(jackson())
25-
api("org.mapdb:mapdb:3.0.8")
25+
api("org.mapdb:mapdb:3.0.8") {
26+
exclude("org.eclipse.collections")
27+
}
28+
29+
implementation("org.eclipse.collections", "eclipse-collections", "11.1.0")
2630

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

0 commit comments

Comments
 (0)