1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53
|
From: Emmanuel Bourg <ebourg@apache.org>
Date: Sat, 11 Dec 2021 15:12:47 +0100
Subject: Disable the Kafka appender (not yet in Debian)
Forwarded: not-needed
---
log4j-core/pom.xml | 10 ++++++++++
pom.xml | 1 +
2 files changed, 11 insertions(+)
--- a/log4j-core/pom.xml
+++ b/log4j-core/pom.xml
@@ -424,6 +424,7 @@
<configuration>
<excludes>
<exclude>module-info.java</exclude>
+ <exclude>**/kafka/**</exclude>
</excludes>
<proc>none</proc>
</configuration>
@@ -438,6 +439,7 @@
<configuration>
<excludes>
<exclude>module-info.java</exclude>
+ <exclude>**/kafka/**</exclude>
</excludes>
<proc>only</proc>
</configuration>
@@ -531,6 +533,14 @@
</instructions>
</configuration>
</plugin>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-javadoc-plugin</artifactId>
+ <version>${javadoc.plugin.version}</version>
+ <configuration>
+ <excludePackageNames>*.kafka.*</excludePackageNames>
+ </configuration>
+ </plugin>
</plugins>
</build>
<reporting>
--- a/pom.xml
+++ b/pom.xml
@@ -1153,6 +1153,7 @@
Apache Logging, Apache Log4j, Log4j, Apache, the Apache feather logo, the Apache Logging project logo,
and the Apache Log4j logo are trademarks of The Apache Software Foundation.</p>]]></bottom>
<doclint>none</doclint>
+ <excludePackageNames>*.kafka.*</excludePackageNames>
</configuration>
</plugin>
<plugin>
|