Is there a way for the Ant Fileset-> IncludesFile attribute to take a properties file or any other file containing a list of Java class files to exclude?
For example:
A.properties OR A.java file contains a list
abc.class
mno.class
xyz.class
Is it possible to specify the excludesFile clause for the A.properties file.
<fileset dir="...">
<excludesFile file="A.properties" />
</fileset>
The behavior I want is when Java works, it excludes the Java files listed in this file (A.properties)
source
share