Skip to content

Commit

Permalink
Use sbt's Version matcher for binary versions
Browse files Browse the repository at this point in the history
  • Loading branch information
ennru committed Sep 23, 2024
1 parent 34fb54c commit 73cc7eb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions project/Dependencies.scala
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ object Dependencies {

// Align the versions in integration-test/kubernetes-api-java/pom.xml
val AkkaVersion = "2.9.3"
val AkkaBinaryVersion = "2.9"
val AkkaBinaryVersion = VersionNumber(AkkaVersion).numbers match { case Seq(major, minor, _*) => s"$major.$minor" }
// Align the versions in integration-test/kubernetes-api-java/pom.xml
val AkkaHttpVersion = "10.6.3"
val AkkaHttpBinaryVersion = "10.6"
val AkkaHttpBinaryVersion = VersionNumber(AkkaHttpVersion).numbers match { case Seq(major, minor, _*) => s"$major.$minor" }

val ScalaTestVersion = "3.2.19"
val ScalaTestPlusJUnitVersion = ScalaTestVersion + ".0"
Expand Down

0 comments on commit 73cc7eb

Please sign in to comment.