Open suneelponnaganti opened 9 years ago
I had few issues making the plugin work for grails 3.0.8. The build.gradle settings that made it work for me are...
repositories { maven { url "http://dl.bintray.com/bobbywarner/grails-plugins" } }
dependencies { compile "org.grails.plugins:grails-http-builder-helper:1.0.0" }
Just thought it would help someone.
Thank you. :)
Did a PR for that for you. @suneelponnaganti
Also can use maven { url "https://repo.grails.org/grails/repo" } compile "org.grails.plugins:grails-http-builder-helper:1.0.0"
I had few issues making the plugin work for grails 3.0.8. The build.gradle settings that made it work for me are...
repositories { maven { url "http://dl.bintray.com/bobbywarner/grails-plugins" } }
dependencies { compile "org.grails.plugins:grails-http-builder-helper:1.0.0" }
Just thought it would help someone.