pom.xml 2.5 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 20
    <parent>
        <artifactId>rocketmq-all</artifactId>
21
        <groupId>org.apache.rocketmq</groupId>
22
        <version>4.9.3-SNAPSHOT</version>
23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
    </parent>

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

    <dependencies>
        <dependency>
            <groupId>${project.groupId}</groupId>
            <artifactId>rocketmq-client</artifactId>
        </dependency>
        <dependency>
            <groupId>${project.groupId}</groupId>
            <artifactId>rocketmq-srvutil</artifactId>
        </dependency>
        <dependency>
40 41
            <groupId>${project.groupId}</groupId>
            <artifactId>rocketmq-openmessaging</artifactId>
42
        </dependency>
43
        <dependency>
44 45
            <groupId>${project.groupId}</groupId>
            <artifactId>rocketmq-acl</artifactId>
46 47
        </dependency>
        <dependency>
48 49
            <groupId>ch.qos.logback</groupId>
            <artifactId>logback-classic</artifactId>
50
        </dependency>
51
        <dependency>
52 53
            <groupId>org.javassist</groupId>
            <artifactId>javassist</artifactId>
54
        </dependency>
Y
yuz10 已提交
55 56 57 58 59 60 61 62 63 64
        <dependency>
            <groupId>io.jaegertracing</groupId>
            <artifactId>jaeger-core</artifactId>
            <version>1.6.0</version>
        </dependency>
        <dependency>
            <groupId>io.jaegertracing</groupId>
            <artifactId>jaeger-client</artifactId>
            <version>1.6.0</version>
        </dependency>
65 66
    </dependencies>
</project>