使用' play dist'创建可分发的应用程序时/ conf文件夹的内容被打包并放入jar ..
我想知道为什么会这样?如果有一种方法可以在玩游戏时跳过conf文件夹。我想只在jar文件中提供内容。
我们正在使用Play 2.2.4
答案 0 :(得分:2)
根据 this answer ,您需要将这些行添加到built.sbt
:
mappings in Universal := {
val origMappings = (mappings in Universal).value
origMappings.filterNot { case (_, file) => file.endsWith("application.conf") }
}