2
sbt如何在像這樣的簡單定義中獲取根項目?sbt如何在構建中引用項目?
object HelloBuild extends Build {
lazy val root = Project(id = "hello", base = file("."))
}
sbt如何在像這樣的簡單定義中獲取根項目?sbt如何在構建中引用項目?
object HelloBuild extends Build {
lazy val root = Project(id = "hello", base = file("."))
}
我的(現在少一點)不知情的猜測:反思。 :)
編輯: 一些證據(從上面的註釋):
我不瞭解情況的猜測:反射。 – 2013-05-15 10:12:42
@AndreasFlierl似乎你是對的..這麼簡單:) http://www.scala-sbt.org/0.12.3/docs/Getting-Started/Multi-Project.html添加它作爲一個答案,我會接受它,爲你的互聯網點! –
@AndreasFlierl更多證明:https://github.com/sbt/sbt/blob/0.13/main/src/main/scala/sbt/Build.scala#L14 –