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?
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Did you try
make-pomfrom sbt?It generates basic POM for the current project at the ./target.
To customize generation, you can override
pomExtra,pomIncludeRepositoryandpomPostProcessat the project definition.