Downgrade sbt-osgi (#28302)

To fix including jdk9-only classes
This commit is contained in:
Arnout Engelen 2019-12-04 23:39:56 +01:00 committed by Helena Edelson
parent d0027850e6
commit 7839649fb2
2 changed files with 3 additions and 1 deletions

View file

@ -12,6 +12,7 @@ updates.ignore = [
{ groupId = "com.fasterxml.jackson.datatype", artifactId = "jackson-datatype-jdk8" },
{ groupId = "com.typesafe", artifactId = "config" },
{ groupId = "com.typesafe", artifactId = "ssl-config-core" },
{ groupId = "com.typesafe.sbt", artifactId = "sbt-osgi" },
{ groupId = "org.agrona", artifactId = "agrona" }
]

View file

@ -11,7 +11,8 @@ addSbtPlugin("com.typesafe.sbt" % "sbt-multi-jvm" % "0.4.0")
addSbtPlugin("com.lightbend.sbt" % "sbt-java-formatter" % "0.4.4")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.0.6")
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.9.11")
addSbtPlugin("com.typesafe.sbt" % "sbt-osgi" % "0.9.5")
// sbt-osgi 0.9.5 is available but breaks including jdk9-only classes
addSbtPlugin("com.typesafe.sbt" % "sbt-osgi" % "0.9.4")
addSbtPlugin("com.typesafe" % "sbt-mima-plugin" % "0.6.1")
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "2.0.0")
addSbtPlugin("com.eed3si9n" % "sbt-unidoc" % "0.4.2")