Skip to content

Commit

Permalink
Jar Jar Abrams 1.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
eed3si9n committed Oct 27, 2023
1 parent 8a987e0 commit c550039
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ lazy val root = (project in file("."))
name := "sbt-assembly"
scalacOptions := Seq("-deprecation", "-unchecked", "-Dscalac.patmat.analysisBudget=1024", "-Xfuture")
libraryDependencies ++= Seq(
"com.eed3si9n.jarjarabrams" %% "jarjar-abrams-core" % "1.9.0",
"com.eed3si9n.jarjarabrams" %% "jarjar-abrams-core" % "1.13.0",
)
(pluginCrossBuild / sbtVersion) := {
scalaBinaryVersion.value match {
Expand Down
6 changes: 5 additions & 1 deletion src/main/scala/sbtassembly/Assembly.scala
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,11 @@ object Assembly {
if (shadeRules.isEmpty)
(name: String, inputStream: LazyInputStream) => Some(name -> inputStream)
else {
val bytecodeShader = Shader.bytecodeShader(shadeRules, verbose = false)
val bytecodeShader = Shader.bytecodeShader(
shadeRules,
verbose = false,
skipManifest = false,
)
(name: String, inputStream: LazyInputStream) => {
val is = inputStream()
val shadeResult = bytecodeShader(Streamable.bytes(is), name)
Expand Down

0 comments on commit c550039

Please sign in to comment.