Remove `logback` dependencies in IoTDB plugin (#8202)

This commit is contained in:
mrproliu 2021-11-29 18:02:54 +08:00 committed by GitHub
parent 7172ba5ebc
commit 1acba5d246
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 13 additions and 2 deletions

View File

@ -61,6 +61,7 @@ Release Notes.
* Fix TopologyQuery.loadEndpointRelation bug.
* Support using IoTDB as a new storage option.
* Add customized envoy ALS protocol receiver for satellite transmit batch data.
* Remove `logback` dependencies in IoTDB plugin.
#### UI

View File

@ -49,6 +49,18 @@
<groupId>net.jpountz.lz4</groupId>
<artifactId>lz4</artifactId>
</exclusion>
<!-- When logback + log4j2 + slf4j co-existed in OAP server classpath at the runtime, -->
<!-- SkyWalking so11y reported a runtime negative impact about performance. -->
<!-- Disable this, and use slf4j-log4j instead of. -->
<!-- Ref original discussion, https://github.com/apache/skywalking/pull/8194 -->
<exclusion>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
</exclusion>
<exclusion>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-core</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>

View File

@ -97,8 +97,6 @@ log4j-api-2.14.1.jar
log4j-core-2.14.1.jar
log4j-over-slf4j-1.7.30.jar
log4j-slf4j-impl-2.14.1.jar
logback-classic-1.2.3.jar
logback-core-1.2.3.jar
logging-interceptor-3.13.1.jar
lz4-java-1.6.0.jar
micrometer-core-1.7.4.jar