sbt-maven-plugin icon indicating copy to clipboard operation
sbt-maven-plugin copied to clipboard

Cannot find sbt-maven-plugin

Open linkerlin opened this issue 10 years ago • 8 comments

sbt report that...

linkerlin avatar Mar 22 '14 03:03 linkerlin

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.

zen0wu avatar Mar 23 '14 15:03 zen0wu

same problem here, using sbt 0.13.1

sebdotv avatar Apr 02 '14 14:04 sebdotv

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 avatar Apr 02 '14 16:04 zen0wu

Like this

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

addSbtPlugin("com.github.shivawu" %% "sbt-maven-plugin" % "0.1.3-SNAPSHOT")

zen0wu avatar Apr 03 '14 02:04 zen0wu

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!

sebdotv avatar Jul 22 '14 13:07 sebdotv

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

justinhj avatar Nov 04 '15 03:11 justinhj

The same issue is happening with me. :(

valter-silva-au avatar Nov 18 '15 09:11 valter-silva-au

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

nucklehead avatar Feb 21 '16 07:02 nucklehead