Search code examples
eclipseivyivyde

In Eclipse, how do I sort the jars resolved by Ivy


I'm using IvyDE in Eclipse; it can resolve dependencies, but the resolved jars are not in order.

Is it possible to sort the jars alphabetically?

enter image description here


Solution

  • The default option is to order by ivy.xml, however it can be changed in:

    Window -> Preference -> Ivy -> Classpath Container
    

    In Order of the classpath entries, change the default From the ivy.xml to Lexical.

    The sorting is case sensitive, so Z goes before a. But it's good enough for my purpose.

    enter image description here