Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Use maven plugin on SBT

Tags:

maven

scala

sbt

Is there anyway to use a maven plugin on SBT?

like image 788
Luiz Guilherme Avatar asked Apr 05 '11 18:04

Luiz Guilherme


1 Answers

No. sbt does support pom.xml in limited way via sbt-pom-reader, but we do not support the use of maven plugins. It has its own plugin ecosystem, so maybe you could find similar one that does the job.

If you need to pull in Maven plugin as a library, you would need this setting:

classpathTypes += "maven-plugin"
like image 163
Eugene Yokota Avatar answered Oct 03 '22 12:10

Eugene Yokota