In Eclipse, how to sort jars allowed by Ivy

I am using IvyDE in Eclipse; it can resolve dependencies, but the allowed banks are not ok.

Can jars be sorted alphabetically?

enter image description here

+3


source to share


2 answers


The default option is to order using 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 sort is case sensitive, so it Z

goes before a

. But that's good enough for my purpose.

enter image description here

+2


source


The order comes from Ivy, which I assume is the actual order in your ivy.xml.



0


source







All Articles