maven Scala 插件默认使用什么 Scala 版本?

问题描述 投票:0回答:1

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 版本。那么maven Scala插件默认使用什么Scala版本?

scala maven maven-scala-plugin
1个回答
8
投票

运行

mvn scala:console
目标并检查版本

更新链接:

https://davidb.github.io/scala-maven-plugin/example_console.html

© www.soinside.com 2019 - 2024. All rights reserved.