mirror of https://github.com/sbt/sbt.git
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:
parent
a151999016
commit
afae0cd7f1
|
|
@ -40,8 +40,8 @@ object Deps {
|
||||||
|
|
||||||
def jarjarTransitiveDeps = Seq(
|
def jarjarTransitiveDeps = Seq(
|
||||||
"com.google.code.findbugs" % "jsr305" % "2.0.2",
|
"com.google.code.findbugs" % "jsr305" % "2.0.2",
|
||||||
"org.ow2.asm" % "asm-commons" % "5.0.3",
|
"org.ow2.asm" % "asm-commons" % SharedVersions.asm,
|
||||||
"org.ow2.asm" % "asm-util" % "5.0.3",
|
"org.ow2.asm" % "asm-util" % SharedVersions.asm,
|
||||||
"org.slf4j" % "slf4j-api" % "1.7.25"
|
"org.slf4j" % "slf4j-api" % "1.7.25"
|
||||||
)
|
)
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,7 @@
|
||||||
|
|
||||||
object SharedVersions {
|
object SharedVersions {
|
||||||
|
|
||||||
|
def asm = "5.2"
|
||||||
def fastParse = "1.0.0"
|
def fastParse = "1.0.0"
|
||||||
def http4s = "0.15.16a"
|
def http4s = "0.15.16a"
|
||||||
def proguard = "5.3.3"
|
def proguard = "5.3.3"
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue