Eclipse Version: Indigo Service Release 2
I cannot get my XML formatter to do the job right.
When I apply formatter to this
<execution> <id>compile</id> <phase>compile</phase> <goals> <goal>compile</goal> </goals> </execution>
i get it
<execution> <id> compile </id> <phase> compile </phase> <goals> <goal> compile </goal> </goals> </execution>
I want it to be formatted as follows:
<execution> <id>compile</id> <phase>compile</phase> <goals> <goal>compile</goal> </goals> </execution>
I tried different options in XML -> XML Files -> Editor , but no one works.
Thanks.
eclipse xml formatter
iTake
source share