|
| 1 | +<?xml version="1.0" encoding="UTF-8"?> |
| 2 | +<!-- |
| 3 | +
|
| 4 | + Licensed under the Apache License, Version 2.0 (the "License"); |
| 5 | + you may not use this file except in compliance with the License. |
| 6 | + You may obtain a copy of the License at |
| 7 | +
|
| 8 | + http://www.apache.org/licenses/LICENSE-2.0 |
| 9 | +
|
| 10 | + Unless required by applicable law or agreed to in writing, software |
| 11 | + distributed under the License is distributed on an "AS IS" BASIS, |
| 12 | + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 13 | + See the License for the specific language governing permissions and |
| 14 | + limitations under the License. |
| 15 | +
|
| 16 | +--> |
| 17 | +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" |
| 18 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 19 | + <modelVersion>4.0.0</modelVersion> |
| 20 | + <parent> |
| 21 | + <groupId>io.openmessaging.benchmark</groupId> |
| 22 | + <artifactId>messaging-benchmark</artifactId> |
| 23 | + <version>0.0.1-SNAPSHOT</version> |
| 24 | + </parent> |
| 25 | + |
| 26 | + <artifactId>driver-rocketmq5</artifactId> |
| 27 | + |
| 28 | + <properties> |
| 29 | + <rocketmq-client-java-version>5.0.7</rocketmq-client-java-version> |
| 30 | + <rocketmq.version>5.1.0</rocketmq.version> |
| 31 | + <guava.version>29.0-jre</guava.version> |
| 32 | + </properties> |
| 33 | + |
| 34 | + <dependencies> |
| 35 | + <dependency> |
| 36 | + <groupId>${project.groupId}</groupId> |
| 37 | + <artifactId>driver-api</artifactId> |
| 38 | + <version>${project.version}</version> |
| 39 | + </dependency> |
| 40 | + <dependency> |
| 41 | + <groupId>com.google.guava</groupId> |
| 42 | + <artifactId>guava</artifactId> |
| 43 | + <version>${guava.version}</version> |
| 44 | + </dependency> |
| 45 | + |
| 46 | + <dependency> |
| 47 | + <groupId>org.apache.rocketmq</groupId> |
| 48 | + <artifactId>rocketmq-client-java</artifactId> |
| 49 | + <version>${rocketmq-client-java-version}</version> |
| 50 | + </dependency> |
| 51 | + <dependency> |
| 52 | + <groupId>org.apache.rocketmq</groupId> |
| 53 | + <artifactId>rocketmq-tools</artifactId> |
| 54 | + <version>${rocketmq.version}</version> |
| 55 | + <exclusions> |
| 56 | + <exclusion> |
| 57 | + <groupId>ch.qos.logback</groupId> |
| 58 | + <artifactId>logback-classic</artifactId> |
| 59 | + </exclusion> |
| 60 | + </exclusions> |
| 61 | + </dependency> |
| 62 | + </dependencies> |
| 63 | + |
| 64 | +</project> |
0 commit comments