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.
This commit is contained in:
Alexandre Archambault 2017-10-26 16:06:53 +02:00
parent a151999016
commit afae0cd7f1
2 changed files with 3 additions and 2 deletions

View File

@ -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"
)

View File

@ -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"