mirror of https://github.com/sbt/sbt.git
Merge pull request #678 from coursier/topic/java-9
Bump asm version (for shading)
This commit is contained in:
commit
e2f47b0f43
|
|
@ -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"
|
||||
)
|
||||
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
|
|
|
|||
Loading…
Reference in New Issue