Skip to content

Commit

Permalink
Use the org.lz4:lz4-java project instead of the old net.jpountz.lz4 p…
Browse files Browse the repository at this point in the history
…roject. (#4347)

Signed-off-by: David Venable <[email protected]>
  • Loading branch information
dlvenable authored Mar 27, 2024
1 parent 06e1411 commit 4978046
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion data-prepper-plugins/mapdb-processor-state/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ plugins {
dependencies {
implementation project(':data-prepper-api')
implementation project(':data-prepper-plugins:common')
implementation 'org.mapdb:mapdb:3.1.0'
implementation('org.mapdb:mapdb:3.1.0') {
exclude group: 'net.jpountz.lz4', module: 'lz4'
}
implementation 'org.lz4:lz4-java:1.8.0'
implementation 'org.jetbrains.kotlin:kotlin-stdlib:1.8.21'
implementation 'org.jetbrains.kotlin:kotlin-stdlib-common:1.9.22'
testImplementation project(':data-prepper-plugins:common').sourceSets.test.output
Expand Down

0 comments on commit 4978046

Please sign in to comment.