Page 1 of 1

Google Code denying access to UMS binaries

Posted: Mon Apr 28, 2014 5:42 pm
by Tiago Costa
Hey, guys! I'm constantly building UMS from source to test and share some improvements (you have seen my numerous pull requests - sorry for flooding!), but since a few days ago, I can't download some binaries from Google Code. It gives me HTTP 403 (Forbidden) code when NetBeans tries to download dcrawMS.exe, ffmpeg.exe, etc, and when I try to download using browser (Chrome, for example), it displays a page with the message below:

"We're sorry...

... but your computer or network may be sending automated queries. To protect our users, we can't process your request right now."

What should I do now? I've disabled downloading these files in POM.xml, so I can at least build UMS.jar, but I want to have this really fixed.

Thanks in advance!

Re: Google Code denying access to UMS binaries

Posted: Tue Apr 29, 2014 3:14 am
by Optimus_prime
I think Subjunk is looking into it. Most likely this will transition to Sourceforge

Re: Google Code denying access to UMS binaries

Posted: Tue Apr 29, 2014 4:49 am
by Tiago Costa
Good =D!

Re: Google Code denying access to UMS binaries

Posted: Tue Apr 29, 2014 11:42 am
by SubJunk
Yeah hopefully SourceForge will allow it :) They are pretty awesome

Re: Google Code denying access to UMS binaries

Posted: Tue Apr 29, 2014 3:41 pm
by Tiago Costa
Thanks! Can't wait to make complete builds again! :)

Re: Google Code denying access to UMS binaries

Posted: Tue Apr 29, 2014 11:36 pm
by infidel
Just for the sake of completeness: this issue can also arise when other resources are unavailable, and the "quick fix" is to use the maven --offline (-o) option in your build command:

Code: Select all

mvn -o package
OOPS: The above works great for offline java dependencies, which has nothing whatsoever to do with the issue here (note to self: always look before you leap :))

Re: Google Code denying access to UMS binaries

Posted: Wed Apr 30, 2014 7:39 am
by Optimus_prime
There's a PR on git to fix it now

If you can't wait change the pom.xml at line 92 from this

Code: Select all

<project.binaries-base>http://universal-media-server-binaries.googlecode.com/svn/trunk</project.binaries-base>
to this

Code: Select all

<project.binaries-base>http://downloads.sourceforge.net/project/unimediaserver/Dependencies</project.binaries-base>

Re: Google Code denying access to UMS binaries

Posted: Wed Apr 30, 2014 12:20 pm
by Tiago Costa
Wow, nice! Thanks :D!