zen0wu / sbt-maven-plugin

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

Cannot find sbt-maven-plugin #7

Open linkerlin opened 10 years ago

linkerlin commented 10 years ago

sbt report that...

zen0wu commented 10 years ago

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.

sebdotv commented 10 years ago

same problem here, using sbt 0.13.1

zen0wu commented 10 years ago

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.

zen0wu commented 10 years ago

Like this

resolvers += "Sonatype snapshots" at "http://oss.sonatype.org/content/repositories/snapshots/"

addSbtPlugin("com.github.shivawu" %% "sbt-maven-plugin" % "0.1.3-SNAPSHOT")
sebdotv commented 10 years ago

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!

justinhj commented 8 years ago

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

valter-silva-au commented 8 years ago

The same issue is happening with me. :(

nucklehead commented 8 years ago

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")