zen0wu / sbt-maven-plugin

A sbt plugin which reads project definitions from pom.xml
Apache License 2.0
83 stars 16 forks source link

Use with ProjectRef #21

Open joprice opened 8 years ago

joprice commented 8 years ago

It would be nice if this could be used with a project ref, to build a remote, unpublished project using sbt:

lazy val someMvnProject = RootProject(uri("git://github.com/somemvn/project.git"))
  .enablePlugins(MvnPlugin)

lazy val root = (project.in(file(".")).dependsOn(someMvnProject)