Can't install plugin in Play 2.1.0
Hi, I just tried to install this plugin for my Play 2.1.0 Java application but it's not working at compilation.
I give you the error code I get :
sbt.ResolveException: unresolved dependency: com.typesafe#play-plugins-mailer_2.10;2.0.4: not found
I'm a new Play user, so I don't know if the problem comes from me, or if the plugin has a small error.
Thanks you all !
Hi,
Have you added the right dependency on Build.scala?
"com.typesafe" %% "play-plugins-mailer" % "2.1.0"
If you see in the unresolved dependency it is trying to download the old 2.0.4 version.
Oh, you're right. It was my fault, I added "com.typesafe" %% "play-plugins-mailer" % "2.0.4" instead.
Thank you very much ! Have a good day.
I was also a bit confused and had to look up the version string in the source. Maybe an update of the README.md would be really nice! Thank you. =)
+1 for updating the README.md