更改sbt的输出目录

时间:2013-04-27 13:00:34

标签: scala playframework sbt playframework-2.1 scalaxb

我想更改某些生成文件的输出目录,在本例中是从XSD-Schema生成的对象。

这是我的构建文件的一部分。

val main = PlayProject(appName, appVersion, appDependencies, mainLang = SCALA,
      settings = Defaults.defaultSettings ++ buildInfoSettings ++ scalaxbSettings
    ).settings(
      sourceGenerators in Compile <+= buildInfo,
      buildInfoKeys := Seq[BuildInfoKey](name, version, scalaVersion, sbtVersion),
      buildInfoPackage := "hello",
      packageName in scalaxb in Compile := "models",
      sourceGenerators in Compile <+= scalaxb in Compile
    )

此代码将我生成的文件放入以下目录:

target/scala-2.10/src_managed/main/models/

如何更改构建文件以将文件输出到下面呢?

/app/models/

1 个答案:

答案 0 :(得分:11)

查看sourceManaged设置键。任何源生成器任务通常都会将内容放入该设置指定的文件中。

source-managed                 - target/scala-2.10/src_managed
compile:source-managed         - target/scala-2.10/src_managed/main
test:source-managed            - target/scala-2.10/src_managed/test

请注意,“compile”和“test”值基于“source-managed”基础值,而后者又基于cross-target的值,该值基于{的值{ {1}}和其他一些人。

您可以使用设置

轻松更改sbt构建定义中target设置的值
compile:source-managed

如果你想让你的设置基于另一个设置,比如项目的基本目录,你可以使用更像

的东西
sourceManaged in Compile := file("app/models")

当然,您可以在此处找到有关使用设置的大量信息: http://www.scala-sbt.org/release/docs/Getting-Started/More-About-Settings
编辑:看起来这个链接已经死了。这已经有几年了,所以我不是百分百肯定,但这可能接近原始链接所说的内容:SBT 0.13 - Build definitionSBT 1.0 - Build definition