Scala 在SBT中重置列表设置

Scala 在SBT中重置列表设置,scala,playframework,sbt,playframework-2.0,Scala,Playframework,Sbt,Playframework 2.0,Play 2框架在SBT中定义了默认资源生成器: resourceGenerators in Compile <+= LessCompiler, resourceGenerators in Compile <+= CoffeescriptCompiler, resourceGenerators in Compile <+= JavascriptCompiler, resourceGenerators在Compile中,您可以尝试以下操作: resourceGenerators

Play 2框架在SBT中定义了默认资源生成器:

resourceGenerators in Compile <+= LessCompiler,
resourceGenerators in Compile <+= CoffeescriptCompiler,
resourceGenerators in Compile <+= JavascriptCompiler,

resourceGenerators在Compile中,您可以尝试以下操作:

resourceGenerators in Compile <<= LessCompiler(Seq(_))

resourceGenerators在编译中为什么不使用CoffeeScript和Javascript只注释行?(resourceGenerators和entryPoints)这些行在主Play框架构建文件中,我无法编辑,因为它是框架的一部分。我的构建文件扩展了他们的设置,因此我有机会覆盖这些设置,但我不知道如何覆盖。