Updated Classpaths, sources, and resources (Draft) (markdown)

ngocdaothanh 2011-06-18 22:00:00 -07:00
parent 4e6b08c523
commit 1b72f6cac1
1 changed files with 8 additions and 0 deletions

@ -101,4 +101,12 @@ You have a standalone project which uses a library that loads xxx.properties fro
unmanagedClasspath in Runtime <<= (unmanagedClasspath in Runtime, baseDirectory) map { (cp, bd) => cp :+ Attributed.blank(bd / "config") }
```
Or shorter:
```scala
unmanagedClasspath in Runtime <+= (baseDirectory) map { bd => Attributed.blank(bd / "config") }
```