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

maven <resources>标签

时间:2018-10-17 14:45:56      阅读:222      评论:0      收藏:0      [点我收藏+]

标签:path   打包   dubbo   需要   active   test   build   filter   指定   

<build>
    <finalName>com_dubbo_config</finalName>

    <resources>
        <resource>
            <!-- 指定resources插件处理哪个目录下的资源文件 -->
            <directory>src/main/resources</directory>
            <!-- 打包后放在什么位置 -->
            <targetPath>${project.build.directory}/classes</targetPath>
            <!-- 不包含directory指定目录下的以下文件 -->
            <excludes>
                <exclude>pro/*</exclude>
                <exclude>dev/*</exclude>
                <exclude>test/*</exclude>
            </excludes>
            <!-- 只(这个字很重要)包含directory指定目录下的以下文件 
                 <include>和<exclude>都存在的话,那就发生冲突了,这时会以<exclude>为准 -->
            <includes>
                <include></include>
            </includes>
            <!-- filtering为true的时候,这时只会把过滤的文件(<excludes>)打到classpath下,
                 filtering为false的时候,会把不需要过滤的文件(<includes>)打到classpath下 -->
            <filtering>true</filtering>
        </resource>

        <resource>
            <directory>src/main/resources/${profiles.active}</directory>
            <targetPath>${project.build.directory}/classes</targetPath>
        </resource>
    </resources>
  </build>

  

maven <resources>标签

标签:path   打包   dubbo   需要   active   test   build   filter   指定   

原文地址:https://www.cnblogs.com/tinyj/p/9803127.html

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