Skip to content

Commit

Permalink
#20 Add log configuration in package
Browse files Browse the repository at this point in the history
  • Loading branch information
To-om committed May 8, 2017
1 parent 27af4fe commit f080f66
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,14 @@ mappings in packageBin in Assets ++= frontendFiles.value
mappings in Universal ~= {
_.flatMap {
case (file, "conf/application.conf") => Nil
case (file, "conf/apllication.sample") => Seq(file -> "conf/application.conf")
case (file, "conf/apllication.sample") => Seq(file -> "conf/application.conf"
case (file, "conf/logback.xml") => Nil
case other => Seq(other)
} ++ Seq(
file("package/cortex.service") -> "package/cortex.service",
file("package/cortex.conf") -> "package/cortex.conf",
file("package/cortex") -> "package/cortex"
file("package/cortex") -> "package/cortex",
file("package/logback.xml") -> "conf/logback.xml"
)
}

Expand Down

0 comments on commit f080f66

Please sign in to comment.