pom.xml 1.1 KB
Newer Older
1 2 3 4 5
<?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>
sin's avatar
sin committed
6
        <artifactId>onemall</artifactId>
7 8 9 10 11 12
        <groupId>cn.iocoder.mall</groupId>
        <version>1.0-SNAPSHOT</version>
    </parent>
    <modelVersion>4.0.0</modelVersion>

    <artifactId>product</artifactId>
13
    <name>product</name>
14
    <packaging>pom</packaging>
q2118cs's avatar
q2118cs committed
15

16
    <modules>
17 18 19 20
        <module>product-rpc-api</module>
        <module>product-rpc</module>
        <module>product-rest</module>
        <module>product-biz</module>
21 22
    </modules>

23 24 25 26
    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>cn.iocoder.mall</groupId>
27
                <artifactId>mall-dependencies</artifactId>
28 29 30 31 32 33
                <version>1.0-SNAPSHOT</version>
                <type>pom</type>
                <scope>import</scope>
            </dependency>
        </dependencies>
    </dependencyManagement>
34

35
</project>