1

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?

Anonymous1
  • 3,877
  • 3
  • 28
  • 42

1 Answers1

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