I don't know if I'm slow this morning, or simply stupid, but I can't get
selectors to do what I want to do, while at the same time thinking it's
surely possible...
1) I have ~5000 Java source files in ${ds.home}/src.
2) I copy part of these into different modules (A, B, C, etc...),
in modulename/src. Module A gets 200 files, module B 15, module C 853,
etc...
3) I want to get all the sources I didn't get earlier in the other modules
in a final 'misc' module.
4) Finally, I want to check I didn't copy any file to more than one module.
To achieve (3), I tried the following:
<fileset id="misc-sources"
dir="${ds.home}/src">
<!-- This fileset selects all files not selected by all
the different modules. It should be empty!!! -->
<none>
<present present="both" targetdir="A/src" />
<present present="both" targetdir="B/src" />
<present present="both" targetdir="C/src" />
</none>
</fileset>
I tried using either 'both' or 'srconly', and I get all files, or none of
them.
I *know* for sure there are files of ${ds.home}/src I didn't copy in either
A, B, or C!
I have no clue how to achieve (4). Help would be greatly appreciated. --DD
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>