ppkarwasz opened a new issue, #3771: URL: https://github.com/apache/logging-log4j2/issues/3771
In response to feedback from third-party Log4j plugin developers (see #3755), we should make the `-log4j.graalvm.groupId` and `-Alog4j.graalvm.artifactId` processor arguments optional. ### Proposed Approach We can adopt a strategy similar to [picocli’s annotation processor](https://picocli.info/#_processor_option_project). Specifically: * If the `-Alog4j.graalvm.groupId` and `-Alog4j.graalvm.artifactId` arguments **are provided**, generated files should be written to: ``` META-INF/native-image/log4j-generated/<groupId>/<artifactId> ``` * If the `-Alog4j.graalvm.groupId` and `-Alog4j.graalvm.artifactId` arguments are **not provided**, files should be stored under: ``` META-INF/native-image/log4j-generated ``` Additionally a warning should be issued about the lack of those arguments. -- 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]
