Skip to content

Commit a3a73b7

Browse files
committed
STORM-4001 - log4j2 2.21.1 - Fix dependency tree
1 parent 38a93a3 commit a3a73b7

File tree

3 files changed

+30
-6
lines changed

3 files changed

+30
-6
lines changed

DEPENDENCY-LICENSES

+5-5
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,11 @@ List of third-party dependencies grouped by their license type.
2121
* Apache Directory LDAP API I18n (org.apache.directory.api:api-i18n:2.1.4 - https://directory.apache.org/api-parent/api-i18n/)
2222
* Apache Directory LDAP API Model (org.apache.directory.api:api-ldap-model:2.1.4 - https://directory.apache.org/api-parent/api-ldap-parent/api-ldap-model/)
2323
* Apache Directory LDAP API Utilities (org.apache.directory.api:api-util:2.1.4 - https://directory.apache.org/api-parent/api-util/)
24+
* Apache Log4j 1.x Compatibility API (org.apache.logging.log4j:log4j-1.2-api:2.21.1 - https://logging.apache.org/log4j/2.x/log4j/log4j-1.2-api/)
25+
* Apache Log4j API (org.apache.logging.log4j:log4j-api:2.21.1 - https://logging.apache.org/log4j/2.x/log4j/log4j-api/)
26+
* Apache Log4j Core (org.apache.logging.log4j:log4j-core:2.21.1 - https://logging.apache.org/log4j/2.x/log4j/log4j-core/)
27+
* Apache Log4j SLF4J Binding (org.apache.logging.log4j:log4j-slf4j-impl:2.21.1 - https://logging.apache.org/log4j/2.x/log4j/log4j-slf4j-impl/)
28+
* Apache Log4j Web (org.apache.logging.log4j:log4j-web:2.21.1 - https://logging.apache.org/log4j/2.x/log4j/log4j-web/)
2429
* Gson (com.google.code.gson:gson:2.8.9 - https://github.com/google/gson/gson)
2530
* Gson (com.google.code.gson:gson:2.9.0 - https://github.com/google/gson/gson)
2631
* Maven Plugin Tools Java Annotations (org.apache.maven.plugin-tools:maven-plugin-annotations:3.8.1 - https://maven.apache.org/plugin-tools/maven-plugin-annotations)
@@ -123,11 +128,6 @@ List of third-party dependencies grouped by their license type.
123128
* Apache HttpCore NIO (org.apache.httpcomponents:httpcore-nio:4.4.5 - http://hc.apache.org/httpcomponents-core-ga)
124129
* Apache Ivy (org.apache.ivy:ivy:2.4.0 - http://ant.apache.org/ivy/)
125130
* Apache Kafka (org.apache.kafka:kafka-clients:0.11.0.3 - http://kafka.apache.org)
126-
* Apache Log4j 1.x Compatibility API (org.apache.logging.log4j:log4j-1.2-api:2.21.1 - https://logging.apache.org/log4j/2.x/log4j-1.2-api/)
127-
* Apache Log4j API (org.apache.logging.log4j:log4j-api:2.21.1 - https://logging.apache.org/log4j/2.x/log4j-api/)
128-
* Apache Log4j Core (org.apache.logging.log4j:log4j-core:2.21.1 - https://logging.apache.org/log4j/2.x/log4j-core/)
129-
* Apache Log4j SLF4J Binding (org.apache.logging.log4j:log4j-slf4j-impl:2.21.1 - https://logging.apache.org/log4j/2.x/log4j-slf4j-impl/)
130-
* Apache Log4j Web (org.apache.logging.log4j:log4j-web:2.21.1 - https://logging.apache.org/log4j/2.x/log4j-web/)
131131
* Apache Maven Artifact Transfer (org.apache.maven.shared:maven-artifact-transfer:0.9.1 - https://maven.apache.org/shared/maven-artifact-transfer/)
132132
* Apache Maven Common Artifact Filters (org.apache.maven.shared:maven-common-artifact-filters:3.0.1 - https://maven.apache.org/shared/maven-common-artifact-filters/)
133133
* Apache Maven Dependency Tree (org.apache.maven.shared:maven-dependency-tree:2.2 - http://maven.apache.org/shared/maven-dependency-tree/)

external/storm-autocreds/pom.xml

+8
Original file line numberDiff line numberDiff line change
@@ -220,6 +220,14 @@
220220
<groupId>org.apache.hive</groupId>
221221
<artifactId>hive-cli</artifactId>
222222
</exclusion>
223+
<exclusion>
224+
<groupId>org.springframework</groupId>
225+
<artifactId>spring-test</artifactId>
226+
</exclusion>
227+
<exclusion>
228+
<groupId>org.springframework</groupId>
229+
<artifactId>spring-core</artifactId>
230+
</exclusion>
223231
</exclusions>
224232
</dependency>
225233
<dependency>

external/storm-hive/pom.xml

+17-1
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,15 @@
8989
</exclusion>
9090
<exclusion>
9191
<groupId>junit</groupId>
92-
<artifactId>junit</artifactId>
92+
<artifactId>junit</artifactId>
93+
</exclusion>
94+
<exclusion>
95+
<groupId>org.springframework</groupId>
96+
<artifactId>spring-test</artifactId>
97+
</exclusion>
98+
<exclusion>
99+
<groupId>org.springframework</groupId>
100+
<artifactId>spring-core</artifactId>
93101
</exclusion>
94102
</exclusions>
95103
</dependency>
@@ -127,6 +135,14 @@
127135
<groupId>junit</groupId>
128136
<artifactId>junit</artifactId>
129137
</exclusion>
138+
<exclusion>
139+
<groupId>org.springframework</groupId>
140+
<artifactId>spring-test</artifactId>
141+
</exclusion>
142+
<exclusion>
143+
<groupId>org.springframework</groupId>
144+
<artifactId>spring-core</artifactId>
145+
</exclusion>
130146
</exclusions>
131147
</dependency>
132148
<dependency>

0 commit comments

Comments
 (0)