如何忽略/ conf文件夹被打包在Play应用程序中?

时间:2014-10-24 12:53:15

标签: playframework playframework-2.2

使用' play dist'创建可分发的应用程序时/ conf文件夹的内容被打包并放入jar ..

我想知道为什么会这样?如果有一种方法可以在玩游戏时跳过conf文件夹。我想只在jar文件中提供内容。

我们正在使用Play 2.2.4

1 个答案:

答案 0 :(得分:2)

根据 this answer ,您需要将这些行添加到built.sbt

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