我正试图在我的maven项目中使用fsc(快速标量编译器)。我的pom.xml
有:
...
<execution>
<id>cc</id>
<goals>
<goal>cc</goal>
</goals>
<phase>compile</phase>
<configuration>
<useFsc>true</useFsc>
<once>true</once>
</configuration>
</execution>
...
正如在使用maven编译Scala文件的最快方法是什么?
当我键入mvn scala:cc
时,它挂起:
[INFO] wait for files to compile...
运行mvn scala:cc -DdisplayCmd=true -Dverbose=true
[INFO] cmd: /bin/sh -c .../java -classpath [redacted] scala.tools.nsc.MainGenericRunner scala.tools.nsc.CompileServer >MainGenericRunner.out 2>MainGenericRunner.err
这似乎很奇怪(它不应该包括scala.tools.nsc.MainGenericRunner
吗?)我注意到MainGenericRunner.out
包含
no such file: scala.tools.nsc.CompileServer
这似乎证实了我的怀疑。
有人遇到过这种情况吗?我真的很想使用fsc来加快我的构建速度。我发现一个用户在谷歌群组上有类似的输出,但没有后续跟进。
在OSX 上运行scala 2.8.1和maven 3.0.3
当您调用mvn scala:cc
时,maven将使用pom中未配置的执行id默认cli(或类似的东西)。因此,maven将使用cc目标的默认值。目前,您的pom被配置为在"编译"阶段使用您的自定义执行cc目标。因此,运行像mvn compile
或mvn install
这样的程序应该如您所期望的那样工作。