Hello,
in a project we have several source pathes, so we defined a path for that:
<path id="de.his.path.srcpath">
<pathelement path="${de.his.dir.src.qis.java}"/>
<pathelement path="${de.his.dir.src.h1.java}"/>
...
</path>
Using the path works fine in the <javac> tag with:
<src refid="de.his.path.srcpath" />
In the next step we have to copy non java files to the classpath folder:
<copy todir="${de.his.dir.bin.classes}" overwrite="true">
<fileset refid="de.his.path.srcpath">
<exclude name="**/*.java" />
</fileset>
</copy>
Unfortunately, this does not work because "refid" and nested elements may not be mixed.
Is there another way I can get a set of all none java files in my source path without copying the list of source pathes into individual filesets?