diff --git a/perf/build.sbt b/perf/build.sbt new file mode 100644 index 00000000000..8aa72f4a13e --- /dev/null +++ b/perf/build.sbt @@ -0,0 +1 @@ +name := "kafka-perf" diff --git a/project/Build.scala b/project/Build.scala index eb22bc66275..4bbdfee904a 100644 --- a/project/Build.scala +++ b/project/Build.scala @@ -87,7 +87,7 @@ object KafkaBuild extends Build { "bin/run-rat.sh" ! } - lazy val kafka = Project(id = "Kafka", base = file(".")).aggregate(core, examples, contrib).settings((commonSettings ++ runRatTask): _*) + lazy val kafka = Project(id = "Kafka", base = file(".")).aggregate(core, examples, contrib, perf).settings((commonSettings ++ runRatTask): _*) lazy val core = Project(id = "core", base = file("core")).settings(commonSettings: _*).settings(coreSettings: _*) lazy val examples = Project(id = "java-examples", base = file("examples")).settings(commonSettings :_*) dependsOn (core) lazy val perf = Project(id = "perf", base = file("perf")).settings((Seq(name := "kafka-perf") ++ commonSettings):_*) dependsOn (core)