Grails plugin’s page is accessible but when I try to install plugins from command prompt, it is blocked by our corporate firewall.
I see that you can download plugins(the one I am trying to install is spring-security-core) and then install it. But the download provided in the spring-security page does not download everything. Is there a link/place I can download the whole plugin and then install them manually?
Update
Example of an error I am getting, when I install.
Server access Error: Connection refused:
connect url=http://grails.org/plugins/grails-spring-security-core/tags/RELEASE_3_0_7_RELEASE/spring-security-core-3.0.7.RELEASE.pom
Abe,
Here is a link to the Grails.org page for Spring Security Core: Grails Spring Security Core.
There is a download button which will allow you to down a ZIP file of the latest released Spring Security Core (1.2.7.3) from codehaus.org.
There are also links on this page to extension plugins for Spring Security (Spring Security OpenID, Spring Security ACL, etc).
Hope this helps.
UPDATE
In Grails Spring Security Core plugin 1.2.7.3,
plugin.xmllists the following dependencies:The error message you are getting is an attempt by the Grails plugin to resolve the dependency on Spring Security Core 3.0.7.
I believe that you can just go and download the 2 dependencies:
Spring Security Core 3.0.7.RELEASEandSpring Security Web 3.0.7.RELEASEand install them to your local Ivy Repository.Here is a Stackoverflow post (see the Accepted Answer) on installing to your Local Ivy Repository: Unable to add jar file to .ivy cache manually
Here is an additional Stackoverflow link: good ivy tutorial for local repository?
Additional Update based on more research
Grails Spring Security Core Plugin 1.2.7.3 dependencies.groovyIf you end up putting the dependencies in your local Ivy Repository, you will need to edit
dependencies.groovyand addmavenLocal()to your repositories.Ideal scenario would be if you can find a public Repository that you can reach through your firewall that has the dependencies, then you would not need to go through the steps of trying to install to your local Ivy Repository.