理想情况下使用FSC编译器
问题变成我应该使用的命令或pom文件设置?
我目前正在使用scala maven插件,但它似乎并没有实际使用fsc
感谢
答案 0 :(得分:13)
您可以通过将以下内容添加到pom.xml的插件部分来运行fsc作为maven编译阶段的一部分
<plugin>
<groupId>org.scala-tools</groupId>
<artifactId>maven-scala-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>cc</id>
<goals>
<goal>cc</goal>
</goals>
<phase>compile</phase>
<configuration>
<useFsc>true</useFsc>
<once>true</once>
</configuration>
</execution>
</executions>
</plugin>
当然,如果需要,您必须从POM中删除标准的scala编译执行。