Using the maven xml plugin, how does one limit the scope of the files to be transformed? The site documentation for the plugin only shows being able to set the input directory for a transformation set. However, you can also narrow the scope by using the include option.
<transformationSet>
<dir>STAR/Rev/WSDL</dir>
<includes>
<include>WSDLScenarios.xml</include>
</includes>
<stylesheet>STAR/Utilities/bin/STARWSDL.xsl</stylesheet>
</transformationSet>
The include option allows you to specify only specific files to be used as input to the transformation process. With out this, the directory option will apply the transformation to every file in the directory.