How can I require a library that is newer than the one that Play requires! Framework?

I need a newer version than the 1.5 oval frame, so I'm trying to add it depending, but the game requires 1.5, which overrides my dependency. How to make the game use a newer version? (I know that technically I could change it to $ PLAY_HOME $ / framework / dependencies.yml, but this seems like a bad idea)

My conf / dependencies.yml

require: - play - net.sf.oval -> oval 1.7 

My mistake

 ~ Some dependencies have been evicted, ~ ~ oval 1.7 is overriden by oval 1.50 
+4
source share
1 answer

Try using the force option:

  - net.sf.oval -> oval 1.7: force: true 
+7
source

All Articles