We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b26593f + c0f4169 commit d385a46Copy full SHA for d385a46
sbt-buildo/src/main/scala/buildo/AssemblySettingPlugin.scala
@@ -16,9 +16,10 @@ object AssemblySettingPlugin extends AutoPlugin {
16
assemblyJarName in assembly := s"${name.value}.jar",
17
assemblyMergeStrategy in assembly := {
18
case PathList("application.conf") => MergeStrategy.discard
19
+ case "module-info.class" => MergeStrategy.discard
20
case x =>
21
val defaultStrategy = (assemblyMergeStrategy in assembly).value
22
defaultStrategy(x)
- }
23
+ },
24
)
25
}
0 commit comments