WebComer
WebComer

Reputation: 1181

Maven project from SBT project convertor?

Is there a way to create (generate) maven project from existing scala sbt project via some script, e.g. automatically?

Upvotes: 1

Views: 1751

Answers (1)

Mikel San Vicente
Mikel San Vicente

Reputation: 3863

Execute make-pom from sbt:

sbt make-pom

You'll find the pom in target/scala-2.11/

Upvotes: 6

Related Questions