是否有办法指定-feature到fsc Ant任务?



我一直在通过fsc Ant任务编译scala代码,并不断得到以下警告:

warning: there were 3 feature warning(s); re-run with -feature for details
two warnings found

我知道将-feature传递给scalac将打印一份关于我得到的警告的详细报告,并且通常情况下,关于如何修复它们的好建议。

我不能为我的生活工作,但如何传递这个参数到fsc任务。还不支持吗?我是否错过了一些明显的东西,会让我后悔以后问这个问题?

请尝试如下,根据scala文档,fsc ant任务应该与scala共享相同的属性

<scalac srcdir="${scala.src.dir}"
    destdir="${build.dir}"
    classpathref="build.classpath"
    addparams="-feature">
    <include name="**/*.scala"   />
</scalac>

相关内容

  • 没有找到相关文章

最新更新