0

Simple question but how do I use Jedis with the play framework?

In the dependencies file I added

require:
...
- jedis -> jedis 2.1.0 

Then I run play deps its not downloading the dependency.

I'm sure it is something simple but what am I doing wrong here.

Using Play Framework 1.2.5

Derek Organ
  • 8,323
  • 17
  • 56
  • 75

2 Answers2

2

Sorry simple mistake in path to central maven repository.

should have been:

- redis.clients -> jedis 2.1.0 
Derek Organ
  • 8,323
  • 17
  • 56
  • 75
0

I don't think the play deps will download the module for you. You have to use play install-module instead.

However I think there might be an issue with the module repository at the moment so you might be better off downloading it yourself.

emt14
  • 4,846
  • 7
  • 37
  • 58