0

我最近刚刚分叉了一个过时的 SBT 项目(您可以在此处找到https://github.com/mdedetrich/sbt-bower),该项目最后一次使用过时的 SBT 0.11.0 版本。我正在尝试让 sbt 插件与 SBT 版本 0.12.3 和 0.13.0 一起使用,但是我在这条线上遇到了问题

https://github.com/mdedetrich/sbt-bower/blob/master/src/main/scala/SbtBowerPlugin.scala#L37

当我运行时sbt compile,我收到以下错误

[error] /Users/mdedetrich/github/sbt-bower/src/main/scala/SbtBowerPlugin.scala:37: value / is not a member of java.io.File
[error]     sourceDirectory in Bower <<= (sourceDirectory).apply (_ / "main" / "webapp" )

有谁知道是什么导致了这个问题?

4

1 回答 1

1

感谢 Mark Harrah,这实际上是由于这个https://groups.google.com/forum/#!topic/simple-build-tool/0k1No2kfvm8/discussion

我不得不删除import Path._SbtBowerPlugin.scala 文件中的 ,它现在可以正常编译了!

于 2013-10-08T02:26:59.127 回答