pom.xml 1.5 KB
Newer Older
S
shenhongxi 已提交
1 2 3 4 5 6
<?xml version="1.0" encoding="UTF-8"?>
<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">
    <parent>
        <artifactId>whatsmars-parent</artifactId>
武汉红喜's avatar
武汉红喜 已提交
7
        <groupId>org.hongxi</groupId>
S
shenhongxi 已提交
8 9 10 11 12
        <version>1.0-SNAPSHOT</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>whatsmars-mq</artifactId>
武汉红喜's avatar
武汉红喜 已提交
13 14 15 16 17 18
    <packaging>pom</packaging>
    <modules>
        <module>whatsmars-mq-rocketmq</module>
        <module>whatsmars-mq-activemq</module>
        <module>whatsmars-mq-rabbitmq</module>
        <module>whatsmars-mq-kafka</module>
武汉红喜's avatar
武汉红喜 已提交
19
        <module>whatsmars-mq-activemq-broker</module>
武汉红喜's avatar
武汉红喜 已提交
20 21 22
        <module>rocketmq-spring-boot-starter</module>
        <module>whatsmars-mq-rocketmq-namesrv</module>
        <module>whatsmars-mq-rocketmq-broker</module>
武汉红喜's avatar
武汉红喜 已提交
23
        <module>whatsmars-mq-rocketmq-tools</module>
武汉红喜's avatar
武汉红喜 已提交
24
    </modules>
S
shenhongxi 已提交
25

武汉红喜's avatar
武汉红喜 已提交
26
    <properties>
27
        <rocketmq.version>4.3.2</rocketmq.version>
武汉红喜's avatar
武汉红喜 已提交
28 29 30 31 32 33 34 35 36 37 38 39 40 41
    </properties>

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-dependencies</artifactId>
                <version>${spring-boot.version}</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>

S
shenhongxi 已提交
42
</project>