Here链接到maven Scala插件使用情况。但是没有提到它使用的Scala版本究竟是什么。我已经使用以下配置创建了maven Scala项目:
<plugin>
<groupId>org.scala-tools</groupId>
<artifactId>maven-scala-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>testCompile</goal>
</goals>
</execution>
</executions>
</plugin>
然后我构建了有效的pom,maven Scala插件的插件部分是:
<plugin>
<groupId>org.scala-tools</groupId>
<artifactId>maven-scala-plugin</artifactId>
<executions>
<execution>
<goals>
<goal>compile</goal>
<goal>testCompile</goal>
</goals>
</execution>
</executions>
</plugin>
配置标签中也没有Scala版本。那么Scala版本默认使用maven Scala插件是什么意思?