Skip to content

Commit

Permalink
minor improvements to the SBT project
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinwright committed Sep 9, 2011
1 parent cb1970b commit 469c385
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion project/project.scala
Expand Up @@ -63,10 +63,16 @@ object PluginBuild extends Build {
// import deps*._
import BuildSettings._

lazy val root = Project(
id = "autoproxy-lite",
base = file(".")
) aggregate(annotation, plugin, examples)

lazy val annotation = Project(
"annotation",
file("annotation"),
settings = buildSettings )
settings = buildSettings
)

lazy val plugin = Project(
"plugin",
Expand All @@ -83,6 +89,11 @@ object PluginBuild extends Build {
)
) dependsOn (annotation)

lazy val examples = Project(
id = "examples",
base = file("examples")
) aggregate(simpleExamples)

lazy val simpleExamples = Project(
"simpleExamples",
file("examples/simple"),
Expand Down

0 comments on commit 469c385

Please sign in to comment.