On Thu, Aug 20, 2009 at 9:08 AM, Stefan Walter wrote:
> is there a good/elegant recipe for selecting those source files that javac
> chose to compile?
Yes. Introspect the .class files to know which source files they came from.
Assumes debug info in left in the .class, but you can tell javac that
Joe Schmetzer, 21.08.09, 10:14h CEST:
> You can use the selector:
> http://ant.apache.org/manual/CoreTypes/selectors.html#dependselect
>
> Use a glob mapper in the depend selector to match the java files to
> the corresponding class files, and the depend selector will pick out
> only those files
2009/8/21 Stefan Walter :
> David Weintraub, 20.08.09, 23:13h CEST:
>
>> Patternsets to the rescue!
>>
>>
>>
>>
>>
>>
>> > sourcepath="">
>>
>>
>>
>> Your different tasks can define different patternsets for source files.
>
> Thanks for your reply. That would certainly work; howeve
Hi,
I have came across the following ant syntax:
Then in the compile target there is the followi