Hello
I have difficulties finding documentation on the support of Java arguments
files on the maven compiler plugin.
I'd like to put my long classpath in a file and use it as in javac
documentation for : javac @classpath ....
In maven I started to generate this file and try to add it in the compiler
options:
<compilerArgs>
<arg>-verbose</arg>
<arg>-Xlint</arg>
<arg>@${project.build.directory}/classpath.txt</arg>
</compilerArgs>
But it fails like if the classpath was sent in any case.
Any hint is welcome
Cheers
Gregory