pom.xml 3.07 KB
Newer Older
licc's avatar
licc committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
<?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>
    <parent>
        <groupId>cn.wisenergy</groupId>
        <artifactId>wisenergy-parent</artifactId>
        <version>1.0-SNAPSHOT</version>
        <relativePath>../pom.xml</relativePath>
    </parent>
    <artifactId>wisenergy-web-admin</artifactId>
    <version>${moduleVersion.wisenergy-web-admin}</version>
    <packaging>jar</packaging>
    <name>${project.artifactId} Webapp</name>

    <!-- 项目依赖 -->
    <dependencies>
liqin's avatar
liqin committed
18 19 20 21
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
        </dependency>
licc's avatar
licc committed
22 23 24 25 26 27 28 29 30
        <!-- 模块依赖 -->
        <dependency>
            <groupId>cn.wisenergy</groupId>
            <artifactId>wisenergy-service</artifactId>
            <version>${moduleVersion.wisenergy-service}</version>
        </dependency>
        <dependency>
            <groupId>org.apache.shiro</groupId>
            <artifactId>shiro-spring</artifactId>
m1991's avatar
m1991 committed
31 32 33 34 35
        </dependency>
        <dependency>
            <groupId>com.aliyun</groupId>
            <artifactId>aliyun-java-sdk-core</artifactId>
        </dependency>
liqin's avatar
liqin committed
36 37 38 39 40 41 42 43 44 45 46 47 48 49
        <dependency>
            <groupId>cn.hutool</groupId>
            <artifactId>hutool-all</artifactId>
            <version>4.6.17</version>
        </dependency>
        <dependency>
            <groupId>com.google.zxing</groupId>
            <artifactId>javase</artifactId>
            <version>3.4.1</version>
        </dependency>
        <dependency>
            <groupId>commons-fileupload</groupId>
            <artifactId>commons-fileupload</artifactId>
        </dependency>
m1991's avatar
m1991 committed
50 51
        <dependency>
            <groupId>javax.servlet</groupId>
liqin's avatar
liqin committed
52 53
            <artifactId>javax.servlet-api</artifactId>
            <version>4.0.1</version>
m1991's avatar
m1991 committed
54 55
            <scope>provided</scope>
        </dependency>
m1991's avatar
m1991 committed
56
        <dependency>
liqin's avatar
liqin committed
57 58 59
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <scope>provided</scope>
m1991's avatar
m1991 committed
60
        </dependency>
61 62 63 64 65 66
        <!--图片压缩处理-->
        <dependency>
            <groupId>net.coobird</groupId>
            <artifactId>thumbnailator</artifactId>
            <version>0.4.8</version>
        </dependency>
67 68 69 70 71 72
        <!--获取服务器硬件信息-->
        <dependency>
            <groupId>org.fusesource</groupId>
            <artifactId>sigar</artifactId>
            <version>1.6.4</version>
        </dependency>
licc's avatar
licc committed
73 74 75 76
    </dependencies>

    <!-- MAVEN构建 -->
    <build>
liqin's avatar
liqin committed
77
        <finalName>shop-mall-comm</finalName>
licc's avatar
licc committed
78 79 80 81 82 83 84 85 86 87 88
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <configuration>
                    <fork>true</fork>
                </configuration>
            </plugin>
        </plugins>
    </build>
</project>