Created
August 26, 2016 18:14
-
-
Save sam/1dee9c9cf205c3c6805821bfe3a7bae4 to your computer and use it in GitHub Desktop.
There's got to be a better way...
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Don't include private.conf in main package. | |
mappings in (Compile, packageBin) ~= { | |
_ filter { | |
case (_, "private.conf") => false | |
case _ => true | |
} | |
} | |
// Don't include private.conf in main sources package. | |
mappings in (Compile, packageSrc) ~= { | |
_ filter { | |
case (_, "private.conf") => false | |
case _ => true | |
} | |
} | |
// Don't include private.conf in test package. | |
mappings in (Test, packageBin) ~= { | |
_ filter { | |
case (_, "private.conf") => false | |
case _ => true | |
} | |
} | |
// Don't include private.conf in test sources package. | |
mappings in (Test, packageSrc) ~= { | |
_ filter { | |
case (_, "private.conf") => false | |
case _ => true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment