Issue in spring-security-core-1.7.2.3

Hi

I am working on a grails project which uses gradle for building the app.

The app uses spring-security-c0re-1.7.2.3. So, i have added this in the build.gradle and it is throwing the error : class not found org.codehaus.groovy.grails.plugins.springsecurity.SpringSecurityUtils

Since it is a non grails distribution plugin, is it an issue. Please let m e know, how to resolve this.

IS it similar to https://github.com/grails/grails-gradle-plugin/issues/35?

Thanks Smurf

Can anyone let me know, how to fix this issue

It seems gradle could not pull the jars from grails repo. Please let me know, if i need to add the below in build.gradle,so that it appears in the pom.xml of the grails plugin project

<repositories>
    <repository>
        <id>grails</id>
        <name>grails</name>
        <url>http://repo.grails.org/grails/core</url>
    </repository>
    <repository>
        <id>grails-plugins</id>
        <name>grails-plugins</name>
        <url>http://repo.grails.org/grails/plugins</url>
    </repository>
</repositories>

Can anyone please let me know