From afae0cd7f1c1a581ad1e2b0038da6cc5e77ea62d Mon Sep 17 00:00:00 2001 From: Alexandre Archambault Date: Thu, 26 Oct 2017 16:06:53 +0200 Subject: [PATCH] Bump asm version (used by shading) Seems to fix java.lang.IncompatibleClassChangeError errors when using shaded code. Release of coursier using the next one for shading should be fine with Java 9 thanks to that. --- project/Deps.scala | 4 ++-- project/SharedVersions.scala | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/project/Deps.scala b/project/Deps.scala index 4c28ab545..201a69ca0 100644 --- a/project/Deps.scala +++ b/project/Deps.scala @@ -40,8 +40,8 @@ object Deps { def jarjarTransitiveDeps = Seq( "com.google.code.findbugs" % "jsr305" % "2.0.2", - "org.ow2.asm" % "asm-commons" % "5.0.3", - "org.ow2.asm" % "asm-util" % "5.0.3", + "org.ow2.asm" % "asm-commons" % SharedVersions.asm, + "org.ow2.asm" % "asm-util" % SharedVersions.asm, "org.slf4j" % "slf4j-api" % "1.7.25" ) diff --git a/project/SharedVersions.scala b/project/SharedVersions.scala index 75bf8f49c..a9e407d18 100644 --- a/project/SharedVersions.scala +++ b/project/SharedVersions.scala @@ -1,6 +1,7 @@ object SharedVersions { + def asm = "5.2" def fastParse = "1.0.0" def http4s = "0.15.16a" def proguard = "5.3.3"