-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cannot resolve Jedis client classes with Grails 4 #83
Comments
This is probably due to that transitive dependencies are no longer resolved for plugins: http://docs.grails.org/latest/guide/upgrading.html#_upgrading_to_gradle_5 |
As per @andersaaberg answer, we need to add explicit dependency in ...
implementation 'redis.clients:jedis:2.9.0'
...
|
Could you please verify if this is still an issue with current active version? |
@puneetbehl Using grails 6.1.0 and adding the dependencies
a project with a basic controller like the one mentioned in the original comment will compile as expected. |
@andersaaberg Please upgrade to the most recent version of the Grails framework and this plugin. |
Lets say that I have this simple controller in Grails 3:
this works in Grails 3.3.10 but not in Grails 4.0.0 where "./gradlew bootRun" fails with this compilation error: "unable to resolve class redis.clients.jedis.Jedis".
This is a bit odd, as redis.clients:jedis should be available in Grails 4.0.0 according to ./gradlew dependencies.
This has forced me to use "micronaut-redis-lettuce" instead of this grails-plugin with Grails 4.0.0.
The text was updated successfully, but these errors were encountered: