Skip to content

Commit

Permalink
build only in terms of .sbt files
Browse files Browse the repository at this point in the history
  • Loading branch information
softprops committed Jul 13, 2014
1 parent d23c124 commit d17e7fa
Show file tree
Hide file tree
Showing 21 changed files with 21 additions and 23 deletions.
34 changes: 21 additions & 13 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -19,21 +19,29 @@ licenses in ThisBuild := Seq(
// )
// .aggregate(core, coreTests, netty3, netty, twttr, testing)

lazy val core = Common.module("core")
val commonSettings = bintraySettings

lazy val testing = Common.module("testing")
.dependsOn(core)
lazy val `odelay-core` =
project

lazy val coreTests = Common.module("core-tests")
.settings(publish := {})
.dependsOn(testing % "test->test;compile->compile")
lazy val `odelay-testing` =
project.dependsOn(`odelay-core`)
.settings(commonSettings:_*)

lazy val `odelay-core-tests` =
project.settings(publish := {})
.dependsOn(`odelay-testing` % "test->test;compile->compile")
.settings(commonSettings:_*)

lazy val netty3 = Common.module("netty3")
.dependsOn(core, testing % "test->test")
lazy val `odelay-netty3` =
project.dependsOn(`odelay-core`, `odelay-testing` % "test->test")
.settings(commonSettings:_*)

lazy val netty = Common.module("netty")
.dependsOn(core, testing % "test->test")
lazy val `odelay-netty` =
project.dependsOn(`odelay-core`, `odelay-testing` % "test->test")
.settings(commonSettings:_*)

lazy val twttr = Common.module("twitter")
.dependsOn(core, testing % "test->test")
.settings(crossScalaVersions := Seq("2.9.3", "2.10.4"))
lazy val `odelay-twitter` =
project.dependsOn(`odelay-core`, `odelay-testing` % "test->test")
.settings(Seq(crossScalaVersions := Seq("2.9.3", "2.10.4"))
++ commonSettings:_*)
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
10 changes: 0 additions & 10 deletions project/Common.scala

This file was deleted.

0 comments on commit d17e7fa

Please sign in to comment.