Skip to content

Commit

Permalink
fix: Exclude logback-core for JDK8 compatibility (#531)
Browse files Browse the repository at this point in the history
* fix: Exclude logback-core for JDK8 compatibility

* reformat
  • Loading branch information
xerial authored Oct 11, 2024
1 parent 8125565 commit 96a92f3
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,9 @@ lazy val sbtSonatype =
libraryDependencies ++= Seq(
"org.sonatype.spice.zapper" % "spice-zapper" % versions.sonatypeZapperClient,
"org.wvlet.airframe" %% "airframe-http" % versions.airframe
// A workaround for sbt-pgp, which still depends on scala-parser-combinator 1.x
// Logback 1.5.8 dropposed Java 8 support
exclude ("ch.qos.logback", "logback-core")
// A workaround for sbt-pgp, which still depends on scala-parser-combinator 1.x
excludeAll (ExclusionRule("org.scala-lang.modules", "scala-parser-combinators_2.12")),
"org.wvlet.airframe" %% "airspec" % versions.airframe % Test,
"com.lumidion" %% "sonatype-central-client-sttp-core" % versions.sonatypeClient,
Expand Down

0 comments on commit 96a92f3

Please sign in to comment.