forked from Jyllands-Posten/play-prometheus-filters
-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.sbt
33 lines (23 loc) · 1004 Bytes
/
build.sbt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
Global / onChangedBuildSource := ReloadOnSourceChanges
name := "play-prometheus-filters"
organization := "io.github.kamikazik"
version := "0.7.0"
lazy val root = project in file(".")
scalaVersion := "2.13.13"
val playVersion = "3.0.1"
val prometheusClientVersion = "0.9.0"
libraryDependencies ++= Seq(
"io.prometheus" % "simpleclient" % prometheusClientVersion,
"io.prometheus" % "simpleclient_hotspot" % prometheusClientVersion,
"io.prometheus" % "simpleclient_servlet" % prometheusClientVersion,
// Play libs. Are provided not to enforce a specific version.
"org.playframework" %% "play" % playVersion % Provided,
"org.playframework" %% "play-guice" % playVersion % Provided,
)
libraryDependencies ++= Seq(
"org.scalatestplus.play" %% "scalatestplus-play" % "7.0.1" % Test,
"org.scalatestplus" %% "mockito-4-2" % "3.2.11.0" % Test,
"org.mockito" % "mockito-core" % "4.2.0" % Test
)
sonatypeCredentialHost := "s01.oss.sonatype.org"
publishTo := sonatypePublishToBundle.value