读书人

maven打包处置自定义目录

发布时间: 2014-01-22 00:03:39 作者: rapoo

maven打包处理自定义目录

? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? <fileset dir="${project.build.directory}/${project.build.finalName}/WEB-INF/conf/" defaultexcludes="true" />

? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? </delete>

? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ??

? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? <!-- 拷贝新的配置文件夹 -->

? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? <copy todir="${project.build.directory}/${project.build.finalName}/WEB-INF/conf">

? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? <fileset dir="${app_config_path}" />

? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? </copy>

? ? ? ? ? ? ? ? ? ? ? ? ? ? </tasks>

? ? ? ? ? ? ? ? ? ? ? ? </configuration>

? ? ? ? ? ? ? ? ? ? </execution>

? ? ? ? ? ? ? ? </executions>

? ? ? ? ? ? </plugin>

? ? ? ? </plugins>

? ? </build>

? ? <profiles>

? ? ? ? <profile>

? ? ? ? ? ? <id>dev</id>

? ? ? ? ? ? <properties>

? ? ? ? ? ? ? ? <app_config_path>src/main/conf/dev</app_config_path>

? ? ? ? ? ? </properties>

? ? ? ? ? ? <activation>

? ? ? ? ? ? ? ? <activeByDefault>true</activeByDefault>

? ? ? ? ? ? </activation>

? ? ? ? </profile>

? ? ? ? <profile>

? ? ? ? ? ? <id>test</id>

? ? ? ? ? ? <properties>

? ? ? ? ? ? ? ? <app_config_path>src/main/conf/test</app_config_path>

? ? ? ? ? ? </properties>

? ? ? ? </profile>

? ? ? ? <profile>

? ? ? ? ? ? <id>online</id>

? ? ? ? ? ? <properties>

? ? ? ? ? ? ? ? <app_config_path>src/main/conf/online</app_config_path>

? ? ? ? ? ? </properties>

? ? ? ? </profile>

? ? </profiles>

读书人网 >软件开发

热点推荐