2014-06-23 3 views

Antwort

3

Sie könnten mappings verwenden, um beide Dateien auszuschließen.

mappings in Universal := { 
    val origMappings = (mappings in Universal).value 
    origMappings.filterNot { case (_, file) => file.endsWith("application.dev.conf") || file.endsWith("application.test.conf") } 
} 
+3

Dies nur, um sie aus dem dist Task entfernt, scheinen sie noch in der '.jar'-Datei des Projektes zu sein ?! – mana

1

Hat ein excludeFilter als Arbeit für Sie folgt?

excludeFilter in Universal in unmanagedResources := "application.dev.conf" || "application.test.conf" 

(Der unmanagedResourceDirectories Schlüssel bezieht sich auf conf/ standardmäßig aktiviert.)