91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Spring Boot pom.xml的build屬性配置方法

發布時間:2021-06-23 15:14:17 來源:億速云 閱讀:1297 作者:chen 欄目:大數據

這篇文章主要介紹“Spring Boot pom.xml的build屬性配置方法”,在日常操作中,相信很多人在Spring Boot pom.xml的build屬性配置方法問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”Spring Boot pom.xml的build屬性配置方法”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!

<build>
    <finalName>${project.artifactId}</finalName>
    <defaultGoal>package</defaultGoal>
    <resources>
        <resource>
            <directory>src/main/resources</directory>
            <includes>
                <include>**/*</include>
            </includes>
        </resource>
        <resource>
            <directory>profiles/${env}</directory>
            <filtering>true</filtering>
            <includes>
                <include>**/*</include>
            </includes>
        </resource>
    </resources>
    <testResources>
        <testResource>
            <directory>src/main/resources</directory>
            <includes>
                <include>**/*</include>
            </includes>
        </testResource>
        <testResource>
            <directory>profiles/${env}</directory>
            <filtering>true</filtering>
            <includes>
                <include>**/*</include>
            </includes>
        </testResource>
    </testResources>
    <plugins>
        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-source-plugin</artifactId>
            <version>2.4</version>
            <configuration>
                <attach>true</attach>
            </configuration>
            <executions>
                <execution>
                    <phase>compile</phase>
                    <goals>
                        <goal>jar</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>

        <plugin>
            <groupId>org.apache.maven.plugins</groupId>
            <artifactId>maven-compiler-plugin</artifactId>
            <configuration>
                <source>1.8</source>
                <target>1.8</target>
            </configuration>
        </plugin>

        <!--  熱部署需要 -->
        <plugin>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-maven-plugin</artifactId>
            <configuration>
                <fork>true</fork> <!--  如果沒有該配置,devtools不會生效 -->
            </configuration>
            <executions>
                <execution>
                    <goals>
                        <goal>repackage</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>

        <plugin>
            <groupId>org.jacoco</groupId>
            <artifactId>jacoco-maven-plugin</artifactId>
            <version>0.7.7.201606060606</version>
            <executions>
                <execution>
                    <goals>
                        <goal>prepare-agent</goal>
                    </goals>
                </execution>
                <execution>
                    <id>report</id>
                    <phase>prepare-package</phase>
                    <goals>
                        <goal>report</goal>
                    </goals>
                </execution>
            </executions>
        </plugin>
    </plugins>
</build>

到此,關于“Spring Boot pom.xml的build屬性配置方法”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

舟曲县| 称多县| 潍坊市| 鄂温| 嘉善县| 平顺县| 义乌市| 贵港市| 旬阳县| 北海市| 永安市| 海林市| 石嘴山市| 西乡县| 潮州市| 博兴县| 乐亭县| 噶尔县| 兴业县| 额尔古纳市| 铅山县| 平远县| 宜春市| 张家界市| 台江县| 栾川县| 连云港市| 上饶县| 临湘市| 新闻| 手游| 五寨县| 亳州市| 乐昌市| 栾城县| 阿克陶县| 嘉义县| 延庆县| 清水县| 嫩江县| 临海市|