I tried to setup a local repository so that I can full use the play dependency command. However there is no public repo for Oracle's JDBC drivers. So I though I could do this
# Application dependencies
require:
- play 1.2.3
- play -> table 1.2
- com.oracle -> ojdbc14_g 10.0
repositories:
- playVendorDependencies:
type: local
artifact: "${application.path}/tmplib/[artifact].jar"
contains: com.oracle -> *
But it is not working - says that the ojdbc14_g.jar file is not found in any repo. running with play dependencies --debug does not seem to show that the new repo is ever accessed.