2022-05-18 20:16:43 +08:00
|
|
|
<!--
|
|
|
|
|
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.
|
|
|
|
|
-->
|
|
|
|
|
|
2024-02-11 17:53:50 +08:00
|
|
|
<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">
|
2022-05-18 20:16:43 +08:00
|
|
|
<parent>
|
|
|
|
|
<artifactId>rocketmq-all</artifactId>
|
|
|
|
|
<groupId>org.apache.rocketmq</groupId>
|
2025-09-04 09:51:02 +08:00
|
|
|
<version>${revision}</version>
|
2022-05-18 20:16:43 +08:00
|
|
|
</parent>
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
<artifactId>rocketmq-controller</artifactId>
|
|
|
|
|
<name>rocketmq-controller ${project.version}</name>
|
|
|
|
|
|
2022-08-30 17:45:56 +08:00
|
|
|
<properties>
|
|
|
|
|
<project.root>${basedir}/..</project.root>
|
|
|
|
|
</properties>
|
|
|
|
|
|
2022-05-18 20:16:43 +08:00
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>io.openmessaging.storage</groupId>
|
|
|
|
|
<artifactId>dledger</artifactId>
|
2022-05-26 20:44:34 +08:00
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<groupId>org.apache.rocketmq</groupId>
|
|
|
|
|
<artifactId>rocketmq-remoting</artifactId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
2022-05-18 20:16:43 +08:00
|
|
|
</dependency>
|
2022-11-29 09:57:20 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2023-02-03 14:12:23 +08:00
|
|
|
<groupId>io.github.aliyunmq</groupId>
|
|
|
|
|
<artifactId>rocketmq-shaded-slf4j-api-bridge</artifactId>
|
2022-11-29 09:57:20 +08:00
|
|
|
</dependency>
|
2022-05-18 20:16:43 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
|
<artifactId>rocketmq-client</artifactId>
|
2022-07-12 11:17:11 +08:00
|
|
|
<scope>test</scope>
|
2022-05-18 20:16:43 +08:00
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>${project.groupId}</groupId>
|
|
|
|
|
<artifactId>rocketmq-srvutil</artifactId>
|
2022-11-17 20:04:17 +08:00
|
|
|
</dependency>
|
2023-05-30 14:17:59 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>jul-to-slf4j</artifactId>
|
|
|
|
|
</dependency>
|
2024-01-29 20:45:20 +08:00
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alipay.sofa</groupId>
|
|
|
|
|
<artifactId>jraft-core</artifactId>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.google.protobuf</groupId>
|
|
|
|
|
<artifactId>protobuf-java-util</artifactId>
|
|
|
|
|
</dependency>
|
2022-05-18 20:16:43 +08:00
|
|
|
</dependencies>
|
2025-12-11 15:13:56 +08:00
|
|
|
</project>
|