1

We're experiencing a problem with play frameworks dependency management which was working fine a couple of days ago. We haven't made any configuration changes or changes to the dependency file but are getting the following errors on both our build server and locally (both located on different networks and ISP's).

:: problems summary ::
:::: WARNINGS
    module not found: vsvr1#minifymod;1.0.9

==== vsvr1: tried

  -- artifact vsvr1#minifymod;1.0.9!minifymod.jar:

  https://github.com/maklemenz/minifymod/raw/master/dist/minifymod-1.0.9.zip

    [NOT FOUND  ] play#recaptcha;1.3!recaptcha.zip(jar) (139ms)

==== playContributedModules: tried

  http://www.playframework.org/modules/recaptcha-1.3.zip

    [FAILED     ] play#excel;1.2.3!excel.zip(jar): Connection refused (520ms)

    [FAILED     ] play#excel;1.2.3!excel.zip(jar): Connection refused (520ms)

==== playContributedModules: tried

  http://www.playframework.org/modules/excel-1.2.3.zip

    ::::::::::::::::::::::::::::::::::::::::::::::

    ::          UNRESOLVED DEPENDENCIES         ::

    ::::::::::::::::::::::::::::::::::::::::::::::

    :: vsvr1#minifymod;1.0.9: not found

    ::::::::::::::::::::::::::::::::::::::::::::::


    ::::::::::::::::::::::::::::::::::::::::::::::

    ::              FAILED DOWNLOADS            ::

    :: ^ see resolution messages for details  ^ ::

    ::::::::::::::::::::::::::::::::::::::::::::::

    :: play#recaptcha;1.3!recaptcha.zip(jar)

    :: play#excel;1.2.3!excel.zip(jar)

    ::::::::::::::::::::::::::::::::::::::::::::::


:::: ERRORS
Server access Error: handshake alert:  unrecognized_name url=https://github.com/maklemenz/minifymod/raw/master/dist/minifymod-1.0.9.zip

Server access Error: Connection refused url=http://www.playframework.org/modules/recaptcha-1.3.zip

I cant seem to find a solution to this and so far its preventing us doing any new builds as the dependencies are missing. The failed files seems to change each time too and when manually trying to download them in a browser we can without a problem.

Has anyone seen this problem before?

Tom Fenech
  • 72,334
  • 12
  • 107
  • 141
fraserh
  • 181
  • 1
  • 10
  • Having the same issue :( Did you ever come up with the solution? – Roman Mar 22 '14 at 20:42
  • So it turned out the problem was with Github, they have changed the URL structure for downloading files which was causing a redirect that Ivy couldn't handle. I have since stopped referencing it from github and used a git submodule but am having another problem now with Play always treating the module folder as a zip even though its a project folder. – fraserh Mar 24 '14 at 09:31

1 Answers1

1

As mentioned here you can use jvm option -Djsse.enableSNIExtension=false as workaround.

Community
  • 1
  • 1
Sergey Passichenko
  • 6,920
  • 1
  • 28
  • 29
  • @fraserh did you specify that jsse option in the dependency command call like this `play deps . --sync -Djsse.enableSNIExtension=false` ? That didn't work for me for a module stored at https://github.com/tazmaniax/play-markdown/releases/download/1.9/play-markdown-1.9.zip. Just keep getting a 403 in the output log – tazmaniax Oct 18 '14 at 10:50
  • Sergey, the link you added is recurssive :( – LMC Aug 19 '15 at 18:43