Hello, 

i try to have some .bat files filtered by assembly plugin. However, for some 
reason, any batch line that starts with a @ is ignored by filterer :/ 
This is a big problem considering 90% of the script lines starts with a @. Is 
there some way to have filter don't ignore those lines? 


my source batch file: 

example ${pom.version} 
@java -jar .\lib\dvp-latexrenderer-${pom.version}.jar .\..\documents\%1\%1.xml 
.\..\documents\%1\%1-latex.xml images 
The output i get: 

example 1.0-SNAPSHOT 
@java -jar .\lib\dvp-latexrenderer-${pom.version}.jar .\..\documents\%1\%1.xml 
.\..\documents\%1\%1-latex.xml images 



Here is my assembly configuration by the way 
<fileSet> 
<includes><include>*</include></includes> 
<directory>src/assembly/script/</directory> 
<filtered>true</filtered> 
<directoryMode>0755</directoryMode> 
<fileMode>0755</fileMode> 
</fileSet> 

Reply via email to