How Can jBilling Help You?
Hi all,
I am new to jBilling and I am trying to setup the source version in Netbeans. However, even though I added all the libs from the war in the classpath I still get the error that the import org.codehaus.groovy.grails.plugins.springsecurity.GrailsUser; is not found.
Any help with this?
Best regards,
Vasko
Grails plugin configuration?
To install the plugin type in your terminal:
grails install-plugin spring-security-core
it will download the plugin and use it as dependency during compilation in similar way maven does.
The plugin needs to be initialized and configured, message shown just after installation tell to run
grails s2-quickstart
The script requires arguments:
Usage: grails s2-quickstart [domain-class-package] [user-class-name] [role-class-name] {requestmap-class-name}
User-class-name should be probably Person, but what are expected values for domain-class-package and role-class-name?