Fixing the perf subproject that broker after the sbt upgrade

This commit is contained in:
Neha Narkhede 2013-01-25 08:34:52 -08:00
parent 758778ebaa
commit 22a010b8bc
2 changed files with 2 additions and 1 deletions

1
perf/build.sbt Normal file
View File

@ -0,0 +1 @@
name := "kafka-perf"

View File

@ -87,7 +87,7 @@ object KafkaBuild extends Build {
"bin/run-rat.sh" ! "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 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 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) lazy val perf = Project(id = "perf", base = file("perf")).settings((Seq(name := "kafka-perf") ++ commonSettings):_*) dependsOn (core)