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