pom.xml 2.3 KB
Newer Older
1 2 3 4 5 6
<!--
  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
7
  the License.  You may obtain a copy of the License at
8 9 10

      http://www.apache.org/licenses/LICENSE-2.0

11 12 13 14 15
  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.
16 17
  -->

18
<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">
19
    <parent>
20
        <groupId>org.apache.rocketmq</groupId>
21
        <artifactId>rocketmq-all</artifactId>
22
        <version>4.9.1</version>
23 24 25 26 27 28 29 30
    </parent>

    <modelVersion>4.0.0</modelVersion>
    <packaging>jar</packaging>
    <artifactId>rocketmq-store</artifactId>
    <name>rocketmq-store ${project.version}</name>

    <dependencies>
D
dongeforever 已提交
31
        <dependency>
D
dongeforever 已提交
32
            <groupId>io.openmessaging.storage</groupId>
D
dongeforever 已提交
33
            <artifactId>dledger</artifactId>
34
            <version>0.2.2</version>
D
dongeforever 已提交
35 36 37 38 39 40 41 42 43 44 45
            <exclusions>
                <exclusion>
                    <groupId>org.apache.rocketmq</groupId>
                    <artifactId>rocketmq-remoting</artifactId>
                </exclusion>
                <exclusion>
                    <groupId>org.slf4j</groupId>
                    <artifactId>slf4j-log4j12</artifactId>
                </exclusion>
            </exclusions>
        </dependency>
46 47 48 49 50 51 52 53
        <dependency>
            <groupId>${project.groupId}</groupId>
            <artifactId>rocketmq-common</artifactId>
        </dependency>
        <dependency>
            <groupId>net.java.dev.jna</groupId>
            <artifactId>jna</artifactId>
        </dependency>
54
        <dependency>
55 56 57
            <groupId>ch.qos.logback</groupId>
            <artifactId>logback-classic</artifactId>
            <scope>test</scope>
58 59 60
        </dependency>
    </dependencies>
</project>