1

有没有人能够根据http://www.playframework.org/documentation/2.0.3/Assets使用增量资产编译来加速他们的开发?

我无法让它工作,如果我将 incrementalAssetsCompilation := true 添加到我的 Build.scala 文件中,我会收到编译错误

Build.scala:16: not found: value incrementalAssetsCompilation [error] incrementalAssetsCompilation := true [error] ^ [error] 发现一个错误

我的 Build.scala 看起来像这样,

val main = PlayProject(appName, appVersion, appDependencies, mainLang = JAVA).settings(
    // Add your own project settings here
    incrementalAssetsCompilation := true
)

有任何想法吗?

4

1 回答 1

1

我认为有关此功能的提交没有进入 2.0.3 版本:-(

如果您查看PlayKeys.scala 文件的主版本,您会找到incrementalAssetsCompilation密钥,但在2.0.3 版本中没有。

于 2012-09-11T11:36:06.167 回答