how to re-order runtime classpath when running application using eclipse?
I'm running a java application using eclipse, can I re-order runtime or class-path or exclude a jar from the class path?开发者_C百科 this jar is a part of other project that is indirectly referenced by the project I run.
You can modify the order of the project dependencies.
On the project, right-click -> Properties -> Java Build Path.
On the Order and Export tab you can select a dependency and then move it up or down.
精彩评论