mirror of
https://github.com/apache/rocketmq.git
synced 2026-08-28 20:09:14 +08:00
809ff6b3e0
* Remove ClientLogger * WIP * WIP * Rename logger to log * Make it compile * WIP * Fix bazel to use shaded slf4j * Fix DeleteExpiredCommitLogSubCommandTest * Fix pom.xml duplication * Fix maven deps * Add test logback configuration file * Fix unit test output * Fix logback configuration file * All logging are made on top of slf4j * Fix test log configuration file name * Fix test log configuration file name for test module * All logging are shaded slf4j targeted * DLedger has an explicit dependency on slf4j * Fix DLedger * Fix DLeader issue * Move logback configuration files to each module Co-authored-by: Li Zhanhui <lizhanhui@gmail.com>
72 lines
2.7 KiB
XML
72 lines
2.7 KiB
XML
<!--
|
|
Licensed to the Apache Software Foundation (ASF) under one or more
|
|
contributor license agreements. See the NOTICE file distributed with
|
|
this work for additional information regarding copyright ownership.
|
|
The ASF licenses this file to You under the Apache License, Version 2.0
|
|
(the "License"); you may not use this file except in compliance with
|
|
the License. You may obtain a copy of the License at
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
See the License for the specific language governing permissions and
|
|
limitations under the License.
|
|
-->
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
<parent>
|
|
<groupId>org.apache.rocketmq</groupId>
|
|
<artifactId>rocketmq-all</artifactId>
|
|
<version>5.0.1-SNAPSHOT</version>
|
|
</parent>
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
<packaging>jar</packaging>
|
|
<artifactId>rocketmq-client</artifactId>
|
|
<name>rocketmq-client ${project.version}</name>
|
|
|
|
<properties>
|
|
<project.root>${basedir}/..</project.root>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>${project.groupId}</groupId>
|
|
<artifactId>rocketmq-remoting</artifactId>
|
|
<version>${project.version}</version>
|
|
<exclusions>
|
|
<exclusion>
|
|
<groupId>io.netty</groupId>
|
|
<artifactId>netty-tcnative</artifactId>
|
|
</exclusion>
|
|
</exclusions>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.apache.commons</groupId>
|
|
<artifactId>commons-lang3</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.opentracing</groupId>
|
|
<artifactId>opentracing-api</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.opentracing</groupId>
|
|
<artifactId>opentracing-mock</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.google.guava</groupId>
|
|
<artifactId>guava</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.github.aliyun-mq</groupId>
|
|
<artifactId>rocketmq-slf4j-api</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.github.aliyun-mq</groupId>
|
|
<artifactId>rocketmq-logback-classic</artifactId>
|
|
</dependency>
|
|
</dependencies>
|
|
</project>
|