From 1b72f6cac159428c68408345986e5520bef86782 Mon Sep 17 00:00:00 2001 From: ngocdaothanh Date: Sat, 18 Jun 2011 22:00:00 -0700 Subject: [PATCH] Updated Classpaths, sources, and resources (Draft) (markdown) --- Classpaths.md | 8 ++++++++ 1 file changed, 8 insertions(+) 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