Log4j Audit Maven PluginThe Log4j Audit Maven Plugin generates Java Interfaces from the JSON catalog. Attributes that may be configured in this plugin include
Below is a sample configuration. <plugin> <groupId>org.apache.logging.log4j</groupId> <artifactId>log4j-audit-maven-plugin</artifactId> <version>${log4j-audit.version}</version> <executions> <execution> <id>generate</id> <phase>generate-sources</phase> <goals> <goal>generate</goal> </goals> <configuration> <packageName>org.apache.logging.log4j.audit.event</packageName> <enterpriseId>18060</enterpriseId> </configuration> </execution> </executions> </plugin> |