Reputation: 3641
Trying to integrate scala into a Java project. After a Google query, I am given the choice between
org.scala-tools:maven-scala-plugin
and the more recent
net.alchim31.maven:scala-maven-plugin
which one to use in what case?
Upvotes: 1
Views: 65
Reputation: 4711
Unless you have to support older maven versions than 3.0 or have any other legacy reasons for using the maven-scala-plugin (last release in 2011), you should go for the net.alchim31.maven:scala-maven-plugin.
It's the same plugin, but it was renamed for maven naming policy reasons. There's a section about this in the official scala documentation.
Upvotes: 2