5

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

XoXo
  • 1,560
  • 1
  • 16
  • 35

2 Answers2

4

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

XoXo
  • 1,560
  • 1
  • 16
  • 35
0

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

nitind
  • 19,089
  • 4
  • 34
  • 43
  • you are right in saying the order is from ivy.xml, which can be changed. See details in my answer. – XoXo May 25 '15 at 16:02