Skip to content

Commit

Permalink
bump pekko-http version
Browse files Browse the repository at this point in the history
  • Loading branch information
hughsimpson committed Oct 10, 2024
1 parent eee3e09 commit 35ac670
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 10 deletions.
16 changes: 8 additions & 8 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -559,7 +559,7 @@ lazy val `kamon-pekko` = (project in file("instrumentation/kamon-pekko"))
`kamon-testkit` % "test"
)

lazy val pekkoHttpVersion = "1.0.0"
lazy val pekkoHttpVersion = "1.1.0"

lazy val `kamon-pekko-http` = (project in file("instrumentation/kamon-pekko-http"))
.enablePlugins(JavaAgent)
Expand All @@ -570,13 +570,13 @@ lazy val `kamon-pekko-http` = (project in file("instrumentation/kamon-pekko-http
libraryDependencies ++= Seq(
kanelaAgent % "provided",
"org.apache.pekko" %% "pekko-http" % pekkoHttpVersion % "provided",
"org.apache.pekko" %% "pekko-stream" % "1.0.1" % "provided",
"org.apache.pekko" %% "pekko-stream" % "1.1.2" % "provided",
scalatest % "test",
slf4jApi % "test",
slf4jnop % "test",
okHttp % "test",
"org.apache.pekko" %% "pekko-http-testkit" % pekkoHttpVersion % "test",
"com.github.pjfanning" %% "pekko-http-json4s" % "2.0.0" % "test",
"com.github.pjfanning" %% "pekko-http-json4s" % "3.0.0" % "test",
"org.json4s" %% "json4s-native" % "4.0.6" % "test",
),
)).dependsOn(`kamon-pekko`, `kamon-testkit` % "test")
Expand All @@ -592,12 +592,12 @@ lazy val `kamon-pekko-grpc` = (project in file("instrumentation/kamon-pekko-grpc
kanelaAgent % "provided",

"org.apache.pekko" %% "pekko-http" % pekkoHttpVersion % "provided",
"org.apache.pekko" %% "pekko-stream" % "1.0.1" % "provided",
"org.apache.pekko" %% "pekko-discovery"% "1.0.0" % "provided",
"org.apache.pekko" %% "pekko-stream" % "1.1.2" % "provided",
"org.apache.pekko" %% "pekko-discovery"% "1.1.2" % "provided",

"com.thesamet.scalapb" %% "scalapb-runtime" % "0.11.8" % "provided",
"org.apache.pekko" %% "pekko-grpc-runtime" % "1.0.0" % "provided",
"io.grpc" % "grpc-stub" % "1.43.2" % "provided",
"com.thesamet.scalapb" %% "scalapb-runtime" % "0.11.17" % "provided",
"org.apache.pekko" %% "pekko-grpc-runtime" % "1.1.0-M1" % "provided",
"io.grpc" % "grpc-stub" % "1.68.0" % "provided",


scalatest % "test",
Expand Down
3 changes: 1 addition & 2 deletions instrumentation/kamon-pekko/build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,8 @@ inConfig(Compile)(Defaults.compileSettings ++ Seq(
lazy val Pekko1_0Test = config("test-pekko-1.0") extend (Test)
lazy val Pekko1_1Test = config("test-pekko-1.1") extend (Test)

val pekko1_0_Version = "1.1.1+26-bc32e04b-SNAPSHOT"
val pekko1_0_Version = "1.1.2"
val pekko1_1_Version = "1.0.3"
resolvers += "Apache Pekko Snapshots" at "https://repository.apache.org/content/groups/snapshots"
libraryDependencies ++= {
if (scalaBinaryVersion.value == "2.11") Seq.empty
else Seq(
Expand Down

0 comments on commit 35ac670

Please sign in to comment.