Skip to content

Commit 772185a

Browse files
committed
.
1 parent 4ea6918 commit 772185a

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

project/Build.scala

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1293,9 +1293,7 @@ object Build {
12931293
assembly / assemblyJarName := s"scala3-repl-embedded-${version.value}.jar",
12941294
// Add scala3-repl to assembly classpath without making it a published dependency
12951295
assembly / fullClasspath := {
1296-
val replJar = (`scala3-repl` / Compile / packageBin).value
1297-
val cp = (assembly / fullClasspath).value
1298-
cp :+ Attributed.blank(replJar)
1296+
(Compile / fullClasspath).value ++ (`scala3-repl` / assembly / fullClasspath).value
12991297
},
13001298
assembly / test := {}, // Don't run tests for assembly
13011299
// Exclude scala-library and jline from assembly (users provide them on classpath)

0 commit comments

Comments
 (0)