We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b26593f commit c0f4169Copy full SHA for c0f4169
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