sbt-maven-plugin
sbt-maven-plugin copied to clipboard
Cannot find sbt-maven-plugin
sbt report that...
Could you please report which version of sbt you're using? Since this plugin is not pushed for the latest version of sbt, I guess.
same problem here, using sbt 0.13.1
Try adding the snoatype SNAPSHOT repository to your sbt plugin project. The plugin has not been tested towards 0.13 so it now stays in snapshot.
Like this
resolvers += "Sonatype snapshots" at "http://oss.sonatype.org/content/repositories/snapshots/"
addSbtPlugin("com.github.shivawu" %% "sbt-maven-plugin" % "0.1.3-SNAPSHOT")
Thanks shivawu, the snapshot is working great (I've used it since April with sbt 0.13.1). Note that Sonatype now seems to have moved to HTTPS: https://oss.sonatype.org/content/repositories/snapshots/
A release version would be absolutely great!
Got the same issue
sbt 0.13.6
This is in my plugin file
resolvers += "Sonatype snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/"
addSbtPlugin("com.github.shivawu" % "sbt-maven-plugin" % "0.1.2")
Cannot find the plugin
The same issue is happening with me. :(
I was able to get it to work using sbt.version=0.13.8 resolvers += "Sonatype snapshots" at "https://oss.sonatype.org/content/repositories/snapshots/" addSbtPlugin("com.github.shivawu" % "sbt-maven-plugin" % "0.2.0-SNAPSHOT")