Re: elegant way to disable Nexus staging/deployment in child POMs

2023-08-01 Thread Garret Wilson
On 7/30/2023 3:28 PM, Garret Wilson wrote: … I also see that there is a `skipNexusStagingDeployMojo`, but that appears to be neither a configuration property nor a user property, but only a "plugin flag" which is "passed in from the CLI" using `-D`. Is there a "skip" configuration property for

Re: How to force Maven to put a dependency on the module-path?

2023-08-01 Thread Martin Desruisseaux
Hello Garret Le 01/08/2023 à 18:32, Garret Wilson a écrit : On 7/26/2023 1:42 PM, Martin Desruisseaux wrote: … If a dependency is on the classpath, then the dependency is loaded as an unnamed module, its "module-info" file is ignored and the services that it contains are not discovered. Can

Re: How to force Maven to put a dependency on the module-path?

2023-08-01 Thread Garret Wilson
On 7/26/2023 1:42 PM, Martin Desruisseaux wrote: … If a dependency is on the classpath, then the dependency is loaded as an unnamed module, its "module-info" file is ignored and the services that it contains are not discovered. Can you elaborate on the last point a little more? I haven't

Maven 4 doesn't allow overriding user.language

2023-08-01 Thread Bernhard Schuhmann
Hello, while troubleshooting an issue with user locale, I noticed Maven 4 treats 'user.language' system property differently compared to at least 3.9.3: $ mvn help:evaluate -Duser.language=fr -Dexpression=user.language 4.0.0.0 alpha 7/8 return 'de' (system locale), while 3.9.3 returns 'fr'. Is