Skip to content

Commit

Permalink
Update sbt plugins (#7570)
Browse files Browse the repository at this point in the history
  • Loading branch information
piotrp authored Feb 17, 2025
1 parent 3195172 commit b67a283
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 16 deletions.
6 changes: 2 additions & 4 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ val flinkCommonsIOV = "2.15.1"
val avroV = "1.11.4"
//we should use max(version used by confluent, version acceptable by flink), https://docs.confluent.io/platform/current/installation/versions-interoperability.html - confluent version reference
val kafkaV = "3.8.1"
//TODO: Spring 5.3 has some problem with handling our PrimitiveOrWrappersPropertyAccessor
// to update we need configurable SpEL length limit from 6.0.9, but 6.x requires JDK 17
val springV = "5.2.23.RELEASE"
val scalaTestV = "3.2.18"
val scalaCheckV = "1.17.1"
Expand Down Expand Up @@ -1560,9 +1560,7 @@ lazy val extensionsApi = (project in file("extensions-api"))
.settings(
name := "nussknacker-extensions-api",
libraryDependencies ++= Seq(
"org.springframework" % "spring-expression" % springV,
// needed by scala-compiler for spring-expression...
"com.google.code.findbugs" % "jsr305" % findBugsV,
"org.springframework" % "spring-expression" % springV,
)
)
.dependsOn(testUtils % Test, componentsApi, scenarioApi)
Expand Down
25 changes: 13 additions & 12 deletions project/plugins.sbt
Original file line number Diff line number Diff line change
@@ -1,19 +1,20 @@
libraryDependencies ++= Seq(
"com.github.pathikrit" %% "better-files" % "3.9.2",
"com.lihaoyi" %% "os-lib" % "0.9.1",
"com.lihaoyi" %% "os-lib" % "0.11.3",
)

addDependencyTreePlugin
addSbtPlugin("com.eed3si9n" % "sbt-assembly" % "1.1.0")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.9.0")
addSbtPlugin("org.jmotor.sbt" % "sbt-dependency-updates" % "1.2.7")
addSbtPlugin("com.typesafe.sbt" % "sbt-git" % "1.0.1")
addSbtPlugin("com.eed3si9n" % "sbt-buildinfo" % "0.11.0")
addSbtPlugin("org.jmotor.sbt" % "sbt-dependency-updates" % "1.2.9")
addSbtPlugin("com.typesafe.sbt" % "sbt-git" % "1.0.2")
addSbtPlugin("uk.co.randomcoding" % "sbt-git-hooks" % "0.2.0")
addSbtPlugin("com.lightbend.sbt" % "sbt-javaagent" % "0.1.6")
addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.6")
addSbtPlugin("com.github.sbt" % "sbt-native-packager" % "1.9.13")
addSbtPlugin("com.jsuereth" % "sbt-pgp" % "2.0.2")
addSbtPlugin("com.github.gseitz" % "sbt-release" % "1.0.10")
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.11.1")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.2")
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.9.7")
addSbtPlugin("com.github.sbt" % "sbt-javaagent" % "0.1.8")
addSbtPlugin("pl.project13.scala" % "sbt-jmh" % "0.4.7")
addSbtPlugin("com.github.sbt" % "sbt-native-packager" % "1.11.1")
addSbtPlugin("com.github.sbt" % "sbt-pgp" % "2.3.1")
addSbtPlugin("com.github.sbt" % "sbt-release" % "1.4.0")
addSbtPlugin("ch.epfl.scala" % "sbt-scalafix" % "0.14.0")
addSbtPlugin("org.scalameta" % "sbt-scalafmt" % "2.5.4")
// 3.12 is missing some logging when run on JDK 11
addSbtPlugin("org.xerial.sbt" % "sbt-sonatype" % "3.11.3")

0 comments on commit b67a283

Please sign in to comment.