Aklakan commented on issue #2638: URL: https://github.com/apache/jena/issues/2638#issuecomment-2284034104
I stumbled upon the commit that you re-added `-proc:none` - which conflicted before with https://github.com/apache/jena/pull/2493#issuecomment-2143961015 Perhaps the option could go into a property which defaults to `-proc:none` but which can be overridden on the jmh module? ```xml <!-- in main pom.xml --> <properties> <compiler.proc>-proc:none</compiler.proc> </properties>``` ... <compilerArgs> <arg>${compiler.proc}</arg> </compilerArgs> ``` ```xml <!-- in benchmark pom.xml --> <properties> <compiler.proc></compiler.proc> <!-- if an effectively empty <arg /> causes warning/error, then perhaps a dummy arg (not sure which) could be used --> </properties> Alternatively, the benchmark module could have its own compiler plugin section. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
