Skip to content

Commit 06a2819

Browse files
committed
fix fat jar to not include all of Scala standard library
1 parent 52f2b83 commit 06a2819

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

build.sbt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ scalacOptions ++= Seq(
3030
assemblyJarName in assembly :=
3131
s"${name.value}_${scalaBinaryVersion.value}-${version.value}.jar"
3232

33+
assemblyOption in assembly :=
34+
(assemblyOption in assembly).value.copy(includeScala = false)
35+
3336
mappings in (Compile, packageBin) ++= Seq(
3437
(baseDirectory.value / "README.md") -> "README.md",
3538
(baseDirectory.value / "LICENSE.md") -> "LICENSE.md")

0 commit comments

Comments
 (0)