首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 软件管理 > 软件开发 >

maven打包处置自定义目录

2014-01-22 
maven打包处理自定义目录? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? ? fileset dir${project.build.directory}

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>

热点排行