I want to specify the following property to Javac
-J-Dpp.charset="pp.charset.properties"
I tried to do it via a compilerarg in my build.xml as follows
<compilerarg value="-J-Dpp.charset=pp.charset.properties"/>
This results in the following error :
javac: invalid flag: -J-Dpp.charset=pp.charset.properties
[javac] Usage: javac <options> <source files>
[javac] where possible options include:
How can I include the " so that I get "pp.charset.properties"?
I tried the following syntax which is invalid ...
<compilerarg value="-J-Dpp.charset="pp.charset.properties""/>
Is there a way to tell ant to ignore characters?
Any ideas?
-J-Dpp.charset="pp.charset.properties"
I tried to do it via a compilerarg in my build.xml as follows
<compilerarg value="-J-Dpp.charset=pp.charset.properties"/>
This results in the following error :
javac: invalid flag: -J-Dpp.charset=pp.charset.properties
[javac] Usage: javac <options> <source files>
[javac] where possible options include:
How can I include the " so that I get "pp.charset.properties"?
I tried the following syntax which is invalid ...
<compilerarg value="-J-Dpp.charset="pp.charset.properties""/>
Is there a way to tell ant to ignore characters?
Any ideas?