Advertisement
Guest User

Untitled

a guest
Aug 26th, 2016
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. // Don't include private.conf in main package.
  2. mappings in (Compile, packageBin) ~= {
  3. _ filter {
  4. case (_, "private.conf") => false
  5. case _ => true
  6. }
  7. }
  8.  
  9. // Don't include private.conf in main sources package.
  10. mappings in (Compile, packageSrc) ~= {
  11. _ filter {
  12. case (_, "private.conf") => false
  13. case _ => true
  14. }
  15. }
  16.  
  17. // Don't include private.conf in test package.
  18. mappings in (Test, packageBin) ~= {
  19. _ filter {
  20. case (_, "private.conf") => false
  21. case _ => true
  22. }
  23. }
  24.  
  25. // Don't include private.conf in test sources package.
  26. mappings in (Test, packageSrc) ~= {
  27. _ filter {
  28. case (_, "private.conf") => false
  29. case _ => true
  30. }
  31. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement