You are viewing a plain text version of this content. The canonical link for it is here.
Posted to user@ant.apache.org by mm <mm...@cleverlance.com> on 2003/05/13 09:55:23 UTC

properties question

Hello,

I have several .properties files.
The properties in them could be duplicated.
I'd like to find out, where the specified property is defined. (in which
files)

eg.
a.properties:
    myname=myval
    othername=myval
b.properties:
    myname=myval2
c.properties:
    othername=val

I'd like output like this:
    myname:
        a.properties - myval
        b.properties - myval2

(It should be for easier resolving of conflicts).

Thanks
Mirek