mirror of https://github.com/sbt/sbt.git
Updated Classpaths, sources, and resources (Draft) (markdown)
parent
4e6b08c523
commit
1b72f6cac1
|
|
@ -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") }
|
||||
|
||||
```
|
||||
Loading…
Reference in New Issue