码迷,mamicode.com
首页 > 其他好文 > 详细

01 Maven构建的项目中,把.xml等配置文件添加到编译目录

时间:2018-03-08 14:08:50      阅读:172      评论:0      收藏:0      [点我收藏+]

标签:文件   gpo   添加   not   res   body   java   markdown   pos   

Maven构建的项目,默认只会把src/main/resources目录下的xml配置文件添加到编译目录。

如果需要把src/main/java目录下的xml配置文件也添加到编译目录,需要在pom.xml中添加如下配置:

<build>
        <resources>
            <resource>
                <directory>src/main/java</directory>
                <includes>
                    <include>**/*.properties</include>
                    <include>**/*.xml</include>
                </includes>
                <filtering>false</filtering>
            </resource>
        </resources>
    </build>

本文永久更新地址:https://github.com/nnngu/LearningNotes/blob/master/Maven/01%20Maven%E6%9E%84%E5%BB%BA%E7%9A%84%E9%A1%B9%E7%9B%AE%E4%B8%AD%EF%BC%8C%E6%8A%8A.xml%E7%AD%89%E9%85%8D%E7%BD%AE%E6%96%87%E4%BB%B6%E6%B7%BB%E5%8A%A0%E5%88%B0%E7%BC%96%E8%AF%91%E7%9B%AE%E5%BD%95.md

01 Maven构建的项目中,把.xml等配置文件添加到编译目录

标签:文件   gpo   添加   not   res   body   java   markdown   pos   

原文地址:https://www.cnblogs.com/nnngu/p/8527701.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!