We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 772185a commit a9ac383Copy full SHA for a9ac383
project/Build.scala
@@ -1298,8 +1298,7 @@ object Build {
1298
assembly / test := {}, // Don't run tests for assembly
1299
// Exclude scala-library and jline from assembly (users provide them on classpath)
1300
assembly / assemblyExcludedJars := {
1301
- val cp = (assembly / fullClasspath).value
1302
- cp.filter { jar =>
+ (assembly / fullClasspath).value.filter { jar =>
1303
val name = jar.data.getName
1304
name.contains("scala-library") || name.contains("scala3-library") || name.contains("jline")
1305
}
0 commit comments