We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4af4bbc commit 0abb444Copy full SHA for 0abb444
build.sbt
@@ -35,9 +35,6 @@ scalafmtConfig in ThisBuild := Some(file(".scalafmt.conf"))
35
val client =
36
project.in(file("client")).enablePlugins(spray.boilerplate.BoilerplatePlugin).settings(commonSettings)
37
38
-val jmx =
39
- project.in(file("jmx")).settings(commonSettings).dependsOn(client)
40
-
41
val fs2 =
42
project
43
.in(file("fs2"))
@@ -56,7 +53,7 @@ val doc =
56
53
tutSourceDirectory := baseDirectory.value / "src",
57
54
tutTargetDirectory := baseDirectory.value
58
55
)
59
- .dependsOn(client, fs2, jmx)
+ .dependsOn(client, fs2)
60
61
val benchmark =
62
jmx/src/main/scala/jmx.scala client/src/main/scala/org/lyranthe/prometheus/client/jmx.scala
0 commit comments