Reputation: 1181
Is there a way to create (generate) maven project from existing scala sbt project via some script, e.g. automatically?
Upvotes: 1
Views: 1751
Reputation: 3863
Execute make-pom from sbt:
make-pom
sbt make-pom
You'll find the pom in target/scala-2.11/
target/scala-2.11/
Upvotes: 6