Skip to content

Commit

Permalink
Merge pull request #3 from pjfanning/patch-1
Browse files Browse the repository at this point in the history
use scala 3 libs in scala 3 build
  • Loading branch information
wlk authored Mar 12, 2024
2 parents 5746951 + 8c6938d commit e77789e
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,19 @@ credentials += Credentials(Path.userHome / ".sbt" / ".credentials")
libraryDependencies ++= {
val simpleclientVersion = "0.16.0"
val pekkoVersion = "1.0.2"
val pekkoHttpVersion = "1.0.0"
val pekkoHttpVersion = "1.0.1"
val scalaTestVersion = "3.2.17"

Seq(
("org.apache.pekko" %% "pekko-actor" % pekkoVersion % Provided).cross(CrossVersion.for3Use2_13),
("org.apache.pekko" %% "pekko-stream" % pekkoVersion % Provided).cross(CrossVersion.for3Use2_13),
("org.apache.pekko" %% "pekko-http" % pekkoHttpVersion % Provided).cross(CrossVersion.for3Use2_13),
("org.apache.pekko" %% "pekko-http-spray-json" % pekkoHttpVersion % Provided).cross(CrossVersion.for3Use2_13),
"io.prometheus" % "simpleclient" % simpleclientVersion,
"io.prometheus" % "simpleclient_common" % simpleclientVersion,
("org.apache.pekko" %% "pekko-testkit" % pekkoVersion % Test).cross(CrossVersion.for3Use2_13),
("org.apache.pekko" %% "pekko-http-testkit" % pekkoHttpVersion % Test).cross(CrossVersion.for3Use2_13),
"org.scalatest" %% "scalatest" % scalaTestVersion % Test
"org.apache.pekko" %% "pekko-actor" % pekkoVersion % Provided,
"org.apache.pekko" %% "pekko-stream" % pekkoVersion % Provided,
"org.apache.pekko" %% "pekko-http" % pekkoHttpVersion % Provided,
"org.apache.pekko" %% "pekko-http-spray-json" % pekkoHttpVersion % Provided,
"io.prometheus" % "simpleclient" % simpleclientVersion,
"io.prometheus" % "simpleclient_common" % simpleclientVersion,
"org.apache.pekko" %% "pekko-testkit" % pekkoVersion % Test,
"org.apache.pekko" %% "pekko-http-testkit" % pekkoHttpVersion % Test,
"org.scalatest" %% "scalatest" % scalaTestVersion % Test
)
}

Expand Down

0 comments on commit e77789e

Please sign in to comment.