Reputation: 9428
I have a play 2 app which has a embedded vertx app. I need repos.txt and lands.properties in the classpath before vertx jar. I am using cloudebee. How can I control the classpath order to allow the jar which contains those two properties shows up earlier than vertx jar in the classpath?
Here is what vertx documentation says: http://vertx.io/embedding_manual.html#config-files
if you want to override any settings you can provide your own versions - just make sure you put them on the classpath ahead of the vert.x platform jar.
Upvotes: 1
Views: 60
Reputation: 2633
You can't control classpath ordering, it's computed as a list of file from lib folder (see here)
Upvotes: 1