pms-parent/pms-web-station/pom.xml
@@ -11,7 +11,6 @@
    </parent>
    <packaging>jar</packaging>
    <groupId>com.dy</groupId>
    <artifactId>pms-web-station</artifactId>
    <version>1.0.0</version>
    <name>pms-web-station</name>
@@ -29,12 +28,6 @@
            <artifactId>pms-global</artifactId>
            <version>1.0.0</version>
        </dependency>
        <dependency>
            <groupId>net.coobird</groupId>
            <artifactId>thumbnailator</artifactId>
            <version>${thumbnailator.version}</version>
        </dependency>
    </dependencies>
    <build>
@@ -51,13 +44,13 @@
                            -->
                            <!-- ${project.build.directory}是maven变量,内置的,表示target目录,如果不写,将在根目录下创建/lib -->
                            <outputDirectory>${project.build.directory}/lib</outputDirectory>
                            <!-- excludeTransitive:是否不包含间接依赖包,比如我们依赖A,但是A又依赖了B,我们是否也要把B打进去 默认不打-->
                            <!-- excludeTransitive:是否不包含间接依赖包,比如依赖A,A又依赖了B,是否也要把B打进去 默认不打-->
                            <excludeTransitive>false</excludeTransitive>
                            <!-- 复制的jar文件去掉版本信息 -->
                            <!-- 复制的jar文件去掉版本信息,配置false带上版本信息 -->
                            <stripVersion>false</stripVersion>
                            <finalName>${project.artifactId}-${project.version}</finalName>
                            <layout>ZIP</layout>
                            <mainClass>com.dy.pmsBase.PmsBaseApplication</mainClass>
                            <mainClass>com.dy.pmsStation.PmsStationApplication</mainClass>
                            <includes>
                                <include>
                                    <groupId>com.dy</groupId>