k94314517
2023-09-18 4b6806c10c285fde708d89d6444ede84fc45bc75
基础字段
已修改4个文件
72 ■■■■■ 文件已修改
server/company/pom.xml 34 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
server/platform/pom.xml 34 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
server/pom.xml 3 ●●●●● 补丁 | 查看 | 原始文档 | blame | 历史
server/service/pom.xml 1 ●●●● 补丁 | 查看 | 原始文档 | blame | 历史
server/company/pom.xml
@@ -24,4 +24,38 @@
            <version>1.0.0-SNAPSHOT</version>
        </dependency>
    </dependencies>
    <build>
        <finalName>company</finalName>
        <resources>
            <resource>
                <directory>src/main/resources</directory>
            </resource>
        </resources>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <configuration>
                    <fork>true</fork>
                    <mainClass>com.doumee.CompanyApplication</mainClass>
                    <layout>ZIP</layout>
                </configuration>
                <executions>
                    <execution>
                        <goals>
                            <goal>repackage</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <!--<plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-war-plugin</artifactId>
            <version>2.6</version>
            </plugin>-->
        </plugins>
    </build>
</project>
server/platform/pom.xml
@@ -21,4 +21,38 @@
            <version>1.0.0-SNAPSHOT</version>
        </dependency>
    </dependencies>
    <build>
        <finalName>platform</finalName>
        <resources>
            <resource>
                <directory>src/main/resources</directory>
            </resource>
        </resources>
        <plugins>
            <plugin>
                <groupId>org.springframework.boot</groupId>
                <artifactId>spring-boot-maven-plugin</artifactId>
                <configuration>
                    <fork>true</fork>
                    <mainClass>com.doumee.PlatformApplication</mainClass>
                    <layout>ZIP</layout>
                </configuration>
                <executions>
                    <execution>
                        <goals>
                            <goal>repackage</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <!--<plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-war-plugin</artifactId>
            <version>2.6</version>
            </plugin>-->
        </plugins>
    </build>
</project>
server/pom.xml
@@ -234,6 +234,9 @@
      </plugin>
    </plugins>
  </build>
  <!--<build>
    <finalName>${project.artifactId}</finalName>
server/service/pom.xml
@@ -17,4 +17,5 @@
        <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
    </properties>
</project>