我最近将Maven项目升级到Java 7。
我使用IntelliJ,而使用Java 6,我可以在IDE中运行我的JUnit测试。这很方便,因为它是一种快速调试失败测试的方法。
自升级到7后,当我尝试运行测试时出现以下错误:
scala: javac: invalid source release: 1.7
scala: Usage: javac <options> <source files>
scala: use -help for a list of possible options
我使用的是OS X 10.8.5和IntelliJ 12.1.6。任何帮助解决这些错误的人都会非常感激。
答案 0 :(得分:0)
你的设置看起来像这样吗? UTF-8 1.6
...
<plugin>
<groupId>net.alchim31.maven</groupId>
<artifactId>scala-maven-plugin</artifactId>
<version>3.1.3</version>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>testCompile</goal>
</goals>
</execution>
</executions>
<configuration>
<args>
<!--<arg>-unchecked</arg>-->
<!--<arg>-deprecation</arg>-->
<!--<arg>-explaintypes</arg>-->
</args>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>2.3.2</version>
<configuration>
<source>${java.version}</source>
<target>${java.version}</target>
</configuration>
</plugin>