> now a new problem, build build execution simply says "No such method
> error"..
> is there no end for this chain of problems :-(
no
ok, just kidding :-)
If you use <script> you´re using the API methods of Java and Ant. Therefore
you have
to use the right signatures.
E.g. getting the DirectoryScanner from a fileset would NOT be:
ds = myFileset.getDirectoryScanner()
because there is no such a method. Now guess which error occurs ...
If you read the Javadoc, you´ll get the solution:
ds = myFileset.getDirectoryScanner(project)
Jan
|