Skip to content

Commit 0abb444

Browse files
committed
Move JMX into core client
1 parent 4af4bbc commit 0abb444

File tree

2 files changed

+1
-4
lines changed

2 files changed

+1
-4
lines changed

build.sbt

+1-4
Original file line numberDiff line numberDiff line change
@@ -35,9 +35,6 @@ scalafmtConfig in ThisBuild := Some(file(".scalafmt.conf"))
3535
val client =
3636
project.in(file("client")).enablePlugins(spray.boilerplate.BoilerplatePlugin).settings(commonSettings)
3737

38-
val jmx =
39-
project.in(file("jmx")).settings(commonSettings).dependsOn(client)
40-
4138
val fs2 =
4239
project
4340
.in(file("fs2"))
@@ -56,7 +53,7 @@ val doc =
5653
tutSourceDirectory := baseDirectory.value / "src",
5754
tutTargetDirectory := baseDirectory.value
5855
)
59-
.dependsOn(client, fs2, jmx)
56+
.dependsOn(client, fs2)
6057

6158
val benchmark =
6259
project

0 commit comments

Comments
 (0)