为什么子模块中的Play 2.2.3测试模板没有编译?

时间:2014-09-12 21:35:19

标签: sbt playframework-2.2

我的多模块项目中的一个子模块中的测试需要单独的测试模板,我将其放到test/views/。它们没有被编译。我该如何解决这个问题?

我已经看过播放sbt插件来源(2.2.x分支),我发现最接近的是 PlaySettings.scala, line 111

sourceGenerators in Compile <+= (state, unmanagedSourceDirectories in Compile, sourceManaged in Compile, templatesTypes, templatesImport) map ScalaTemplates,

我想,我需要在我自己的build.sbt中添加一些这样的设置。

更新:问题已解决,请参阅以下答案

1 个答案:

答案 0 :(得分:0)

很接近。工作解决方案是将以下行添加到项目的build.sbt

sourceGenerators in Test <+= (state, unmanagedSourceDirectories in Test, sourceManaged in Test, templatesTypes, templatesImport) map ScalaTemplates