blob: 661455d90acc389cefe42e795d515a6a709f344d [file] [log] [blame]
Artisan456c09d2023-05-19 15:19:10 +08001<!-- Licensed to the Apache Software Foundation (ASF) under one or more contributor
2 license agreements. See the NOTICE file distributed with this work for additional
3 information regarding copyright ownership. The ASF licenses this file to
4 You under the Apache License, Version 2.0 (the "License"); you may not use
5 this file except in compliance with the License. You may obtain a copy of
6 the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required
7 by applicable law or agreed to in writing, software distributed under the
8 License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS
9 OF ANY KIND, either express or implied. See the License for the specific
10 language governing permissions and limitations under the License. -->
11
2011shenlinf3abdbc2024-02-17 21:55:24 +080012<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">
Artisan456c09d2023-05-19 15:19:10 +080013 <parent>
14 <artifactId>rocketmq-eventbridge</artifactId>
15 <groupId>org.apache.rocketmq</groupId>
2011shenlinf3abdbc2024-02-17 21:55:24 +080016 <version>1.1.0</version>
Artisan456c09d2023-05-19 15:19:10 +080017 </parent>
18 <modelVersion>4.0.0</modelVersion>
19
20 <artifactId>rocketmq-eventbridge-infrastructure</artifactId>
21
22 <properties>
23 <maven.compiler.source>8</maven.compiler.source>
24 <maven.compiler.target>8</maven.compiler.target>
25 </properties>
26
wangkai1b6c0792023-05-22 17:32:06 +080027 <dependencies>
28 <dependency>
29 <groupId>org.apache.rocketmq</groupId>
30 <artifactId>rocketmq-eventbridge-common</artifactId>
31 </dependency>
32 <dependency>
33 <groupId>org.springframework.boot</groupId>
34 <artifactId>spring-boot-starter-webflux</artifactId>
35 </dependency>
36 </dependencies>
37
Artisan456c09d2023-05-19 15:19:10 +080038</project>