Guest User

Untitled

a guest
Jul 10th, 2018
94
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Scala 0.44 KB | None | 0 0
  1. // Why the file is not being excluded?
  2.  
  3. lazy val harrah_up = Project(
  4.       id="harrah-up",
  5.       base = file("harrah-up"),
  6.       settings = generalSettings ++
  7.       Seq(
  8.         sources in (Compile, doc) ~= {
  9.             _.filterNot{ f =>
  10.               println("Excluding? "+f)
  11.               val ret = f.getName == "NatTest.scala"
  12.               if (ret) println("Excluding " + f);
  13.               ret
  14.             }
  15.           }
  16.       )
  17.   )
Add Comment
Please, Sign In to add comment