Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

SBT to Maven Converter

Tags:

maven

scala

sbt

Since most IDEs are only able to import Maven projects, I'd like to generate a POM.xml from an SBT managed project, is there a better way to do it?

like image 498
Sawyer Avatar asked Feb 21 '11 15:02

Sawyer


1 Answers

Did you try make-pom from sbt?

It generates basic POM for the current project at the ./target. To customize generation, you can override pomExtra, pomIncludeRepository and pomPostProcess at the project definition.

like image 130
Vasil Remeniuk Avatar answered Sep 22 '22 15:09

Vasil Remeniuk