diff --git a/README.md b/README.md index 77b7649..dd239ad 100644 --- a/README.md +++ b/README.md @@ -2,7 +2,11 @@ Collection of utilities to allow exposing prometheus metrics from pekko-http endpoint using the prometheus java client - "com.varwise" %% "prometheus-pekko-http" % "0.6.0" + "com.varwise" %% "prometheus-pekko-http" % "1.0.0" + +### Related projects + +[prometheus-akka-http](https://github.com/varwise/prometheus-akka-http) - same thing but for akka-http ### Publishing diff --git a/build.sbt b/build.sbt index ff9aa9e..dd55ad0 100644 --- a/build.sbt +++ b/build.sbt @@ -25,11 +25,11 @@ libraryDependencies ++= { ("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 + "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 ) }