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?
There is a very direct way provided by SBT. You can use the below command where your SBT file exixts:
sbt makePom
This will generate the .pom file in the target folder you can search that and rename to pom.xml and keep that file in the location and run mvn clean compile install to get full out of it.