2016-07-21 65 views
0

有人可以推薦基於Maven的Scala項目的pom.xml文件嗎?到目前爲止,我從mvn archetype:generate獲得的選項似乎都不如我想要的那麼基本。我只需要運行Scala jar絕對必需的依賴和插件。斯卡拉Maven項目的基本pom.xml文件

回答

1

scala-maven-plugin是你需要的唯一的朋友,基本上這個插件添加到您的pom.xml

<plugin> 
    <groupId>net.alchim31.maven</groupId> 
    <artifactId>scala-maven-plugin</artifactId> 
    <version>3.2.2</version> 
    <executions> 
    <execution> 
     <goals> 
     <goal>compile</goal> 
     <goal>testCompile</goal> 
     </goals> 
    </execution> 
    </executions> 
</plugin> 

您可能會感興趣加入一些configurationexecution部分,但你可以閱讀更多關於它的他們的網站:http://davidb.github.io/scala-maven-plugin/

+0

添加到上面的答案,這裏是如何從頭構建一個POM文件的參考:https://maven.apache.org/guides/introduction/introduction-to-the-pom.html – shakedzy