Skip to content
Open
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
7 changes: 5 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ val magnolifyVersion = "0.8.0"
val parquetVersion = "1.17.1"
val protobufGenericVersion = "0.2.9"
val protobufVersion = "4.35.0"
val scalatestVersion = "3.2.19"
val scalatestVersion = "3.2.20"
val slf4jReload4jVersion2 = "2.0.17"

// use slf4j-reload4j instead
Expand Down Expand Up @@ -241,7 +241,10 @@ lazy val assemblySettings = Seq(
case PathList("META-INF", "NOTICE") =>
// avro-tools META-INF/NOTICE must not be renamed
CustomMergeStrategy.rename(preserveName("avro-tools"))
case PathList("META-INF", "NOTICE.txt" | "NOTICE.markdown" | "FastDoubleParser-NOTICE" | "FastDoubleParser-LICENSE") =>
case PathList(
"META-INF",
"NOTICE.txt" | "NOTICE.markdown" | "FastDoubleParser-NOTICE" | "FastDoubleParser-LICENSE"
) =>
MergeStrategy.rename
case PathList("NOTICE") =>
MergeStrategy.rename
Expand Down
Loading