pom.xml 1.4 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">
    <modelVersion>4.0.0</modelVersion>

6
    <groupId>com.macro.mall</groupId>
7
    <artifactId>mall-search</artifactId>
M
macro 已提交
8
    <version>1.0-SNAPSHOT</version>
9 10 11
    <packaging>jar</packaging>

    <name>mall-search</name>
12
    <description>mall-search project for mall</description>
13 14

    <parent>
M
macro 已提交
15 16 17
        <groupId>com.macro.mall</groupId>
        <artifactId>mall</artifactId>
        <version>1.0-SNAPSHOT</version>
18 19 20 21
    </parent>

    <dependencies>
        <dependency>
Z
zhh 已提交
22
            <groupId>com.macro.mall</groupId>
23 24 25 26 27 28 29 30 31 32 33 34 35 36
            <artifactId>mall-mbg</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-data-elasticsearch</artifactId>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
            </plugin>
M
macro 已提交
37 38 39 40
            <plugin>
                <groupId>com.spotify</groupId>
                <artifactId>docker-maven-plugin</artifactId>
            </plugin>
41 42 43 44
        </plugins>
    </build>

</project>