joscha / play-authenticate

An authentication plugin for Play Framework 2.x (Java)
http://joscha.github.com/play-authenticate/
Other
807 stars 369 forks source link

Last commit version 0.8.2-SNAPSHOT not working #322

Closed GelukkigTurtle closed 7 years ago

GelukkigTurtle commented 7 years ago

Hello, i am working with this library, everything was ok until now. i cannot run my play project. SBT resolution show me:

bt.ResolveException: unresolved dependency: com.feth#play-authenticate_2.11;0.8.2-SNAPSHOT: not found

Can you help me with this problem? Sorry if i am doing something bad. and thank you in advance!

Mule52 commented 7 years ago

I am using 0.8.1 and I just received similar errors to the original poster. I have not even upgraded to 0.8.2.

unresolved dependency: com.feth#play-authenticate_2.11;0.8.1-SNAPSHOT: not found unresolved dependency: com.feth#play-easymail_2.11;0.8.1-SNAPSHOT: not found

FIXED: If I remove the "-SNAPSHOT" from the reference name in my SBT file, this issue goes away.

"com.feth" %% "play-authenticate" % "0.8.1", "com.feth" %% "play-easymail" % "0.8.1",

If you look at the latest code check-in from Joscha, you can see that "-SNAPSHOT" was removed, but then @re-added.

None of the 0.8.2 nor 0.8.2-SNAPSHOT (both play-authenticate and play-easymail) is working in my project's build which references both.

https://github.com/joscha/play-authenticate/commits/master https://github.com/joscha/play-easymail/commits/master

Thanks for any help.

joscha commented 7 years ago

Can you guys try and use the 0.8.1 version (no -SNAPSHOT) directly and let me know if that works? I didn't release a 0.8.2-SNAPSHOT, because there are no changes, yet.

Mule52 commented 7 years ago

These are the only two working for me.

"com.feth" %% "play-authenticate" % "0.8.1", "com.feth" %% "play-easymail" % "0.8.1",

Thanks.

GelukkigTurtle commented 7 years ago

Thank you guys! problem FIXED

030 commented 7 years ago

Should this not be changed in the build.sbt? At the moment when sbt run is done the error still occurs:

[error] (*:update) sbt.ResolveException: unresolved dependency: com.feth#play-authenticate_2.11;0.8.2-SNAPSHOT: not found
[error] Total time: 19 s, completed Jan 19, 2017 8:56:36 AM

What about changing 0.8.2-snapshot to 0.8.1?