我有一个Java SBT项目,我的hibernate配置位于conf/META-INF/persistence.xml
我需要在build.sbt中添加什么来将该文件添加到我的jar中,以便hibernate可以选择它?
我试过了:
import NativePackagerHelper._
mappings in Universal ++= contentOf(baseDirectory.value / "conf/META-INF")
注意:PlayKeys.externalizeResources := false
如上所述here会将其添加到jar中,但它会破坏其他内容,例如Logback,因此这不是一个选项。