Skip to content

Commit

Permalink
Rename projects in build definition
Browse files Browse the repository at this point in the history
  • Loading branch information
Brendan Maginnis committed Aug 26, 2014
1 parent fe70203 commit b819bee
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions project/Build.scala
Original file line number Diff line number Diff line change
Expand Up @@ -6,20 +6,20 @@ import xerial.sbt.Sonatype._

object SqlestBuild extends Build {

lazy val sqlest = Project(
id = "sqlest",
lazy val root = Project(
id = "root",
base = file("."),
aggregate = Seq(sqlestCore, sqlestExamples),
aggregate = Seq(core, examples),
settings = commonSettings ++ Seq(
moduleName := "sqlest-root",
moduleName := "root",

publish := (),
publishLocal := ()
)
)

lazy val sqlestCore = Project(
id = "sqlest-core",
lazy val core = Project(
id = "core",
base = file("core"),

settings = commonSettings ++ publishingSettings ++ Seq(
Expand All @@ -35,10 +35,10 @@ object SqlestBuild extends Build {
)
)

lazy val sqlestExamples = Project(
id = "sqlest-examples",
lazy val examples = Project(
id = "examples",
base = file("examples"),
dependencies = Seq(sqlestCore),
dependencies = Seq(core),

settings = commonSettings ++ Seq(
libraryDependencies += "com.h2database" % "h2" % "1.4.180",
Expand Down

0 comments on commit b819bee

Please sign in to comment.