문제

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

도움이 되었습니까?

해결책

Sorry simple mistake in path to central maven repository.

should have been:

- redis.clients -> jedis 2.1.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.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top