RE: [EXTERNAL] RE: Re: maven compiler plugin question

2024-11-11 Thread Grégory Jevardat De Fombelle
I spotted the generated option files in the target folder and the javac.bat script to launch java using this option file. So now I'am even more puzzled as these options files are supposed to solve the too long class path issue ! ... To follow -Original Message- From: Grégory Jevardat

RE: [EXTERNAL] Re: maven compiler plugin question

2024-11-11 Thread Grégory Jevardat De Fombelle
Indeed, you are right. Actually I wanted to use arg files to solve the too long class path on Windows... I though fork would be enough but there is something else that I don't understand. I checked in the code of the plexus javac compiler and internally it already generates an @option file wit

Re: maven compiler plugin question

2024-11-11 Thread Martin Desruisseaux
Hello Le 2024-11-11 à 13 h 16, Grégory Jevardat De Fombelle a écrit : 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 I

{SUSPECTED SPAM}maven compiler plugin question

2024-11-11 Thread Grégory Jevardat De Fombelle
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 co