pom.xml 1.4 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 avatar
武汉红喜 已提交
8
        <version>Rocket.S6</version>
S
shenhongxi 已提交
9
    </parent>
武汉红喜's avatar
武汉红喜 已提交
10
    <modelVersion>4.0.0</modelVersion>
S
shenhongxi 已提交
11 12 13 14 15

    <artifactId>whatsmars-dubbo</artifactId>
    <packaging>pom</packaging>
    <name>${project.artifactId}</name>
    <description>The demo module of dubbo project</description>
武汉红喜's avatar
pom  
武汉红喜 已提交
16

S
shenhongxi 已提交
17 18 19 20
    <modules>
        <module>whatsmars-dubbo-api</module>
        <module>whatsmars-dubbo-consumer</module>
        <module>whatsmars-dubbo-provider</module>
武汉红喜's avatar
武汉红喜 已提交
21 22
        <module>whatsmars-dubbo-provider-boot</module>
        <module>whatsmars-dubbo-consumer-boot</module>
武汉红喜's avatar
武汉红喜 已提交
23
        <module>dubbo-spring-boot-starter</module>
武汉红喜's avatar
武汉红喜 已提交
24 25
        <module>whatsmars-dubbo-provider-annotation</module>
        <module>whatsmars-dubbo-consumer-annotation</module>
S
shenhongxi 已提交
26 27
    </modules>

武汉红喜's avatar
武汉红喜 已提交
28 29
    <dependencyManagement>
        <dependencies>
30
            <dependency>
武汉红喜's avatar
武汉红喜 已提交
31
                <groupId>org.hongxi</groupId>
32
                <artifactId>dubbo-spring-boot-starter</artifactId>
武汉红喜's avatar
武汉红喜 已提交
33
                <version>Rocket.S6</version>
34
            </dependency>
武汉红喜's avatar
武汉红喜 已提交
35 36 37
        </dependencies>
    </dependencyManagement>

S
shenhongxi 已提交
38 39

</project>