Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'm trying to do grails clean on my grails project on centoOS server ... It starts downloading dependencies but gets stuck on a particular jar, if I try downloading the jar directly from the browser it working but hangs when I do grails clean


[root]# /root/grails-1.3.4/bin/grails clean
Welcome to Grails 1.3.4 - http://grails.org/
Licensed under Apache Standard License 2.0
Grails home is set to: /root/grails-1.3.4

Base Directory: /root/cooldealsnew
Resolving dependencies...
Dependencies resolved in 1435ms.
Running script /root/grails-1.3.4/scripts/Clean.groovy
Environment set to development
Downloading: http://repo1.maven.org/maven2/junit/junit/3.8.1/junit-3.8.1.jar ...
share|improve this question

1 Answer

up vote 1 down vote accepted

maybe you are in a network environment requiring a proxy to access external resources

you can add proxy configurations being used by Grails commands using add-proxy

http://grails.org/doc/latest/ref/Command%20Line/add-proxy.html

share|improve this answer
its just this jar all other jar are downloading from maven repo .... and I'm doing this on my CentOS server so no browsers. – Hussain Apr 15 '11 at 11:02
Thanks!!!!!!!!! xD – ricardogobbo Jan 17 '12 at 17:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.