Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>Abe,</p> <p>Here is a link to the Grails.org page for Spring Security Core: <a href="http://grails.org/plugin/spring-security-core" rel="nofollow noreferrer">Grails Spring Security Core</a>.</p> <p>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.</p> <p>There are also links on this page to extension plugins for Spring Security (Spring Security OpenID, Spring Security ACL, etc). </p> <p>Hope this helps.</p> <p><strong>UPDATE</strong></p> <p>In Grails Spring Security Core plugin 1.2.7.3, <code>plugin.xml</code> lists the following dependencies:</p> <pre><code>&lt;dependencies&gt; &lt;compile&gt; &lt;dependency group='org.springframework.security' name='spring-security-core' version='3.0.7.RELEASE' /&gt; &lt;dependency group='org.springframework.security' name='spring-security-web' version='3.0.7.RELEASE' /&gt; &lt;/compile&gt; &lt;/dependencies&gt; </code></pre> <p>The error message you are getting is an attempt by the Grails plugin to resolve the dependency on Spring Security Core 3.0.7. </p> <p>I believe that you can just go and download the 2 dependencies:</p> <p><code>Spring Security Core 3.0.7.RELEASE</code> and <code>Spring Security Web 3.0.7.RELEASE</code> and install them to your local Ivy Repository. </p> <p>Here is a Stackoverflow post (see the Accepted Answer) on installing to your Local Ivy Repository: <a href="https://stackoverflow.com/questions/5314433/unable-to-add-jar-file-to-ivy-cache-manually">Unable to add jar file to .ivy cache manually</a></p> <p>Here is an additional Stackoverflow link: <a href="https://stackoverflow.com/questions/1200762/good-ivy-tutorial-for-local-repository">good ivy tutorial for local repository?</a></p> <p><strong>Additional Update based on more research</strong></p> <p><code>Grails Spring Security Core Plugin 1.2.7.3 dependencies.groovy</code></p> <p>If you end up putting the dependencies in your local Ivy Repository, you will need to edit <code>dependencies.groovy</code> and add <code>mavenLocal()</code> to your repositories.</p> <pre><code>repositories { grailsPlugins() grailsHome() grailsCentral() mavenCentral() // Add mavenLocal if you have installed the dependencies to the local Ivy Repository mavenLocal() } </code></pre> <p>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. </p>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    2. VO
      singulars
      1. This table or related slice is empty.
    3. VO
      singulars
      1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload