pom.xml 3.05 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>
    <parent>
        <groupId>com.hikcreate.edl.pub.web.mobile</groupId>
        <artifactId>root</artifactId>
        <version> 1.9-SNAPSHOT</version>
        <relativePath>../pom.xml</relativePath>
    </parent>

    <groupId>com.hikcreate.edl.pub.web.mobile</groupId>
    <artifactId>api</artifactId>
    <name>api</name>
    <description>对外暴露接口api</description>

    <dependencies>
        <dependency>
xieshixiang committed
19 20
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
21 22 23 24
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
xieshixiang committed
25
            <artifactId>spring-boot-starter-actuator</artifactId>
26
        </dependency>
xieshixiang committed
27

28 29 30 31
        <dependency>
            <groupId>org.springframework.cloud</groupId>
            <artifactId>spring-cloud-starter-netflix-eureka-client</artifactId>
        </dependency>
xieshixiang committed
32 33 34 35 36 37 38 39 40 41
        <dependency>
            <groupId>com.hikcreate.edl.pub.web.mobile</groupId>
            <artifactId>domain</artifactId>
            <version>${parent.version}</version>
        </dependency>
        <dependency>
            <groupId>com.hikcreate.edl.pub.web.mobile</groupId>
            <artifactId>infra</artifactId>
            <version>${parent.version}</version>
        </dependency>
42 43 44
        <dependency>
            <groupId>com.hikcreate.edl.common</groupId>
            <artifactId>sdk</artifactId>
lixian7 committed
45
            <version>${parent.version}</version>
46
        </dependency>
lixian7 committed
47 48 49 50 51
        <dependency>
            <groupId>com.hikcreate.common</groupId>
            <artifactId>orika</artifactId>
            <version>${parent.version}</version>
        </dependency>
lixian7 committed
52 53 54 55 56 57 58 59 60 61 62 63 64 65 66

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-aop</artifactId>
        </dependency>
        <dependency>
            <groupId>org.apache.commons</groupId>
            <artifactId>commons-lang3</artifactId>
            <version>3.8.1</version>
        </dependency>
        <dependency>
            <groupId>org.redisson</groupId>
            <artifactId>redisson-spring-boot-starter</artifactId>
            <version>3.9.1</version>
        </dependency>
67
    </dependencies>
lixian7 committed
68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86

    <build>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <version>2.0.4.RELEASE</version>
                <executions>
                    <execution>
                        <goals>
                            <goal>repackage</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
        </plugins>
        <!-- 给jar包取名 -->
        <finalName>extend</finalName>
    </build>
87
</project>