Skip to content

Commit

Permalink
Update jarjar-abrams-core from 1.9.0 to 1.14.0 (#3085)
Browse files Browse the repository at this point in the history
This includes one code change due to changed API.

Pull request: #3085
  • Loading branch information
lefou authored Mar 15, 2024
1 parent e98025d commit a3d3dc3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.sc
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ object Deps {
// keep in sync with doc/antora/antory.yml
val bsp4j = ivy"ch.epfl.scala:bsp4j:2.2.0-M1"
val fansi = ivy"com.lihaoyi::fansi:0.4.0"
val jarjarabrams = ivy"com.eed3si9n.jarjarabrams::jarjar-abrams-core:1.9.0"
val jarjarabrams = ivy"com.eed3si9n.jarjarabrams::jarjar-abrams-core:1.14.0"
val requests = ivy"com.lihaoyi::requests:0.8.0"

/** Used to manage transitive versions. */
Expand Down
2 changes: 1 addition & 1 deletion scalalib/src/mill/scalalib/Assembly.scala
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ object Assembly {
if (shadeRules.isEmpty)
(name: String, inputStream: UnopenedInputStream) => Some(name -> inputStream)
else {
val shader = Shader.bytecodeShader(shadeRules, verbose = false)
val shader = Shader.bytecodeShader(shadeRules, verbose = false, skipManifest = true)
(name: String, inputStream: UnopenedInputStream) => {
val is = inputStream()
shader(Streamable.bytes(is), name).map {
Expand Down

0 comments on commit a3d3dc3

Please sign in to comment.