Skip to content

Commit

Permalink
bump libs, remove java17 call
Browse files Browse the repository at this point in the history
  • Loading branch information
barryoneill committed Nov 26, 2024
1 parent 006a2fb commit 8b5c7d0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ object LicenseRequired extends LicenseCheck {
private def appearsMIT(content: String): Boolean =
content
.split("\n")
.filterNot(_.isBlank)
.filterNot(_.trim.isEmpty)
.headOption
.map(_.trim)
.exists(
Expand Down
4 changes: 2 additions & 2 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@ resolvers += Classpaths.sbtPluginReleases

addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
addSbtPlugin("com.github.sbt" % "sbt-native-packager" % "1.10.4")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.12.0")
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.7.0")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.13.1")
addSbtPlugin("com.github.sbt" % "sbt-ci-release" % "1.9.0")

// this triggers "Defaulting to no-operation (NOP) logger implementation" message in projects.. ignoring warning for now
addSbtPlugin("com.github.sbt" % "sbt-git" % "2.1.0")

0 comments on commit 8b5c7d0

Please sign in to comment.