Skip to content

Instantly share code, notes, and snippets.

@sdb
Created October 24, 2011 19:16
Show Gist options
  • Save sdb/1309878 to your computer and use it in GitHub Desktop.
Save sdb/1309878 to your computer and use it in GitHub Desktop.
Sample configuration for xsbt-filter
import FilterKeys._
seq(filterSettings: _*)
filterDirectoryName := "my-filters"
includeFilter in filters := AllPassFilter -- HiddenFileFilter
includeFilter in filterResources ~= { f => f || ("*.props" | "*.conf") }
extraProps += "author" -> "Foo Bar"
projectProps ~= { _ map (p => ("project." + p._1, p._2)) }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment