Posts

Showing posts from February, 2015

Add Stormpath User Mgmt Dependencies to Grails

Add Stormpath User Mgmt Dependencies to Grails How to add dependencies for Stormpath to your grails application. In your BuildConfig.groovy in the dependencies section you need to add 3 dependencies. These artifacts are up to date as of 2/2/2015 so you may need to look up the newest version here:   http://docs.stormpath.com/java/quickstart/ Here are the dependencies you need to add. BuildConfig.groovy dependencies { //Stormpath user mgmt compile 'com.stormpath.sdk:stormpath-sdk-api:1.0.RC3.1' runtime 'com.stormpath.sdk:stormpath-sdk-httpclient:1.0.RC3.1' runtime 'com.stormpath.sdk:stormpath-sdk-oauth:1.0.RC3.1' } Here are the original Maven imports in XML format for reference: < dependency > < groupId > com.stormpath.sdk </ groupId > < artifactId > stormpath-sdk-api </ artifactId > < version > 1.0.RC3.1 </ version > </ dependency > <