diff --git a/Classpaths.md b/Classpaths.md index 37c2116..6d10a59 100644 --- a/Classpaths.md +++ b/Classpaths.md @@ -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") } + ``` \ No newline at end of file