mirror of
https://github.com/lightbend/config.git
synced 2025-01-15 23:01:05 +08:00
14 lines
426 B
Scala
14 lines
426 B
Scala
import sbt._
|
|
import Keys._
|
|
|
|
object ConfigBuild extends Build {
|
|
lazy val root = Project(id = "root",
|
|
base = file(".")) aggregate(testLib, configLib)
|
|
|
|
lazy val configLib = Project(id = "config",
|
|
base = file("config")) dependsOn(testLib % "test->test")
|
|
|
|
lazy val testLib = Project(id = "test-lib",
|
|
base = file("test-lib"))
|
|
}
|