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 4ea6918 commit 772185aCopy full SHA for 772185a
project/Build.scala
@@ -1293,9 +1293,7 @@ object Build {
1293
assembly / assemblyJarName := s"scala3-repl-embedded-${version.value}.jar",
1294
// Add scala3-repl to assembly classpath without making it a published dependency
1295
assembly / fullClasspath := {
1296
- val replJar = (`scala3-repl` / Compile / packageBin).value
1297
- val cp = (assembly / fullClasspath).value
1298
- cp :+ Attributed.blank(replJar)
+ (Compile / fullClasspath).value ++ (`scala3-repl` / assembly / fullClasspath).value
1299
},
1300
assembly / test := {}, // Don't run tests for assembly
1301
// Exclude scala-library and jline from assembly (users provide them on classpath)
0 commit comments