Skip to content

Commit

Permalink
Improvements based on chen tests
Browse files Browse the repository at this point in the history
Signed-off-by: Prabhu Subramanian <[email protected]>
  • Loading branch information
prabhu committed Sep 20, 2024
1 parent 1793462 commit 5c62e39
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,6 @@ libraryDependencies ++= Seq(
)

excludeDependencies ++= Seq(
ExclusionRule("org.typelevel", "cats-effect"),
ExclusionRule("dev.scalapy", "scalapy-core"),
ExclusionRule("org.gradle", "gradle-tooling-api"),
ExclusionRule("org.scala-lang", "scala3-compiler")
Expand Down Expand Up @@ -61,7 +60,11 @@ Universal / topLevelDirectory := None
Universal / mappings := (Universal / mappings).value.filter {
case (_, path) => !path.contains("org.scala-lang.scala3-compiler") && !path.contains(
"io.get-coursier"
) && !path.contains("com.michaelpollmeier.scala-repl-pp")
) && !path.contains("com.michaelpollmeier.scala-repl-pp") && !path.contains(
"dev.scalapy.scalapy-core"
) && !path.contains(
"dev.scalapy.scalapy-macros"
)
}

enablePlugins(JavaAppPackaging, ClasspathJarPlugin, GraalVMNativeImagePlugin)
Expand Down

0 comments on commit 5c62e39

Please sign in to comment.