I need to access some features of Jedis that aren't available in the Redis Plugin. I added compile "redis.clients:jedis:2.8.0"
to my dependencies in BuildConfig.groovy, but my IDE is showing that the Jedis classes are still unavailable. How do I access those classes?
Asked
Active
Viewed 33 times
1

Anonymous1
- 3,877
- 3
- 28
- 42
1 Answers
1
You have to tell your IDE that there is a change in your classpath structure.
Whichever IDE you are using, there should be a way to run any command. Like for IntelliJ: Run
-> Run Command
.
Open that dialog and run the command: grails refresh-dependencies

Shashank Agrawal
- 25,161
- 11
- 89
- 121
-
That did it. SO is making me wait to accept the answer. – Anonymous1 Nov 24 '15 at 11:59